From a19825981d0efbcacff2ab615289084db3b0c5e9 Mon Sep 17 00:00:00 2001 From: catalamarti Date: Mon, 13 Oct 2025 22:20:17 +0100 Subject: [PATCH 1/2] Fix example getPlConceptDefinitionSet() --- R/Phenotypes.R | 4 +++- man/getPlConceptDefinitionSet.Rd | 4 +++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/R/Phenotypes.R b/R/Phenotypes.R index 417cd6b5..fb758c4a 100644 --- a/R/Phenotypes.R +++ b/R/Phenotypes.R @@ -195,7 +195,9 @@ getPhenotypeLog <- function(cohortIds = NULL, #' A tibble. #' #' @examples -#' getPhenotypeLog(cohortIds = c(1, 2)) +#' cohorts <- getPhenotypeLog() +#' subsetIds <- cohorts$cohortId[1:3] +#' getPlConceptDefinitionSet(cohortIds = subsetIds) #' #' @export getPlConceptDefinitionSet <- diff --git a/man/getPlConceptDefinitionSet.Rd b/man/getPlConceptDefinitionSet.Rd index a669b2de..851f975d 100644 --- a/man/getPlConceptDefinitionSet.Rd +++ b/man/getPlConceptDefinitionSet.Rd @@ -18,6 +18,8 @@ A tibble. Get conceptSets in cohorts } \examples{ -getPhenotypeLog(cohortIds = c(1, 2)) +cohorts <- getPhenotypeLog() +subsetIds <- cohorts$cohortId[1:3] +getPlConceptDefinitionSet(cohortIds = subsetIds) } From eced4633ed3b6d2f28e3135c4359ec0e3f95ba97 Mon Sep 17 00:00:00 2001 From: Gowtham Rao MD PhD Date: Wed, 8 Apr 2026 19:14:13 -0400 Subject: [PATCH 2/2] Release 3.37.0 New Cohorts: 4 were added. 1431: [P] Ectopic Pregnancy 1432: [P] Still birth 1433: [P] Live Birth 1434: [P] Miscarriage or Abortion --- DESCRIPTION | 6 +- NEWS.md | 11 + extras/CohortDefinitionReviewer.R | 666 + extras/UpdatePhenotypes.R | 34 +- inst/Cohorts.csv | 2206 +- inst/ConceptSetsInCohortDefinition.RDS | Bin 873855 -> 1609447 bytes inst/OrcidLog.csv | 2 +- inst/cohorts/1431.json | 151116 ++++++++++++++++++ inst/cohorts/1432.json | 159494 +++++++++++++++++++ inst/cohorts/1433.json | 176914 ++++++++++++++++++++++ inst/cohorts/1434.json | 160406 ++++++++++++++++++++ inst/cohorts/InclusionRules.csv | 32 + inst/sql/sql_server/1431.sql | 23160 +++ inst/sql/sql_server/1432.sql | 41468 +++++ inst/sql/sql_server/1433.sql | 71991 +++++++++ inst/sql/sql_server/1434.sql | 40601 +++++ 16 files changed, 826996 insertions(+), 1111 deletions(-) create mode 100644 extras/CohortDefinitionReviewer.R create mode 100644 inst/cohorts/1431.json create mode 100644 inst/cohorts/1432.json create mode 100644 inst/cohorts/1433.json create mode 100644 inst/cohorts/1434.json create mode 100644 inst/sql/sql_server/1431.sql create mode 100644 inst/sql/sql_server/1432.sql create mode 100644 inst/sql/sql_server/1433.sql create mode 100644 inst/sql/sql_server/1434.sql diff --git a/DESCRIPTION b/DESCRIPTION index bb6d8257..adcc3469 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,8 +1,8 @@ Package: PhenotypeLibrary Type: Package Title: The OHDSI Phenotype Library -Version: 3.36.0 -Date: 2025-04-02 +Version: 3.37.0 +Date: 2026-04-08 Author: Gowtham Rao [aut, cre] Maintainer: Gowtham Rao Description: A repository to store the content of the OHDSI Phenotype library. @@ -19,7 +19,7 @@ Suggests: testthat, knitr License: Apache License -RoxygenNote: 7.3.2 +RoxygenNote: 7.3.3 Roxygen: list(markdown = TRUE) Encoding: UTF-8 Language: en-US diff --git a/NEWS.md b/NEWS.md index c5c23802..0bdad1fa 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,3 +1,14 @@ +PhenotypeLibrary 3.37.0 +====================== +Accepted Cohorts: No cohorts were accepted in this release. + +New Cohorts: 4 were added. + + 1431: [P] Ectopic Pregnancy + 1432: [P] Still birth + 1433: [P] Live Birth + 1434: [P] Miscarriage or Abortion + PhenotypeLibrary 3.36.0 ====================== Accepted Cohorts: No cohorts were accepted in this release. diff --git a/extras/CohortDefinitionReviewer.R b/extras/CohortDefinitionReviewer.R new file mode 100644 index 00000000..692134ad --- /dev/null +++ b/extras/CohortDefinitionReviewer.R @@ -0,0 +1,666 @@ + +#' @export +readCensorWindow <- function(cohortDefinition) { + censorWindowStartDate <- + as.Date(cohortDefinition$CensorWindow[["StartDate"]]) + censorWindowStartDate <- + as.Date(cohortDefinition$CensorWindow[["EndDate"]]) + output <- c() + output$censorWindowStartDate <- censorWindowStartDate + output$censorWindowEndDateDate <- censorWindowStartDate + return(output) +} + +#' @export +modifyCensorWindow <- function(cohortDefinition, + startDate, + endDate) { + cohortDefinition$CensorWindow <- as.character() + cohortDefinition$CensorWindow[["StartDate"]] <- + as.character(startDate) + cohortDefinition$CensorWindow[["EndDate"]] <- + as.character(endDate) + return(cohortDefinition) +} + +#' @export +readCollapseSettings <- function(cohortDefinition) { + output <- c() + output$collapseType <- + cohortDefinition$CollapseSettings$CollapseType + output$eraPad <- cohortDefinition$CollapseSettings$EraPad + return(output) +} + +#' @export +modifyCollapseSettings <- function(cohortDefinition, + eraPad) { + cohortDefinition$CollapseSettings$CollapseType <- + "ERA" + cohortDefinition$CollapseSettings$EraPad <- + eraPad + return(cohortDefinition) +} + +#' @export +readCohortExit <- function(cohortDefinition) { + output <- c() + if (is.null(cohortDefinition$EndStrategy)) { + output$exitStrategy <- "end of continuous observation" + } else if (!is.null(cohortDefinition$EndStrategy$DateOffset)) { + output$exitStrategy <- "fixed duration relative to initial event" + output$dateOffSetField <- + cohortDefinition$EndStrategy$DateOffset$DateField + output$dateOffSet <- + cohortDefinition$EndStrategy$DateOffset$Offset + } else if (!is.null(cohortDefinition$EndStrategy$CustomEra)) { + output$exitStrategy <- "end of continuous drug exposure" + output$drugCodeSetId <- + cohortDefinition$EndStrategy$CustomEra[["DrugCodesetId"]] + output$persistenceWindow <- + cohortDefinition$EndStrategy$CustomEra[["GapDays"]] + output$surveillanceWindow <- + cohortDefinition$EndStrategy$CustomEra[["Offset"]] + } + return(output) +} + +#' @export +modifyCohortExit <- function(cohortDefinition, + exitStrategy = "end of continuous observation", + dateOffSetField = NULL, + dateOffSet = NULL, + drugCodeSetId = NULL, + persistenceWindow = 0, + surveillanceWindow = 0) { + if (exitStrategy == "end of continuous observation") { + cohortDefinition$EndStrategy <- NULL + } else if (exitStrategy == "fixed duration relative to initial event") { + cohortDefinition$EndStrategy <- NULL + cohortDefinition$EndStrategy <- list() + cohortDefinition$EndStrategy$DateOffset <- list() + if (dateOffSetField %in% c("StartDate", "EndDate")) { + cohortDefinition$EndStrategy$DateOffset$DateField <- dateOffSetField + cohortDefinition$EndStrategy$DateOffset$Offset <- + as.numeric(dateOffSet) + } else { + stop( + paste0( + "dateOffset given value: '", + DateOffset, + "' does not match expected 'StartDate', 'EndDate'" + ) + ) + } + } else if (exitStrategy == "end of continuous drug exposure") { + cohortDefinition$EndStrategy <- NULL + cohortDefinition$EndStrategy <- list() + cohortDefinition$EndStrategy$CustomEra <- numeric() + if (is.null(drugCodeSetId)) { + stop("drugCodeSetId is NULL") + } + cohortDefinition$EndStrategy$CustomEra[["DrugCodesetId"]] <- + as.numeric(drugCodeSetId) + cohortDefinition$EndStrategy$CustomEra[["GapDays"]] <- + as.numeric(persistenceWindow) + cohortDefinition$EndStrategy$CustomEra[["offset"]] <- + as.numeric(surveillanceWindow) + } else { + stop( + paste0( + "Please check specified exit strategy. Given strategy ", + exitStrategy, + " does not match 'end of continuous observation', 'end of continuous observation', 'end of continuous drug exposure'." + ) + ) + } + return(cohortDefinition) +} + +#' @export +getNumberOfInclusionRules <- function(cohortDefinition) { + length(cohortDefinition$InclusionRules) +} + +#' @export +getInitialEventRestrictionAdditionalCriteriaLimit <- function(cohortDefinition) { + # default Value is 'All' . It is only run if 'AdditionalCriteria' rule exits. + if (hasInitialEventRestrictionAdditionalCriteria(cohortDefinition = cohortDefinition)) { + limitValue <- cohortDefinition$QualifiedLimit |> as.character() + } else { + limitValue <- 'All' + } + return(limitValue) +} + +#' @export +getInclusionRuleQualifyingEventLimit <- function(cohortDefinition) { + cohortDefinition$ExpressionLimit |> as.character() +} + + +#' @export +getInitialEventLimit <- function(cohortDefinition) { + # this is the limit used first part of entry event criteria + cohortDefinition$PrimaryCriteria$PrimaryCriteriaLimit |> as.character() +} + +#' @export +hasInitialEventRestrictionAdditionalCriteria <- function(cohortDefinition) { + # this is the second or additional criteria that are part of entry event criteria + checkIfObjectExistsInNestedList(nestedList = cohortDefinition, object = 'AdditionalCriteria') +} + +#' @export +getNumberOfCohortEntryEvents <- function(cohortDefinition) { + cohortDefinition$PrimaryCriteria$CriteriaList |> length() +} + +#' @export +getNumberOfConceptSets <- function(cohortDefinition) { + length(cohortDefinition$ConceptSets) |> as.integer() +} + +#' @export +checkIfObjectExistsInNestedList <- function(nestedList, + object) { + if (is.list(nestedList)) { + if (object %in% names(nestedList)) { + return(TRUE) + } else { + for (subList in nestedList) { + if (checkIfObjectExistsInNestedList(nestedList = subList, object = object)) { + return(TRUE) + } + } + } + } + return(FALSE) +} + +#' @export +getWhereAnObjectExistsInNestedList <- function(nestedList, + object) { + namedItems <- c() + for (i in (1:length(nestedList))) { + if (checkIfObjectExistsInNestedList(nestedList = nestedList[[i]], object = object)) { + namedItems <- c(namedItems, names(nestedList)[[i]]) + } + } + + namedItemsDf <- dplyr::tibble() + + if (length(namedItems) > 0) { + namedItemsDf <- + dplyr::tibble(namedItems = namedItems |> unique() |> sort()) |> + dplyr::mutate(value = 1) |> + dplyr::mutate(newName = paste0("criteriaLocation", + object, + namedItems)) |> + dplyr::select(newName, + value) |> + tidyr::pivot_wider( + names_from = "newName", + values_from = "value", + values_fill = 0 + ) + } + return(namedItemsDf) +} + +#' @export +getContinuousPriorObservationPeriodRequirement <- + function(cohortDefinition) { + priorDays <- + as.integer(cohortDefinition$PrimaryCriteria$ObservationWindow[["PriorDays"]]) + postDays <- + as.integer(cohortDefinition$PrimaryCriteria$ObservationWindow[["PostDays"]]) + output <- c() + output$priorDays <- priorDays + output$postDays <- postDays + return(output) + } + +#' @export +areCohortEventsRestrictedByVisit <- + function(cohortDefinition) { + if (!'VisitOccurrence' %in% getDomainsInEntryEvents(cohortDefinition = cohortDefinition)) { + checkIfObjectExistsInNestedList(nestedList = cohortDefinition, + object = 'VisitOccurrence') + } else { + FALSE + } + } + +#' @export +stringPresentInCohortDefinitionText <- + function(cohortDefinition, + textToSearch) { + cohortDefinition |> + RJSONIO::toJSON(digits = 23) |> + tolower() |> + stringr::str_trim() |> + stringr::str_squish() |> + stringr::str_detect(pattern = textToSearch |> + tolower() |> + stringr::str_trim() |> + stringr::str_squish()) + } + +#' @export +getDomainsInEntryEvents <- function(cohortDefinition) { + cohortEntryEvents <- + getNumberOfCohortEntryEvents(cohortDefinition = cohortDefinition) + + domains <- c() + for (i in (1:cohortEntryEvents)) { + domains[i] <- + names(cohortDefinition$PrimaryCriteria$CriteriaList[[i]]) + } + + uniqueDomains <- unique(domains) |> sort() + + output <- c() + output$uniqueDomains <- uniqueDomains + output$numberOfUniqueDomains <- length(uniqueDomains) + output$domains <- + dplyr::tibble(uniqueDomains) |> + dplyr::mutate(value = 1) |> + tidyr::pivot_wider( + names_from = "uniqueDomains", + names_prefix = "domain", + values_from = "value", + values_fill = 0 + ) + return(output) +} + + +#' @export +parseCohortDefinitionSpecifications <- function(cohortDefinition) { + censorWindow <- + readCensorWindow(cohortDefinition = cohortDefinition) + collapseSettings <- + readCollapseSettings(cohortDefinition = cohortDefinition) + cohortExit <- readCohortExit(cohortDefinition = cohortDefinition) + numberOfInclusionRules <- + getNumberOfInclusionRules(cohortDefinition = cohortDefinition) + + initialEventLimit <- + getInitialEventLimit(cohortDefinition = cohortDefinition) + + initialEventRestrictionAdditionalCriteria <- hasInitialEventRestrictionAdditionalCriteria(cohortDefinition = cohortDefinition) + # qualifying limit is part of entry event criteria. Its the second limit if initialEventRestrictionAdditionalCriteria Exits + # this is the restrict initial events part of entry event criteria + initialEventRestrictionAdditionalCriteriaLimit <- + getInitialEventRestrictionAdditionalCriteriaLimit(cohortDefinition = cohortDefinition) + + numberOfCohortEntryEvents <- + getNumberOfCohortEntryEvents(cohortDefinition = cohortDefinition) + domainsInEntryEventCriteria <- + getDomainsInEntryEvents(cohortDefinition = cohortDefinition) + continousObservationRequirement <- + getContinuousPriorObservationPeriodRequirement(cohortDefinition = cohortDefinition) + numberOfConceptSets <- + getNumberOfConceptSets(cohortDefinition = cohortDefinition) + + demographicCriteria <- + checkIfObjectExistsInNestedList(nestedList = cohortDefinition, object = "DemographicCriteriaList") |> as.integer() + demographicCriteriaAge <- + checkIfObjectExistsInNestedList(nestedList = cohortDefinition, object = "Age") |> as.integer() + demographicCriteriaGender <- + checkIfObjectExistsInNestedList(nestedList = cohortDefinition, object = "Gender") |> as.integer() + domainsInEntryEvents <- + paste0(domainsInEntryEventCriteria$uniqueDomains, collapse = ", ") + useOfObservationPeriodInclusionRule <- + checkIfObjectExistsInNestedList(nestedList = cohortDefinition, + object = 'ObservationPeriod') |> as.integer() + restrictedByVisit <- + areCohortEventsRestrictedByVisit(cohortDefinition = cohortDefinition) |> as.integer() + + hasWashoutInText <- + stringPresentInCohortDefinitionText(cohortDefinition = cohortDefinition, + textToSearch = "washout") |> as.integer() + + inclusionRuleQualifyingEventLimit <- getInclusionRuleQualifyingEventLimit(cohortDefinition = cohortDefinition) + + report <- dplyr::tibble( + censorWindowStartDate = + (if (length(censorWindow$censorWindowStartDate) > 0) { + censorWindow$censorWindowStartDate + } else + NA), + censorWindowEndDate = + (if (length(censorWindow$censorWindowEndDateDate) > 0) { + censorWindow$censorWindowEndDateDate + } else + NA), + collapseSettingsType = collapseSettings$collapseType, + collapseEraPad = collapseSettings$eraPad, + exitStrategy = cohortExit$exitStrategy, + exitDateOffSetField = cohortExit$dateOffSetField, + exitDateOffSet = cohortExit$dateOffSet, + exitDrugCodeSetId = cohortExit$drugCodeSetId, + exitPersistenceWindow = cohortExit$persistenceWindow, + exitSurveillanceWindow = cohortExit$surveillanceWindow, + numberOfInclusionRules = numberOfInclusionRules, + initialEventLimit = initialEventLimit, + initialEventRestrictionAdditionalCriteria = initialEventRestrictionAdditionalCriteria, + initialEventRestrictionAdditionalCriteriaLimit = initialEventRestrictionAdditionalCriteriaLimit, # this is the restrict initial events part of entry event criteria + inclusionRuleQualifyingEventLimit = inclusionRuleQualifyingEventLimit, + numberOfCohortEntryEvents = numberOfCohortEntryEvents, + numberOfDomainsInEntryEvents = domainsInEntryEventCriteria$numberOfUniqueDomains, + domainsInEntryEvents = domainsInEntryEvents, + continousObservationWindowPrior = continousObservationRequirement$priorDays, + continousObservationWindowPost = continousObservationRequirement$postDays, + numberOfConceptSets = numberOfConceptSets, + demographicCriteria = demographicCriteria, + demographicCriteriaAge = demographicCriteriaAge, + demographicCriteriaGender = demographicCriteriaGender, + useOfObservationPeriodInclusionRule = useOfObservationPeriodInclusionRule, + restrictedByVisit = restrictedByVisit, + hasWashoutInText = hasWashoutInText + ) + + if (nrow(domainsInEntryEventCriteria$domains) > 0) { + report <- report |> + tidyr::crossing(domainsInEntryEventCriteria$domains) + } + + sourceDomains <- + c( + 'ProcedureSourceConcept', + 'ConditionSourceConcept', + 'ObservationSourceConcept', + 'VisitSourceConcept', + 'DrugSourceConcept', + 'DeviceSourceConcept', + 'DeathSourceConcept', + 'MeasurementSourceConcept' + ) + demographics <- c('Age', + 'Gender') + typeConcepts <- c('VisitType') + measureMent <- + c( + 'ValueAsConcept', + 'Operator', + 'ValueAsNumber', + 'Op', + 'RangeLow', + 'RangeHigh', + 'RangeLowRatio', + 'RangeHighRatio' + ) + other <- c('PlaceOfServiceCS', 'ProviderSpecialty', 'First') + + combined <- + c(sourceDomains, demographics, typeConcepts, other) |> unique() + for (i in (1:length(combined))) { + whereExists <- + getWhereAnObjectExistsInNestedList(nestedList = cohortDefinition, object = combined[[i]]) + if (nrow(whereExists) > 0) { + report <- report |> + tidyr::crossing(whereExists) + } + } + + report <- report |> + dplyr::mutate(eventCohort = + dplyr::if_else( + condition = ( + initialEventLimit == 'All' & + initialEventRestrictionAdditionalCriteriaLimit == 'All' & + inclusionRuleQualifyingEventLimit == 'All' + ), + true = 1, + false = 0 + )) + + return(report) +} + +#' @export +parsePhenotypeLibraryDescription <- function(cohortDefinition) { + output <- dplyr::tibble() + librarian <- stringr::str_replace( + string = cohortDefinition$createdBy$name, + pattern = "na\\\\", + replacement = "" + ) + cohortName <- cohortDefinition$name + cohortNameFormatted <- gsub( + pattern = "_", + replacement = " ", + x = gsub("\\[(.*?)\\]_", "", gsub(" ", "_", cohortName)) + ) |> + stringr::str_squish() |> + stringr::str_trim() + + if (length(cohortDefinition$modifiedBy) > 1) { + lastModifiedBy <- + cohortDefinition$modifiedBy$name + } + + output <- output |> + dplyr::mutate( + librarian = librarian, + cohortName = cohortName, + cohortNameLong = cohortNameFormatted, + lastModifiedBy = lastModifiedBy + ) + + if (all(!is.na(cohortDefinition$description), + nchar(cohortDefinition$description) > 5)) { + textInDescription <- + cohortDefinition$description |> + stringr::str_replace_all(pattern = ";", replacement = "") |> + stringr::str_split(pattern = "\n") + strings <- textInDescription[[1]] + textInDescription <- NULL + + strings <- + stringr::str_split(string = strings, pattern = stringr::fixed(":")) + + if (all( + !is.na(cohortDefinition$description[[1]]), + stringr::str_detect( + string = cohortDefinition$description, + pattern = stringr::fixed(":") + ) + )) { + stringValues <- c() + for (j in (1:length(strings))) { + stringValues[[j]] <- dplyr::tibble() + if (length(strings[[j]]) == 2) { + stringValues[[j]] <- dplyr::tibble( + name = strings[[j]][[1]] |> stringr::str_squish() |> stringr::str_trim(), + value = strings[[j]][[2]] |> + stringr::str_squish() |> + stringr::str_trim() + ) + } + } + + stringValues <- dplyr::bind_rows(stringValues) + + if (nrow(stringValues) > 0) { + data <- stringValues |> + tidyr::pivot_wider() + stringValues <- NULL + + output <- output |> + tidyr::crossing(data) + } + } + } + return(output) +} + + + +# Function to get name from ORCID ID +#' @export +getOrcidDetails <- function(orcidId) { + # Create the URL for the API request + url <- paste0("https://pub.orcid.org/v3.0/", orcidId) + + # Make the API request + res <- + httr::GET(url, httr::add_headers('Accept' = 'application/json')) + + # Parse the JSON response + parsedRes <- RJSONIO::fromJSON(httr::content(res, "text")) + + details <- c() + # Extract the name + details$givenName <- + paste0(as.character(parsedRes$person$name$`given-names`),"") + details$familyName <- + paste0(as.character(parsedRes$person$name$`family-name`),"") + details$email <- paste0(parsedRes$person$emails$email |> as.character(),"") + + return(details) +} + +# Function to get log based on OrcId +#' @export +getOrcidFromPhenotypeLog <- + function(log = PhenotypeLibrary::getPhenotypeLog()) { + # Process the data + uniqueOrcIds <- log |> + dplyr::mutate( + contributorOrcIds = stringr::str_replace( + string = contributorOrcIds, + pattern = stringr::fixed("."), + replacement = "," + ) + ) |> + tidyr::separate_rows(contributorOrcIds, sep = ",") |> # Split by comma + dplyr::mutate(contributorOrcIds = stringr::str_trim(contributorOrcIds, side = "both")) |> # Trim whitespace + dplyr::filter(contributorOrcIds != "") |> # Remove empty strings + dplyr::filter(contributorOrcIds != "''") |> # Remove empty strings + dplyr::filter(contributorOrcIds != "'") |> # Remove empty strings + dplyr::mutate(contributorOrcIds = stringr::str_replace_all(contributorOrcIds, "'", "")) |> # Remove quotations + dplyr::distinct(contributorOrcIds) |> # Get unique ORCIDs + dplyr::arrange(contributorOrcIds) |> + dplyr::pull(contributorOrcIds) + + orcidLog <- c() + for (i in (1:length(uniqueOrcIds))) { + orcIdDetails <- NULL + orcIdDetails <- getOrcidDetails(uniqueOrcIds[[i]]) + orcidLog[[i]] <- dplyr::tibble( + orcId = uniqueOrcIds[[i]], + givenName = orcIdDetails$givenName, + lastName = orcIdDetails$familyName, + email = orcIdDetails$email + ) + } + orcidLog <- dplyr::bind_rows(orcidLog) + + orcidLogWithContributions <- c() + for (i in (1:nrow(orcidLog))) { + numberOfCohorts <- log |> + dplyr::filter( + stringr::str_detect( + string = .data$contributorOrcIds, + pattern = orcidLog[i, ]$orcId |> stringr::fixed() + ) + ) |> + dplyr::pull(cohortId) |> + unique() |> + length() + + numberOfCohortsAccepted <- log |> + dplyr::filter(stringr::str_detect(string = tolower(status), + pattern = "accepted")) |> + dplyr::filter( + stringr::str_detect( + string = .data$contributorOrcIds, + pattern = orcidLog[i, ]$orcId |> stringr::fixed() + ) + ) |> + dplyr::pull(cohortId) |> + unique() |> + length() + + orcidLogWithContributions[[i]] <- orcidLog[i,] |> + dplyr::mutate( + contributions = numberOfCohorts, + accepted = numberOfCohortsAccepted + ) + } + return(dplyr::bind_rows(orcidLogWithContributions)) + } + + + +# Function to Fetch Tags, Version Numbers, and Release Dates +#' @export +fetchGitHubRepoReleaseInfo <- function(repoOwner, repoName) { + # Fetch release data from GitHub API + releaseData <- + gh::gh("GET /repos/:owner/:repo/releases", + owner = repoOwner, + repo = repoName) + + # Initialize empty data frame + repoInfo <- dplyr::tibble( + tag = character(0), + version = character(0), + releaseDate = character(0), + stringsAsFactors = FALSE + ) + + # Loop through each release + for (i in 1:length(releaseData)) { + tag <- releaseData[[i]]$tag_name + version <- + ifelse(is.null(releaseData[[i]]$name), NA, releaseData[[i]]$name) + releaseDate <- releaseData[[i]]$created_at |> as.Date() + + # Append to data frame + repoInfo <- + rbind(repoInfo, + dplyr::tibble( + tag = tag, + version = version, + releaseDate = releaseDate + )) + } + + return(repoInfo) +} + +# Function to plot smoothed trend curve +#' @export +plotSmoothedTrendCurve <- function(data, + dateColumn = "createdDate", + smoothingMethod = "loess", + showStandardError = FALSE, + outputFilename = "smoothed_trend_curve.png", + plotTitle = "Smoothed Trend Curve of Cohort Records Over Time", + xAxisLabel = "Created Date", + yAxisLabel = "Volume") { + + # Aggregate data by dateColumn to find the volume for each date + aggregatedData <- data %>% + group_by(.data[[dateColumn]]) %>% + summarise(volume = n()) + + # Create the ggplot + plot <- ggplot(aggregatedData, aes(x = .data[[dateColumn]], y = volume)) + + geom_point() + + geom_smooth(method = smoothingMethod, se = showStandardError) + + labs( + title = plotTitle, + x = xAxisLabel, + y = yAxisLabel + ) + + # Save the plot as a PNG + ggsave(outputFilename, plot) + + return(paste("Plot saved as '", outputFilename, "'", sep = "")) +} \ No newline at end of file diff --git a/extras/UpdatePhenotypes.R b/extras/UpdatePhenotypes.R index 1f1d1948..181e2beb 100644 --- a/extras/UpdatePhenotypes.R +++ b/extras/UpdatePhenotypes.R @@ -351,10 +351,12 @@ cohortRecord <- cohortRecord |> saveRDS(cohortRecord, file = "cohortRecord.rds") cohortRecord <- readRDS("cohortRecord.rds") +source(here::here(file.path("extras", "CohortDefinitionReviewer.R"))) + cohortRecordAugmented <- c() for (i in (1:nrow(cohortRecord))) { cohortRecordUnit <- cohortRecord[i, ] - + if (!file.exists(file.path( "inst", "cohorts", @@ -362,16 +364,16 @@ for (i in (1:nrow(cohortRecord))) { ))) { stop("cant find file") } - + cohortJson <- SqlRender::readSql(sourceFile = file.path( "inst", "cohorts", paste0(cohortRecordUnit$cohortId, ".json") )) - + parsed <- - CohortDefinitionReviewer::parseCohortDefinitionSpecifications(cohortDefinition = cohortJson |> - RJSONIO::fromJSON(digits = 23)) + parseCohortDefinitionSpecifications(cohortDefinition = cohortJson |> + RJSONIO::fromJSON(digits = 23)) if (nrow(parsed) > 0) { cohortRecordAugmented[[i]] <- cohortRecordUnit |> tidyr::crossing(parsed) @@ -564,9 +566,29 @@ newCohortDefinitionSet <- ) |> dplyr::tibble() |> dplyr::arrange(cohortId) +# +# cohortDefinitionIds <- newCohortDefinitionSet |> +# dplyr::filter(!cohortId %in% c(25, 1071)) |> +# dplyr::filter(cohortId > 1071) |> +# dplyr::pull(cohortId) |> +# unique() |> +# sort() +# +# conceptSetsInAllCohortDefinition <- c() +# for (i in (1:length(cohortDefinitionIds))) { +# +# print(paste0("working on ", cohortDefinitionIds[[i]])) +# +# conceptSetsInAllCohortDefinition[[i]] <- ConceptSetDiagnostics::extractConceptSetsInCohortDefinitionSet( +# cohortDefinitionSet = newCohortDefinitionSet |> +# dplyr::filter(cohortId == cohortDefinitionIds[[i]]) +# ) +# } + conceptSetsInAllCohortDefinition <- ConceptSetDiagnostics::extractConceptSetsInCohortDefinitionSet( - cohortDefinitionSet = newCohortDefinitionSet + cohortDefinitionSet = newCohortDefinitionSet |> + dplyr::filter(!cohortId %in% c(25, 1071)) #no concept set ) saveRDS( diff --git a/inst/Cohorts.csv b/inst/Cohorts.csv index 836b7545..441dcc3c 100644 --- a/inst/Cohorts.csv +++ b/inst/Cohorts.csv @@ -1,1101 +1,1105 @@ -"cohortId","cohortName","cohortNameFormatted","cohortNameLong","librarian","status","addedVersion","logicDescription","hashTag","isCirceJson","contributors","contributorOrcIds","contributorOrganizations","peerReviewers","peerReviewerOrcIds","recommendedReferentConceptIds","ohdsiForumPost","createdDate","modifiedDate","lastModifiedBy","replaces","notes","isReferenceCohort","censorWindowStartDate","censorWindowEndDate","collapseSettingsType","collapseEraPad","exitStrategy","exitDateOffSetField","exitDateOffSet","numberOfInclusionRules","initialEventLimit","initialEventRestrictionAdditionalCriteria","initialEventRestrictionAdditionalCriteriaLimit","inclusionRuleQualifyingEventLimit","numberOfCohortEntryEvents","numberOfDomainsInEntryEvents","domainsInEntryEvents","continousObservationWindowPrior","continousObservationWindowPost","numberOfConceptSets","demographicCriteria","demographicCriteriaAge","demographicCriteriaGender","useOfObservationPeriodInclusionRule","restrictedByVisit","hasWashoutInText","hasConditionStatusInPrimaryCriteria","hasConditionTypeInPrimaryCriteria","hasProcedureTypeInPrimaryCriteria","hasObservationTypeInPrimaryCriteria","hasDrugTypeInPrimaryCriteria","hasConditionStatus","hasConditionType","hasProcedureType","hasObservationType","hasDrugType","domainConditionOccurrence","domainMeasurement","ProcedureSourceConcept","ConditionSourceConcept","ObservationSourceConcept","VisitSourceConcept","DrugSourceConcept","DeviceSourceConcept","DeathSourceConcept","MeasurementSourceConcept","Age","Gender","VisitType","PlaceOfServiceCS","ProviderSpecialty","First","eventCohort","domainObservation","domainVisitOccurrence","domainDeath","domainDrugExposure","domainDeviceExposure","domainProcedureOccurrence","domainDrugEra","exitDrugCodeSetId","exitPersistenceWindow","exitSurveillanceWindow","domainObservationPeriod" -2,"[W] COVID-19 diagnosis or SARS-CoV-2 test (1pos)","COVID-19 diagnosis or SARS-CoV-2 test (1pos)","COVID-19 diagnosis or SARS-CoV-2 test (1pos)","rao@ohdsi.org","Withdrawn","","Withdrawn by contributor before peer review","",1,"","","","","","439676, 37311061","","2021-09-22","2023-09-19",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",0,0,"First",FALSE,"All","First",2,2,"ConditionOccurrence, Measurement",0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,, -3,"[P] Cough or Sputum","Cough or Sputum","Cough or Sputum","rao@ohdsi.org","Pending peer review","","All events of cough or sputum finding","#Symptoms, #respiratory, #lung",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","254761","https://forums.ohdsi.org/t/17895","2021-09-22","2023-09-28",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",14,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -4,"[P] Diarrhea","Diarrhea","Diarrhea","rao@ohdsi.org","Pending peer review","","All events of diarrhea including Functional Diarrhea","#Symptoms",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","196523","https://forums.ohdsi.org/t/17895","2021-09-23","2023-09-25",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",7,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -5,"[P] Dyspnea","Dyspnea","Dyspnea","rao@ohdsi.org","Pending peer review","","All events of dyspnea including difficulty breathing or abnormal breathing","#Symptoms, #respiratory, #lung",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","312437, 4041664","https://forums.ohdsi.org/t/17895","2021-09-23","2023-09-28",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",14,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -6,"[P] Fever","Fever","Fever","rao@ohdsi.org","Pending peer review","","All events of fever or elevated temperature measurement","#Symptoms",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","437663, 4178904","https://forums.ohdsi.org/t/17895","2021-09-23","2023-09-25",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",7,0,"All",FALSE,"All","All",6,3,"ConditionOccurrence, Measurement, Observation",0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,,,,,,,,,, -7,"[P] Headache or Headache disorder","Headache or Headache disorder","Headache or Headache disorder","rao@ohdsi.org","Pending peer review","","All events of Headache or headache disorder","#Symptoms",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","378253","https://forums.ohdsi.org/t/17895","2021-09-23","2023-09-25",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",14,0,"All",FALSE,"All","All",2,2,"ConditionOccurrence, Observation",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,,,,,,,,,, -8,"[P] Altered smell or taste including Anosmia, Hyposmia or Dysgeusia","Altered smell or taste including Anosmia, Hyposmia or Dysgeusia","Altered smell or taste including Anosmia, Hyposmia or Dysgeusia","rao@ohdsi.org","Pending peer review","","Altered smell or taste including Anosmia, Hyposmia or Dysgeusia","#Symptoms",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","43530714","https://forums.ohdsi.org/t/17895","2021-09-23","2023-09-25",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",14,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -9,"[P] Sore throat","Sore throat","Sore throat","rao@ohdsi.org","Pending peer review","","All events of Sore throat","#Symptoms",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","25297, 4226263","https://forums.ohdsi.org/t/17895","2021-09-23","2023-09-25",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",14,0,"All",FALSE,"All","All",2,2,"ConditionOccurrence, Observation",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,,,,,,,,,, -10,"[P] Nausea or Vomiting","Nausea or Vomiting","Nausea or Vomiting","rao@ohdsi.org","Pending peer review","","All events of Nausea or vomiting","#Symptoms",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","27674, 4101344","https://forums.ohdsi.org/t/17895","2021-09-23","2023-09-25",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",14,0,"All",FALSE,"All","All",2,2,"ConditionOccurrence, Observation",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,,,,,,,,,, -11,"[P] Malaise and or fatigue","Malaise and or fatigue","Malaise and or fatigue","rao@ohdsi.org","Pending peer review","","All events of Malaise and or fatigue","#Symptoms",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","439926, 4272240","https://forums.ohdsi.org/t/17895","2021-09-23","2023-09-25",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",14,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -12,"[P] Rhinitis or common cold or Sinusitis","Rhinitis or common cold or Sinusitis","Rhinitis or common cold or Sinusitis","rao@ohdsi.org","Pending peer review","","All events of Rhinitis or common cold","#Symptoms",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","257007, 4320791","https://forums.ohdsi.org/t/17895","2021-09-23","2023-09-25",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",14,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -13,"[P] Myalgia (not explained by injury, ischemia or systemic inflammation)","Myalgia (not explained by injury, ischemia or systemic inflammation)","Myalgia (not explained by injury, ischemia or systemic inflammation)","rao@ohdsi.org","Pending peer review","","All events of Myalgia. Exclude persons with secondary causes of myalgia explained by injury, ischemia or chronic systemic inflammation","#Symptoms",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","442752, 4150129","https://forums.ohdsi.org/t/17895","2021-09-23","2023-09-25",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",14,1,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -14,"[P] Myalgia","Myalgia","Myalgia","rao@ohdsi.org","Pending peer review","","All events of Myalgia","#Symptoms",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","442752, 4150129","https://forums.ohdsi.org/t/17895","2021-09-23","2023-09-25",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",14,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -15,"[P][R] Exposure to viral disease ","Exposure to viral disease","Exposure to viral disease","rao@ohdsi.org","Pending peer review","","all events of Exposure to viral disease. Persons exit on cohort end date","#Referent, #Observation",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","37016200","","2021-09-23","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"Observation",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,,,,,,,,,, -16,"[W] Exposure to SARS-Cov 2 and coronavirus","Exposure to SARS-Cov 2 and coronavirus","Exposure to SARS-Cov 2 and coronavirus","rao@ohdsi.org","","","","",1,"","","","","","","","2021-09-23","2023-09-19",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -17,"[P][R] Exposure to SARS-CoV-2 ","Exposure to SARS-CoV-2","Exposure to SARS-CoV-2","rao@ohdsi.org","Pending peer review","","all events of Exposure to SARS-CoV-2. Persons exit on cohort end date","#Referent, #Observation",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","37311059","","2021-09-23","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"Observation",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,,,,,,,,,, -18,"[P][R] Multisystem inflammatory syndrome (MIS) ","Multisystem inflammatory syndrome (MIS)","Multisystem inflammatory syndrome (MIS)","rao@ohdsi.org","Pending peer review","","all events of Multisystem inflammatory syndrome (MIS). Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","703578","","2021-09-23","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -20,"[P] Bronchitis or Bronchiolitis","Bronchitis or Bronchiolitis","Bronchitis or Bronchiolitis","rao@ohdsi.org","Pending peer review","","All events of Bronchitis","#Symptoms",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","256451, 260139","https://forums.ohdsi.org/t/17895","2021-09-23","2023-09-25",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",14,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -21,"[P] Acute respiratory distress syndrome (ARDS) or Acute Respiratory Failure","Acute respiratory distress syndrome (ARDS) or Acute Respiratory Failure","Acute respiratory distress syndrome (ARDS) or Acute Respiratory Failure","rao@ohdsi.org","Pending peer review","","All events of Acute respiratory distress syndrome (ARDS) or Acute Respiratory Failure","",1,"","","","","","319049","","2021-09-23","2023-09-19",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -22,"[W] SARS-CoV-2 testing","SARS-CoV-2 testing","SARS-CoV-2 testing","rao@ohdsi.org","Withdrawn","","Withdrawn by contributor before peer review","",1,"","","","","","","","2021-09-23","2023-09-19",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"Measurement",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -23,"Inpatient Hospitalization (1Pe, 0Era)","Inpatient Hospitalization (1Pe, 0Era)","Inpatient Hospitalization (1Pe, 0Era)","rao@ohdsi.org","Accepted","3.4.0","All events of Inpatient visit. This cohort is deemed validated as it represents data convention and did not need to go thru peer review process","#standard, #Visits",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","","","2021-09-23","2023-09-19",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",1,0,"All",FALSE,"All","All",1,1,"VisitOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,1,,,,,,,,, -24,"Emergency room visits (0Pe, 0Era)","Emergency room visits (0Pe, 0Era)","Emergency room visits (0Pe, 0Era)","rao@ohdsi.org","Accepted","3.4.0","All events of Emergency Room visits. This cohort is deemed validated as it represents data convention and did not need to go thru peer review process","#standard, #Visits",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","","","2021-09-23","2023-09-19",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"VisitOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,1,,,,,,,,, -25,"All cause mortality","All cause mortality","All cause mortality","rao@ohdsi.org","Pending peer review","3.4.0","Earliest observation of any death","#standard",1,"Gowtham A Rao","'0000-0002-4949-7236'","'OHDSI'","","","","","2021-09-23","2023-09-19",,"",,0,,,"ERA","0","end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"Death",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,1,,,,,,,, -27,"[P] Asthma without COPD","Asthma without COPD","Asthma without COPD","rao@ohdsi.org","Pending peer review","","Earliest of either asthma diagnosis or therapy for asthma with a history of another asthma therapy more than 180 days before. The person should not have a diagnosis or treatment for COPD in past","",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","317009","","2021-09-23","2023-09-19",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",0,1,"First",FALSE,"All","First",3,3,"ConditionOccurrence, DrugExposure, Observation",0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,1,,,,,,, -29,"[W] Autoimmune condition (FP)","Autoimmune condition (FP)","Autoimmune condition (FP)","rao@ohdsi.org","Withdrawn","","Withdrawn by contributor before peer review. No clinical description, evaluation or discussions found. May need to be revisited in future","",1,"","","","","","76685, 80809, 81893, 81931, 134442, 134618, 135215, 140168, 194992, 199856, 201254, 201606, 254443, 257628, 374919, 432295, 438688, 443394, 4137275, 4232076","","2021-09-23","2023-09-19",,"",,0,,,"ERA","0","end of continuous observation",,,0,"First",FALSE,"All","First",21,2,"ConditionOccurrence, Observation",0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,, -30,"[P] Tuberculosis with treatment using anti tubercular drug","Tuberculosis with treatment using anti tubercular drug","Tuberculosis","rao@ohdsi.org","Pending peer review","","All events of tuberculosis with at least 3 different drugs for tuberculosis at anytime on or after diagnosis","",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","253954, 434557","","2021-09-23","2023-09-25",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",365,1,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -31,"[P] Malignant neoplasm excluding non-melanoma skin cancer","Malignant neoplasm excluding non-melanoma skin cancer","Malignant neoplasm excluding non-melanoma skin cancer","rao@ohdsi.org","Pending peer review","","All events with a malignant neoplastic disease or history of malignant neoplastic disease","",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","137809, 443392","","2021-09-23","2023-09-19",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",2,2,"ConditionOccurrence, Observation",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,,,,,,,,,, -32,"[P] Obesity","Obesity","Obesity","rao@ohdsi.org","Pending peer review","","Persons with obesity diagnosis or a body weight measurement > 120 kg or 265 lbs","#Symptoms",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","433736","https://forums.ohdsi.org/t/17895","2021-09-23","2023-09-25",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",365,0,"All",FALSE,"All","All",5,3,"ConditionOccurrence, Measurement, Observation",0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,,,,,,,,,, -33,"[P] Dementia","Dementia","Dementia","rao@ohdsi.org","Pending peer review","","Persons with the diagnosis of dementia, includes history of Dementia","",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","4182210","","2021-09-23","2023-09-25",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",365,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -34,"[P] Hypertensive disorder or hypertensive complications","Hypertensive disorder or hypertensive complications","Hypertensive disorder or hypertensive complications","rao@ohdsi.org","Pending peer review","","Hypertensive disorder diagnosis or complication of hypertension","",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","312648, 4028741","","2021-09-23","2023-09-19",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -35,"[W] Chronic kidney disease (FP)","Chronic kidney disease (FP)","Chronic kidney disease (FP)","rao@ohdsi.org","Withdrawn","","Withdrawn by contributor before peer review. No clinical description, evaluation or discussions found. May need to be revisited in future","",1,"","","","","","192359, 193782","","2021-09-23","2023-09-19",,"",,0,,,"ERA","0","end of continuous observation",,,0,"First",TRUE,"First","First",1,1,"ConditionOccurrence",0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,, -36,"[P] Human immunodeficiency virus (not HIV2) infection","Human immunodeficiency virus (not HIV2) infection","Human immunodeficiency virus (not HIV2) infection","rao@ohdsi.org","Pending peer review","","Earliest diagnosis of HIV (not HIV2) with another diagnosis in future or a treatment for HIV","",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","439727","","2021-09-23","2023-09-19",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",0,0,"First",TRUE,"All","All",1,1,"ConditionOccurrence",0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,, -37,"[P] Hepatitis C infection, carrier status or antibody positivity","Hepatitis C infection, carrier status or antibody positivity","Hepatitis C infection, carrier status or antibody positivity","rao@ohdsi.org","Pending peer review","","Earliest diagnosis of Hepatitis C","",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","197494, 198964","","2021-09-23","2023-09-19",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -38,"[P] Heart disease","Heart disease","Heart disease","rao@ohdsi.org","Pending peer review","","Earliest of any Heart disease or arteriosclerosis of coronary artery bypass graft","",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","313217, 44784217","","2021-09-23","2023-09-19",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -39,"[W] End stage renal disease (FP)","End stage renal disease (FP)","End stage renal disease (FP)","rao@ohdsi.org","Withdrawn","","Withdrawn by contributor before peer review. No clinical description, evaluation or discussions found. May need to be revisited in future","",1,"","","","","","193782","","2021-09-23","2023-09-19",,"",,0,,,"ERA","0","end of continuous observation",,,0,"All",TRUE,"First","First",2,2,"ConditionOccurrence, Observation",0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,, -40,"[P] Diabetes Mellitus Type 2 or history of diabetes","Diabetes Mellitus Type 2 or history of diabetes","Diabetes Mellitus Type 2 or history of diabetes","rao@ohdsi.org","Pending peer review","","Earliest of any Type 2 Diabetes Mellitus or History of Diabetes","",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","201820, 201826","","2021-09-23","2023-09-19",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",2,2,"ConditionOccurrence, Observation",0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,,,,,,,,,, -41,"[W] Chronic kidney disease broad (FP)","Chronic kidney disease broad (FP)","Chronic kidney disease broad (FP)","rao@ohdsi.org","Withdrawn","","Withdrawn by contributor before peer review. No clinical description, evaluation or discussions found. May need to be revisited in future","",1,"","","","","","192359, 193782","","2021-09-23","2023-09-19",,"",,0,,,"ERA","0","end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,, -42,"[W] End stage renal disease broad (FP)","End stage renal disease broad (FP)","End stage renal disease broad (FP)","rao@ohdsi.org","Withdrawn","","Withdrawn by contributor before peer review. No clinical description, evaluation or discussions found. May need to be revisited in future","",1,"","","","","","193782","","2021-09-23","2023-09-19",,"",,0,,,"ERA","0","end of continuous observation",,,0,"All",FALSE,"All","First",2,2,"ConditionOccurrence, Observation",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,, -43,"[P] Respiratory or pulmonary tuberculosis","Respiratory or pulmonary tuberculosis","Respiratory or pulmonary tuberculosis","rao@ohdsi.org","Pending peer review","","Earliest occurrence of respiratory or pulmonary tuberculosis","",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","253954, 434557","","2021-09-23","2023-09-25",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",365,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -44,"[P][R] COVID-19 ","COVID-19","COVID-19","rao@ohdsi.org","Pending peer review","","all events of COVID-19. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","37311061","","2021-09-24","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -45,"[W] COVID-19 diagnosis with SARS-Cov-2 test (-3d to 3d)","COVID-19 diagnosis with SARS-Cov-2 test (-3d to 3d)","COVID-19 diagnosis with SARS-Cov-2 test (-3d to 3d)","rao@ohdsi.org","Withdrawn","","Withdrawn by contributor before peer review","",1,"","","","","","439676, 37311061","","2021-09-24","2023-09-19",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",0,1,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -46,"[W] COVID-19 diagnosis and SARS-CoV-2 test (1pos) within 3d","COVID-19 diagnosis and SARS-CoV-2 test (1pos) within 3d","COVID-19 diagnosis and SARS-CoV-2 test (1pos) within 3d","rao@ohdsi.org","Withdrawn","","Withdrawn by contributor before peer review","",1,"","","","","","439676, 37311061","","2021-09-24","2023-09-19",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",2,2,"ConditionOccurrence, Measurement",0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -47,"[W] COVID-19 diagnosis and SARS-CoV-2 test (1pos) (0neg) within 3d","COVID-19 diagnosis and SARS-CoV-2 test (1pos) (0neg) within 3d","COVID-19 diagnosis and SARS-CoV-2 test (1pos) (0neg) within 3d","rao@ohdsi.org","Withdrawn","","Withdrawn by contributor before peer review","",1,"","","","","","439676, 37311061","","2021-09-24","2023-09-19",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",2,2,"ConditionOccurrence, Measurement",0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -48,"[W] COVID-19 diagnosis and SARS-CoV-2 test (0pos upto 3d, 1neg within 3d)","COVID-19 diagnosis and SARS-CoV-2 test (0pos upto 3d, 1neg within 3d)","COVID-19 diagnosis and SARS-CoV-2 test (0pos upto 3d, 1neg within 3d)","rao@ohdsi.org","Withdrawn","","Withdrawn by contributor before peer review","",1,"","","","","","439676, 37311061","","2021-09-24","2023-09-19",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",0,0,"All",TRUE,"All","All",1,1,"ConditionOccurrence",0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -51,"[W] SARS-CoV-2 test positive result","SARS-CoV-2 test positive result","SARS-CoV-2 test positive result","rao@ohdsi.org","Withdrawn","","Withdrawn by contributor before peer review","",1,"","","","","","","","2021-09-24","2023-09-19",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"Measurement",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -52,"[W] SARS-CoV-2 test negative result","SARS-CoV-2 test negative result","SARS-CoV-2 test negative result","rao@ohdsi.org","Withdrawn","","Withdrawn by contributor before peer review","",1,"","","","","","","","2021-09-24","2023-09-19",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"Measurement",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -53,"[W] SARS-CoV-2 test positive or negative result - keep persons with positive","SARS-CoV-2 test positive or negative result - keep persons with positive","SARS-CoV-2 test positive or negative result - keep persons with positive","rao@ohdsi.org","Withdrawn","","Withdrawn by contributor before peer review","",1,"","","","","","","","2021-09-24","2023-09-19",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",0,1,"First",FALSE,"All","First",2,1,"Measurement",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,, -54,"[P] Febrile seizure","Febrile seizure","Febrile seizure","rao@ohdsi.org","Pending peer review","","All events of Febrile seizures","#Symptoms",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","377091, 4196708","https://forums.ohdsi.org/t/17895","2021-09-24","2023-09-25",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",14,1,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -56,"[P] SARS-CoV-2 test (1pos) or COVID-19 diagnosis with (0 neg -3d to 3d)","SARS-CoV-2 test (1pos) or COVID-19 diagnosis with (0 neg -3d to 3d)","SARS-CoV-2 test (1pos) or COVID-19 diagnosis with (0 neg -3d to 3d)","rao@ohdsi.org","Pending peer review","","All events of Covid Diagnosis without a negative test result or a SARS-Cov-2 test positive test","",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","439676, 37311061","","2021-09-30","2023-09-19",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",2,2,"ConditionOccurrence, Measurement",0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -57,"[P][R] Bleeding ","Bleeding","Bleeding","rao@ohdsi.org","Pending peer review","","all events of Bleeding. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","192671, 437312","https://forums.ohdsi.org/t/17895","2021-09-30","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -59,"[W] COVID-19 diagnosis with no SARS-CoV-2 test","COVID-19 diagnosis with no SARS-CoV-2 test","COVID-19 diagnosis with no SARS-CoV-2 test","rao@ohdsi.org","","","","",1,"","","","","","439676, 37311061","","2021-10-05","2023-09-19",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",0,1,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -60,"[W] SARS-CoV-2 test positive and negative result","SARS-CoV-2 test positive and negative result","SARS-CoV-2 test positive and negative result","rao@ohdsi.org","Withdrawn","","Withdrawn by contributor before peer review","",1,"","","","","","","","2021-10-05","2023-09-19",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",0,2,"All",FALSE,"All","All",1,1,"Measurement",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -61,"[P] Bradycardia or heart block with inpatient admission","Bradycardia or heart block with inpatient admission","Bradycardia or heart block with inpatient admission","rao@ohdsi.org","Pending peer review","","All events of Bradycardia or heart block or first occurrence of pace maker limited to inpatient visit","",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","317302, 320425","","2021-10-05","2023-09-25",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",30,0,"All",TRUE,"All","All",3,3,"ConditionOccurrence, DeviceExposure, ProcedureOccurrence",0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,,,,,1,1,,,,, -62,"[P][R] Seizure related finding ","Seizure related finding","Seizure related finding","rao@ohdsi.org","Pending peer review","","all events of Seizure related finding. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","377091, 4196708","https://forums.ohdsi.org/t/17895","2021-10-05","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -63,"Transverse myelitis or symptoms indexed on symptoms or diagnosis (1Ps, 0Era, 365W)","Transverse myelitis or symptoms indexed on symptoms or diagnosis (1Ps, 0Era, 365W)","Transverse myelitis or symptoms indexed on symptoms or diagnosis (1Ps, 0Era, 365W)","rao@ohdsi.org","Accepted","3.7.0","events with a diagnosis of transverse myelitis indexed on diagnosis of transverse myelitis, related spinal disease or symptoms of transverse myelitis, followed by a diagnosis of transverse myelitis within 30 days. Events have a 365 days washout period. The events persist for 1 day. Symptoms of Transverse Myelitis included asthenia, muscle weakness, myelitis, paresthesia","#Accepted, #Level2",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","Evan Minty","","79908, 139803, 443904","https://forums.ohdsi.org/t/17769","2021-10-05","2023-09-19",,"",,0,,,"ERA","0","fixed duration relative to initial event","StartDate",1,1,"All",FALSE,"All","All",2,1,"ConditionOccurrence",0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -64,"[P] Composite Flu-like symptoms fever, cough, malaise, fatigue, dyspnea, myalgia","Composite Flu-like symptoms fever, cough, malaise, fatigue, dyspnea, myalgia","Composite Flu-like symptoms fever, cough, malaise, fatigue, dyspnea, myalgia","rao@ohdsi.org","Pending peer review","","All events of flue like symptoms or signs","#Symptoms, #Signs",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","254761, 312437, 437663, 439926, 442752, 4041664, 4178904, 4272240, 43530714","https://forums.ohdsi.org/t/17895","2021-10-05","2023-09-25",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",14,0,"All",FALSE,"All","All",11,3,"ConditionOccurrence, Measurement, Observation",0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,,,,,,,,,, -65,"[W] Acute pancreatitis with inpatient admission","Acute pancreatitis with inpatient admission","Acute pancreatitis with inpatient admission","rao@ohdsi.org","Withdrawn","","Withdrawn and replaced by 205","",1,"","","","","","199074","","2021-10-05","2023-09-19",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",0,0,"All",TRUE,"All","All",1,1,"ConditionOccurrence",0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -66,"[W] Acute renal failure with inpatient admission","Acute renal failure with inpatient admission","Acute renal failure with inpatient admission","rao@ohdsi.org","Withdrawn","","Withdrawn by contributor before peer review","",1,"","","","","","197320","","2021-10-05","2023-09-19",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",0,0,"All",TRUE,"All","All",1,1,"ConditionOccurrence",0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -67,"[W] Hepatic failure with inpatient admission","Hepatic failure with inpatient admission","Hepatic failure with inpatient admission","rao@ohdsi.org","Withdrawn","","Withdrawn by contributor before peer review","",1,"","","","","","4245975","","2021-10-05","2023-09-19",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",0,0,"All",TRUE,"All","All",1,1,"ConditionOccurrence",0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -68,"[W] Heart failure with inpatient admission","Heart failure with inpatient admission","Heart failure with inpatient admission","rao@ohdsi.org","Withdrawn","","Withdrawn by contributor before peer review","",1,"","","","","","316139, 319835","","2021-10-05","2023-09-19",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",0,0,"All",TRUE,"All","All",1,1,"ConditionOccurrence",0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -69,"[W] Angioedema with inpatient admission","Angioedema with inpatient admission","Angioedema with inpatient admission","rao@ohdsi.org","Withdrawn","","Withdrawn by contributor before peer review","",1,"","","","","","432791","","2021-10-05","2023-09-19",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",0,0,"All",TRUE,"All","All",1,1,"ConditionOccurrence",0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -70,"[P] Stroke (ischemic or hemorrhagic) with inpatient admission","Stroke (ischemic or hemorrhagic) with inpatient admission","Stroke (ischemic or hemorrhagic) with inpatient admission","rao@ohdsi.org","Pending peer review","","all events of ischemic or hemorrhagic stroke in an inpatient or ER visit","",1,"","","","","","443454","","2021-10-05","2023-09-19",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",0,0,"All",TRUE,"All","All",1,1,"ConditionOccurrence",0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -71,"[P] Acute myocardial infarction with inpatient admission","Acute myocardial infarction with inpatient admission","Acute myocardial infarction with inpatient admission","rao@ohdsi.org","Pending peer review","","all events of acute myocardial infarction in an inpatient or ER visit","",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","314666, 4329847","https://forums.ohdsi.org/t/15900","2021-10-05","2023-09-25",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",30,0,"All",TRUE,"All","All",1,1,"ConditionOccurrence",0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -72,"[P] Influenza diagnosis or positive test result","Influenza diagnosis or positive test result","Influenza diagnosis or positive test result","rao@ohdsi.org","Pending peer review","","all events of influenza diagnosis, or positive influenza test result","",1,"","","","","","4183609, 4266367","","2021-10-05","2023-09-19",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",4,3,"ConditionOccurrence, Measurement, Observation",0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,,,,,,,,,, -74,"[P] Hemorrhagic stroke (intracerebral bleeding) with inpatient admission","Hemorrhagic stroke (intracerebral bleeding) with inpatient admission","Hemorrhagic stroke (intracerebral bleeding) with inpatient admission","rao@ohdsi.org","Pending peer review","","all events of hemorrhagic stroke while inpatient or ER setting.","",1,"Unknown","","","","","376713, 439847","","2021-10-05","2023-09-19",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",0,0,"All",TRUE,"All","All",1,1,"ConditionOccurrence",0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -75,"[P] Ischemic stroke with inpatient admission","Ischemic stroke with inpatient admission","Ischemic stroke with inpatient admission","rao@ohdsi.org","Pending peer review","","all events of ischemic stroke while inpatient or ER setting.","",1,"","","","","","443454","","2021-10-05","2023-09-19",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",0,0,"All",TRUE,"All","All",1,1,"ConditionOccurrence",0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -76,"[P] Transient ischemic attack with inpatient admission","Transient ischemic attack with inpatient admission","Transient ischemic attack with inpatient admission","rao@ohdsi.org","Pending peer review","","all events of transient ischemic attack while in inpatient or ER setting","",1,"","","","","","373503","","2021-10-05","2023-09-19",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",0,0,"All",TRUE,"All","All",1,1,"ConditionOccurrence",0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -77,"[P] Gastrointestinal bleeding with inpatient admission","Gastrointestinal bleeding with inpatient admission","Gastrointestinal bleeding with inpatient admission","rao@ohdsi.org","Pending peer review","","all events of gastrointestinal hemorrhage in inpatient or ER setting","",1,"","","","","","192671","","2021-10-05","2023-09-19",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",0,0,"All",TRUE,"All","All",1,1,"ConditionOccurrence",0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -78,"[P] Cardiac arrhythmia with inpatient admission","Cardiac arrhythmia with inpatient admission","Cardiac arrhythmia with inpatient admission","rao@ohdsi.org","Pending peer review","","all events of cardiac arrhythmia or treatments for cardiac arrhythmia in inpatient or ER setting","",1,"","","","","","313217, 44784217","","2021-10-05","2023-09-19",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",0,1,"All",FALSE,"All","All",4,4,"ConditionOccurrence, DeviceExposure, DrugExposure, ProcedureOccurrence",0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,1,1,1,,,,, -79,"[P] Dialysis with inpatient admission","Dialysis with inpatient admission","Dialysis with inpatient admission","rao@ohdsi.org","Pending peer review","","all events of dialysis in inpatient setting","",1,"","","","","","438624, 4027133","","2021-10-05","2023-09-19",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",0,0,"All",TRUE,"All","All",3,3,"ConditionOccurrence, Observation, ProcedureOccurrence",0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,,,,,1,,,,, -80,"[P] Extracorporeal Membrane Oxygenation with inpatient admission","Extracorporeal Membrane Oxygenation with inpatient admission","Extracorporeal Membrane Oxygenation with inpatient admission","rao@ohdsi.org","Pending peer review","","all events of Extracorporeal Membrane Oxygenation in inpatient setting","",1,"","","","","","","","2021-10-05","2023-09-19",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",0,0,"All",TRUE,"All","All",1,1,"ProcedureOccurrence",0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,1,,,,, -81,"[P] Cesarean section","Cesarean section","Cesarean section","rao@ohdsi.org","Pending peer review","","all events of Cesarean section","",1,"","","","","","","","2021-10-05","2023-09-19",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ProcedureOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,1,,,,, -82,"[P] Intensive services during hospitalization","Intensive services during hospitalization","Intensive services during hospitalization","rao@ohdsi.org","Pending peer review","","all events of intensive care service in an inpatient setting","",1,"","","","","","40481547","","2021-10-05","2023-09-19",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",0,0,"All",TRUE,"All","All",5,3,"Measurement, Observation, ProcedureOccurrence",0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,,,,,1,,,,, -84,"[P] SARS-CoV-2 test (1pos) or COVID-19 diagnosis with (1pos or 0 neg 0d to 3d)","SARS-CoV-2 test (1pos) or COVID-19 diagnosis with (1pos or 0 neg 0d to 3d)","SARS-CoV-2 test (1pos) or COVID-19 diagnosis with (1pos or 0 neg 0d to 3d)","rao@ohdsi.org","Pending peer review","","all events of positive SAR-CoV-2 test result or Covid-19 diagnosis without a negative test result on or within 3 days of diagnosis","",1,"","","","","","439676, 37311061","","2021-10-09","2023-09-19",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",2,2,"ConditionOccurrence, Measurement",0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -86,"[W] SARS-CoV-2 test positive or negative result","SARS-CoV-2 test positive or negative result","SARS-CoV-2 test positive or negative result","rao@ohdsi.org","Withdrawn","","Withdrawn by contributor before peer review","",1,"","","","","","","","2021-10-11","2023-09-19",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",0,0,"First",FALSE,"All","First",2,1,"Measurement",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,, -87,"[W] SARS-CoV-2 test","SARS-CoV-2 test","SARS-CoV-2 test","rao@ohdsi.org","Withdrawn","","Withdrawn by contributor before peer review","",1,"","","","","","","","2021-10-21","2023-09-19",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"Measurement",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -95,"[P] Delirium","Delirium","Delirium","rao@ohdsi.org","Pending peer review","","first occurrence of Delirium","#Symptoms",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","373995","https://forums.ohdsi.org/t/17895","2022-02-04","2023-09-25",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",14,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -100,"[P][R] Alzheimer's disease","Alzheimer's disease","Alzheimer's disease","ryan@ohdsi.org","Pending peer review","","all events of Alzheimer's disease. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","378419","","2022-02-06","2023-09-25",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -119,"Systemic lupus erythematosus indexed on signs, symptoms, treatment, or diagnosis (FP)","Systemic lupus erythematosus indexed on signs, symptoms, treatment, or diagnosis (FP)","Systemic lupus erythematosus indexed on signs, symptoms, treatment, or diagnosis (FP)","rao@ohdsi.org","Accepted","3.10.0","first signs and symptoms suggestive of Systemic lupus erythematosus (SLE) or first treatment suggestive of SLE with SLE diagnosis with 90 days","#PhenotypePhebruary, #2023, #SystemicLupusErythematosus",1,"Joel Swerdel, Daniel Prieto-Alhambra","","","","","138525, 194133","https://forums.ohdsi.org/t/18223","2022-02-10","2023-09-19",,"",,0,,,"ERA","0","end of continuous observation",,,0,"First",FALSE,"All","First",2,2,"ConditionOccurrence, DrugExposure",0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,,,,1,,,,,,, -123,"[P] Suicide attempt or self inflicted injury","Suicide attempt or self inflicted injury","Suicide attempt or self inflicted injury","rao@ohdsi.org","Pending","","Suicide or self inflicted events","#Submitted",1,"Azza A Shoaibi","'0000-0002-4949-7236'","'OHDSI'","","","444362","","2022-02-11","2023-09-25",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",30,0,"All",FALSE,"All","All",2,2,"ConditionOccurrence, Observation",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,,,,,,,,,, -134,"[P] Attention Deficit Hyperactivity Disorder indexed on diagnosis or treatment","Attention Deficit Hyperactivity Disorder indexed on diagnosis or treatment","Attention Deficit Hyperactivity Disorder indexed on diagnosis or treatment","ryan@ohdsi.org","Pending peer review","","First occurrence of Attention-deficit hyperactivity disorder (ADHD) condition or related procedures, indexed on the earliest occurrence of ADHD condition, procedure or treatment (limited to drug exposure followed by a related condition or procedure), with 365d prior observation, exit at end of observation","#PhenotypePhebruary",1,"Patrick B. Ryan","","","","","438409, 4047120","https://forums.ohdsi.org/t/15901","2022-02-13","2023-09-19",,"",,0,,,"ERA","0","end of continuous observation",,,1,"First",FALSE,"All","First",3,3,"ConditionOccurrence, DrugExposure, ProcedureOccurrence",0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,1,,1,,,,, -142,"[P] ST elevated Myocardial infarction or Acute MI with ST elevation","ST elevated Myocardial infarction or Acute MI with ST elevation","Earliest of ST elevated Myocardial infarction or Acute MI with ST elevation","rao@ohdsi.org","Pending","","Earliest of ST elevated Myocardial infarction or Acute Myocardial Infarction with ST elevation","#PhenotypePhebruary, #2022",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","314666, 4296653, 4329847","https://forums.ohdsi.org/t/15900","2022-02-15","2023-09-25",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",30,0,"All",FALSE,"All","All",2,1,"ConditionOccurrence",0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -189,"[P][R] Right upper quadrant pain ","Right upper quadrant pain","Right upper quadrant pain","rao@ohdsi.org","Pending peer review","","all events of Right upper quadrant pain. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","198263","https://forums.ohdsi.org/t/17895","2022-06-29","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -190,"[P][R] Swollen abdomen ","Swollen abdomen","Swollen abdomen","rao@ohdsi.org","Pending peer review","","all events of Swollen abdomen. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","442597, 4152351","https://forums.ohdsi.org/t/17895","2022-06-29","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -191,"[P] Fatigue, Asthenia, Malaise, Lethargy, Anorexia","Fatigue, Asthenia, Malaise, Lethargy, Anorexia","Fatigue, Asthenia, Malaise, Lethargy, Anorexia","rao@ohdsi.org","Pending peer review","","events with a diagnosis of Fatigue, Asthenia, Malaise, Lethargy, Anorexia but not senile, cancer or stroke related asthenia","#Symptoms",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","439926, 4272240","https://forums.ohdsi.org/t/17895","2022-06-29","2023-09-25",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",14,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -192,"[P] Skin, Nasal or oral mucosal bleeding events often seen during thrombocytopenia","Skin, Nasal or oral mucosal bleeding events often seen during thrombocytopenia","Skin, Nasal or oral mucosal bleeding events often seen during thrombocytopenia","rao@ohdsi.org","Pending peer review","","all events of Skin, Nasal or oral mucosal bleeding events such as epistaxis. Does not include gastrointestinal bleeding. Limited to bleeding common during thrombocytopenia","#Symptoms",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","4096682",,"2022-06-29","2023-09-25",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",14,0,"All",FALSE,"All","All",3,3,"ConditionOccurrence, Observation, ProcedureOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,,,,,1,,,,, -193,"[P] Jaundice or Itching","Jaundice or Itching","Jaundice or Itching","rao@ohdsi.org","Pending peer review","","events of jaundice or itching","#Symptoms",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","137977, 435656","https://forums.ohdsi.org/t/17895","2022-06-29","2023-09-25",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",14,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -194,"[P] Encephalopathy or its presentations","Encephalopathy or its presentations","Encephalopathy or its presentations","rao@ohdsi.org","Pending peer review","","events Encephalopathy or its presentations","#Symptoms",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","436222","https://forums.ohdsi.org/t/17895","2022-06-29","2023-09-25",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",14,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -195,"[P] Primary or malignant urothelial bladder cancer","Primary or malignant urothelial bladder cancer","Primary or malignant urothelial bladder cancer","rao@ohdsi.org","Pending peer review","","all events of Primary or malignant urothelial bladder cancer","",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","196360, 197508","","2022-06-30","2023-09-19",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -196,"[P] Rheumatoid arthritis or complications","Rheumatoid arthritis or complications","Rheumatoid arthritis or complications","rao@ohdsi.org","Pending peer review","","All events of rheumatoid arthritis or complications","#Disease",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","80809","","2022-06-30","2023-09-19",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",2,2,"ConditionOccurrence, Observation",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,,,,,,,,,, -197,"[P] Coronary Artery Disease from vessel disease to ischemic injury","Coronary Artery Disease from vessel disease to ischemic injury","Coronary Artery Disease from vessel disease to ischemic injury","rao@ohdsi.org","Pending peer review","","all occurrence of coronary artery disease","",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","318443, 764123","","2022-06-30","2023-09-19",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",99999,0,"All",FALSE,"All","All",2,2,"ConditionOccurrence, Observation",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,,,,,,,,,, -198,"[P] Crohns disease or its complication","Crohns disease or its complication","Crohns disease or its complication","rao@ohdsi.org","Pending peer review","","All events of crohns disease or complications","#Disease",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","201606","","2022-06-30","2023-09-25",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",365,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -199,"[P] Major Depressive Disorder","Major Depressive Disorder","Major Depressive Disorder","rao@ohdsi.org","Pending peer review","","All events of major depressive disorder","#Disease",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","440383","","2022-06-30","2023-09-25",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",365,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -200,"[P] Psoriasis of skin","Psoriasis of skin","Psoriasis of skin","rao@ohdsi.org","Pending peer review","","All events of psoriasis of skin","#Disease",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","140168","","2022-06-30","2023-09-25",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",1095,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -201,"[P] Ulcerative colitis or complications","Ulcerative colitis or complications","Ulcerative colitis or complications","rao@ohdsi.org","Pending peer review","","All events of Ulcerative colitis or complications","#Disease",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","81893","","2022-06-30","2023-09-25",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",730,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,7,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -207,"[P] Acquired Pure Red Cell Aplasia","Acquired Pure Red Cell Aplasia","Acquired Pure Red Cell Aplasia","rao@ohdsi.org","Pending peer review","","earliest of acquired pure red cell aplasia indexed on anemia, with no congenital or genetic anemia or constitutional aplasia, and no erroneous measurements such as normal hemoglobin or hematocrit. Persons should not have constitutional aplasia as it represents congenital form of aplasia and should not have bone marrow transplantation","#DME",1,"Azza Shoaibi","'0000-0002-6976-2594'","'OHDSI'","","","26942, 138723, 4144746","https://forums.ohdsi.org/t/17854","2022-11-10","2024-09-11",,"",,0,,,"ERA","0","end of continuous observation",,,6,"All",FALSE,"All","First",4,2,"ConditionOccurrence, Measurement",0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,, -208,"[P] Febrile Neutropenia or Neutropenic Fever","Febrile Neutropenia or Neutropenic Fever","Febrile Neutropenia or Neutropenic Fever","rao@ohdsi.org","Pending peer review","","All events of febrile neutropenia, indexed on the diagnosis of febrile neutropenia or a fever (diagnosis or measurement) cooccurring with neutropenia (diagnosis or measurement) within 1 day , or a diagnosis of clinically significant infection cooccurring with neutropenia (diagnosis or measurement) within 1 day. Restricted to events overlapping with in an inpatient or emergency room visit and excluding events with a normal neutrophil count (ANC) on index.","#DME",1,"'Gowtham A. Rao', 'Azza Shoaibi'","'0000-0002-4949-7236', '0000-0002-6976-2594'","'OHDSI'","","","257011, 437663, 4170143, 4250734","https://forums.ohdsi.org/t/17876","2022-11-10","2023-09-19",,"",,0,,,"ERA","30","fixed duration relative to initial event","EndDate",3,2,"All",TRUE,"All","All",8,3,"ConditionOccurrence, Measurement, Observation",0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,,,,,,,,,, -209,"[P] Hemolytic Anemia Extra corpuscular ex hgpathy, memb defect, g6pd","Hemolytic Anemia Extra corpuscular ex hgpathy, memb defect, g6pd","Hemolytic Anemia Extra corpuscular ex hgpathy, memb defect, g6pd","rao@ohdsi.org","Pending peer review","","all events of hemolytic anemia, indexed on anemia or hemolysis, without congenital or hereditary causes of hemolytic anemia of membrane, enzyme or RBC structure","",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","435503, 439777, 441269, 4250490","https://forums.ohdsi.org/t/17856","2022-11-11","2023-09-19",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",0,9,"All",FALSE,"All","All",5,2,"ConditionOccurrence, Measurement",0,0,12,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -210,"[P] Hemolytic Anemia, without Extra corpuscular ex hgpathy, memb defect","Hemolytic Anemia, without Extra corpuscular ex hgpathy, memb defect","Hemolytic Anemia Extra corpuscular ex hgpathy, memb defect","rao@ohdsi.org","Pending peer review","","all events of hemolytic anemia, indexed on anemia or hemolysis, without congenital or hereditary causes of hemolytic anemia of membrane, or RBC structure. Persons with enzyme disorder (e.g. G-6-PD deficiency) are not excluded","#DME",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","435503, 439777, 441269, 4250490","https://forums.ohdsi.org/t/17856","2022-11-11","2024-10-02",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",0,7,"All",FALSE,"All","All",5,2,"ConditionOccurrence, Measurement",0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -211,"[P] Pancytopenia, Acquired","Pancytopenia, Acquired","Pancytopenia, Acquired","rao@ohdsi.org","Pending peer review","","All events of Pancytopenia, indexed on diagnosis or lab results. Excluded are patients with severe congenital blood disorders that may cause pancytopenia any time prior to 7 days post index. Exist cohort at 60 days post end date. Repeated events will be combined into events eras if they are within 365 days of each other.","#DME",1,"'Gowtham A. Rao', 'Azza Shoaibi'","'0000-0002-4949-7236', '0000-0002-6976-2594'","'OHDSI'","","","432881","","2022-11-11","2024-09-11",,"",,0,,,"ERA","365","fixed duration relative to initial event","EndDate",60,3,"All",FALSE,"All","All",2,2,"ConditionOccurrence, Measurement",0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -213,"[D] Acquired Neutropenia or unspecified leukopenia (21Pe, 365Era)","Acquired Neutropenia or unspecified leukopenia (21Pe, 365Era)","Neutropenia or unspecified leukopenia","rao@ohdsi.org","Accepted","3.11.0","All events of neutropenia indexed on diagnosis or lab results, with no congenital or genetic neutropenia all days pre to 7 days post index. Also excluded, events with normal neutrophil count or a diagnosis of Neutrophilia on index. patients exit 21 days post end date or with the occurrence of a normal neutrophil count. Reoccurring events for the same patients will be combined into event eras if they are within 365 days of each other.","#PhenotypePhebruary, #2023, #Neutropenia, #DME",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","Anna Ostropolets","","435224","https://forums.ohdsi.org/t/17409","2022-11-11","2024-09-11",,"",,0,,,"ERA","365","fixed duration relative to initial event","EndDate",21,3,"All",FALSE,"All","All",3,2,"ConditionOccurrence, Measurement",0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -214,"[P] Acquired Isolated Neutropenia or unspecified leukopenia","Acquired Isolated Neutropenia or unspecified leukopenia","Acquired Isolated Neutropenia or unspecified leukopenia","rao@ohdsi.org","Pending peer review","","all events of neutropenia indexed on diagnosis or lab results with no congenital or genetic neutropenia, and no other cell lines reduced at the same time","",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","435224","https://forums.ohdsi.org/t/17409","2022-11-11","2023-09-19",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",0,9,"All",FALSE,"All","All",3,2,"ConditionOccurrence, Measurement",0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -215,"[P] Isolated Immune Thrombocytopenia","Isolated Immune Thrombocytopenia","Isolated Immune Thrombocytopenia","rao@ohdsi.org","Pending peer review","","events of Immune Thrombocytopenia (ITP) with no evidence of congenital or genetic thrombocytopenia, and no simultaneous neutropenia, pancytopenia, bone marrow involvement, anemia.","#DME",1,"'Gowtham A. Rao', 'Azza Shoaibi'","'0000-0002-4949-7236', '0000-0002-6976-2594'","'OHDSI'","","","433749, 4103532","","2022-11-11","2023-09-19",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",0,8,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -216,"[P] Isolated Immune Thrombocytopenia in absence of common thrombocytopenia causes","Isolated Immune Thrombocytopenia in absence of common thrombocytopenia causes","Isolated Immune Thrombocytopenia in absence of common thrombocytopenia causes","rao@ohdsi.org","Pending peer review","","events of Immune Thrombocytopenia (ITP) with no evidence of congenital or genetic thrombocytopenia, and no simultaneous neutropenia, pancytopenia, bone marrow involvement, anemia. Persons exit after 180 days or when they have normal platelet count. Also no evidence of common causes of thrombocytopenia including hypersplenism, antiphospholipid syndrome, paroxysmal noctural hemoglobinuria, hemolytic uremic syndrome, thrombotic microangiopathy, major autoimmune disorders, chronic liver disease, pregnancy HELLP, tumors of hematopoietic cells or nutritional deficiency","#DME",1,"'Gowtham A. Rao', 'Azza Shoaibi'","'0000-0002-4949-7236', '0000-0002-6976-2594'","'OHDSI'","","","433749, 4103532","","2022-11-11","2024-09-11",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",180,20,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,20,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -217,"[W] Thrombotic microangiopathy (TMA) or Microangiopathic hemolytic anemia (MAHA)","Thrombotic microangiopathy (TMA) or Microangiopathic hemolytic anemia (MAHA)","Thrombotic microangiopathy (TMA) or Microangiopathic hemolytic anemia (MAHA)","rao@ohdsi.org","Pending peer review","","Earliest events of Immune Thrombotic microangiopathy or microangiopathic hemolytic anemia indexed on the diagnosis or its treatment or investigation. Events with congenital or genetic thrombocytopenia all time prior to 7 days post index are excluded. Also excluded are patients with Platelet count > 150. cohort exit is 7 days post end date or an occurrence of a normal platelet measure .","#DME",1,"'Gowtham A. Rao', 'Azza Shoaibi'","'0000-0002-4949-7236', '0000-0002-6976-2594'","'OHDSI'","","","313800, 4119134","","2022-11-11","2023-10-16",,"","same as 741",0,,,"ERA","0","fixed duration relative to initial event","EndDate",7,2,"All",FALSE,"All","First",4,4,"ConditionOccurrence, DrugExposure, Measurement, ProcedureOccurrence",0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,1,,1,,,,, -218,"[P] Rhabdomyolysis","Rhabdomyolysis","Rhabdomyolysis","rao@ohdsi.org","Pending peer review","","All events of rhabdomyolysis, indexed on a diagnosis or an observation of of Rhabdomyolysis or Myoglobinuria or a diagnosis of Muscle, ligament and fascia disorders co-occurring with a measurement of creatine kinase that is 5 times above the normal range- within 7 days. With no such events in the last 180 days washout period. Restricted to events that overlap with an inpatient visit. Events are excluded if they had recent trauma such as burn, drowning, hypothermia, hyperthermia, hyperpyrexia, crush syndrome, sepsis, march myoglobinuria, exertional rhabdomyolysis or alcohol intoxication, in the last 14 days including index. cohort exit 0 days post end date.","#DME",1,"'Gowtham A. Rao', 'Azza Shoaibi'","'0000-0002-4949-7236', '0000-0002-6976-2594'","'OHDSI'","","","137967, 4345578","","2022-11-11","2024-09-11",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",3,13,"All",FALSE,"All","All",3,2,"ConditionOccurrence, Observation",0,0,14,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,,,,,,,,,, -219,"[P] Sudden Cardiac arrest or cardiac death","Sudden Cardiac arrest or cardiac death","Sudden Cardiac arrest or cardiac death","rao@ohdsi.org","Pending peer review","","Earliest event of Sudden Cardiac arrest or Cardiac death, indexed on diagnosis or observation of cardiac arrest or cardiac death or a procedures of resuscitation. Restricting to events overlapping an inpatient or ER visit. Cohort exist is 1 day post cohort end date.","#DME",1,"'Gowtham A. Rao', 'Azza Shoaibi'","'0000-0002-4949-7236', '0000-0002-6976-2594'","'OHDSI'","","","321042","","2022-11-11","2024-09-11",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",1,1,"All",FALSE,"All","First",3,3,"ConditionOccurrence, Observation, ProcedureOccurrence",0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,1,,,,, -220,"[P] Angioedema","Angioedema","Angioedema","rao@ohdsi.org","Pending peer review","","all events of angioedema, with no recent cardiac edema, cellulitis, erysipelas, dermatitis or eczema, lymphedema or insect bites","",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","139900","","2022-11-11","2023-09-25",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",30,7,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -221,"[P] Anaphylaxis Non Environmental exposure related","Anaphylaxis Non Environmental exposure related","Anaphylaxis Non Environmental exposure related","rao@ohdsi.org","Pending peer review","","all events of anaphylaxis that is not due to environmental etiology and no food, substance, insect bite or sting, poisoning as an explanation for anaphylaxis","",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","441202","https://forums.ohdsi.org/t/17835","2022-11-11","2023-09-25",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",30,6,"All",FALSE,"All","All",2,2,"ConditionOccurrence, Observation",0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,,,,,,,,,, -222,"[P] Stevens-Johnson syndrome, toxic epidermal necrolysis spectrum","Stevens-Johnson syndrome, toxic epidermal necrolysis spectrum","Stevens-Johnson syndrome, toxic epidermal necrolysis spectrum","rao@ohdsi.org","Pending peer review","","Earliest event of Stevens-Johnson syndrome, Toxic epidermal necrolysis spectrum, indexed on diagnosis of Stevens-Johnson syndrome, Toxic epidermal necrolysis spectrum. Restricting to events overlapping an inpatient or ER visit. Cohort exist is 1 day post cohort end date.","#DME",1,"'Gowtham A. Rao', 'Azza Shoaibi'","'0000-0002-4949-7236', '0000-0002-6976-2594'","'OHDSI'","","","141651","","2022-11-11","2024-09-11",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",1,1,"All",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,, -223,"[P] Posterior reversible encephalopathy syndrome PRES","Posterior reversible encephalopathy syndrome PRES","Posterior reversible encephalopathy syndrome PRES","rao@ohdsi.org","Pending peer review","","all events of posterior reversible encephalopathy syndrome with no hypertensive encephalopathy or eclampsia","",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","42872891","","2022-11-12","2023-09-19",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",0,2,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -224,"[P] Long QT Syndrome or QT prolonged (Acquired)","Long QT Syndrome or QT prolonged (Acquired)","Long QT Syndrome or QT prolonged (Acquired)","rao@ohdsi.org","Pending peer review","","all events of Long QT or QT prolonged. Exclude persons with congenital QT syndrome","",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","314664","","2022-11-12","2023-09-19",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",7,2,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -225,"[P] Drug-induced Lupus","Drug-induced Lupus","Drug-induced Lupus","rao@ohdsi.org","Pending peer review","","all events of drug induced lupus with no Systemic Lupus Erythematosus","",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","4063581, 4198217","","2022-11-12","2023-09-19",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",0,1,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -226,"[P][R] Drug reaction with eosinophilia and systemic symptoms ","Drug reaction with eosinophilia and systemic symptoms","Drug reaction with eosinophilia and systemic symptoms","rao@ohdsi.org","Pending peer review","","all events of Drug reaction with eosinophilia and systemic symptoms. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","45765791","","2022-11-12","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -227,"[P] Severe Cutaneous Adverse Reaction SCAR (SJS+TEN+DRESS+EM)","Severe Cutaneous Adverse Reaction SCAR (SJS+TEN+DRESS+EM)","Severe Cutaneous Adverse Reaction SCAR (SJS+TEN+DRESS+EM)","rao@ohdsi.org","Pending peer review","","all events of Drug Rash With Eosinophilia and Systemic Symptoms (DRESS), Erythema Multiforme, Stevens-Johnson Syndrome or Toxic-Epidermal necrolysis","",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","132702, 141651, 45765791","","2022-11-12","2023-09-19",,"",,0,,,"ERA","180","fixed duration relative to initial event","EndDate",3,0,"All",FALSE,"All","All",3,1,"ConditionOccurrence",0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -228,"[P] Severe Cutaneous Adverse Reaction SCAR (SJS+TEN+DRESS)","Severe Cutaneous Adverse Reaction SCAR (SJS+TEN+DRESS)","Severe Cutaneous Adverse Reaction SCAR (SJS+TEN+DRESS)","rao@ohdsi.org","Pending peer review","","all events of Drug Rash With Eosinophilia and Systemic Symptoms (DRESS), Stevens-Johnson Syndrome or Toxic-Epidermal necrolysis","",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","141651, 45765791","","2022-11-12","2023-09-19",,"",,0,,,"ERA","180","fixed duration relative to initial event","EndDate",3,0,"All",FALSE,"All","All",2,1,"ConditionOccurrence",0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -229,"[P] Progressive multifocal leukoencephalopathy","Progressive multifocal leukoencephalopathy","Progressive multifocal leukoencephalopathy","rao@ohdsi.org","Pending peer review","","Earliest occurrence of progressive multifocal leukoencephalopathy, indexed on diagnosis of multifocal leukoencephalopathy. Cohort exist at the end of observation period","#DME",1,"'Gowtham A. Rao', 'Azza Shoaibi'","'0000-0002-4949-7236', '0000-0002-6976-2594'","'OHDSI'","","","433957","","2022-11-12","2024-09-11",,"",,0,,,"ERA","0","end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,, -230,"[P] Autoimmune hepatitis","Autoimmune hepatitis","Autoimmune hepatitis","rao@ohdsi.org","Pending peer review","","all events of autoimmune hepatitis with no chronic liver diseases that may have similar presentation up to 365days prior such as viral hepatitis, drug induced liver injury, alcoholic liver disease, and no systemic lupus erythematosus in past 365 days","",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","200762","","2022-11-12","2023-09-19",,"",,0,,,"ERA","365","fixed duration relative to initial event","EndDate",365,2,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -231,"[P][R] Erythema multiforme ","Erythema multiforme","Erythema multiforme","rao@ohdsi.org","Pending peer review","","all events of Erythema multiforme. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","132702","","2022-11-12","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -232,"[P] Paresthesia","Paresthesia","Paresthesia","rao@ohdsi.org","Pending peer review","","all events of paresthesia","#Symptoms",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","4090425","https://forums.ohdsi.org/t/17895","2022-11-12","2023-09-25",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",90,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -233,"[P] Hemorrhagic stroke","Hemorrhagic stroke","Hemorrhagic stroke","rao@ohdsi.org","Pending peer review","","all events of hemorrhagic stroke during an inpatient or ER visit","",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","376713, 439847","","2022-11-12","2023-09-19",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",90,1,"All",TRUE,"All","All",1,1,"ConditionOccurrence",0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -234,"Appendicitis (1Pe, 180Era)","Appendicitis (1Pe, 180Era)","Appendicitis (1Pe, 180Era)","rao@ohdsi.org","Accepted","3.11.0","events of appendicitis with an inpatient or ER visit with no events in 365 days clean window","#PhenotypePhebruary, #2023",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","Azza Shoaibi","","440448, 441604","https://forums.ohdsi.org/t/18188","2022-11-12","2023-09-19",,"",,0,,,"ERA","180","fixed duration relative to initial event","EndDate",1,0,"All",TRUE,"All","All",1,1,"ConditionOccurrence",0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -235,"[P] Guillain Barre syndrome inpatient","Guillain Barre syndrome inpatient","Guillain Barre syndrome inpatient","rao@ohdsi.org","Pending peer review","","earliest event of Guillain Barre Syndrome during inpatient or ER stay","",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","374925","","2022-11-12","2023-09-25",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",365,0,"All",TRUE,"All","All",1,1,"ConditionOccurrence",0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -236,"[P] Idiopathic Peripheral Neuropathy","Idiopathic Peripheral Neuropathy","Idiopathic Peripheral Neuropathy","rao@ohdsi.org","Pending peer review","","all events of idiopathic peripheral neuropathy","",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","375806, 4175154","","2022-11-12","2023-09-25",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",730,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -237,"[P] Kawasaki disease","Kawasaki disease","Kawasaki disease","rao@ohdsi.org","Pending peer review","","events of Kawasaki's disease","",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","314381","","2022-11-12","2023-09-25",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",730,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -238,"[P][R] Optic neuritis ","Optic neuritis","Optic neuritis","rao@ohdsi.org","Pending peer review","","all events of Optic neuritis. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","374954","","2022-11-12","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -239,"[P] Narcolepsy events","Narcolepsy events","Narcolepsy events","rao@ohdsi.org","Pending peer review","","All events of Narcolepsy (includes cataplexy with narcolepsy) with no such events in prior clean window period (365 days). Persons should not be diagnosed with hypersomnia. Persons exit the cohort on end_date + 90 days as persons are assumed to have the condition for at least 90 days","#AESI",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","436100","https://forums.ohdsi.org/t/17784","2022-11-12","2023-09-21",,"",,0,,,"ERA","365","fixed duration relative to initial event","EndDate",90,1,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -240,"[P] Muscle weakness or monoplegia","Muscle weakness or monoplegia","Muscle weakness or monoplegia","rao@ohdsi.org","Pending peer review","","events of muscle weakness or monoplegia with no events in prior 365 days clean window","#Symptoms",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","79908","","2022-11-12","2023-09-25",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",30,0,"All",FALSE,"All","All",2,2,"ConditionOccurrence, Observation",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,,,,,,,,,, -241,"[P][R] Urticaria ","Urticaria","Urticaria","rao@ohdsi.org","Pending peer review","","all events of Urticaria. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","139900","https://forums.ohdsi.org/t/17895","2022-11-12","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -243,"[P] Tinnitus","Tinnitus","Tinnitus","rao@ohdsi.org","Pending peer review","","events of tinnitus","#Symptoms",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","377575","https://forums.ohdsi.org/t/17895","2022-11-12","2023-09-25",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",180,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -244,"[P] Dizziness or giddiness including motion sickness and vertigo","Dizziness or giddiness including motion sickness and vertigo","Dizziness or giddiness including motion sickness and vertigo","rao@ohdsi.org","Pending peer review","","events of dizziness","#Symptoms",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","433316, 4223938","https://forums.ohdsi.org/t/17895","2022-11-12","2023-09-25",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",90,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -245,"[P] Hepatic Thrombosis","Hepatic Thrombosis","Hepatic Thrombosis","rao@ohdsi.org","Pending peer review","","first event of hepatic thrombosis","",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","196715","","2022-11-12","2023-09-19",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",0,0,"First",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,,,,,,,,,,, -246,"[P] Portal vein thrombosis","Portal vein thrombosis","Portal vein thrombosis","rao@ohdsi.org","Pending peer review","","first event of portal vein thrombosis","",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","199837","","2022-11-12","2023-09-19",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",0,0,"First",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,,,,,,,,,,, -247,"[P] Deep Vein Thrombosis DVT","Deep Vein Thrombosis DVT","Deep Vein Thrombosis DVT","rao@ohdsi.org","Pending peer review","","first event of non obstetric Deep Vein Thrombosis","",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","4133004, 43531681","https://forums.ohdsi.org/t/17769","2022-11-12","2023-09-19",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",0,0,"First",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,,,,,,,,,,, -248,"[P] Disseminated intravascular coagulation DIC in inpatient visit","Disseminated intravascular coagulation DIC in inpatient visit","Disseminated intravascular coagulation DIC in inpatient visit","rao@ohdsi.org","Pending peer review","","events of Disseminated Intravascular Coagulation in an inpatient or ER setting with no events in prior 365 day window","",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","436093","","2022-11-12","2023-09-25",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",30,0,"All",TRUE,"All","All",1,1,"ConditionOccurrence",0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -249,"[P] Ischemic (Non-hemorrhagic) Stroke In Inpatient","Ischemic (Non-hemorrhagic) Stroke In Inpatient","Ischemic (Non-hemorrhagic) Stroke In Inpatient","rao@ohdsi.org","Pending peer review","","events of cerebral infarction while in an inpatient or ER setting","",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","443454","","2022-11-12","2023-09-25",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",365,0,"All",TRUE,"All","All",1,1,"ConditionOccurrence",0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -251,"[P] Acute pancreatitis","Acute pancreatitis","Acute pancreatitis","rao@ohdsi.org","Pending peer review","","events of acute pancreatitis in an inpatient or emergency setting and no history of chronic pancreatitis or hereditary or congenital pancreatitis","",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","4192640, 199074","https://forums.ohdsi.org/t/17848","2022-11-15","2023-09-25",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",90,3,"All",FALSE,"All","All",2,1,"VisitOccurrence",0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,1,,,,,,,,, -253,"[P] Drug Induced Acute pancreatitis","Drug Induced Acute pancreatitis","Drug Induced Acute pancreatitis","rao@ohdsi.org","Pending peer review","","events of acute pancreatitis in an inpatient or emergency setting with no events in prior washout window of 365 days, and no history of chronic pancreatitis or hereditary or congenital pancreatitis. Events with other explanations for acute pancreatitis such as alcoholic pancreatitis, severe alcoholism, recent alcohol intoxication, cholangitis or cholecystitits, biliary tract disease, endoscopic retrograde cholangiopancreatography, intestinal ischemia or obstruction or not eligible","",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","4192640, 199074, 4340961","https://forums.ohdsi.org/t/17848","2022-11-15","2023-09-25",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",90,12,"All",FALSE,"All","All",2,1,"VisitOccurrence",0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,1,,,,,,,,, -254,"[P] Drug Resistant Epilepsy","Drug Resistant Epilepsy","Drug Resistant Epilepsy","rao@ohdsi.org","Pending peer review","","first occurrence of epilepsy in inpatient, of subsequent epilepsy in an outpatient setting after another outpatient epilepsy visit more than 30 days before, or anti-epileptic drug on or after a diagnosis of epilepsy. Limit to persons with at least two different anti epilepsy drug or diagnosis of intractable epilepsy on or after index date","",1,"Mathew Spotnitz","","","","","377091, 380378, 4029498","https://forums.ohdsi.org/t/17569","2022-11-17","2023-09-19",,"",,0,,,"ERA","0","end of continuous observation",,,2,"First",FALSE,"All","First",3,2,"ConditionOccurrence, DrugExposure",0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,,,,1,,,,,,, -255,"[P] Alzheimer's disease (based on Imfeld, 2013)","Alzheimer's disease (based on Imfeld, 2013)","Alzheimer's disease (based on Imfeld, 2013)","rao@ohdsi.org","Pending peer review","","this is an approximation of algorithm published by Imfeld et.al 2013","",1,"","","","","","378419, 4182210","","2022-11-18","2023-09-19",,"",,0,,,"ERA","0","end of continuous observation",,,3,"First",FALSE,"All","First",3,2,"ConditionOccurrence, DrugExposure",365,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,,,,1,,,,,,, -256,"[P] Facial Palsy lower motor neuron including Bells Palsy","Facial Palsy lower motor neuron including Bells Palsy","Facial Palsy lower motor neuron including Bells Palsy","rao@ohdsi.org","Pending peer review","","events of facial palsy with 183 days washout period. Remove persons with congenital facial palsy. Remove events with upper motor neuron disease suggestive of stroke","#AESI",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","374923, 4091559","https://forums.ohdsi.org/t/17788","2022-11-22","2023-09-21",,"",,0,,,"ERA","180","fixed duration relative to initial event","EndDate",180,3,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,,,,,,,,,,, -257,"[P] Emergency room visits or code","Emergency room visits or code","Emergency room visits or code","rao@ohdsi.org","Pending peer review","","All events of Emergency Room visits or code","#Visits",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","","","2022-11-22","2023-09-19",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",4,3,"Observation, ProcedureOccurrence, VisitOccurrence",0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,,,,1,,,,, -258,"[P] Anaphylaxis or Anaphylactic shock events","Anaphylaxis or Anaphylactic shock events","Anaphylaxis or Anaphylactic shock events","rao@ohdsi.org","Pending peer review","","all events of anaphylaxis or anaphylaxis shock due to serum with no events in prior clean window","",1,"Erica Voss","","","","","441202","https://forums.ohdsi.org/t/16033","2022-11-28","2023-09-19",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -259,"[P] Anaphylaxis all cause","Anaphylaxis all cause","Anaphylaxis all cause","rao@ohdsi.org","Pending peer review","","all events of anaphylaxis","",1,"Gowtham A. Rao, Andrea Noel","'0000-0002-4949-7236'","'OHDSI'","","","441202","https://forums.ohdsi.org/t/18193","2022-11-28","2023-09-25",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",14,0,"All",FALSE,"All","All",2,2,"ConditionOccurrence, Observation",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,,,,,,,,,, -260,"[P] ST elevated myocardial infarction with inpatient admission","ST elevated myocardial infarction with inpatient admission","ST elevated myocardial infarction with inpatient admission","rao@ohdsi.org","Pending peer review","","all events of ST segment acute myocardial infarction in an inpatient or ER visit","",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","314666, 4296653, 4329847","https://forums.ohdsi.org/t/15900","2022-11-29","2023-09-25",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",30,0,"All",TRUE,"All","All",2,1,"ConditionOccurrence",0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -261,"[P] Non ST elevated myocardial infarction with inpatient admission","Non ST elevated myocardial infarction with inpatient admission","Non ST elevated myocardial infarction with inpatient admission","rao@ohdsi.org","Pending peer review","","all events of Non ST segment acute myocardial infarction in an inpatient or ER visit","",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","314666, 4329847","https://forums.ohdsi.org/t/15900","2022-11-29","2023-09-25",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",30,0,"All",TRUE,"All","All",2,1,"ConditionOccurrence",0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -262,"[P] Unstable Angina with inpatient admission","Unstable Angina with inpatient admission","Unstable Angina with inpatient admission","rao@ohdsi.org","Pending peer review","","all events of Unstable Angina in an inpatient or ER visit","",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","315296","https://forums.ohdsi.org/t/15900","2022-11-29","2023-09-19",,"",,0,,,"ERA","180","fixed duration relative to initial event","EndDate",7,0,"All",TRUE,"All","All",1,1,"ConditionOccurrence",0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -263,"[P] Unstable Angina OR NSTEMI with inpatient admission","Unstable Angina OR NSTEMI with inpatient admission","Unstable Angina OR NSTEMI with inpatient admission","rao@ohdsi.org","Pending peer review","","all events of Unstable Angina or NSTEMI in an inpatient or ER visit","",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","314666, 4329847","https://forums.ohdsi.org/t/15900","2022-11-29","2023-09-19",,"",,0,,,"ERA","180","fixed duration relative to initial event","EndDate",7,0,"All",TRUE,"All","All",1,1,"ConditionOccurrence",0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -264,"[P] Acute Hepatic Failure in persons with liver disease","Acute Hepatic Failure in persons with liver disease","Acute Hepatic Failure in persons with liver disease","rao@ohdsi.org","Pending peer review","","Events of Hepatic Failure. Persons should have prior liver disease","",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","4245975","","2022-11-29","2023-09-19",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",0,1,"All",FALSE,"All","All",1,1,"ConditionOccurrence",365,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -265,"[P] Drug Induced Acute Hepatic Failure","Drug Induced Acute Hepatic Failure","Drug Induced Acute Hepatic Failure","rao@ohdsi.org","Pending peer review","","first occurrence of Hepatic Failure and no other liver problems in past","",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","4245975","","2022-11-29","2023-09-19",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",0,23,"All",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,,,,,,,,,,, -267,"[P] Acute Kidney Injury AKI, in persons with chronic kidney disease","Acute Kidney Injury AKI, in persons with chronic kidney disease","Acute Kidney Injury AKI, in persons with chronic kidney disease","rao@ohdsi.org","Pending peer review","","all events of Acute Kidney Injury with washout period of 30 days. Persons should have chronic kidney disease that is is not ESKD, and should be not on chronic dialysis or had kidney transplant. Acute Kidney Injury (AKI) indexed on a diagnosis of Acute kidney injury or a Dialysis procedure at a medicare certified esrd facility for acute kidney injury without esrd, excluding events/patients with 1. a diagnosis of End-Stage Kidney Disease in the 365 days before AKI occurrence 2. patients receiving chronic dialysis defined as more than 3 recorded events of dialysis in 365 days before AKI occurrence 3. kidney Transplant any time prior applying a washout period of 30 days between observed events. patients exit the cohort 7 days post index","#DME",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","197320","","2022-11-29","2023-09-19",,"",,0,,,"ERA","7","fixed duration relative to initial event","EndDate",7,4,"All",FALSE,"All","All",2,2,"ConditionOccurrence, ProcedureOccurrence",0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,1,,,,, -268,"[P] Acute Kidney Injury AKI, in persons with NO chronic kidney disease","Acute Kidney Injury AKI, in persons with NO chronic kidney disease","Acute Kidney Injury AKI, in persons with NO chronic kidney disease","rao@ohdsi.org","Pending peer review","","all events of Acute Kidney Injury with washout period of 30 days. Persons should have chronic kidney disease that is is not ESKD, and should be not on chronic dialysis or had kidney transplant. Acute Kidney Injury (AKI) indexed on a diagnosis of Acute kidney injury or a Dialysis procedure at a medicare certified esrd facility for acute kidney injury without esrd, excluding events/patients with 1. a diagnosis of End-Stage Kidney Disease in the 365 days before AKI occurrence 2. patients receiving chronic dialysis defined as more than 3 recorded events of dialysis in 365 days before AKI occurrence 3. kidney Transplant any time prior applying a washout period of 30 days between observed events. patients exit the cohort 7 days post index","",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","197320","","2022-11-29","2023-09-19",,"",,0,,,"ERA","7","fixed duration relative to initial event","EndDate",7,4,"All",FALSE,"All","All",2,2,"ConditionOccurrence, ProcedureOccurrence",0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,1,,,,, -269,"[D] Acute Kidney Injury AKI","Acute Kidney Injury AKI","Acute Kidney Injury AKI","rao@ohdsi.org","Accepted","3.8.0","This accepted cohort was Deprecated because the rule to exclude no chronic dialysis was incorrect. This definition was replaced by 362. Acute Kidney Injury (AKI) indexed on a diagnosis of Acute kidney injury or a Dialysis procedure at a medicare certified esrd facility for acute kidney injury without esrd, excluding events/patients with 1. a diagnosis of End-Stage Kidney Disease in the 365 days before AKI occurrence 2. patients receiving chronic dialysis defined as more than 3 recorded events of dialysis in 365 days before AKI occurrence 3. kidney Transplant any time prior applying a washout period of 30 days between observed events. patients exit the cohort 7 days post index","#PhenotypePhebruary, #2022",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","197320","https://forums.ohdsi.org/t/16067","2022-11-29","2023-09-19",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",0,4,"All",FALSE,"All","All",2,2,"ConditionOccurrence, ProcedureOccurrence",0,0,7,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,1,,,,, -270,"[P] Hemolytic Anemia","Hemolytic Anemia","Hemolytic Anemia","rao@ohdsi.org","Pending peer review","","all events of hemolytic anemia, indexed on anemia or hemolysis","",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","435503, 439777, 441269","https://forums.ohdsi.org/t/17856","2022-11-30","2023-09-19",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",0,2,"All",FALSE,"All","All",4,2,"ConditionOccurrence, Measurement",0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -271,"[P] Hemolytic Anemia Intra corpuscular","Hemolytic Anemia Intra corpuscular","Hemolytic Anemia Intra corpuscular","rao@ohdsi.org","Pending peer review","","all events of hemolytic anemia, indexed on anemia or hemolysis, without congenital or hereditary causes of hemolytic anemia of membrane, enzyme or RBC structure","",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","435503, 439777, 441269","https://forums.ohdsi.org/t/17856","2022-11-30","2023-09-19",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",99999,0,"All",TRUE,"All","All",4,2,"ConditionOccurrence, Measurement",0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -273,"[P] Pathological Ventricular Tachycardia","Pathological Ventricular Tachycardia","Pathological Ventricular Tachycardia","rao@ohdsi.org","Pending peer review","","all events of ventricular tachycardia with hospitalization. note - the use of ventricular tachycardia is thought to imply pathological tachycardia vs. simple tachycardia","",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","437579, 4103295","","2022-12-06","2023-09-19",,"",,0,,,"ERA","7","fixed duration relative to initial event","EndDate",1,1,"All",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,, -274,"[P] Cardiac arrest or Pathological Ventricular tachycardia","Cardiac arrest or Pathological Ventricular tachycardia","Cardiac arrest or Pathological Ventricular tachycardia","rao@ohdsi.org","Pending peer review","","Cardiac arrest or Pathological Ventricular tachycardia with inpatient stay","",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","321042, 437579, 4103295","","2022-12-06","2023-09-19",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",1,1,"All",FALSE,"All","First",4,3,"ConditionOccurrence, Observation, ProcedureOccurrence",0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,1,,,,, -275,"[P] Polymorphic Ventricular Tachycardia or Torsades de Pointes","Polymorphic Ventricular Tachycardia or Torsades de Pointes","Polymorphic Ventricular Tachycardia or Torsades de Pointes","rao@ohdsi.org","Pending peer review","","Polymorphic Ventricular Tachycardia or Torsades de Pointes","#DME",1,"'Gowtham A. Rao', 'Azza Shoaibi'","'0000-0002-4949-7236', '0000-0002-6976-2594'","'OHDSI'","","","4088349, 4135823","","2022-12-06","2024-09-11",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",3,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,, -276,"[P] Sudden Vision Loss","Sudden Vision Loss","Sudden Vision Loss","rao@ohdsi.org","Pending peer review","","all events of Vision Loss, indexed on diagnosis of Vision Loss. With 1. no such events in prior washout window of 365 days 2. and no history of other pathological eye disease such as glaucoma, infections and others in 365 days to 1 day prior index. cohort exits is 90 days after cohort end date.","#DME",1,"'Gowtham A. Rao', 'Azza Shoaibi'","'0000-0002-4949-7236', '0000-0002-6976-2594'","'OHDSI'","","","377556","","2022-12-08","2024-09-11",,"",,0,,,"ERA","0","fixed duration relative to initial event","StartDate",90,2,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -277,"[P] Sudden Hearing Loss","Sudden Hearing Loss","Sudden Hearing Loss","rao@ohdsi.org","Pending peer review","","all events of Sudden Hearing Loss or hearing loss that is managed by corticosteroids, imaging of head or multiple hearing exams after among persons without congenital, middle or inner ear disease and no past hearing tests","#DME",1,"'Gowtham A. Rao', 'Azza Shoaibi'","'0000-0002-4949-7236', '0000-0002-6976-2594'","'OHDSI'","","","374053, 377889","","2022-12-08","2023-09-19",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",0,4,"All",FALSE,"All","All",3,2,"ConditionOccurrence, Observation",0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,,,,,,,,,, -278,"[P] Pain or ache that is Non Chronic","Pain or ache that is Non Chronic","Pain or ache that is Non Chronic","rao@ohdsi.org","Pending peer review","","all events of non chronic non generalized or diffuse pain","#Symptoms, #Pain",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","138525, 194133","https://forums.ohdsi.org/t/17895","2023-01-04","2023-09-25",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",365,1,"All",FALSE,"All","All",2,2,"ConditionOccurrence, Observation",0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,,,,,,,,,, -279,"[P] Low Back Pain or injury","Low Back Pain or injury","Low Back Pain or injury","rao@ohdsi.org","Pending peer review","","all events of low back pain","#Symptoms, #Pain",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","134736, 194133","https://forums.ohdsi.org/t/17895","2023-01-04","2023-09-25",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",180,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -280,"[P] Abdominal Pain or acute abdomen","Abdominal Pain or acute abdomen","Abdominal Pain or acute abdomen","rao@ohdsi.org","Pending peer review","","all events of abdominal pain","#Symptoms, #Pain",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","200219","https://forums.ohdsi.org/t/17895","2023-01-04","2023-09-25",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",14,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -281,"[P] Epigastric Pain","Epigastric Pain","Epigastric Pain","rao@ohdsi.org","Pending peer review","","all events of epigastric pain","#Symptoms, #Pain",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","197381, 4306292","https://forums.ohdsi.org/t/17895","2023-01-04","2023-09-25",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",14,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -282,"[P] Joint Pain","Joint Pain","Joint Pain","rao@ohdsi.org","Pending peer review","","all events of joint pain","#Symptoms, #Pain",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","78232, 80180","https://forums.ohdsi.org/t/17895","2023-01-04","2023-09-25",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",30,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -283,"[P] Prostatitis","Prostatitis","Prostatitis","rao@ohdsi.org","Pending","","All events of prostatits that is either a first occurrence of chronic prostatitis, or did not have an event of prostatitis in past 1 year, with no testicular lesions, bladder neoplasm or abdominal or inguinal hernia in prior 1 year. cohort end 180 days post cohort end date","#Submitted",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","194997","","2023-01-13","2023-09-19",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",0,5,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,,,,,,,,,,, -284,"[P] Myocarditis or Pericarditis","Myocarditis or Pericarditis","Myocarditis or Pericarditis","rao@ohdsi.org","Pending","","All events of Myocarditis or Pericarditis","#Submitted",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","320116, 4138837","","2023-01-14","2023-09-19",,"",,0,,,"ERA","90","fixed duration relative to initial event","EndDate",30,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -285,"[P] Myocarditis or Pericarditis Not due to infections","Myocarditis or Pericarditis Not due to infections","Myocarditis or Pericarditis Not due to infections","rao@ohdsi.org","Pending","","All events of Myocarditis or Pericarditis without events that are due to Infectious Etiology","#Submitted",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","320116, 4138837","","2023-01-14","2023-09-19",,"",,0,,,"ERA","90","fixed duration relative to initial event","EndDate",30,1,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -287,"[P] Transverse myelitis includes Myelitis Unspecified and neuromyelitis optica","Transverse myelitis includes Myelitis Unspecified and neuromyelitis optica","Transverse myelitis includes Myelitis Unspecified and neuromyelitis optica","rao@ohdsi.org","Pending","","events with a diagnosis of transverse myelitis indexed on diagnosis of transverse myelitis, OR related spinal disease or symptoms of transverse myelitis, followed by a diagnosis of transverse myelitis within 30 days OR events of myelitis unspecified with weakness or asthenia, neuromyelitis optica with weakness or asthenia. Symptoms of Transverse Myelitis included asthenia, muscle weakness, myelitis, paresthesia","#Sensitivity",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","Evan Minty","","79908, 138965, 139803, 380995, 443904","https://forums.ohdsi.org/t/17769","2023-01-17","2023-09-19",,"",,0,,,"ERA","365","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",4,1,"ConditionOccurrence",0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -288,"[P] Type 2 Diabetes Mellitus indexed on diagnosis, treatment or lab results","Type 2 Diabetes Mellitus indexed on diagnosis, treatment or lab results","Type 2 Diabetes Mellitus indexed on diagnosis, treatment or lab results","rao@ohdsi.org","Pending","","Earliest event of Type 2 Diabetes Mellitus (DM), indexed on diagnosis or Blood glucose lowering drugs excluding insulin or high Hemoglobin A1c (limited to treatments or measurement that are followed with Type 2 DM diagnosis within 365 days) excluding persons with Type 1 DM or secondary diabetes mellitus in the all time prior including index date","#Disease",1,"Patrick Ryan, Jill Hardin","","","","","201820, 201826","https://forums.ohdsi.org/t/15764","2023-01-25","2023-09-20",,"",,0,,,"ERA","0","end of continuous observation",,,3,"First",FALSE,"All","First",4,3,"ConditionOccurrence, DrugExposure, Measurement",0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,1,,,,,,, -289,"[P] Presence Of Cardiac Arrhythmia","Presence Of Cardiac Arrhythmia","Presence Of Cardiac Arrhythmia","rao@ohdsi.org","Pending","","All events of Cardiac arrythmia or treatments for cardiac arrythmia","",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","313217, 44784217","","2023-01-26","2023-09-25",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",60,0,"All",FALSE,"All","All",4,4,"ConditionOccurrence, DeviceExposure, DrugExposure, ProcedureOccurrence",0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,1,1,1,,,,, -290,"[P] Thyroiditis wo other causes of hypothy, indexed on diagnosis or treatment","Thyroiditis wo other causes of hypothy, indexed on diagnosis or treatment","Thyroiditis wo other causes of hypothy, indexed on diagnosis or treatment","rao@ohdsi.org","Pending peer review","","All events of thyroiditis, indexed on an occurrence of Thyroiditis (including hypo and hyperthyroidism) condition or exposure to levothyroxine (limited to drug exposure that occurred within 365 days prior to an occurrence of Thyroiditis condition). Limited to events that had zero condition occurrence of Hypothyroidism other than Hashimoto's Disease (ie excluding alternative causes of hypothyroidism) all time prior and including index","#Disease",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","138384, 140673","","2023-01-26","2023-09-25",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",365,2,"All",FALSE,"All","All",2,2,"ConditionOccurrence, DrugExposure",0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,1,,,,,,, -291,"[P] Gynecomastia, indexed on diagnosis, procedure or symptoms","Gynecomastia, indexed on diagnosis, procedure or symptoms","Gynecomastia, indexed on diagnosis, procedure or symptoms","rao@ohdsi.org","Pending","","All events of Gynecomastia diagnosis, indexed on a diagnosis of Gynecomastia or a procedure of Mastectomy for gynecomastia or a presentation/symptoms of Gynecomastia (breast lump or pain). Events indexed on a procedures or symptoms are required to be followed by a diagnosis within a year","",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","78474, 80767, 137809","","2023-01-26","2023-09-25",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",365,1,"All",FALSE,"All","All",4,3,"ConditionOccurrence, Observation, ProcedureOccurrence",0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,,,,,1,,,,, -292,"[P] Acute Hepatic Failure in persons without chronic hepatic failure","Acute Hepatic Failure in persons without chronic hepatic failure","Hepatic Failure","rao@ohdsi.org","Pending peer review","","all events of acute hepatic failure. no chronic hepatic failure","#Disease",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","4245975","","2023-01-26","2023-09-25",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",90,1,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -293,"[P] Acute Hepatic Injury or inpatient jaundice","Acute Hepatic Injury or inpatient jaundice","Acute Hepatic Injury with no chronic hepatic failure","rao@ohdsi.org","Pending","","All events of Acute Liver Injury, indexed on the diagnosis of Acute Liver Injury, with no chronic hepatic failure. Sequela of chronic liver disease maps to codes that historically were used for acute liver injury","",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","194990","","2023-01-26","2023-09-25",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",90,0,"All",FALSE,"All","All",2,1,"ConditionOccurrence",0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -294,"[P] Acute Hepatic Injury with no pre-existing liver disease","Acute Hepatic Injury with no pre-existing liver disease","Acute Hepatic Injury with no pre-existing liver disease","rao@ohdsi.org","Pending","","Earliest event of Acute Liver Injury, indexed on the diagnosis of Acute Liver Injury. Patients are excluded if they have a diagnosis of chronic hepatic failure any time in the past or on the same day. Also excluded patients who have other prior liver disease such as viral hepatitis, Liver Cirrhosis, liver fibrosis, alcoholic and others anytime prior including index","",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","194990","","2023-01-26","2023-09-25",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",90,23,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -295,"[P] Acute Hepatic Failure in persons with no pre-existing liver disease","Acute Hepatic Failure in persons with no pre-existing liver disease","Acute Hepatic Failure in persons with no pre-existing liver disease","rao@ohdsi.org","Pending peer review","","Event of hepatic Failure, indexed on the diagnosis of Hepatic Failure. Patients are excluded if they have a diagnosis of chronic hepatic failure any time in the past or on the same day. Also excluded patients who have other prior liver disease such as viral hepatitis, Liver Cirrhosis, liver fibrosis, alcoholic and others anytime prior including index","#Submitted",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","4245975","","2023-01-26","2023-09-19",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",0,23,"All",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,, -296,"Transverse myelitis or symptoms indexed on symptoms or diagnosis (180Pe, 180Era)","Transverse myelitis or symptoms indexed on symptoms or diagnosis (180Pe, 180Era)","Transverse myelitis or symptoms indexed on symptoms or diagnosis (180Pe, 180Era)","rao@ohdsi.org","Accepted","3.9.0","events with a diagnosis of transverse myelitis indexed on diagnosis of transverse myelitis, related spinal disease or symptoms of transverse myelitis, followed by a diagnosis of transverse myelitis within 30 days. Symptoms of Transverse Myelitis included asthenia, muscle weakness, myelitis, paresthesia","#Accepted, #Level2",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","Evan Minty","","79908, 139803, 443904","https://forums.ohdsi.org/t/17769","2023-01-26","2023-09-19",,"",,0,,,"ERA","180","fixed duration relative to initial event","EndDate",180,0,"All",FALSE,"All","All",2,1,"ConditionOccurrence",0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -298,"[P] Urinary bleed events in persons without renal glomerular disease","Urinary bleed events in persons without renal glomerular disease","Urinary bleed events in persons without renal glomerular disease","rao@ohdsi.org","Pending peer review","","all events of urinary bleeds in persons with no recent kidney biopsy, no chronic kidney disease or recent renal glomerular disease","#Symptoms, #urinary",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","79864, 437038","","2023-02-02","2023-09-25",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",365,3,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -299,"[P] Acute gastrointestinal bleeding or perforation events","Acute gastrointestinal bleeding or perforation events","Acute gastrointestinal bleeding or perforation events","rao@ohdsi.org","Pending peer review","","all events of gastrointestinal bleed or perforation","#Symptoms",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","192671","","2023-02-02","2023-09-25",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",30,0,"All",FALSE,"All","All",2,2,"ConditionOccurrence, ProcedureOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,1,,,,, -300,"[P] Heavy menstrual bleeding (menorrhagia) events","Heavy menstrual bleeding (menorrhagia) events","Heavy menstrual bleeding (menorrhagia) events","rao@ohdsi.org","Pending peer review","","","#Symptoms",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","197607, 4302555","","2023-02-02","2023-09-25",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",90,3,"All",FALSE,"All","All",2,1,"ConditionOccurrence",0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -304,"Neurofibromatosis type 1 (FP)","Neurofibromatosis type 1 (FP)","Neurofibromatosis type 1 (FP)","rao@ohdsi.org","Accepted","3.12.0","","#PhenotypePhebruary, #2023, #Neurofibromatosis",1,"Maxim Moinat","","","","","377252","https://forums.ohdsi.org/t/18236","2023-02-07","2023-09-19",,"",,0,,,"ERA","0","end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,, -305,"Neurofibromatosis type 1 without Type 2 (FP)","Neurofibromatosis type 1 without Type 2 (FP)","Neurofibromatosis type 1 without Type 2 (FP)","rao@ohdsi.org","Accepted","3.12.0","Persons with Neurofibromatosis without a diagnosis of NF2, vestibular schwannoma or hearing problems. Not all data sources capture NF subtype (e.g. when using ICD10), so to select NF1 we exclude diagnoses that give a suspicion of NF2 (affecting auditory system)","#PhenotypePhebruary, #2023, #Neurofibromatosis",1,"Maxim Moinat","","","","","376938","https://forums.ohdsi.org/t/18236","2023-02-07","2023-09-19",,"",,0,,,"ERA","0","end of continuous observation",,,3,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,, -306,"Optical pathway glioma and neurofibromatosis (FP)","Optical pathway glioma and neurofibromatosis (FP)","Optical pathway glioma and neurofibromatosis (FP)","rao@ohdsi.org","Accepted","3.12.0","Persons with an optic nerve glioma and diagnosis of neurofibromatosis anytime in persons history. This would be the preferred code for an OPG","#PhenotypePhebruary, #2023, #Neurofibromatosis",1,"Maxim Moinat","","","","","4112970","https://forums.ohdsi.org/t/18236","2023-02-07","2023-09-19",,"",,0,,,"ERA","0","end of continuous observation",,,1,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,, -307,"Optical pathway glioma or non mal neoplasm of optic nerve w nf","Optical pathway glioma or non mal neoplasm of optic nerve w nf","Optical pathway glioma or non malignant neoplasm of optic nerve w neurofibromatosis","rao@ohdsi.org","Accepted","3.12.0","Persons with an optic nerve glioma OR neoplasm of optic nerve, and a diagnosis of neurofibromatosis anytime in persons history","#PhenotypePhebruary, #2023, #Neurofibromatosis",1,"Maxim Moinat","","","","","4216000, 4246137","https://forums.ohdsi.org/t/18236","2023-02-07","2023-09-19",,"",,0,,,"ERA","0","end of continuous observation",,,1,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,, -308,"Optical pathway glioma with MRI imaging and ophth visits NF","Optical pathway glioma with MRI imaging and ophth visits NF","Optical pathway glioma with MRI imaging and ophthalmology visits Neurofibromatosis","rao@ohdsi.org","Accepted","3.12.0","Persons with neurofibromatosis, that also had one MRI of the brain AND at least 3 ophthalmology visits within one year (anytime in persons history). In some centers, an OPG might be coded as general NF and needs to be inferred from follow-up care after diagnosis","#PhenotypePhebruary, #2023, #Neurofibromatosis",1,"Maxim Moinat","","","","","376938","https://forums.ohdsi.org/t/18236","2023-02-07","2023-09-19",,"",,0,,,"ERA","0","end of continuous observation",,,2,"First",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,, -311,"[P] Parasomnia","Parasomnia","Parasomnia","rao@ohdsi.org","Pending peer review","","All events of Parasomnia that may be expected to persist for atleast 30 days with events collapse 1 day after","",1,"'Gowtham A. Rao', 'Azza Shoaibi'","'0000-0002-4949-7236', '0000-0002-6976-2594'","","","","440087","","2023-02-10","2023-09-23",,"",,0,,,"ERA","1","fixed duration relative to initial event","EndDate",30,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -318,"[P] Acute Hepatic Failure in persons without chronic hepatic failure on same day","Acute Hepatic Failure in persons without chronic hepatic failure on same day","Acute Hepatic Failure in persons without chronic hepatic failure on same day","rao@ohdsi.org","Pending peer review","","all events of acute hepatic failure. If the persons also has chronic hepatic failure coded on the same day, they are excluded","#Disease",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","4245975","","2023-02-11","2023-09-19",,"",,0,,,"ERA","1","fixed duration relative to initial event","EndDate",0,1,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -324,"[P] Pain","Pain","Pain","rao@ohdsi.org","Pending peer review","","all events of pain","#Symptoms, #Pain",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","138525, 194133","https://forums.ohdsi.org/t/17895","2023-02-12","2023-09-25",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",30,1,"All",FALSE,"All","All",2,2,"ConditionOccurrence, Observation",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,,,,,,,,,, -325,"[P] Inpatient Hospitalization By Site of care or type of service","Inpatient Hospitalization By Site of care or type of service","Inpatient Hospitalization By Site of care or type of service","rao@ohdsi.org","Pending","","All events of Inpatient visit defined by site of care (visit domain) or type of service (procedure or observation codes) within any of the main visit categories","#Visits",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","","","2023-02-12","2023-09-19",,"",,0,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",4,3,"Observation, ProcedureOccurrence, VisitOccurrence",0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,,,,1,,,,, -327,"[P][R] Pharyngitis ","Pharyngitis","Pharyngitis","rao@ohdsi.org","Pending peer review","","all events of Pharyngitis. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","25297, 4226263","https://forums.ohdsi.org/t/17895","2023-02-12","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -328,"[P] Wheezing","Wheezing","Wheezing","rao@ohdsi.org","Pending peer review","","All events of wheezing","#Symptoms",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","314754","https://forums.ohdsi.org/t/17895","2023-02-12","2023-09-25",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",14,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -330,"[P][R] Abdominal bloating ","Abdominal bloating","Abdominal bloating","rao@ohdsi.org","Pending peer review","","all events of Abdominal bloating. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","4023572","https://forums.ohdsi.org/t/17895","2023-02-12","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -331,"[P] Encephalopathy","Encephalopathy","Encephalopathy","rao@ohdsi.org","Pending peer review","","events Encephalopathy","#Symptoms",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","372892, 43021132","https://forums.ohdsi.org/t/17895","2023-02-12","2023-09-25",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",30,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -332,"[P] Pain or ache that is Chronic","Pain or ache that is Chronic","Pain or ache that is Chronic","rao@ohdsi.org","Pending peer review","","all events of non chronic non generalized or diffuse pain","#Symptoms",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","138525, 194133","https://forums.ohdsi.org/t/17895","2023-02-12","2023-09-25",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",365,1,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -333,"[P] Alcohol Use Disorder","Alcohol Use Disorder","Alcohol Use Disorder","rao@ohdsi.org","Pending peer review","","all events of abdominal pain","#Symptoms, #Drug",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","435243, 36714559","https://forums.ohdsi.org/t/17895","2023-02-12","2023-09-25",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",365,0,"All",FALSE,"All","All",3,3,"ConditionOccurrence, Observation, ProcedureOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,,,,,1,,,,, -334,"[P] Asthma","Asthma","Asthma","rao@ohdsi.org","Pending peer review","","All events of asthma diagnosis or therapy for asthma with a history of another asthma therapy more than 180 days before, or asthma diagnosis","",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","317009","","2023-02-12","2023-09-25",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",14,0,"All",FALSE,"All","All",3,3,"ConditionOccurrence, DrugExposure, Observation",0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,,,1,,,,,,, -335,"[P] Anxiety or Fear","Anxiety or Fear","Anxiety or Fear","rao@ohdsi.org","Pending peer review","","Events of Anxiety or Fear","",1,"","","","","","441542, 442077","","2023-02-12","2023-09-19",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -339,"[P][R] Low blood pressure ","Low blood pressure","Low blood pressure","rao@ohdsi.org","Pending peer review","","all events of Low blood pressure. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","317002","https://forums.ohdsi.org/t/17895","2023-03-14","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -340,"[P] Hives, Erythema, Eruption, Urticaria","Hives, Erythema, Eruption, Urticaria","Hives, Erythema, Eruption, Urticaria","rao@ohdsi.org","Pending peer review","","All events of Hives, Erythema, Eruption, Urticaria","#Symptoms",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","134438, 45766714","https://forums.ohdsi.org/t/17895","2023-03-14","2023-09-25",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",14,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -341,"[P] Loss of mentation including comma, syncope, altered consciousness","Loss of mentation including comma, syncope, altered consciousness","Loss of mentation including comma, syncope, altered consciousness","rao@ohdsi.org","Pending peer review","","All events of Disturbance of consciousness, loss of mentation including comma, syncope, altered consciousness","#Symptoms",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","376961, 4206148","https://forums.ohdsi.org/t/17895","2023-03-14","2023-09-25",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",30,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -342,"[P][R] Urinary incontinence","Urinary incontinence","Urinary incontinence","rao@ohdsi.org","Pending peer review","","all events of Urinary incontinence. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","197672","https://forums.ohdsi.org/t/17895","2023-03-14","2023-09-25",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -343,"[P] Fecal Incontinence","Fecal Incontinence","Fecal Incontinence","rao@ohdsi.org","Pending peer review","","All events of Fecal Incontinence","#Symptoms",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","197675, 4101350","https://forums.ohdsi.org/t/17895","2023-03-14","2023-09-25",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",30,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -344,"[P] Doctors office or clinic visit without other overlapping visits","Doctors office or clinic visit without other overlapping visits","Doctors office or clinic visit without other overlapping visits","rao@ohdsi.org","Pending peer review","","All events of Doctors office or clinic visit that does not overlap with inpatient, urgent care or emergency visit","#Visits",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","","","2023-03-14","2023-09-25",,"",,0,,,"ERA","1","fixed duration relative to initial event","EndDate",0,4,"All",FALSE,"All","All",1,1,"VisitOccurrence",0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,,1,,,,,,,,, -346,"[P] Non urgent outpatient visit without overlapping inpatient or emergency visit","Non urgent outpatient visit without overlapping inpatient or emergency visit","Non urgent outpatient visit without overlapping inpatient or emergency visit","rao@ohdsi.org","Pending peer review","","All events of Doctors office or clinic visit that does not overlap with inpatient, urgent care or emergency visit. If a person has visits on consecutive days, they are collapsed into a spans of days","#Visits",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","","","2023-03-14","2023-10-22",,"",,0,,,"ERA","1","fixed duration relative to initial event","EndDate",0,4,"All",FALSE,"All","All",1,1,"VisitOccurrence",0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,1,,,,,,,,, -347,"[P] Ambulance utilization","Ambulance utilization","Ambulance utilization","rao@ohdsi.org","Pending peer review","","All events of Ambulance use","#Visits",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","","","2023-03-14","2023-09-25",,"",,0,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",4,4,"ConditionOccurrence, Observation, ProcedureOccurrence, VisitOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,,,,1,,,,, -348,"[P][R] Blood in urine ","Blood in urine","Blood in urine","rao@ohdsi.org","Pending peer review","","all events of Blood in urine. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","79864, 437038","https://forums.ohdsi.org/t/17895","2023-03-15","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -349,"[P] Lower gastrointestinal bleeding events","Lower gastrointestinal bleeding events","Lower gastrointestinal bleeding events","rao@ohdsi.org","Pending peer review","","all events of lower gastrointestinal bleed","#Symptoms",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","197925, 4245614","","2023-03-15","2023-09-25",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",30,0,"All",FALSE,"All","All",2,2,"ConditionOccurrence, ProcedureOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,1,,,,, -350,"[P][R] Hemoptysis","Hemoptysis","Hemoptysis","rao@ohdsi.org","Pending peer review","","all events of Hemoptysis. Persons exit on cohort end date","#Referent, #Condition, #respiratory, #lung",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","261687","https://forums.ohdsi.org/t/17895","2023-03-15","2023-09-28",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -351,"[P] Nasal Polyp present","Nasal Polyp present","Nasal Polyp present","rao@ohdsi.org","Pending peer review","","all events of nasal polyp","#Symptoms",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","4209223, 4285898, 42537251","https://forums.ohdsi.org/t/17895","2023-03-15","2023-09-25",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",365,0,"All",FALSE,"All","All",2,1,"ConditionOccurrence",0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -352,"[P][R] Inflamed tonsils ","Inflamed tonsils","Inflamed tonsils","rao@ohdsi.org","Pending peer review","","all events of Inflamed tonsils. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","24660, 4083666","https://forums.ohdsi.org/t/17895","2023-03-15","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -353,"[P][R] Conjunctivitis ","Conjunctivitis","Conjunctivitis","rao@ohdsi.org","Pending peer review","","all events of Conjunctivitis. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","379019","https://forums.ohdsi.org/t/17895","2023-03-15","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -354,"[P] Nasal Congestion or Rhinitis or Common Cold","Nasal Congestion or Rhinitis or Common Cold","Nasal Congestion or Rhinitis or Common Cold","rao@ohdsi.org","Pending peer review","","all events of Nasal Congestion or Rhinitis or Common Cold","#Symptoms",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","257007, 4320791","https://forums.ohdsi.org/t/17895","2023-03-15","2023-09-25",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",14,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -355,"[P] Laryngitis","Laryngitis","Laryngitis","rao@ohdsi.org","Pending peer review","","all events of Laryngitis","#Symptoms",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","24969, 260134","https://forums.ohdsi.org/t/17895","2023-03-15","2023-09-25",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",14,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -356,"[P] Epistaxis","Epistaxis","Epistaxis","rao@ohdsi.org","Pending peer review","","all events of Epistaxis","#Symptoms",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","4096682","https://forums.ohdsi.org/t/17895","2023-03-15","2023-09-25",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",14,0,"All",FALSE,"All","All",3,3,"ConditionOccurrence, Observation, ProcedureOccurrence",0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,,,,,1,,,,, -357,"[P][R] Pulmonary edema ","Pulmonary edema","Pulmonary edema","rao@ohdsi.org","Pending peer review","","all events of Pulmonary edema. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","261600, 4078925","https://forums.ohdsi.org/t/17895","2023-03-15","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -358,"[P] Acute Respiratory Failure among persons with no chronic respiratory failure","Acute Respiratory Failure among persons with no chronic respiratory failure","Acute Respiratory Failure among persons with no chronic respiratory failure","rao@ohdsi.org","Pending peer review","","All events of Acute Respiratory Failure among persons with no evidence of chronic respiratory failure in past 365 days","#Symptoms",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","319049, 4256228","https://forums.ohdsi.org/t/17895","2023-03-15","2023-09-25",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",14,1,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -359,"[P] Acute Respiratory Failure","Acute Respiratory Failure","Acute Respiratory Failure","rao@ohdsi.org","Pending peer review","","All events of Acute Respiratory Failure","#Symptoms",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","319049, 4256228","https://forums.ohdsi.org/t/17895","2023-03-15","2023-09-25",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",30,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -360,"[P] Pleural Effusion","Pleural Effusion","Pleural Effusion","rao@ohdsi.org","Pending peer review","","All events of Pleural Effusion","#Symptoms",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","254061","https://forums.ohdsi.org/t/17895","2023-03-15","2023-09-25",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",30,0,"All",FALSE,"All","All",2,2,"ConditionOccurrence, Observation",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,,,,,,,,,, -361,"[P][R] Restless legs ","Restless legs","Restless legs","rao@ohdsi.org","Pending peer review","","all events of Restless legs. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","73754","https://forums.ohdsi.org/t/18236","2023-04-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -362,"Acute Kidney Injury AKI","Acute Kidney Injury AKI","Acute Kidney Injury AKI","rao@ohdsi.org","Accepted","3.8.0","Acute Kidney Injury (AKI) indexed on a diagnosis of Acute kidney injury or a Dialysis procedure at a medicare certified esrd facility for acute kidney injury without esrd, excluding events/patients with 1. a diagnosis of End-Stage Kidney Disease in the 365 days before AKI occurrence 2. patients receiving chronic dialysis defined as more than 3 recorded events of dialysis in 365 days before AKI occurrence 3. kidney Transplant any time prior applying a washout period of 30 days between observed events. patients exit the cohort 7 days post index","#PhenotypePhebruary, #2022, #DME",1,"Marcela V Rivera David Vizcaya","","","","","197320","https://forums.ohdsi.org/t/16067","2023-04-25","2023-09-19",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",0,4,"All",FALSE,"All","All",2,2,"ConditionOccurrence, ProcedureOccurrence",0,0,7,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,1,,,,, -363,"[P][R] Joint stiffness ","Joint stiffness","Joint stiffness","rao@ohdsi.org","Pending peer review","","all events of Joint stiffness. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","72404, 72711","https://forums.ohdsi.org/t/17895","2023-05-30","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -364,"[P][R] Sleep disorder ","Sleep disorder","Sleep disorder","rao@ohdsi.org","Pending peer review","","all events of Sleep disorder. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","435524, 442588","https://forums.ohdsi.org/t/17895","2023-05-30","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -365,"[P] Dysuria","Dysuria","Dysuria","rao@ohdsi.org","Pending peer review","","all events of Dysuria","#Symptoms",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","197684, 4021780","https://forums.ohdsi.org/t/17895","2023-05-30","2023-09-25",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",14,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -366,"[P] Streptococcal throat infection","Streptococcal throat infection","Streptococcal throat infection","rao@ohdsi.org","Pending peer review","","All events of Streptococcal throat infection","#respiratory",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","25297, 28060, 4226263","","2023-05-31","2023-09-25",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",14,0,"All",FALSE,"All","All",2,1,"ConditionOccurrence",0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -367,"[P] Allergic Rhinitis","Allergic Rhinitis","Allergic Rhinitis","rao@ohdsi.org","Pending peer review","","All events of Allergic rhinitis","#respiratory",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","257007, 4320791","","2023-05-31","2023-09-25",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",90,0,"All",FALSE,"All","All",2,1,"ConditionOccurrence",0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -368,"[P][R] Sinusitis ","Sinusitis","Sinusitis","rao@ohdsi.org","Pending peer review","","all events of Sinusitis. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","260123, 4283893","https://forums.ohdsi.org/t/17895","2023-05-31","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -369,"[P][R] Allergic condition ","Allergic condition","Allergic condition","rao@ohdsi.org","Pending peer review","","all events of Allergic condition. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","257007, 43021227","https://forums.ohdsi.org/t/17895","2023-05-31","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -370,"[P] Allergic disorder","Allergic disorder","Allergic disorder","rao@ohdsi.org","Pending peer review","","All events of Allergic Disorder","#symptoms",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","257007, 43021227","https://forums.ohdsi.org/t/17895","2023-05-31","2023-09-25",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",30,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -371,"[P] Claudication Pain","Claudication Pain","Claudication Pain","rao@ohdsi.org","Pending peer review","","all events of claudication pain","#Symptoms",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","195834, 317309, 442774","https://forums.ohdsi.org/t/17895","2023-05-31","2023-09-25",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",365,0,"All",FALSE,"All","All",2,1,"ConditionOccurrence",0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -372,"[P] Otitis media","Otitis media","Otitis media","rao@ohdsi.org","Pending peer review","","All events of Otitis media","#respiratory",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","372328","","2023-05-31","2023-09-25",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",30,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -373,"[P] Iron deficiency Anemia","Iron deficiency Anemia","Iron deficiency Anemia","rao@ohdsi.org","Pending peer review","","all events of iron deficiency anemia","",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","439777","https://forums.ohdsi.org/t/17856","2023-05-31","2023-09-25",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",365,2,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -374,"[P][R] Drug dependence ","Drug dependence","Drug dependence","rao@ohdsi.org","Pending peer review","","all events of Drug dependence. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","437264, 440069","","2023-05-31","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -375,"[P] Gall stone disorder","Gall stone disorder","Gall stone disorder","rao@ohdsi.org","Pending peer review","","all events of Gall stone","",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","444367, 4145627","","2023-05-31","2023-09-25",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",730,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -376,"[P][R] Bleeding skin ","Bleeding skin","Bleeding skin","rao@ohdsi.org","Pending peer review","","all events of Bleeding skin. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","441259, 4177600",,"2023-05-31","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -377,"[P][R] Petechiae ","Petechiae","Petechiae","rao@ohdsi.org","Pending peer review","","all events of Petechiae. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","4155911",,"2023-05-31","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -378,"[P][R] Purpuric disorder ","Purpuric disorder","Purpuric disorder","rao@ohdsi.org","Pending peer review","","all events of Purpuric disorder. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","441259, 4307580",,"2023-05-31","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -379,"[P] Ecchymosis","Ecchymosis","Ecchymosis","rao@ohdsi.org","Pending peer review","","all events of Ecchymosis anywhere","#Symptoms",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","438252, 4118793",,"2023-05-31","2023-09-25",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",30,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -380,"[P][R] Jaundice ","Jaundice","Jaundice","rao@ohdsi.org","Pending peer review","","all events of Jaundice. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","137977, 435656","https://forums.ohdsi.org/t/17895","2023-05-31","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -381,"[P] Skin Itching","Skin Itching","Skin Itching","rao@ohdsi.org","Pending peer review","","events of skin itching","#Symptoms",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","133834, 133835, 135618, 4169287","https://forums.ohdsi.org/t/17895","2023-05-31","2023-09-25",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",14,0,"All",FALSE,"All","All",2,1,"ConditionOccurrence",0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -382,"[P] Prurititc Rash","Prurititc Rash","Prurititc Rash","rao@ohdsi.org","Pending peer review","","events of pruritic rash","#Symptoms",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","135618, 4169287","https://forums.ohdsi.org/t/17895","2023-05-31","2023-09-25",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",14,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -383,"[P] Eczematous Atopic Dermatitis and non hyperkeratotic dermatosis","Eczematous Atopic Dermatitis and non hyperkeratotic dermatosis","Eczematous Atopic Dermatitis and non hyperkeratotic dermatosis","rao@ohdsi.org","Pending peer review","","","#skin",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","133834, 133835, 45766714","","2023-05-31","2023-09-25",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",30,0,"All",FALSE,"All","All",2,1,"ConditionOccurrence",0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -384,"[P][R] Contact dermatitis ","Contact dermatitis","Contact dermatitis","rao@ohdsi.org","Pending peer review","","all events of Contact dermatitis. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","134438","","2023-05-31","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -385,"[P][R] Intertrigo ","Intertrigo","Intertrigo","rao@ohdsi.org","Pending peer review","","all events of Intertrigo. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","4242574","","2023-05-31","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -386,"[P][R] Seborrheic dermatitis ","Seborrheic dermatitis","Seborrheic dermatitis","rao@ohdsi.org","Pending peer review","","all events of Seborrheic dermatitis. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","137053","","2023-05-31","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -387,"[P][R] Photodermatitis ","Photodermatitis","Photodermatitis","rao@ohdsi.org","Pending peer review","","all events of Photodermatitis. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","4203600, 4239682, 4331304","","2023-05-31","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -388,"[P][R] Peripheral neuritis ","Peripheral neuritis","Peripheral neuritis","rao@ohdsi.org","Pending peer review","","all events of Peripheral neuritis. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","4027396","","2023-05-31","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -389,"[P] Peripheral Neuropathy or Neuritits","Peripheral Neuropathy or Neuritits","Peripheral Neuropathy or Neuritits","rao@ohdsi.org","Pending peer review","","first occurrence of peripheral neuritis or neuropathy","",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","4027396, 4117779","","2023-05-31","2023-09-25",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",730,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -391,"[P] Hearing Loss","Hearing Loss","Hearing Loss","rao@ohdsi.org","Pending peer review","","all events of Hearing Loss","#Symptoms",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","377889","","2023-05-31","2023-09-25",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",365,0,"All",FALSE,"All","All",2,2,"ConditionOccurrence, Observation",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,,,,,,,,,, -392,"[P] Otalgia or Otitis","Otalgia or Otitis","Otalgia or Otitis","rao@ohdsi.org","Pending peer review","","All events of Otitis or Otalgia","#symptoms",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","372328, 4183452","https://forums.ohdsi.org/t/17895","2023-05-31","2023-09-25",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",30,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -393,"[P] Low Back Pain or Injury","Low Back Pain or Injury","Low Back Pain or Injury","rao@ohdsi.org","Pending peer review","","all events of low back pain or injury","#Symptoms, #Pain",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","312998, 4020345","https://forums.ohdsi.org/t/17895","2023-05-31","2023-09-25",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",180,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -394,"[P] Gastroesophageal reflux disease","Gastroesophageal reflux disease","Gastroesophageal reflux disease","rao@ohdsi.org","Pending peer review","","all events of Gastroesophageal reflux disease","",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","23325, 318800, 4091509","https://forums.ohdsi.org/t/17895","2023-05-31","2023-09-25",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",180,0,"All",FALSE,"All","All",2,1,"ConditionOccurrence",0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -395,"[P] Dysmenorrhea","Dysmenorrhea","Dysmenorrhea","rao@ohdsi.org","Pending peer review","","all events of Dysmenorrhea","",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","443431","https://forums.ohdsi.org/t/17895","2023-05-31","2023-09-25",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",180,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -396,"[P][R] Osteoarthritis ","Osteoarthritis","Osteoarthritis","rao@ohdsi.org","Pending peer review","","all events of Osteoarthritis. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","80180, 4079750","","2023-05-31","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -397,"[P][R] Hyperplasia of prostate ","Hyperplasia of prostate","Hyperplasia of prostate","rao@ohdsi.org","Pending peer review","","all events of Hyperplasia of prostate. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","197032, 443211","","2023-05-31","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -398,"[P] Bladder Outflow Obstruction","Bladder Outflow Obstruction","Bladder Outflow Obstruction","rao@ohdsi.org","Pending peer review","","All events of Bladder Outflow Obstruction","#Symptoms",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","194406, 443211","","2023-05-31","2023-09-25",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",30,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,, -399,"[P][R] Urolithiasis ","Urolithiasis","Urolithiasis","rao@ohdsi.org","Pending peer review","","all events of Urolithiasis. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","201620, 4319447","","2023-05-31","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -400,"[P][R] Malignant tumor of prostate ","Malignant tumor of prostate","Malignant tumor of prostate","rao@ohdsi.org","Pending peer review","","all events of Malignant tumor of prostate. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","200962, 4163261","","2023-05-31","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -401,"[P] Uterine Fibroids or benign uterine tumors","Uterine Fibroids or benign uterine tumors","Uterine Fibroids or benign uterine tumors","rao@ohdsi.org","Pending peer review","","Uterine Fibroids","",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","197236, 201817","","2023-05-31","2023-09-25",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",1095,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -402,"[P] Ventilatory assist for respiratory findings with Acute Respiratory Failure","Ventilatory assist for respiratory findings with Acute Respiratory Failure","Ventilatory assist for respiratory findings with Acute Respiratory Failure","rao@ohdsi.org","Pending peer review","","all events of acute respiratory symptoms commonly seen in acute respiratory failure with procedures for ventilatory assist among persons with respiratory failure","#CriticalCare",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","255573, 4027553","https://forums.ohdsi.org/t/17895","2023-05-31","2023-09-25",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",14,0,"First",TRUE,"First","First",1,1,"ConditionOccurrence",0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,, -403,"[P] Acute Respiratory Failure in inpatient or Emergency room","Acute Respiratory Failure in inpatient or Emergency room","Acute Respiratory Failure in inpatient or Emergency room","rao@ohdsi.org","Pending peer review","","all events of Acute Respiratory Failure in inpatient or Emergency room","#Symptoms",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","319049","https://forums.ohdsi.org/t/17895","2023-05-31","2023-09-25",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",14,1,"All",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,, -404,"[P] Ventricular Tachycardia, in an Inpatient or Emergency room setting","Ventricular Tachycardia, in an Inpatient or Emergency room setting","Ventricular Tachycardia, in an Inpatient or Emergency room setting","rao@ohdsi.org","Pending peer review","","Ventricular tachycardia with inpatient stay","",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","437579, 4103295","","2023-05-31","2023-09-25",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",7,1,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -405,"[P] Atrial Fibrillation or Flutter","Atrial Fibrillation or Flutter","Atrial Fibrillation or Flutter","rao@ohdsi.org","Pending peer review","","All events of Atrial Fibrillation or Flutter","",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","313217","","2023-05-31","2023-09-25",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",30,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -406,"[P][R] Intellectual disability ","Intellectual disability","Intellectual disability","rao@ohdsi.org","Pending peer review","","all events of Intellectual disability. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","40277917","","2023-05-31","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -407,"[P][R] Hemorrhoids ","Hemorrhoids","Hemorrhoids","rao@ohdsi.org","Pending peer review","","all events of Hemorrhoids. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","195562","","2023-05-31","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -410,"[P] Acute Urinary tract infections UTI","Acute Urinary tract infections UTI","Acute Urinary tract infections UTI","rao@ohdsi.org","Pending peer review","","","#Symptoms",1,"Stephen H. Fortin","","","","","81902","","2023-06-01","2023-09-19",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,, -411,"[P] Sepsis or Septic Shock","Sepsis or Septic Shock","Sepsis or Septic Shock","rao@ohdsi.org","Pending peer review","","All events of Sepsis or Septic Shock","",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","132797","","2023-06-01","2023-09-25",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",30,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -412,"Transverse myelitis indexed on diagnosis (1Ps, 0Era, 365W)","Transverse myelitis indexed on diagnosis (1Ps, 0Era, 365W)","Transverse myelitis indexed on diagnosis (1Ps, 0Era, 365W)","rao@ohdsi.org","Accepted","3.7.0","events with a diagnosis of transverse myelitis indexed on diagnosis of transverse myelitis. Events have a 365 days washout period. The events persist for 1 day. Symptoms of Transverse Myelitis included asthenia, muscle weakness, myelitis, paresthesia","#Accepted, #Level2",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","Evan Minty","","139803, 443904","https://forums.ohdsi.org/t/17769","2023-06-02","2023-09-19",,"",,0,,,"ERA","0","fixed duration relative to initial event","StartDate",1,1,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -414,"[P] Acute Skin Eruption symptoms","Acute Skin Eruption symptoms","Acute Skin Eruption symptoms","rao@ohdsi.org","Pending peer review","","All events of certain skin eruption symptoms","#Symptoms",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","134438, 45766714","https://forums.ohdsi.org/t/17895","2023-06-02","2023-09-25",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",14,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -415,"[P][R] Erythema of skin ","Erythema of skin","Erythema of skin","rao@ohdsi.org","Pending peer review","","all events of Erythema of skin. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","4300442, 40481101","https://forums.ohdsi.org/t/17895","2023-06-02","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -416,"[P] Skin Rash","Skin Rash","Skin Rash","rao@ohdsi.org","Pending peer review","","All events of Skin Erythema","#Symptoms",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","135618","https://forums.ohdsi.org/t/17895","2023-06-02","2023-09-25",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",14,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -417,"[P] Acute gastrointestinal bleeding events","Acute gastrointestinal bleeding events","Acute gastrointestinal bleeding events","rao@ohdsi.org","Pending peer review","","all events of gastrointestinal bleed","#Symptoms",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","192671","","2023-06-02","2023-09-25",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",30,0,"All",FALSE,"All","All",2,2,"ConditionOccurrence, ProcedureOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,1,,,,, -444,"[P][R] Neck pain","Neck pain","Neck pain","rao@ohdsi.org","Pending peer review","","all events of Neck pain. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","24134","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -445,"[P][R] Hypoglycemia","Hypoglycemia","Hypoglycemia","rao@ohdsi.org","Pending peer review","","all events of Hypoglycemia. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","24609","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -446,"[P][R] Eosinophilic esophagitis","Eosinophilic esophagitis","Eosinophilic esophagitis","rao@ohdsi.org","Pending peer review","","all events of Eosinophilic esophagitis. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","27918","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -447,"[P][R] Esophagitis","Esophagitis","Esophagitis","rao@ohdsi.org","Pending peer review","","all events of Esophagitis. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","30437, 30753","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -448,"[P][R] Dysphagia","Dysphagia","Dysphagia","rao@ohdsi.org","Pending peer review","","all events of Dysphagia. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","31317","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -449,"[P][R] Nausea","Nausea","Nausea","rao@ohdsi.org","Pending peer review","","all events of Nausea. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","27674, 31967","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -450,"[P][R] Constipation","Constipation","Constipation","rao@ohdsi.org","Pending peer review","","all events of Constipation. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","75860","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -451,"[P][R] Myasthenia gravis","Myasthenia gravis","Myasthenia gravis","rao@ohdsi.org","Pending peer review","","all events of Myasthenia gravis. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","76685","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -452,"[P][R] Joint pain","Joint pain","Joint pain","rao@ohdsi.org","Pending peer review","","all events of Joint pain. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","77074, 78232","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -453,"[P][R] Osteoarthritis","Osteoarthritis","Osteoarthritis","rao@ohdsi.org","Pending peer review","","all events of Osteoarthritis. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","80180, 4079750","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -454,"[P][R] Dermatomyositis","Dermatomyositis","Dermatomyositis","rao@ohdsi.org","Pending peer review","","all events of Dermatomyositis. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","80182","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -455,"[P][R] Fetal growth restriction","Fetal growth restriction","Fetal growth restriction","rao@ohdsi.org","Pending peer review","","all events of Fetal growth restriction. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","74469, 80204, 4145947","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -456,"[P][R] Osteoporosis","Osteoporosis","Osteoporosis","rao@ohdsi.org","Pending peer review","","all events of Osteoporosis. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","80502","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -457,"[P][R] Rheumatoid arthritis","Rheumatoid arthritis","Rheumatoid arthritis","rao@ohdsi.org","Pending peer review","","all events of Rheumatoid arthritis. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","80809","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -458,"[P][R] Ulcerative colitis","Ulcerative colitis","Ulcerative colitis","rao@ohdsi.org","Pending peer review","","all events of Ulcerative colitis. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","81893","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -459,"[P][R] Urinary tract infectious disease","Urinary tract infectious disease","Urinary tract infectious disease","rao@ohdsi.org","Pending peer review","","all events of Urinary tract infectious disease. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","81902","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -460,"[P][R] Psoriasis with arthropathy","Psoriasis with arthropathy","Psoriasis with arthropathy","rao@ohdsi.org","Pending peer review","","all events of Psoriasis with arthropathy. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","81931","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -461,"[P][R] Erythema multiforme","Erythema multiforme","Erythema multiforme","rao@ohdsi.org","Pending peer review","","all events of Erythema multiforme. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","132702","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -462,"[P][R] Lichen planus","Lichen planus","Lichen planus","rao@ohdsi.org","Pending peer review","","all events of Lichen planus. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","132703","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -463,"[P][R] Sepsis","Sepsis","Sepsis","rao@ohdsi.org","Pending peer review","","all events of Sepsis. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","132797","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -464,"[P][R] Myelofibrosis","Myelofibrosis","Myelofibrosis","rao@ohdsi.org","Pending peer review","","all events of Myelofibrosis. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","133169","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -465,"[P][R] Thyroiditis","Thyroiditis","Thyroiditis","rao@ohdsi.org","Pending peer review","","all events of Thyroiditis. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","133444, 4281109","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -466,"[P][R] Atopic dermatitis","Atopic dermatitis","Atopic dermatitis","rao@ohdsi.org","Pending peer review","","all events of Atopic dermatitis. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","133834","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -467,"[P][R] Systemic sclerosis","Systemic sclerosis","Systemic sclerosis","rao@ohdsi.org","Pending peer review","","all events of Systemic sclerosis. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","134442","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -468,"[P][R] Pityriasis rubra pilaris","Pityriasis rubra pilaris","Pityriasis rubra pilaris","rao@ohdsi.org","Pending peer review","","all events of Pityriasis rubra pilaris. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","136774","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -469,"[P][R] Jaundice","Jaundice","Jaundice","rao@ohdsi.org","Pending peer review","","all events of Jaundice. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","137977, 435656","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -470,"[P][R] Chronic lymphoid leukemia, disease","Chronic lymphoid leukemia, disease","Chronic lymphoid leukemia, disease","rao@ohdsi.org","Pending peer review","","all events of Chronic lymphoid leukemia, disease. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","138379","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -471,"[P][R] Vitiligo","Vitiligo","Vitiligo","rao@ohdsi.org","Pending peer review","","all events of Vitiligo. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","138502","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -472,"[P][R] Myelodysplastic syndrome (clinical)","Myelodysplastic syndrome (clinical)","Myelodysplastic syndrome (clinical)","rao@ohdsi.org","Pending peer review","","all events of Myelodysplastic syndrome (clinical). Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","138994","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -473,"[P][R] Acute transverse myelitis","Acute transverse myelitis","Acute transverse myelitis","rao@ohdsi.org","Pending peer review","","all events of Acute transverse myelitis. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","139803","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -474,"[P][R] Pemphigoid","Pemphigoid","Pemphigoid","rao@ohdsi.org","Pending peer review","","all events of Pemphigoid. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","139899","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -475,"[P][R] Psoriasis","Psoriasis","Psoriasis","rao@ohdsi.org","Pending peer review","","all events of Psoriasis. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","140168","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -476,"[P][R] Acute myeloid leukemia, disease","Acute myeloid leukemia, disease","Acute myeloid leukemia, disease","rao@ohdsi.org","Pending peer review","","all events of Acute myeloid leukemia, disease. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","140352","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -477,"[P][R] Hypothyroidism","Hypothyroidism","Hypothyroidism","rao@ohdsi.org","Pending peer review","","all events of Hypothyroidism. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","138384, 140673","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -478,"[P][R] Malignant melanoma of skin","Malignant melanoma of skin","Malignant melanoma of skin","rao@ohdsi.org","Pending peer review","","all events of Malignant melanoma of skin. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","141232","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -479,"[P][R] Chilblains","Chilblains","Chilblains","rao@ohdsi.org","Pending peer review","","all events of Chilblains. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","141456","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -480,"[P][R] Alopecia areata","Alopecia areata","Alopecia areata","rao@ohdsi.org","Pending peer review","","all events of Alopecia areata. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","141933","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -481,"[P][R] Renal failure syndrome","Renal failure syndrome","Renal failure syndrome","rao@ohdsi.org","Pending peer review","","all events of Renal failure syndrome. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","192359, 193782","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -482,"[P][R] Gastrointestinal hemorrhage","Gastrointestinal hemorrhage","Gastrointestinal hemorrhage","rao@ohdsi.org","Pending peer review","","all events of Gastrointestinal hemorrhage. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","192671","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -483,"[P][R] Biliary cirrhosis","Biliary cirrhosis","Biliary cirrhosis","rao@ohdsi.org","Pending peer review","","all events of Biliary cirrhosis. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","192675","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -484,"[P][R] End-stage renal disease","End-stage renal disease","End-stage renal disease","rao@ohdsi.org","Pending peer review","","all events of End-stage renal disease. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","193782","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -485,"[P][R] Low back pain","Low back pain","Low back pain","rao@ohdsi.org","Pending peer review","","all events of Low back pain. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","194133","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -486,"[P][R] Premature rupture of membranes","Premature rupture of membranes","Premature rupture of membranes","rao@ohdsi.org","Pending peer review","","all events of Premature rupture of membranes. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","194702, 200160","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -487,"[P][R] Celiac disease","Celiac disease","Celiac disease","rao@ohdsi.org","Pending peer review","","all events of Celiac disease. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","194992","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -488,"[P][R] Diarrhea","Diarrhea","Diarrhea","rao@ohdsi.org","Pending peer review","","all events of Diarrhea. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","196523","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -489,"[P][R] Acute renal failure syndrome","Acute renal failure syndrome","Acute renal failure syndrome","rao@ohdsi.org","Pending peer review","","all events of Acute renal failure syndrome. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","197320","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -490,"[P] Viral hepatitis C","Viral hepatitis C","Viral hepatitis C","rao@ohdsi.org","Pending peer review","","all events of Viral hepatitis C. Persons exit on cohort end date","#Referent, #Condition",1,"'Gowtham A. Rao', 'Azza Shoaibi'","'0000-0002-4949-7236', '0000-0002-6976-2594'","'OHDSI'","","","197494","","2023-06-25","2025-03-28",,"",,0,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -491,"[P][R] Malignant tumor of urinary bladder","Malignant tumor of urinary bladder","Malignant tumor of urinary bladder","rao@ohdsi.org","Pending peer review","","all events of Malignant tumor of urinary bladder. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","196360, 197508","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -492,"[P][R] Cardiogenic shock","Cardiogenic shock","Cardiogenic shock","rao@ohdsi.org","Pending peer review","","all events of Cardiogenic shock. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","198571","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -493,"[P][R] Malignant tumor of cervix","Malignant tumor of cervix","Malignant tumor of cervix","rao@ohdsi.org","Pending peer review","","all events of Malignant tumor of cervix. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","196359, 198984","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -494,"[P][R] Primary malignant neoplasm of kidney","Primary malignant neoplasm of kidney","Primary malignant neoplasm of kidney","rao@ohdsi.org","Pending peer review","","all events of Primary malignant neoplasm of kidney. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","198985","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -495,"[P][R] Acute pancreatitis","Acute pancreatitis","Acute pancreatitis","rao@ohdsi.org","Pending peer review","","all events of Acute pancreatitis. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","199074","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -496,"[P][R] Abdominal pain","Abdominal pain","Abdominal pain","rao@ohdsi.org","Pending peer review","","all events of Abdominal pain. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","200219","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -497,"[P][R] Autoimmune hepatitis","Autoimmune hepatitis","Autoimmune hepatitis","rao@ohdsi.org","Pending peer review","","all events of Autoimmune hepatitis. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","200762","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -498,"[P][R] Toxic shock syndrome","Toxic shock syndrome","Toxic shock syndrome","rao@ohdsi.org","Pending peer review","","all events of Toxic shock syndrome. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","201214","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -499,"[P][R] Type 1 diabetes mellitus","Type 1 diabetes mellitus","Type 1 diabetes mellitus","rao@ohdsi.org","Pending peer review","","all events of Type 1 diabetes mellitus. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","201254","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -500,"[P][R] Gastritis","Gastritis","Gastritis","rao@ohdsi.org","Pending peer review","","all events of Gastritis. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","201340","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -501,"[P][R] Crohn's disease","Crohn's disease","Crohn's disease","rao@ohdsi.org","Pending peer review","","all events of Crohn's disease. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","201606","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -502,"[P][R] Kidney stone","Kidney stone","Kidney stone","rao@ohdsi.org","Pending peer review","","all events of Kidney stone. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","201620","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -503,"[P][R] Type 2 diabetes mellitus","Type 2 diabetes mellitus","Type 2 diabetes mellitus","rao@ohdsi.org","Pending peer review","","all events of Type 2 diabetes mellitus. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","201826","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -504,"[P][R] Sjögren's syndrome","Sjögren's syndrome","Sjögren's syndrome","rao@ohdsi.org","Pending peer review","","all events of Sjögren's syndrome. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","254443","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -505,"[P][R] Cough","Cough","Cough","rao@ohdsi.org","Pending peer review","","all events of Cough. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","254761","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -506,"[P][R] Chronic obstructive lung disease","Chronic obstructive lung disease","Chronic obstructive lung disease","rao@ohdsi.org","Pending peer review","","all events of Chronic obstructive lung disease. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","255573","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -507,"[P][R] Pneumonia","Pneumonia","Pneumonia","rao@ohdsi.org","Pending peer review","","all events of Pneumonia. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","255848","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -508,"[P][R] Allergic rhinitis","Allergic rhinitis","Allergic rhinitis","rao@ohdsi.org","Pending peer review","","all events of Allergic rhinitis. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","257007","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -509,"[P][R] Systemic lupus erythematosus","Systemic lupus erythematosus","Systemic lupus erythematosus","rao@ohdsi.org","Pending peer review","","all events of Systemic lupus erythematosus. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","257628","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -510,"[P][R] Acute myocardial infarction","Acute myocardial infarction","Acute myocardial infarction","rao@ohdsi.org","Pending peer review","","all events of Acute myocardial infarction. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","312327, 444406","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -511,"[P][R] Dyspnea","Dyspnea","Dyspnea","rao@ohdsi.org","Pending peer review","","all events of Dyspnea. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","312437","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -512,"[P][R] Thromboangiitis obliterans","Thromboangiitis obliterans","Thromboangiitis obliterans","rao@ohdsi.org","Pending peer review","","all events of Thromboangiitis obliterans. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","312939","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -513,"[P][R] Atrial fibrillation","Atrial fibrillation","Atrial fibrillation","rao@ohdsi.org","Pending peer review","","all events of Atrial fibrillation. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","313217","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -514,"[P][R] Granulomatosis with polyangiitis","Granulomatosis with polyangiitis","Granulomatosis with polyangiitis","rao@ohdsi.org","Pending peer review","","all events of Granulomatosis with polyangiitis. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","313223","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -515,"[P][R] Sleep apnea","Sleep apnea","Sleep apnea","rao@ohdsi.org","Pending peer review","","all events of Sleep apnea. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","313459, 442588","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -516,"[P][R] Thrombotic microangiopathy","Thrombotic microangiopathy","Thrombotic microangiopathy","rao@ohdsi.org","Pending peer review","","all events of Thrombotic microangiopathy. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","313800","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -517,"[P][R] Acute febrile mucocutaneous lymph node syndrome","Acute febrile mucocutaneous lymph node syndrome","Acute febrile mucocutaneous lymph node syndrome","rao@ohdsi.org","Pending peer review","","all events of Acute febrile mucocutaneous lymph node syndrome. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","314381","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -518,"[P][R] Myocarditis","Myocarditis","Myocarditis","rao@ohdsi.org","Pending peer review","","all events of Myocarditis. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","314383","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -519,"[P][R] Heart failure","Heart failure","Heart failure","rao@ohdsi.org","Pending peer review","","all events of Heart failure. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","316139, 319835","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -520,"[P][R] Hypertensive disorder","Hypertensive disorder","Hypertensive disorder","rao@ohdsi.org","Pending peer review","","all events of Hypertensive disorder. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","312648, 316866, 4028741","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -521,"[P][R] Asthma","Asthma","Asthma","rao@ohdsi.org","Pending peer review","","all events of Asthma. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","317009","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -522,"[P][R] Coronary arteriosclerosis","Coronary arteriosclerosis","Coronary arteriosclerosis","rao@ohdsi.org","Pending peer review","","all events of Coronary arteriosclerosis. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","317576, 764123","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -523,"[P][R] Arteriosclerotic vascular disease","Arteriosclerotic vascular disease","Arteriosclerotic vascular disease","rao@ohdsi.org","Pending peer review","","all events of Arteriosclerotic vascular disease. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","318443, 764123","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -524,"[P][R] Migraine","Migraine","Migraine","rao@ohdsi.org","Pending peer review","","all events of Migraine. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","318736","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -525,"[P][R] Gastroesophageal reflux disease","Gastroesophageal reflux disease","Gastroesophageal reflux disease","rao@ohdsi.org","Pending peer review","","all events of Gastroesophageal reflux disease. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","318800","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -526,"[P][R] Orthostatic hypotension","Orthostatic hypotension","Orthostatic hypotension","rao@ohdsi.org","Pending peer review","","all events of Orthostatic hypotension. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","319041","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -527,"[P][R] Acute respiratory failure","Acute respiratory failure","Acute respiratory failure","rao@ohdsi.org","Pending peer review","","all events of Acute respiratory failure. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","319049","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -528,"[P][R] Polyarteritis nodosa","Polyarteritis nodosa","Polyarteritis nodosa","rao@ohdsi.org","Pending peer review","","all events of Polyarteritis nodosa. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","320749","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -529,"[P][R] Cardiac arrest","Cardiac arrest","Cardiac arrest","rao@ohdsi.org","Pending peer review","","all events of Cardiac arrest. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","321042","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -530,"[P][R] Peripheral vascular disease","Peripheral vascular disease","Peripheral vascular disease","rao@ohdsi.org","Pending peer review","","all events of Peripheral vascular disease. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","321052","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -531,"[P][R] Angina pectoris","Angina pectoris","Angina pectoris","rao@ohdsi.org","Pending peer review","","all events of Angina pectoris. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","321318","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -532,"[P][R] Heart disease","Heart disease","Heart disease","rao@ohdsi.org","Pending peer review","","all events of Heart disease. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","313217, 321588, 44784217","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -533,"[P][R] Otitis media","Otitis media","Otitis media","rao@ohdsi.org","Pending peer review","","all events of Otitis media. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","372328","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -534,"[P][R] Transient cerebral ischemia","Transient cerebral ischemia","Transient cerebral ischemia","rao@ohdsi.org","Pending peer review","","all events of Transient cerebral ischemia. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","373503","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -535,"[P][R] Acute disseminated encephalomyelitis","Acute disseminated encephalomyelitis","Acute disseminated encephalomyelitis","rao@ohdsi.org","Pending peer review","","all events of Acute disseminated encephalomyelitis. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","374021","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -536,"[P][R] Age related macular degeneration","Age related macular degeneration","Age related macular degeneration","rao@ohdsi.org","Pending peer review","","all events of Age related macular degeneration. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","374028, 376966","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -537,"[P][R] Sensorineural hearing loss","Sensorineural hearing loss","Sensorineural hearing loss","rao@ohdsi.org","Pending peer review","","all events of Sensorineural hearing loss. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","374366, 4110815","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -538,"[P][R] Paralytic syndrome","Paralytic syndrome","Paralytic syndrome","rao@ohdsi.org","Pending peer review","","all events of Paralytic syndrome. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","374377, 4134120","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -539,"[P][R] Multiple sclerosis","Multiple sclerosis","Multiple sclerosis","rao@ohdsi.org","Pending peer review","","all events of Multiple sclerosis. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","374919","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -540,"[P][R] Optic neuritis","Optic neuritis","Optic neuritis","rao@ohdsi.org","Pending peer review","","all events of Optic neuritis. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","374954","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -541,"[P][R] Idiopathic peripheral neuropathy","Idiopathic peripheral neuropathy","Idiopathic peripheral neuropathy","rao@ohdsi.org","Pending peer review","","all events of Idiopathic peripheral neuropathy. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","375806","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -542,"[P][R] Cerebral hemorrhage","Cerebral hemorrhage","Cerebral hemorrhage","rao@ohdsi.org","Pending peer review","","all events of Cerebral hemorrhage. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","376713","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -543,"[P][R] Seizure","Seizure","Seizure","rao@ohdsi.org","Pending peer review","","all events of Seizure. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","377091","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -544,"[P][R] Encephalitis","Encephalitis","Encephalitis","rao@ohdsi.org","Pending peer review","","all events of Encephalitis. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","378143, 380941","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -545,"[P][R] Headache","Headache","Headache","rao@ohdsi.org","Pending peer review","","all events of Headache. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","378253","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -546,"[P][R] Retinal detachment","Retinal detachment","Retinal detachment","rao@ohdsi.org","Pending peer review","","all events of Retinal detachment. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","378414","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -547,"[P][R] Retinal disorder","Retinal disorder","Retinal disorder","rao@ohdsi.org","Pending peer review","","all events of Retinal disorder. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","376966, 378416, 4116208","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -549,"[P][R] Epilepsy","Epilepsy","Epilepsy","rao@ohdsi.org","Pending peer review","","all events of Epilepsy. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","380378","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -550,"[P][R] Chronic inflammatory demyelinating polyradiculoneuropathy","Chronic inflammatory demyelinating polyradiculoneuropathy","Chronic inflammatory demyelinating polyradiculoneuropathy","rao@ohdsi.org","Pending peer review","","all events of Chronic inflammatory demyelinating polyradiculoneuropathy. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","381009","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -551,"[P][R] Microcephaly","Microcephaly","Microcephaly","rao@ohdsi.org","Pending peer review","","all events of Microcephaly. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","381114,606878","","2023-06-25","2023-09-22",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"Observation",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,,,,,,,,,, -552,"[P][R] Parkinson's disease","Parkinson's disease","Parkinson's disease","rao@ohdsi.org","Pending peer review","","all events of Parkinson's disease. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","381270","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -553,"[P][R] Cerebrovascular accident","Cerebrovascular accident","Cerebrovascular accident","rao@ohdsi.org","Pending peer review","","all events of Cerebrovascular accident. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","381316","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -554,"[P][R] Cerebrovascular disease","Cerebrovascular disease","Cerebrovascular disease","rao@ohdsi.org","Pending peer review","","all events of Cerebrovascular disease. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","381591, 4288310","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -555,"[P][R] Blood coagulation disorder","Blood coagulation disorder","Blood coagulation disorder","rao@ohdsi.org","Pending peer review","","all events of Blood coagulation disorder. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","432585","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -556,"[P][R] Amyloidosis","Amyloidosis","Amyloidosis","rao@ohdsi.org","Pending peer review","","all events of Amyloidosis. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","432595","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -557,"[P][R] Angioedema","Angioedema","Angioedema","rao@ohdsi.org","Pending peer review","","all events of Angioedema. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","432791","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -558,"[P][R] Hyperlipidemia","Hyperlipidemia","Hyperlipidemia","rao@ohdsi.org","Pending peer review","","all events of Hyperlipidemia. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","432867","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -559,"[P][R] Thrombocytopenic disorder","Thrombocytopenic disorder","Thrombocytopenic disorder","rao@ohdsi.org","Pending peer review","","all events of Thrombocytopenic disorder. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","432870","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -560,"[P][R] Pancytopenia","Pancytopenia","Pancytopenia","rao@ohdsi.org","Pending peer review","","all events of Pancytopenia. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","432881","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -561,"[P][R] Myasthenic syndrome due to another disorder","Myasthenic syndrome due to another disorder","Myasthenic syndrome due to another disorder","rao@ohdsi.org","Pending peer review","","all events of Myasthenic syndrome due to another disorder. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","432893","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -562,"[P][R] Edema","Edema","Edema","rao@ohdsi.org","Pending peer review","","all events of Edema. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","433595","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -563,"[P][R] Obesity","Obesity","Obesity","rao@ohdsi.org","Pending peer review","","all events of Obesity. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","433736","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -564,"[P][R] Hidradenitis","Hidradenitis","Hidradenitis","rao@ohdsi.org","Pending peer review","","all events of Hidradenitis. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","434119","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -565,"[P][R] Tuberculosis","Tuberculosis","Tuberculosis","rao@ohdsi.org","Pending peer review","","all events of Tuberculosis. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","253954, 434557","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -566,"[P][R] Kaposi's sarcoma (clinical)","Kaposi's sarcoma (clinical)","Kaposi's sarcoma (clinical)","rao@ohdsi.org","Pending peer review","","all events of Kaposi's sarcoma (clinical). Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","434584","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -567,"[P][R] B-cell lymphoma (clinical)","B-cell lymphoma (clinical)","B-cell lymphoma (clinical)","rao@ohdsi.org","Pending peer review","","all events of B-cell lymphoma (clinical). Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","434592, 4300704","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -568,"[P][R] Hyperkalemia","Hyperkalemia","Hyperkalemia","rao@ohdsi.org","Pending peer review","","all events of Hyperkalemia. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","434610","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -569,"[P][R] Systemic inflammatory response syndrome","Systemic inflammatory response syndrome","Systemic inflammatory response syndrome","rao@ohdsi.org","Pending peer review","","all events of Systemic inflammatory response syndrome. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","434821","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -570,"[P][R] Leukopenia","Leukopenia","Leukopenia","rao@ohdsi.org","Pending peer review","","all events of Leukopenia. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","432881, 435224","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -571,"[P] Schizophrenia","Schizophrenia","Schizophrenia","rao@ohdsi.org","Pending peer review","","all events of Schizophrenia. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","435783","","2023-06-25","2025-03-29",,"",,0,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -572,"[P][R] Psychotic disorder","Psychotic disorder","Psychotic disorder","rao@ohdsi.org","Pending peer review","","all events of Psychotic disorder. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","435783, 436073","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -573,"[P] Chronic pain","Chronic pain","Chronic pain","rao@ohdsi.org","Pending peer review","","all events of Chronic pain. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","436096","","2023-06-25","2025-03-28",,"",,0,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -574,"[P][R] Narcolepsy","Narcolepsy","Narcolepsy","rao@ohdsi.org","Pending peer review","","all events of Narcolepsy. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","436100","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -575,"[P][R] Behcet's syndrome","Behcet's syndrome","Behcet's syndrome","rao@ohdsi.org","Pending peer review","","all events of Behcet's syndrome. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","436642","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -576,"[P] Bipolar disorder","Bipolar disorder","Bipolar disorder","rao@ohdsi.org","Pending peer review","","all events of Bipolar disorder. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","436665","","2023-06-25","2025-03-29",,"",,0,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -577,"[P][R] Posttraumatic stress disorder","Posttraumatic stress disorder","Posttraumatic stress disorder","rao@ohdsi.org","Pending peer review","","all events of Posttraumatic stress disorder. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","436676","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -578,"[P][R] Insomnia","Insomnia","Insomnia","rao@ohdsi.org","Pending peer review","","all events of Insomnia. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","436962","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -579,"[P][R] Ankylosing spondylitis","Ankylosing spondylitis","Ankylosing spondylitis","rao@ohdsi.org","Pending peer review","","all events of Ankylosing spondylitis. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","437082","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -580,"[P][R] Respiratory syncytial virus infection","Respiratory syncytial virus infection","Respiratory syncytial virus infection","rao@ohdsi.org","Pending peer review","","all events of Respiratory syncytial virus infection. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","254058, 437222","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -581,"[P][R] Multiple myeloma","Multiple myeloma","Multiple myeloma","rao@ohdsi.org","Pending peer review","","all events of Multiple myeloma. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","437233","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -582,"[P][R] Bleeding","Bleeding","Bleeding","rao@ohdsi.org","Pending peer review","","all events of Bleeding. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","192671, 437312","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -583,"[P][R] Glaucoma","Glaucoma","Glaucoma","rao@ohdsi.org","Pending peer review","","all events of Glaucoma. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","435262, 437541","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -584,"[P][R] Fever","Fever","Fever","rao@ohdsi.org","Pending peer review","","all events of Fever. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","437663","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -585,"[P][R] Hypokalemia","Hypokalemia","Hypokalemia","rao@ohdsi.org","Pending peer review","","all events of Hypokalemia. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","437833","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -586,"[P][R] Opioid dependence","Opioid dependence","Opioid dependence","rao@ohdsi.org","Pending peer review","","all events of Opioid dependence. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","438120","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -587,"[P][R] Opioid abuse","Opioid abuse","Opioid abuse","rao@ohdsi.org","Pending peer review","","all events of Opioid abuse. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","438130","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -588,"[P][R] Attention deficit hyperactivity disorder","Attention deficit hyperactivity disorder","Attention deficit hyperactivity disorder","rao@ohdsi.org","Pending peer review","","all events of Attention deficit hyperactivity disorder. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","438409","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -589,"[P][R] Pre-eclampsia","Pre-eclampsia","Pre-eclampsia","rao@ohdsi.org","Pending peer review","","all events of Pre-eclampsia. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","439393","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -590,"[P][R] Human immunodeficiency virus infection","Human immunodeficiency virus infection","Human immunodeficiency virus infection","rao@ohdsi.org","Pending peer review","","all events of Human immunodeficiency virus infection. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","439727","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -591,"[P][R] Autism spectrum disorder","Autism spectrum disorder","Autism spectrum disorder","rao@ohdsi.org","Pending peer review","","all events of Autism spectrum disorder. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","439776, 439780","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -592,"[P][R] Anemia","Anemia","Anemia","rao@ohdsi.org","Pending peer review","","all events of Anemia. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","439777","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -593,"[P][R] Paralysis","Paralysis","Paralysis","rao@ohdsi.org","Pending peer review","","all events of Paralysis. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","374923, 440377","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -594,"[P][R] Depressive disorder","Depressive disorder","Depressive disorder","rao@ohdsi.org","Pending peer review","","all events of Depressive disorder. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","440383","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -595,"[P][R] Pulmonary embolism","Pulmonary embolism","Pulmonary embolism","rao@ohdsi.org","Pending peer review","","all events of Pulmonary embolism. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","440417, 43530605","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -596,"[P][R] Gout","Gout","Gout","rao@ohdsi.org","Pending peer review","","all events of Gout. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","440674","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -597,"[P][R] Takayasu's disease","Takayasu's disease","Takayasu's disease","rao@ohdsi.org","Pending peer review","","all events of Takayasu's disease. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","440740","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -598,"[P][R] Methicillin resistant Staphylococcus aureus infection","Methicillin resistant Staphylococcus aureus infection","Methicillin resistant Staphylococcus aureus infection","rao@ohdsi.org","Pending peer review","","all events of Methicillin resistant Staphylococcus aureus infection. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","440940","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -599,"[P][R] Anaphylaxis","Anaphylaxis","Anaphylaxis","rao@ohdsi.org","Pending peer review","","all events of Anaphylaxis. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","441202","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -600,"[P][R] Open-angle glaucoma","Open-angle glaucoma","Open-angle glaucoma","rao@ohdsi.org","Pending peer review","","all events of Open-angle glaucoma. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","435262, 441284","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -601,"[P][R] Vomiting","Vomiting","Vomiting","rao@ohdsi.org","Pending peer review","","all events of Vomiting. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","27674, 441408","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -602,"[P][R] Anxiety","Anxiety","Anxiety","rao@ohdsi.org","Pending peer review","","all events of Anxiety. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","441542, 442077","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -603,"[P][R] Human papilloma virus infection","Human papilloma virus infection","Human papilloma virus infection","rao@ohdsi.org","Pending peer review","","all events of Human papilloma virus infection. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","140641, 441788","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -604,"[P][R] Cranial nerve disorder","Cranial nerve disorder","Cranial nerve disorder","rao@ohdsi.org","Pending peer review","","all events of Cranial nerve disorder. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","374923, 441848","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -605,"[P][R] Muscle pain","Muscle pain","Muscle pain","rao@ohdsi.org","Pending peer review","","all events of Muscle pain. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","442752","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -606,"[P][R] Stillbirth","Stillbirth","Stillbirth","rao@ohdsi.org","Pending peer review","","all events of Stillbirth. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","443213, 4014454","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -607,"[P][R] Malignant tumor of stomach","Malignant tumor of stomach","Malignant tumor of stomach","rao@ohdsi.org","Pending peer review","","all events of Malignant tumor of stomach. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","196044, 443387","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -608,"[P][R] Malignant neoplastic disease","Malignant neoplastic disease","Malignant neoplastic disease","rao@ohdsi.org","Pending peer review","","all events of Malignant neoplastic disease. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","137809, 443392","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -609,"[P][R] Cerebral infarction","Cerebral infarction","Cerebral infarction","rao@ohdsi.org","Pending peer review","","all events of Cerebral infarction. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","443454","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -610,"[P][R] Eclampsia","Eclampsia","Eclampsia","rao@ohdsi.org","Pending peer review","","all events of Eclampsia. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","443700, 4116344","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -611,"[P][R] Diabetic ketoacidosis","Diabetic ketoacidosis","Diabetic ketoacidosis","rao@ohdsi.org","Pending peer review","","all events of Diabetic ketoacidosis. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","443727, 4009303","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -612,"[P][R] Acute tubular necrosis","Acute tubular necrosis","Acute tubular necrosis","rao@ohdsi.org","Pending peer review","","all events of Acute tubular necrosis. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","444044","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -613,"[P][R] Tachycardia","Tachycardia","Tachycardia","rao@ohdsi.org","Pending peer review","","all events of Tachycardia. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","313217, 444070","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -614,"[P][R] Venous thrombosis","Venous thrombosis","Venous thrombosis","rao@ohdsi.org","Pending peer review","","all events of Venous thrombosis. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","444247, 43531681","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -615,"[P][R] Herpes simplex","Herpes simplex","Herpes simplex","rao@ohdsi.org","Pending peer review","","all events of Herpes simplex. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","440021, 444429","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -616,"[P][R] Acute arthritis","Acute arthritis","Acute arthritis","rao@ohdsi.org","Pending peer review","","all events of Acute arthritis. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","433000, 4000634","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -617,"[P][R] Monoclonal gammopathy (clinical)","Monoclonal gammopathy (clinical)","Monoclonal gammopathy (clinical)","rao@ohdsi.org","Pending peer review","","all events of Monoclonal gammopathy (clinical). Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","4002359","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -618,"[P][R] Pulmonary arterial hypertension","Pulmonary arterial hypertension","Pulmonary arterial hypertension","rao@ohdsi.org","Pending peer review","","all events of Pulmonary arterial hypertension. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","4013643, 44783618","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -619,"[P][R] Gestational diabetes mellitus","Gestational diabetes mellitus","Gestational diabetes mellitus","rao@ohdsi.org","Pending peer review","","all events of Gestational diabetes mellitus. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","4024659","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -620,"[P][R] Uveitis","Uveitis","Uveitis","rao@ohdsi.org","Pending peer review","","all events of Uveitis. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","434926, 4028363","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -621,"[P][R] Renal impairment","Renal impairment","Renal impairment","rao@ohdsi.org","Pending peer review","","all events of Renal impairment. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","193782, 4030518","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -622,"[P][R] Non-Hodgkin's lymphoma (clinical)","Non-Hodgkin's lymphoma (clinical)","Non-Hodgkin's lymphoma (clinical)","rao@ohdsi.org","Pending peer review","","all events of Non-Hodgkin's lymphoma (clinical). Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","4038838, 4300704","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -623,"[P][R] Motor neuropathy with multiple conduction block","Motor neuropathy with multiple conduction block","Motor neuropathy with multiple conduction block","rao@ohdsi.org","Pending peer review","","all events of Motor neuropathy with multiple conduction block. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","4046338","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -624,"[P][R] Primary sclerosing cholangitis","Primary sclerosing cholangitis","Primary sclerosing cholangitis","rao@ohdsi.org","Pending peer review","","all events of Primary sclerosing cholangitis. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","4058821","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -625,"[P][R] Pustular psoriasis","Pustular psoriasis","Pustular psoriasis","rao@ohdsi.org","Pending peer review","","all events of Pustular psoriasis. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","4063434, 4100184","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -626,"[P][R] Cirrhosis of liver","Cirrhosis of liver","Cirrhosis of liver","rao@ohdsi.org","Pending peer review","","all events of Cirrhosis of liver. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","194692, 4064161","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -627,"[P][R] Miscarriage","Miscarriage","Miscarriage","rao@ohdsi.org","Pending peer review","","all events of Miscarriage. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","76482, 4067106","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -628,"[P][R] Fisher's syndrome","Fisher's syndrome","Fisher's syndrome","rao@ohdsi.org","Pending peer review","","all events of Fisher's syndrome. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","4070552","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -629,"[P][R] Inflammatory bowel disease","Inflammatory bowel disease","Inflammatory bowel disease","rao@ohdsi.org","Pending peer review","","all events of Inflammatory bowel disease. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","195585, 4074815","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -630,"[P][R] Facial palsy","Facial palsy","Facial palsy","rao@ohdsi.org","Pending peer review","","all events of Facial palsy. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","374923, 4091559","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -631,"[P][R] Livebirth","Livebirth","Livebirth","rao@ohdsi.org","Pending peer review","","all events of Livebirth. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","4014295, 4092289","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -632,"[P][R] Antiphospholipid syndrome","Antiphospholipid syndrome","Antiphospholipid syndrome","rao@ohdsi.org","Pending peer review","","all events of Antiphospholipid syndrome. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","4098292","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -633,"[P][R] Waldenström macroglobulinemia","Waldenström macroglobulinemia","Waldenström macroglobulinemia","rao@ohdsi.org","Pending peer review","","all events of Waldenström macroglobulinemia. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","4098597","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -634,"[P][R] Immunoglobulin A vasculitis","Immunoglobulin A vasculitis","Immunoglobulin A vasculitis","rao@ohdsi.org","Pending peer review","","all events of Immunoglobulin A vasculitis. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","4101602","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -635,"[P][R] Ventricular tachycardia","Ventricular tachycardia","Ventricular tachycardia","rao@ohdsi.org","Pending peer review","","all events of Ventricular tachycardia. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","437579, 4103295","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -636,"[P][R] Malignant tumor of breast","Malignant tumor of breast","Malignant tumor of breast","rao@ohdsi.org","Pending peer review","","all events of Malignant tumor of breast. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","137809, 4112853","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -637,"[P][R] Peripheral ischemia","Peripheral ischemia","Peripheral ischemia","rao@ohdsi.org","Pending peer review","","all events of Peripheral ischemia. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","4124836, 4291464","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -638,"[P][R] Neoplasm of thyroid gland","Neoplasm of thyroid gland","Neoplasm of thyroid gland","rao@ohdsi.org","Pending peer review","","all events of Neoplasm of thyroid gland. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","133424, 4131909","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -639,"[P][R] Deep venous thrombosis","Deep venous thrombosis","Deep venous thrombosis","rao@ohdsi.org","Pending peer review","","all events of Deep venous thrombosis. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","4133004, 43531681","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -640,"[P][R] Vasculitis","Vasculitis","Vasculitis","rao@ohdsi.org","Pending peer review","","all events of Vasculitis. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","199856, 4137275","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -641,"[P][R] Pericarditis","Pericarditis","Pericarditis","rao@ohdsi.org","Pending peer review","","all events of Pericarditis. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","320116, 4138837","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -642,"[P][R] Immune reconstitution syndrome","Immune reconstitution syndrome","Immune reconstitution syndrome","rao@ohdsi.org","Pending peer review","","all events of Immune reconstitution syndrome. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","4139034","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -643,"[P][R] Follicular non-Hodgkin's lymphoma","Follicular non-Hodgkin's lymphoma","Follicular non-Hodgkin's lymphoma","rao@ohdsi.org","Pending peer review","","all events of Follicular non-Hodgkin's lymphoma. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","4147411","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -644,"[P][R] Malignant tumor of prostate","Malignant tumor of prostate","Malignant tumor of prostate","rao@ohdsi.org","Pending peer review","","all events of Malignant tumor of prostate. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","200962, 4163261","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -645,"[P][R] Guillain-Barré syndrome","Guillain-Barré syndrome","Guillain-Barré syndrome","rao@ohdsi.org","Pending peer review","","all events of Guillain-Barré syndrome. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","4164770","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -646,"[P][R] Bradycardia","Bradycardia","Bradycardia","rao@ohdsi.org","Pending peer review","","all events of Bradycardia. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","4169095","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -647,"[P][R] Retinopathy due to diabetes mellitus","Retinopathy due to diabetes mellitus","Retinopathy due to diabetes mellitus","rao@ohdsi.org","Pending peer review","","all events of Retinopathy due to diabetes mellitus. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","376683, 4174977","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -648,"[P][R] Malignant tumor of colon","Malignant tumor of colon","Malignant tumor of colon","rao@ohdsi.org","Pending peer review","","all events of Malignant tumor of colon. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","197500, 4180790","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -649,"[P][R] Malignant tumor of esophagus","Malignant tumor of esophagus","Malignant tumor of esophagus","rao@ohdsi.org","Pending peer review","","all events of Malignant tumor of esophagus. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","26638, 4181343","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -650,"[P][R] Malignant tumor of ovary","Malignant tumor of ovary","Malignant tumor of ovary","rao@ohdsi.org","Pending peer review","","all events of Malignant tumor of ovary. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","200051, 4181351","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -651,"[P][R] Dementia","Dementia","Dementia","rao@ohdsi.org","Pending peer review","","all events of Dementia. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","4182210","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -652,"[P][R] Vasculitis of the skin","Vasculitis of the skin","Vasculitis of the skin","rao@ohdsi.org","Pending peer review","","all events of Vasculitis of the skin. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","4182711","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -653,"[P][R] Loss of sense of smell","Loss of sense of smell","Loss of sense of smell","rao@ohdsi.org","Pending peer review","","all events of Loss of sense of smell. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","4185711","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -654,"[P][R] Ischemic heart disease","Ischemic heart disease","Ischemic heart disease","rao@ohdsi.org","Pending peer review","","all events of Ischemic heart disease. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","321318, 4185932","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -655,"[P][R] Aseptic meningitis","Aseptic meningitis","Aseptic meningitis","rao@ohdsi.org","Pending peer review","","all events of Aseptic meningitis. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","434869, 4201096","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -656,"[P][R] Fatigue","Fatigue","Fatigue","rao@ohdsi.org","Pending peer review","","all events of Fatigue. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","437113, 4223659","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -657,"[P][R] Paresthesia","Paresthesia","Paresthesia","rao@ohdsi.org","Pending peer review","","all events of Paresthesia. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","4236484","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -658,"[P][R] Hepatic failure","Hepatic failure","Hepatic failure","rao@ohdsi.org","Pending peer review","","all events of Hepatic failure. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","4245975","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -659,"[P][R] Malignant neoplasm of liver","Malignant neoplasm of liver","Malignant neoplasm of liver","rao@ohdsi.org","Pending peer review","","all events of Malignant neoplasm of liver. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","198700, 4246127","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -660,"[P][R] Juvenile rheumatoid arthritis","Juvenile rheumatoid arthritis","Juvenile rheumatoid arthritis","rao@ohdsi.org","Pending peer review","","all events of Juvenile rheumatoid arthritis. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","72714, 4253901","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -661,"[P][R] Respiratory failure","Respiratory failure","Respiratory failure","rao@ohdsi.org","Pending peer review","","all events of Respiratory failure. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","319049, 4256228","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -662,"[P][R] Diverticulitis of large intestine","Diverticulitis of large intestine","Diverticulitis of large intestine","rao@ohdsi.org","Pending peer review","","all events of Diverticulitis of large intestine. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","77025, 4260535","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -663,"[P][R] Influenza","Influenza","Influenza","rao@ohdsi.org","Pending peer review","","all events of Influenza. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","4183609, 4266367","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -664,"[P][R] Malaise","Malaise","Malaise","rao@ohdsi.org","Pending peer review","","all events of Malaise. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","439926, 4272240","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -665,"[P][R] Suicidal thoughts","Suicidal thoughts","Suicidal thoughts","rao@ohdsi.org","Pending peer review","","all events of Suicidal thoughts. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","4273391","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -666,"[P][R] Type B viral hepatitis","Type B viral hepatitis","Type B viral hepatitis","rao@ohdsi.org","Pending peer review","","all events of Type B viral hepatitis. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","439674, 4281232","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -667,"[P][R] Guttate psoriasis","Guttate psoriasis","Guttate psoriasis","rao@ohdsi.org","Pending peer review","","all events of Guttate psoriasis. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","4284492","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -668,"[P][R] SLE glomerulonephritis syndrome","SLE glomerulonephritis syndrome","SLE glomerulonephritis syndrome","rao@ohdsi.org","Pending peer review","","all events of SLE glomerulonephritis syndrome. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","4285717","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -669,"[P][R] Schizoaffective disorder","Schizoaffective disorder","Schizoaffective disorder","rao@ohdsi.org","Pending peer review","","all events of Schizoaffective disorder. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","4286201","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -670,"[P][R] Temporal arteritis","Temporal arteritis","Temporal arteritis","rao@ohdsi.org","Pending peer review","","all events of Temporal arteritis. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","4290976, 4343935","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -671,"[P][R] Pregnant","Pregnant","Pregnant","rao@ohdsi.org","Pending peer review","","all events of Pregnant. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","4299535","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -672,"[P][R] Sense of smell impaired","Sense of smell impaired","Sense of smell impaired","rao@ohdsi.org","Pending peer review","","all events of Sense of smell impaired. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","4307095","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -673,"[P][R] Primary malignant neoplasm of respiratory tract","Primary malignant neoplasm of respiratory tract","Primary malignant neoplasm of respiratory tract","rao@ohdsi.org","Pending peer review","","all events of Primary malignant neoplasm of respiratory tract. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","4311499","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -674,"[P][R] Degeneration of retina","Degeneration of retina","Degeneration of retina","rao@ohdsi.org","Pending peer review","","all events of Degeneration of retina. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","376966, 4318985","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -675,"[P][R] Pulmonary hypertension","Pulmonary hypertension","Pulmonary hypertension","rao@ohdsi.org","Pending peer review","","all events of Pulmonary hypertension. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","4322024, 4339214","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -676,"[P][R] Necrosis of artery","Necrosis of artery","Necrosis of artery","rao@ohdsi.org","Pending peer review","","all events of Necrosis of artery. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","4344489,320749,319047","","2023-06-25","2023-09-22",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -677,"[P][R] Preterm labor with preterm delivery","Preterm labor with preterm delivery","Preterm labor with preterm delivery","rao@ohdsi.org","Pending peer review","","all events of Preterm labor with preterm delivery. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","36712702, 45757176","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -678,"[P][R] COVID-19","COVID-19","COVID-19","rao@ohdsi.org","Pending peer review","","all events of COVID-19. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","37311061","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -679,"[P][R] Takotsubo cardiomyopathy","Takotsubo cardiomyopathy","Takotsubo cardiomyopathy","rao@ohdsi.org","Pending peer review","","all events of Takotsubo cardiomyopathy. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","40479589","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -680,"[P][R] Mantle cell lymphoma","Mantle cell lymphoma","Mantle cell lymphoma","rao@ohdsi.org","Pending peer review","","all events of Mantle cell lymphoma. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","40481901","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -681,"[P][R] Malignant neoplasm of anorectum","Malignant neoplasm of anorectum","Malignant neoplasm of anorectum","rao@ohdsi.org","Pending peer review","","all events of Malignant neoplasm of anorectum. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","74582, 40481902","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -682,"[P][R] Marginal zone lymphoma","Marginal zone lymphoma","Marginal zone lymphoma","rao@ohdsi.org","Pending peer review","","all events of Marginal zone lymphoma. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","40490918","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -683,"[P][R] Antineutrophil cytoplasmic antibody positive vasculitis","Antineutrophil cytoplasmic antibody positive vasculitis","Antineutrophil cytoplasmic antibody positive vasculitis","rao@ohdsi.org","Pending peer review","","all events of Antineutrophil cytoplasmic antibody positive vasculitis. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","313223, 42535714","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -684,"[P][R] Sensory disorder of smell and/or taste","Sensory disorder of smell and/or taste","Sensory disorder of smell and/or taste","rao@ohdsi.org","Pending peer review","","all events of Sensory disorder of smell and/or taste. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","43530714","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -685,"[P][R] Cardiac arrhythmia","Cardiac arrhythmia","Cardiac arrhythmia","rao@ohdsi.org","Pending peer review","","all events of Cardiac arrhythmia. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","313217, 44784217","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -686,"[P][R] Fracture of bone of hip region","Fracture of bone of hip region","Fracture of bone of hip region","rao@ohdsi.org","Pending peer review","","all events of Fracture of bone of hip region. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","434500, 45763653","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -687,"[P][R] Chronic kidney disease","Chronic kidney disease","Chronic kidney disease","rao@ohdsi.org","Pending peer review","","all events of Chronic kidney disease. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","193782, 46271022","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -688,"[P][R] Death","Death","Death","rao@ohdsi.org","Pending peer review","","all events of Suicide. Persons exit on cohort end date","#Referent, #Observation",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","440925","","2023-06-25","2023-09-20",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"Observation",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,,,,,,,,,, -689,"[P][R] Newborn death","Newborn death","Newborn death","rao@ohdsi.org","Pending peer review","","all events of Newborn death. Persons exit on cohort end date","#Referent, #Observation",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","4079843","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"Observation",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,,,,,,,,,, -690,"[P][R] Suicide","Suicide","Suicide","rao@ohdsi.org","Pending peer review","","all events of Death. Persons exit on cohort end date","#Referent, #Observation",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","4306655","","2023-06-25","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"Observation",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,,,,,,,,,, -691,"Transverse myelitis or symptoms indexed on symptoms or diagnosis","Transverse myelitis or symptoms indexed on symptoms or diagnosis","Transverse myelitis or symptoms indexed on symptoms or diagnosis","rao@ohdsi.org","Accepted","3.9.0","events with a diagnosis of transverse myelitis indexed on diagnosis of transverse myelitis, related spinal disease or symptoms of transverse myelitis, followed by a diagnosis of transverse myelitis within 30 days. Symptoms of Transverse Myelitis included asthenia, muscle weakness, myelitis, paresthesia","#Accepted, #Level2",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","Evan Minty","","79908, 139803, 443904","","2023-06-26","2023-09-19",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",2,1,"ConditionOccurrence",0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -692,"Transverse myelitis indexed on diagnosis","Transverse myelitis indexed on diagnosis","Transverse myelitis indexed on diagnosis","rao@ohdsi.org","Accepted","3.7.0","events with a diagnosis of transverse myelitis indexed on diagnosis of transverse myelitis. Events have a 365 days washout period. The events persist for 1 day. Symptoms of Transverse Myelitis included asthenia, muscle weakness, myelitis, paresthesia","#Accepted, #Level2",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","Evan Minty","","139803, 443904","","2023-06-26","2023-09-19",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -693,"Acquired Neutropenia or unspecified leukopenia","Acquired Neutropenia or unspecified leukopenia","Acquired Neutropenia or unspecified leukopenia","rao@ohdsi.org","Accepted","3.11.0","all events of neutropenia indexed on diagnosis or lab results with no congenital or genetic neutropenia","#PhenotypePhebruary, #2023, #Neutropenia",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","Anna Ostropolets","","435224","","2023-06-26","2023-09-19",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",0,3,"All",FALSE,"All","All",3,2,"ConditionOccurrence, Measurement",0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -694,"Appendicitis during Inpatient visit","Appendicitis during Inpatient visit","Appendicitis during Inpatient visit","rao@ohdsi.org","Accepted","3.11.0","events of appendicitis with an inpatient or ER visit with no events in 365 days clean window","#PhenotypePhebruary, #2023",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","Azza Shoaibi","","440448, 441604","","2023-06-26","2023-09-19",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",0,0,"All",TRUE,"All","All",1,1,"ConditionOccurrence",0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -695,"[P][R] Optic nerve glioma","Optic nerve glioma","Optic nerve glioma","rao@ohdsi.org","Pending peer review","","all events of Optic nerve glioma. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","4112970","","2023-06-26","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -696,"[P][R] Neurofibromatosis type 2","Neurofibromatosis type 2","Neurofibromatosis type 2","rao@ohdsi.org","Pending peer review","","all events of Neurofibromatosis type 2. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","380975","","2023-06-26","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -697,"[P][R] Neurofibromatosis type 1","Neurofibromatosis type 1","Neurofibromatosis type 1","rao@ohdsi.org","Pending peer review","","all events of Neurofibromatosis type 1. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","377252","","2023-06-26","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -698,"[P][R] Neurofibromatosis syndrome","Neurofibromatosis syndrome","Neurofibromatosis syndrome","rao@ohdsi.org","Pending peer review","","all events of Neurofibromatosis syndrome. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","376938","","2023-06-26","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -699,"[P][R] Major Depressive Disorder","Major Depressive Disorder","Major Depressive Disorder","rao@ohdsi.org","Pending peer review","","all events of Major Depressive Disorder. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","4152280, 4282096","","2023-06-26","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -701,"[P][R] Ascites","Ascites","Ascites","rao@ohdsi.org","Pending peer review","","all events of Ascites. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","200528","https://forums.ohdsi.org/t/17895","2023-07-09","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -702,"[P] Alanine aminotransferase (ALT) elevated","Alanine aminotransferase (ALT) elevated","Alanine aminotransferase (ALT) elevated","rao@ohdsi.org","Pending peer review","","All events of Alanine aminotransferase (ALT) elevated","",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","4146380","","2023-07-11","2023-09-25",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",30,0,"All",FALSE,"All","All",1,1,"Measurement",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -703,"[P] Aspartate aminotransferase (AST) elevated","Aspartate aminotransferase (AST) elevated","Aspartate aminotransferase (AST) elevated","rao@ohdsi.org","Pending peer review","","All events of Aspartate aminotransferase (ALT) elevated","",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","4263457","","2023-07-11","2023-09-25",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",30,0,"All",FALSE,"All","All",1,1,"Measurement",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -705,"[P] Total Bilirubin elevated","Total Bilirubin elevated","Total Bilirubin elevated","rao@ohdsi.org","Pending peer review","","Total Bilirubin elevated","",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","4230543","","2023-07-11","2023-09-25",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",30,0,"All",FALSE,"All","All",2,1,"Measurement",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -706,"[P] Prothrombin time (PT) elevated","Prothrombin time (PT) elevated","Prothrombin time (PT) elevated","rao@ohdsi.org","Pending peer review","","Prothrombin time (PT) elevated","",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","4055672","","2023-07-11","2023-09-25",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",30,0,"All",FALSE,"All","All",1,1,"Measurement",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -707,"Inpatient Hospitalization (0Pe, 1Era)","Inpatient Hospitalization (0Pe, 1Era)","Inpatient Hospitalization (0Pe, 1Era)","rao@ohdsi.org","Accepted","3.4.0","All events of Inpatient visit. This cohort is deemed validated as it represents data convention and did not need to go thru peer review process","#standard, #Visits",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","","","2023-07-12","2023-09-19",,"23",,0,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"VisitOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,1,,,,,,,,, -708,"[P] International normalized ratio (INR) elevated","International normalized ratio (INR) elevated","International normalized ratio (INR)","rao@ohdsi.org","Pending peer review","","International normalized ratio (INR)","",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","4306239","","2023-07-14","2023-09-25",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",30,0,"All",FALSE,"All","All",1,1,"Measurement",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -709,"[P][R] Chronic liver disease","Chronic liver disease","Chronic liver disease","rao@ohdsi.org","Pending peer review","","all events of Chronic liver disease. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","4212540","","2023-07-14","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -710,"[P] Cirrhosis of liver or its sequela","Cirrhosis of liver or its sequela","Cirrhosis of liver or its sequela","rao@ohdsi.org","Pending peer review","","earliest event of Cirrhosis of liver or its sequela. Persons exit on end of observation period","#Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","4064161","","2023-07-19","2025-03-28",,"",,0,,,"ERA","0","end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,, -711,"[P][R] Transplanted liver present","Transplanted liver present","Transplanted liver present","rao@ohdsi.org","Pending peer review","","all events of Transplanted liver present. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","42537742","","2023-07-19","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -712,"[P] Viral hepatitis including history of","Viral hepatitis including history of","Viral hepatitis including history of","rao@ohdsi.org","Pending peer review","","All events of Viral hepatitis including history of","",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","4291005","","2023-07-19","2023-09-25",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",730,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -713,"[P] Alcoholic hepatitis or alcohol liver disorder","Alcoholic hepatitis or alcohol liver disorder","Alcoholic hepatitis or alcohol liver disorder","rao@ohdsi.org","Pending peer review","","all events of Alcoholic hepatitis or alcohol liver disorder","",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","4340383","","2023-07-19","2023-09-25",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",365,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -714,"[P][R] Endometriosis (clinical)","Endometriosis (clinical)","Endometriosis (clinical)","rao@ohdsi.org","Pending peer review","","all events of Endometriosis (clinical). Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","433527","","2023-07-19","2023-09-19",,"",,1,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -715,"[P] Hepatic fibrosis","Hepatic fibrosis","Hepatic fibrosis","rao@ohdsi.org","Pending peer review","","all events of Hepatic Fibrosis. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","4064161,4267417","","2023-07-19","2023-09-25",,"",,0,,,"ERA","0","end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,, -716,"[P] Acute Hepatic Injury","Acute Hepatic Injury","Acute Hepatic Injury","rao@ohdsi.org","Pending","","Acute Hepatic Injury","",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","194990","","2023-07-20","2023-09-25",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",180,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -717,"[P] Portal hypertension or esophageal varices","Portal hypertension or esophageal varices","Portal vein thrombosis","rao@ohdsi.org","Pending peer review","","all event of portal hypertension or esophageal varices","",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","192680","","2023-07-20","2023-09-25",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",180,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -719,"[P] Acute Hepatic Injury or jaundice while inpatient with no cooccurring certain liver disease","Acute Hepatic Injury or jaundice while inpatient with no cooccurring certain liver disease","","rao@ohdsi.org","","","","",1,"","","","","","","","2023-07-24","2023-09-19",,"",,0,,,"ERA","90","fixed duration relative to initial event","EndDate",1,3,"All",FALSE,"All","All",2,1,"ConditionOccurrence",0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -720,"[P] Aplastic Anemia","Aplastic Anemia","Aplastic Anemia","rao@ohdsi.org","Pending peer review","","all events of aplastic anemia","#DME",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","137829","","2023-07-26","2024-09-11",,"",,0,,,"ERA","0","end of continuous observation",,,2,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -721,"[P] Sudden New Onset Blindness","Sudden New Onset Blindness","Sudden New Onset Blindness","rao@ohdsi.org","Pending peer review","","all events of Sudden New Onset Blindness","",1,"Gowtham A. Rao, Azza Shoaibi","'0000-0002-4949-7236','0000-0002-6976-2594'","'OHDSI'","","","377556","","2023-07-27","2023-09-19",,"",,0,,,"ERA","90","fixed duration relative to initial event","EndDate",0,2,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -722,"[P] Endometriosis indexed on procedure with two or more diagnosis among females 15 to 49","Endometriosis indexed on procedure with two or more diagnosis among females 15 to 49","Endometriosis","rao@ohdsi.org","Pending peer review","","An occurrence of procedure expected to be performed for persons with endometriosis with a diagnosis of endometriosis within 30 days of the procedure. Should have two more diagnosis in the future. Should be female. Should be between 15 to 49 years. A person is expected to be in the phenotype for the rest of their life (i.e. the disease never ends)","",1,"'Molle McKillop', 'Noémie Elhadad'","","'OHDSI'","","","433527","","2023-08-22","2023-09-19",,"",,0,,,"ERA","0","end of continuous observation",,,3,"All",FALSE,"All","First",1,1,"ProcedureOccurrence",0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,1,,,,, -723,"[P] First Acute Hepatic Failure with no known severe liver disease","First Acute Hepatic Failure with no known severe liver disease","Earliest event of Acute Hepatic Failure","rao@ohdsi.org","Pending peer review","","This definition, is modeling acute hepatic failure, assuming that acute hepatic failure by definition is severe liver injury with hepatic coma in the absence of known liver disease. This definition include hepatic coma that is potentially due to viral hepatis or alcohol use.","#Disease, #DME",1,"Azza Shoaibi","'0000-0002-6976-2594'","'OHDSI'","","","4245975","","2023-08-22","2024-09-11",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",90,3,"All",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,,,,,,,,,,, -724,"[P] First Acute Hepatic Failure with no known liver disease","First Acute Hepatic Failure with no known liver disease","Earliest event of Acute Hepatic Failure, NO viral hepatitis or alcoholic hepatic failure","rao@ohdsi.org","Pending peer review","","This definition, is modeling acute hepatic failure, assuming that acute hepatic failure by definition is severe liver injury with hepatic coma in the absence of known liver disease. This definition excludes persons with viral hepatis or alcohol use.","#Disease, #DME",1,"Azza Shoaibi","'0000-0002-6976-2594'","'OHDSI'","","","4245975","","2023-08-22","2024-09-11",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",90,6,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,,,,,,,,,,, -725,"[P] All events of Acute Kidney Injury (AKI), with a washout period of 30 days","All events of Acute Kidney Injury (AKI), with a washout period of 30 days","All events of Acute Kidney Injury (AKI)","rao@ohdsi.org","Pending peer review","","All events of Acute Kidney Injury (AKI) indexed on a diagnosis of Acute kidney injury or a Dialysis procedure at a medicare certified esrd facility for acute kidney injury without esrd,. Applying a washout period of 30 days between observed events excluding events/patients with 1. a diagnosis of End-Stage Kidney Disease in the 365 days before AKI occurrence 2. patients receiving chronic dialysis defined as more than 3 recorded events of dialysis in 365 days before AKI occurrence 3. kidney Transplant any time prior . patients exit the cohort 7 days post index..","#Disease, #DME",1,"'Gowtham A. Rao', 'Azza Shoaibi'","'0000-0002-4949-7236', '0000-0002-6976-2594'","'OHDSI'","","","197320","","2023-08-22","2024-09-11",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",7,4,"All",FALSE,"All","All",2,2,"ConditionOccurrence, ProcedureOccurrence",0,0,7,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,1,,,,, -726,"[P] All events of Anaphylaxis, Mini-Sentinel","All events of Anaphylaxis, Mini-Sentinel","All events of Anaphylaxis, Mini-Sentinel","rao@ohdsi.org","Pending peer review","","All events of anaphylaxis in inpatient setting, or anaphylaxis in outpatient along with symptoms or treatment for anaphylaxis","#Disease, #DME, #replication",1,"Azza Shoaibi","'0000-0002-6976-2594'","'OHDSI'","","","441202","","2023-08-22","2024-09-26",,,,0,,,"ERA","0","fixed duration relative to initial event","EndDate",1,7,"All",FALSE,"All","All",4,2,"ConditionOccurrence, Observation",0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,,,,,,,,,, -727,"[P] All events of Angioedema, with a washout period of 180 days","All events of Angioedema, with a washout period of 180 days","Angioedema","rao@ohdsi.org","Pending peer review","","All events of angioedema, indexed on a diagnosis of angioedema or urticaria followed by a diagnosis of angioedema within 3 days. With no diagnosis of angioedema in the last 180 days of washout period. Events are excluded if they have recent cardiac edema, cellulitis, erysipelas, dermatitis or eczema, lymphedema or insect bites 7 days before to and including index date. Cohort exist is 1 day post cohort end date","#Disease, #DME",1,"Azza Shoaibi","'0000-0002-6976-2594'","'OHDSI'","","","139900","","2023-08-22","2024-09-11",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",1,8,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -728,"[P] Autoimmune hemolytic anemia events not including evans syndrome","Autoimmune hemolytic anemia events not including evans syndrome","Autoimmune hemolytic anemia","rao@ohdsi.org","Pending peer review","","All events of Autoimmune hemolytic anemia events not including evans syndrome","#Disease, #DME",1,"'Gowtham A. Rao', 'Azza Shoaibi'","'0000-0002-4949-7236', '0000-0002-6976-2594'","'OHDSI'","","","441269","","2023-08-23","2024-10-02",,"738",,0,,,"ERA","90","fixed duration relative to initial event","StartDate",1,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -729,"[P] Autoimmune hepatitis, with a washout period of 365 days","Autoimmune hepatitis, with a washout period of 365 days","All events of Autoimmune hepatitis, with a washout period of 365 days","rao@ohdsi.org","Pending peer review","","all events of autoimmune hepatitis, indexed on diagnosis of autoimmune hepatitis, excluding event occurring in prior 365days washout period. Also excluded are events that have chronic liver diseases that may have similar presentation such as viral hepatitis, drug induced liver injury, alcoholic liver disease, and no systemic lupus erythematosus in past 365 and including index. Cohort exist is 1 day post end date.","#DME",1,"Azza Shoaibi","'0000-0002-6976-2594'","'OHDSI'","","","200762","","2023-08-23","2024-09-11",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",1,3,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -730,"[P] Acute pancreatitis, indexed on visit with NO chronic or hereditary pancreatitis","Acute pancreatitis, indexed on visit with NO chronic or hereditary pancreatitis","All events Acute pancreatitis, indexed on visit with NO chronic or hereditary pancreatitis","rao@ohdsi.org","Pending peer review","","all events of acute pancreatitis, indexed on an inpatient or emergency or an out patient visit (restricted to overlapping with an Emergency room procedures) with a diagnosis of Acute pancreatitis. With 1. no such events in prior washout window of 365 days 2. and no history of chronic pancreatitis any time prior or hereditary pancreatitis any time pre or post index. Cohort exit is 7 days post index.","#DME",1,"Azza Shoaibi","'0000-0002-6976-2594'","'OHDSI'","","","4192640, 199074","https://forums.ohdsi.org/t/17848","2023-08-23","2024-10-02",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",7,4,"All",FALSE,"All","All",2,1,"VisitOccurrence",0,0,7,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,1,,,,,,,,, -731,"[P] Sudden Hearing Loss, No congenital anomaly or middle or inner ear conditions","Sudden Hearing Loss, No congenital anomaly or middle or inner ear conditions","All events of Sudden Hearing Loss, No congenital anomaly or middle or inner ear conditions","rao@ohdsi.org","Pending peer review","","all events of sudden Hearing Loss, indexed on diagnosis of sudden hearing loss or a diagnosis or observation of any hearing loss that co-occurred with treatments or investigations within 1 day before to 21 days after index. Events much had 1. No hearing loss diagnosis or observation events in prior washout window of 365 days 2. No congenital anomaly of hearing any time 2. No history of middle or inner ear related diseases any time prior to 7 days before index. 3. Has not had audiometry 365 days before to 30 days prior index. exist cohort 30 days post end date.","#DME",1,"'Gowtham A. Rao', 'Azza Shoaibi'","'0000-0002-4949-7236', '0000-0002-6976-2594'","'OHDSI'","","","374053, 377889","","2023-08-23","2024-09-11",,"",,0,,,"ERA","0","fixed duration relative to initial event","StartDate",30,5,"All",FALSE,"All","All",3,2,"ConditionOccurrence, Observation",0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,,,,,,,,,, -732,"[P] Severe Cutaneous Adverse Reaction (SCAR = SJS+TEN+DRESS) with clean window","Severe Cutaneous Adverse Reaction (SCAR = SJS+TEN+DRESS) with clean window","All events of Severe Cutaneous Adverse Reaction (SCAR = SJS+TEN+DRESS)","rao@ohdsi.org","Pending peer review","","All events of Severe Cutaneous Adverse Reaction SCAR, indexed on the diagnosis for Drug Rash With Eosinophilia, or Systemic Symptoms (DRESS) or Erythema Multiforme or Stevens-Johnson Syndrome or Toxic-Epidermal necrolysis. Excluding events in prior 365 days washout period. cohort exist 3 days post end date.","#DME",1,"'Gowtham A. Rao', 'Azza Shoaibi'","'0000-0002-4949-7236', '0000-0002-6976-2594'","'OHDSI'","","","141651, 45765791","","2023-08-23","2024-09-11",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",3,1,"All",FALSE,"All","All",3,1,"ConditionOccurrence",0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -733,"[P] Drug Rash with Eosinophilia and Systemic Symptoms (DRESS) with clean window","Drug Rash with Eosinophilia and Systemic Symptoms (DRESS) with clean window","All events Drug Rash with Eosinophilia and Systemic Symptoms (DRESS)","rao@ohdsi.org","Pending peer review","","all events of Drug Rash With Eosinophilia and Systemic Symptoms (DRESS), index on diagnosis of (DRESS), excluding DRESS events in the last 365 day washout period. Cohort exist is 1 day after end date.","#DME",1,"'Gowtham A. Rao', 'Azza Shoaibi'","'0000-0002-4949-7236', '0000-0002-6976-2594'","'OHDSI'","","","45765791","","2023-08-23","2024-09-11",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",1,1,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -734,"[P] Drug Rash with Eosinophilia and Systemic Symptoms (DRESS)","Drug Rash with Eosinophilia and Systemic Symptoms (DRESS)","All events Drug Rash with Eosinophilia and Systemic Symptoms (DRESS)","rao@ohdsi.org","Pending peer review","","all events of Drug Rash With Eosinophilia and Systemic Symptoms (DRESS), index on diagnosis of (DRESS)","#DME",1,"'Gowtham A. Rao', 'Azza Shoaibi'","'0000-0002-4949-7236', '0000-0002-6976-2594'","'OHDSI'","","","45765791","","2023-08-23","2023-10-03",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",1,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -735,"[P] Acute Liver Injury indexed on diagnosis or symptoms with no chronic hepatic failure","Acute Liver Injury indexed on diagnosis or symptoms with no chronic hepatic failure","All events of Acute Liver Injury","rao@ohdsi.org","Pending","","All events of Acute Liver Injury, indexed on the diagnosis of Acute Liver Injury, excluding events of Acute Liver Injury in prior 365 washout period. Excluding events with chronic hepatic failure on the same index date. patients exist cohort 90 days post end date.","#DME",1,"'Gowtham A. Rao', 'Azza Shoaibi'","'0000-0002-4949-7236', '0000-0002-6976-2594'","'OHDSI'","","","194990","","2023-08-23","2024-09-11",,"",,0,,,"ERA","90","fixed duration relative to initial event","EndDate",1,1,"All",FALSE,"All","All",2,1,"ConditionOccurrence",0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -736,"[P] Acute Liver Injury NO viral, alcoholic, chronic hepatic failure","Acute Liver Injury NO viral, alcoholic, chronic hepatic failure","All events of Acute Liver Injury, NO viral hepatitis or alcoholic hepatic failure","rao@ohdsi.org","Pending","","All events of Acute Liver Injury, indexed on the diagnosis of Acute Liver Injury, excluding events of Acute Liver Injury in prior 365 washout period. Excluding events with chronic hepatic failure on the same index date. patients exist cohort 90 days post end date.","#DME",1,"'Gowtham A. Rao', 'Azza Shoaibi'","'0000-0002-4949-7236', '0000-0002-6976-2594'","'OHDSI'","","","194990","","2023-08-23","2024-09-11",,"",,0,,,"ERA","90","fixed duration relative to initial event","EndDate",1,5,"All",FALSE,"All","All",2,1,"ConditionOccurrence",0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -737,"[P] Neutropenic Fever, Inpatient or ER, indexed on fever or Infection, 90 days era","Neutropenic Fever, Inpatient or ER, indexed on fever or Infection, 90 days era","Neutropenic Fever, Inpatient or ER, indexed on fever or Infection, 90 days era","rao@ohdsi.org","Pending peer review","","All events of febrile neutropenia, indexed on the diagnosis of febrile neutropenia or a fever (diagnosis or measurement) cooccurring with neutropenia (diagnosis or measurement) within 1 day , or a diagnosis of clinically significant infection cooccurring with neutropenia (diagnosis or measurement) within 1 day. Restricted to events overlapping with in an inpatient or emergency room visit and excluding events with a normal neutrophil count (ANC) on index. Cohort exit is 3 days after end date. Recurrent events will be combined into event eras if they are within 90 days of each other.","#DME",1,"'Gowtham A. Rao', 'Azza Shoaibi'","'0000-0002-4949-7236', '0000-0002-6976-2594'","'OHDSI'","","","257011, 437663, 4170143, 4250734","https://forums.ohdsi.org/t/17876","2023-08-23","2024-09-11",,"",,0,,,"ERA","90","fixed duration relative to initial event","EndDate",3,2,"All",TRUE,"All","All",8,3,"ConditionOccurrence, Measurement, Observation",0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,,,,,,,,,, -738,"[D] Autoimmune hemolytic anemia","Autoimmune hemolytic anemia","Autoimmune hemolytic anemia","rao@ohdsi.org","Deprecated","","All events of Autoimmune hemolytic anemia events not including evans syndrome","#Disease, #DME",1,"'Gowtham A. Rao', 'Azza Shoaibi'","'0000-0002-4949-7236', '0000-0002-6976-2594'","'OHDSI'","","","441269","","2023-08-23","2024-10-02",,"","duplicated of 728",0,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -739,"[P] All events of Isolated Immune Thrombocytopenia (ITP), with a washout period of 365 days","All events of Isolated Immune Thrombocytopenia (ITP), with a washout period of 365 days","Isolated Immune Thrombocytopenia (ITP), with a washout period of 365 days","rao@ohdsi.org","Pending peer review","","all events of Immune Thrombocytopenia (ITP), excluding such events in prior 365 days as washout period, also excluded are 1. events with a diagnosis of congenital or genetic thrombocytopenia all time prior to 7 days post index, 2. Events with a platelet count of >100 or a diagnosis of thrombocytosis on day of index 3. Events with co-occurring neutropenia, pancytopenia, bone marrow involvement, anemia 7 days within index. Persons exit after 180 days or when a normal platelet count measure is observed.","#DME",1,"'Gowtham A. Rao', 'Azza Shoaibi'","'0000-0002-4949-7236', '0000-0002-6976-2594'","'OHDSI'","","","433749, 4103532","","2023-08-23","2024-09-11",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",180,9,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,9,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -740,"[W] Earliest event of Pulmonary arterial hypertension (PAH)","Earliest event of Pulmonary arterial hypertension (PAH)","Pulmonary arterial hypertension (PAH)","rao@ohdsi.org","Pending peer review","","Earliest occurrence of Pulmonary Arterial Hypertension (PAH) indexed on occurrence of PAH condition requiring right heart catheterization or echocardiogram 30 days before or 30 days after diagnosis/index. Cohort exit is the end of continuous observation.","",1,"'Joel Swerdel'","","'OHDSI'","","","4013643","","2023-08-23","2024-09-11",,"","duplicate of 747",0,,,"ERA","0","end of continuous observation",,,0,"First",TRUE,"First","First",1,1,"ConditionOccurrence",0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,,,,,,,,,,, -741,"[P] Earliest event of Thrombotic microangiopathy (TMA) or Microangiopathic hemolytic anemia (MAHA)","Earliest event of Thrombotic microangiopathy (TMA) or Microangiopathic hemolytic anemia (MAHA)","Earliest event of Thrombotic microangiopathy (TMA) or Microangiopathic hemolytic anemia (MAHA)","rao@ohdsi.org","Pending peer review","","Earliest events of Immune Thrombotic microangiopathy or microangiopathic hemolytic anemia indexed on the diagnosis or its treatment or investigation. Events with congenital or genetic thrombocytopenia all time prior to 7 days post index are excluded. Also excluded are patients with Platelet count > 150. cohort exit is 7 days post end date or an occurrence of a normal platelet measure .","#DME",1,"'Gowtham A. Rao', 'Azza Shoaibi'","'0000-0002-4949-7236', '0000-0002-6976-2594'","'OHDSI'","","","313800, 4119134","","2023-08-23","2024-09-11",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",7,2,"All",FALSE,"All","First",4,4,"ConditionOccurrence, DrugExposure, Measurement, ProcedureOccurrence",0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,1,,1,,,,, -742,"[P] Parasomnia or Sleep dysfunction with arousal disturbance","Parasomnia or Sleep dysfunction with arousal disturbance","Parasomnia or Sleep dysfunction with arousal disturbance","rao@ohdsi.org","Pending peer review","","All events of Parasomnia or Sleep dysfunction with arousal disturbance with events collapse 1 day after","",1,"'Gowtham A. Rao', 'Azza Shoaibi'","'0000-0002-4949-7236', '0000-0002-6976-2594'","'OHDSI'","","","254761","https://forums.ohdsi.org/t/17895","2023-09-08","2023-09-21",,"",,0,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -743,"[P] Diabetic ketoacidosis IP-ER (SNOMED concept)","Diabetic ketoacidosis IP-ER (SNOMED concept)","Diabetic ketoacidosis identified during the inpatient or emergency room SNOMED concept","rao@ohdsi.org","Pending peer review","","All condition occurrences of DKA during an ER or IP visit, with 30-day event persistence (SNOMED code only)","",1,"'James Weaver', 'Chris Knoll'","'0000-0003-0755-5191',''","'OHDSI'","","","196523","https://forums.ohdsi.org/t/17895","2023-09-08","2023-09-20",,"",,0,,,"ERA","0","fixed duration relative to initial event","StartDate",30,0,"All",TRUE,"All","All",1,1,"ConditionOccurrence",0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -744,"[P] Pulmonary Hypertension","Pulmonary Hypertension","Pulmonary Hypertension","rao@ohdsi.org","Pending peer review","","First occurrence of Pulmonary Hypertension","",1,"'Joel N. Swerdel'","'0000-0001-9491-2737'","'OHDSI'","","","312437, 4041664","https://forums.ohdsi.org/t/17895","2023-09-14","2023-09-20",,"",,0,,,"ERA","0","end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,, -745,"[W] Inflammatory Bowel Disease","Inflammatory Bowel Disease","Inflammatory Bowel Disease","rao@ohdsi.org","Pending peer review","","First occurrence of Inflammatory Bowel Disease","",1,"'Joel N. Swerdel'","'0000-0001-9491-2737'","'OHDSI'","","","4074815, 81893, 201606",,"2023-09-14","2023-10-13",,"","duplicate of 775",0,,,"ERA","0","end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,, -746,"[P] Chronic Thromboembolic Pulmonary Hypertension","Chronic Thromboembolic Pulmonary Hypertension","Chronic Thromboembolic Pulmonary Hypertension","rao@ohdsi.org","Pending peer review","","First occurrence of Chronic Thromboembolic Pulmonary Hypertension","",1,"'Joel N. Swerdel'","'0000-0001-9491-2737'","'OHDSI'","","","378253","https://forums.ohdsi.org/t/17895","2023-09-14","2023-09-20",,"",,0,,,"ERA","0","end of continuous observation",,,0,"First",TRUE,"All","All",1,1,"ConditionOccurrence",0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,,,,,,,,,,, -747,"[P] Pulmonary Arterial Hypertension","Pulmonary Arterial Hypertension","Pulmonary Arterial Hypertension","rao@ohdsi.org","Pending peer review","","First occurrence of Pulmonary Arterial Hypertension","#DME",1,"'Joel N. Swerdel'","'0000-0001-9491-2737'","'OHDSI'","","","43530714","https://forums.ohdsi.org/t/17895","2023-09-14","2024-10-02",,"",,0,,,"ERA","0","end of continuous observation",,,0,"First",TRUE,"All","All",1,1,"ConditionOccurrence",0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,,,,,,,,,,, -748,"[P] Psoriatic arthritis","Psoriatic arthritis","Psoriatic arthritis","rao@ohdsi.org","Pending peer review","","First occurrence of Psoriatic arthritis","",1,"'Joel N. Swerdel'","'0000-0001-9491-2737'","'OHDSI'","","","25297, 4226263","https://forums.ohdsi.org/t/17895","2023-09-14","2023-09-20",,"",,0,,,"ERA","0","end of continuous observation",,,0,"First",FALSE,"All","First",2,1,"ConditionOccurrence",0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,, -749,"[P] Plaque Psoriasis","Plaque Psoriasis","Plaque Psoriasis","rao@ohdsi.org","Pending peer review","","First occurrence of Plaque Psoriasis","",1,"'Joel N. Swerdel'","'0000-0001-9491-2737'","'OHDSI'","","","27674, 4101344","https://forums.ohdsi.org/t/17895","2023-09-15","2023-09-20",,"",,0,,,"ERA","0","end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,, -750,"[P] Pulmonary hypertension associated with left heart disease (WHO Group 2)","Pulmonary hypertension associated with left heart disease (WHO Group 2)","Pulmonary hypertension associated with left heart disease (WHO Group 2)","rao@ohdsi.org","Pending peer review","","First occurrence of Pulmonary hypertension associated with left heart disease (WHO Group 2)","",1,"'Joel N. Swerdel'","'0000-0001-9491-2737'","'OHDSI'","","","4322024",,"2023-09-15","2023-10-05",,"",,0,,,"ERA","0","end of continuous observation",,,2,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,, -752,"[P] Firearm Accidents (FA)","Firearm Accidents (FA)","Firearm Accidents (FA)","rao@ohdsi.org","Pending peer review","","Firearm accident with an emergency room or inpatient visit on index","",1,"'Jill Hardin'","'0000-0003-2682-2187'","'OHDSI'","","","",,"2023-09-15","2023-10-05",,"","updates to earliest event on Jill Hardin's request",0,,,"ERA","0","fixed duration relative to initial event","EndDate",0,1,"All",FALSE,"All","First",3,3,"ConditionOccurrence, Observation, ProcedureOccurrence",0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,1,,,,, -753,"[P] Motor Vehicle Accidents (MVA)","Motor Vehicle Accidents (MVA)","Motor Vehicle Accidents (MVA)","rao@ohdsi.org","Pending peer review","","All events of motor vehicle accidents with an emergency room or inpatient visit on index","",1,"'Jill Hardin'","'0000-0003-2682-2187'","'OHDSI'","","","442752, 4150129","https://forums.ohdsi.org/t/17895","2023-09-15","2023-09-20",,"",,0,,,"ERA","180","fixed duration relative to initial event","StartDate",0,1,"All",FALSE,"All","All",2,2,"ConditionOccurrence, Observation",0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,,,,,,,,,, -754,"[P] Down Syndrome","Down Syndrome","Down Syndrome","rao@ohdsi.org","Pending peer review","","Condition occurrence of Down Syndrome, starting between 0 days before and 0 days after cohort entry start date and ending between 0 days before and 0 days after cohort entry start date. Having at least 1 additional condition occurrence of ‘Down syndrome’, starting between 1 days after and 365 days after cohort entry start date having no condition eras of ‘Condition_Era Pregnancy Codes’, starting between 0 days before and 0 days after ‘Down syndrome’ start date and ending between 0 days after and 0 days after ‘Down syndrome’ start date","",1,"'Jill Hardin'","'0000-0003-2682-2187'","'OHDSI'","","","37016200","","2023-09-15","2023-10-05",,"","removed pregnancy logic as it is not generalizable. Discussed with Jill Hardin",0,,,"ERA","0","end of continuous observation",,,1,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,, -755,"[P] Non-infectious uveitis and iridocyclitis","Non-infectious uveitis and iridocyclitis","Non-infectious uveitis and iridocyclitis","rao@ohdsi.org","Pending peer review","","Earliest diagnosis of non-infectious uveitis or iridocyclitis, indexed on the first ever event. This event must either be followed by a second event in the 31 to 365 days in the future or the event must occur at the time of an ophthalmology visit.","",1,"'James Weaver', 'Eria Voss Stanoch'","'0000-0003-0755-5191', '0000-0002-0651-0613'","","","","","","2023-09-15","2023-10-06",,"",,0,,,"ERA","0","end of continuous observation",,,0,"First",FALSE,"All","First",2,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,,,,,,,,,,, -756,"[P] Cystic Fibrosis","Cystic Fibrosis","Cystic Fibrosis","rao@ohdsi.org","Pending peer review","","1 code of cystic fibrosis and a second code within 1 to 365 days post index","",1,"'Jill Hardin'","'0000-0003-2682-2187'","'OHDSI'","","","441267","","2023-09-15","2023-10-05",,"",,0,,,"ERA","0","end of continuous observation",,,1,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,, -757,"[P] Concomitant TNF - alpha Inhibitors and IL23 Inhibitors - GE 30D overlap","Concomitant TNF - alpha Inhibitors and IL23 Inhibitors - GE 30D overlap","Concomitant TNF - alpha Inhibitors and IL12_23 Inhibitors - GE 30D overlap","rao@ohdsi.org","Pending peer review","","Concomitant TNF - alpha Inhibitors and IL12_23 Inhibitors - GE 30D overlap","#epi1073",1,"'Joel Swerdel','Eva-maria Didden'","'0000-0001-9491-2737','0000-0001-7401-8877'","'OHDSI'","","","703578","","2023-09-15","2023-09-20",,"",,0,,,"ERA","0","end of continuous observation",,,0,"First",FALSE,"All","First",2,1,"DrugEra",0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,1,,,, -759,"[P] Concomitant TNF - alpha Inhibitors and IL12_23 Inhibitors - GE 30D overlap","Concomitant TNF - alpha Inhibitors and IL12 23 Inhibitors - GE 30D overlap","Concomitant TNF - alpha Inhibitors and IL23 Inhibitors - GE 30D overlap","rao@ohdsi.org","Pending peer review","","Concomitant TNF - alpha Inhibitors and IL23 Inhibitors - GE 30D overlap","#epi1073",1,"'Joel Swerdel','Eva-maria Didden'","'0000-0001-9491-2737','0000-0001-7401-8877'","'OHDSI'","","","255848, 4318404","","2023-09-16","2023-09-20",,"",,0,,,"ERA","0","end of continuous observation",,,0,"First",FALSE,"All","First",2,1,"DrugEra",0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,1,,,, -760,"[P] Concomitant IL 23 Inhibitors and IL12_23 Inhibitors - GE 30D overlap","Concomitant IL 23 Inhibitors and IL12 23 Inhibitors - GE 30D overlap","Concomitant IL 23 Inhibitors and IL12_23 Inhibitors - GE 30D overlap","rao@ohdsi.org","Pending peer review","","Concomitant IL 23 Inhibitors and IL12_23 Inhibitors - GE 30D overlap","#epi1073",1,"'Joel Swerdel','Eva-maria Didden'","'0000-0001-9491-2737','0000-0001-7401-8877'","'OHDSI'","","","256451, 260139","https://forums.ohdsi.org/t/17895","2023-09-16","2023-09-20",,"",,0,,,"ERA","0","end of continuous observation",,,0,"First",FALSE,"All","First",2,1,"DrugEra",0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,1,,,, -761,"[P] Pulmonary arterial hypertension with Prior Left Heart or Vice Versa","Pulmonary arterial hypertension with Prior Left Heart or Vice Versa","Pulmonary arterial hypertension with Prior Left Heart or Vice Versa","rao@ohdsi.org","Pending peer review","","Index date of either PAH or left heart disease whichever comes last","#epi1073",1,"'Joel Swerdel','Eva-maria Didden'","'0000-0001-9491-2737','0000-0001-7401-8877'","","","","319049","","2023-09-16","2023-09-20",,"",,0,,,"ERA","0","end of continuous observation",,,0,"First",FALSE,"All","All",2,1,"ConditionOccurrence",0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,,,,,,,,,,, -762,"[P] Endothelin receptor antagonists","Endothelin receptor antagonists","Endothelin receptor antagonists","rao@ohdsi.org","Pending peer review","","First exposure of Endothelin receptor antagonists","#epi1073",1,"'Joel Swerdel','Eva-maria Didden'","'0000-0001-9491-2737','0000-0001-7401-8877'","","","","","","2023-09-16","2023-10-09",,"","joel reporte he made an error in cohort. used condition domain for drug",0,,,"ERA","0","end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"DrugExposure",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,1,,,,,,, -763,"[P] Phosphodiesterase 5 inhibitors and guanylate cyclase stimulators","Phosphodiesterase 5 inhibitors and guanylate cyclase stimulators","Phosphodiesterase 5 inhibitors and guanylate cyclase stimulators","rao@ohdsi.org","Pending peer review","","First exposure of Phosphodiesterase 5 inhibitors and guanylate cyclase stimulators","#epi1073",1,"'Joel Swerdel','Eva-maria Didden'","'0000-0001-9491-2737','0000-0001-7401-8877'","'OHDSI'","","","","","2023-09-16","2023-09-20",,"",,0,,,"ERA","0","end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"DrugExposure",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,1,,,,,,, -764,"[P] Prostacyclin analogues and prostacyclin receptor agonists","Prostacyclin analogues and prostacyclin receptor agonists","Prostacyclin analogues and prostacyclin receptor agonists","rao@ohdsi.org","Pending peer review","","First exposure of Prostacyclin analogues and prostacyclin receptor agonists","#epi1073",1,"'Joel Swerdel','Eva-maria Didden'","'0000-0001-9491-2737','0000-0001-7401-8877'","'OHDSI'","","","","","2023-09-16","2023-09-20",,"",,0,,,"ERA","0","end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"DrugExposure",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,1,,,,,,, -765,"[P] Earliest event of Left Heart Failure","Earliest event of Left Heart Failure","Left Heart Failure","rao@ohdsi.org","Pending peer review","","First occurrence of Left Heart Failure","#epi1073",1,"'Joel Swerdel','Eva-maria Didden'","'0000-0001-9491-2737','0000-0001-7401-8877'","'OHDSI'","","","","","2023-09-16","2023-09-20",,"",,0,,,"ERA","0","end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,, -766,"[P] Earliest event of Right Heart Failure","Earliest event of Right Heart Failure","Right Heart Failure","rao@ohdsi.org","Pending peer review","","First occurrence of Right Heart Failure","#epi1073",1,"'Joel Swerdel','Eva-maria Didden'","'0000-0001-9491-2737','0000-0001-7401-8877'","'OHDSI'","","","255573, 317009","","2023-09-16","2023-09-20",,"",,0,,,"ERA","0","end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,, -767,"[P] Earliest event of Sarcoidosis","Earliest event of Sarcoidosis","Sarcoidosis","rao@ohdsi.org","Pending peer review","","First occurrence of Sarcoidosis","#epi1073",1,"'Joel Swerdel','Eva-maria Didden'","'0000-0001-9491-2737','0000-0001-7401-8877'","'OHDSI'","","","317009","","2023-09-16","2023-09-20",,"",,0,,,"ERA","0","end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,, -768,"[P] Earliest event of Sickle Cell Anemia","Earliest event of Sickle Cell Anemia","Sickle Cell Anemia","rao@ohdsi.org","Pending peer review","","First occurrence of Sickle Cell Anemia","#epi1073",1,"'Joel Swerdel','Eva-maria Didden'","'0000-0001-9491-2737','0000-0001-7401-8877'","'OHDSI'","","","4213628","","2023-09-16","2023-10-19",,"",,0,,,"ERA","0","end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,, -769,"[P] Scleroderma, first occurrence","Scleroderma, first occurrence","Scleroderma","rao@ohdsi.org","Pending peer review","","First occurrence of Scleroderma","#epi1073",1,"'Joel Swerdel','Eva-maria Didden'","'0000-0001-9491-2737','0000-0001-7401-8877'","","","","76685, 80809, 81893, 81931, 134442, 134618, 135215, 140168, 194992, 199856, 201254, 201606, 254443, 257628, 374919, 432295, 438688, 443394, 4137275, 4232076","","2023-09-16","2023-09-20",,"",,0,,,"ERA","0","end of continuous observation",,,0,"First",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,, -770,"[P] Essential Hypertension, first occurrence","Essential Hypertension, first occurrence","Essential Hypertension","rao@ohdsi.org","Pending peer review","","First occurrence of Essential Hypertension","#epi1073",1,"'Joel Swerdel','Eva-maria Didden'","'0000-0001-9491-2737','0000-0001-7401-8877'","'OHDSI'","","","253954, 434557","","2023-09-16","2023-09-20",,"",,0,,,"ERA","0","end of continuous observation",,,0,"First",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,, -771,"[W] Pulmonary Hypertension (Group 2 Left heart disease, encompassing)","Pulmonary Hypertension (Group 2 Left heart disease, encompassing)","Pulmonary hypertension associated with left heart disease (WHO Group 2)","rao@ohdsi.org","Pending peer review","","First occurrence of Pulmonary hypertension associated with left heart disease (WHO Group 2)","#epi1073",1,"'Joel Swerdel','Eva-maria Didden'","'0000-0001-9491-2737','0000-0001-7401-8877'","'OHDSI'","","","137809, 443392","","2023-09-16","2023-10-09",,"","duplicate of 750",0,,,"ERA","0","end of continuous observation",,,3,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,, -772,"[W] Pulmonary Hypertension (Group 3 Chronic lung disease, encompassing)","Pulmonary Hypertension (Group 3 Chronic lung disease, encompassing)","Pulmonary hypertension associated with lung diseases and/or hypoxia (WHO Group 3)","rao@ohdsi.org","Pending peer review","","First occurrence of Pulmonary hypertension associated with lung diseases and/or hypoxia (WHO Group 3)","#epi1073",1,"'Joel Swerdel','Eva-maria Didden'","'0000-0001-9491-2737','0000-0001-7401-8877'","'OHDSI'","","","433736","https://forums.ohdsi.org/t/17895","2023-09-16","2023-10-09",,"","replaced by 751. removed prefix and santized.",0,,,"ERA","0","end of continuous observation",,,3,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,, -773,"[P] Congenital Heart Disease","Congenital Heart Disease","Congenital Heart Disease","rao@ohdsi.org","Pending peer review","","First occurrence of Congenital Heart Disease","#epi1073",1,"'Joel Swerdel','Eva-maria Didden'","'0000-0001-9491-2737','0000-0001-7401-8877'","'OHDSI'","","","4182210","","2023-09-16","2023-09-20",,"",,0,,,"ERA","0","end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,, -774,"[P] Portal Hypertension, first occurrence","Portal Hypertension, first occurrence","Portal Hypertension","rao@ohdsi.org","Pending peer review","","First occurrence of Portal Hypertension","#epi1073",1,"'Joel Swerdel','Eva-maria Didden'","'0000-0001-9491-2737','0000-0001-7401-8877'","'OHDSI'","","","312648, 4028741","","2023-09-16","2023-09-20",,"",,0,,,"ERA","0","end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,,,,,,,,,,, -775,"[P] First Inflammatory Bowel Disease","First Inflammatory Bowel Disease","Inflammatory Bowel Disease","rao@ohdsi.org","Pending peer review","","First occurrence of Inflammatory Bowel Disease","",1,"'Joel N. Swerdel'","'0000-0001-9491-2737'","'OHDSI'","","","4074815, 81893, 201606",,"2023-09-16","2023-10-03",,"",,0,,,"ERA","0","end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,, -776,"[P] Antisynthetase syndrome","Antisynthetase syndrome","Antisynthetase syndrome","rao@ohdsi.org","Pending peer review","","First occurrence of Antisynthetase syndrome","#epi1073",1,"'Joel Swerdel','Eva-maria Didden'","'0000-0001-9491-2737','0000-0001-7401-8877'","'OHDSI'","","","439727","","2023-09-16","2023-09-20",,"",,0,,,"ERA","0","end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,, -777,"[P] Mixed connective tissue disease","Mixed connective tissue disease","Mixed connective tissue disease","rao@ohdsi.org","Pending peer review","","Mixed connective tissue disease","#epi1073",1,"'Joel Swerdel','Eva-maria Didden'","'0000-0001-9491-2737','0000-0001-7401-8877'","'OHDSI'","","","197494, 198964","","2023-09-16","2023-09-20",,"",,0,,,"ERA","0","end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,, -778,"[P] Undifferentiated connective tissue disease","Undifferentiated connective tissue disease","Undifferentiated connective tissue disease","rao@ohdsi.org","Pending peer review","","First occurrence of Undifferentiated connective tissue disease","#epi1073",1,"'Joel Swerdel','Eva-maria Didden'","'0000-0001-9491-2737','0000-0001-7401-8877'","'OHDSI'","","","313217, 44784217","","2023-09-16","2023-09-20",,"",,0,,,"ERA","0","end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,, -779,"[P] Overlap syndrome","Overlap syndrome","Overlap syndrome","rao@ohdsi.org","Pending peer review","","First occurrence of Overlap syndrome","#epi1073",1,"'Joel Swerdel','Eva-maria Didden'","'0000-0001-9491-2737','0000-0001-7401-8877'","","","","193782","","2023-09-16","2023-09-20",,"",,0,,,"ERA","0","end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,, -780,"[P] Raynaud’s disease or Raynaud's phenomenon","Raynaud’s disease or Raynaud's phenomenon","Raynaud’s disease or Raynaud’s phenomenon","rao@ohdsi.org","Pending peer review","","First occurrence of Raynaud’s disease or Raynaud’s phenomenon","#epi1073",1,"'Joel Swerdel','Eva-maria Didden'","'0000-0001-9491-2737','0000-0001-7401-8877'","'OHDSI'","","","201820, 201826","","2023-09-16","2023-09-20",,"",,0,,,"ERA","0","end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,, -781,"[P] Antiphospholipid syndrome","Antiphospholipid syndrome","Antiphospholipid syndrome","rao@ohdsi.org","Pending peer review","","First occurrence of Antiphospholipid syndrome","#epi1073",1,"'Joel Swerdel','Eva-maria Didden'","'0000-0001-9491-2737','0000-0001-7401-8877'","","","","192359, 193782","","2023-09-16","2023-09-20",,"",,0,,,"ERA","0","end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,, -782,"[P] CTEPH Prevalent (with Echo or RHC) with 2nd dx code 31-365 days after first dx","CTEPH Prevalent (with Echo or RHC) with 2nd dx code 31-365 days after first dx","Chronic Thromboembolic Pulmonary Hypertension","rao@ohdsi.org","Pending peer review","","First occurrence of Chronic Thromboembolic Pulmonary Hypertension","#epi1073",1,"'Joel Swerdel','Eva-maria Didden'","'0000-0001-9491-2737','0000-0001-7401-8877'","","","","193782","","2023-09-16","2023-09-20",,"",,0,,,"ERA","0","end of continuous observation",,,0,"First",TRUE,"All","All",1,1,"ConditionOccurrence",0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,,,,,,,,,,, -783,"[P] Pulmonary endarterectomy","Pulmonary endarterectomy","Pulmonary endarterectomy","rao@ohdsi.org","Pending peer review","","All occurrences of Pulmonary endarterectomy","#epi1073",1,"'Joel Swerdel','Eva-maria Didden'","'0000-0001-9491-2737','0000-0001-7401-8877'","'OHDSI'","","","253954, 434557","","2023-09-16","2023-09-20",,"",,0,,,"ERA","0","fixed duration relative to initial event","StartDate",0,0,"All",FALSE,"All","All",1,1,"ProcedureOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,1,,,,, -784,"[P] Balloon Pulmonary Angioplasty","Balloon Pulmonary Angioplasty","Balloon Pulmonary Angioplasty","rao@ohdsi.org","Pending peer review","","All occurrences of Balloon Pulmonary Angioplasty","#epi1073",1,"'Joel Swerdel','Eva-maria Didden'","'0000-0001-9491-2737','0000-0001-7401-8877'","'OHDSI'","","","4138754","","2023-09-16","2023-10-04",,"",,0,,,"ERA","0","fixed duration relative to initial event","StartDate",0,0,"All",FALSE,"All","All",1,1,"ProcedureOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,1,,,,, -785,"[P] Skin Burns","Skin Burns","Skin Burns","rao@ohdsi.org","Pending peer review","","1 code of Skin Burns and a drug or procedure treatment within 1 to 180 days post index","",1,"'Jill Hardin'","'0000-0003-2682-2187'","","","","439676, 37311061","","2023-09-16","2023-09-20",,"",,0,,,"ERA","0","fixed duration relative to initial event","StartDate",0,1,"All",FALSE,"All","All",3,3,"ConditionOccurrence, Observation, ProcedureOccurrence",0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,,,,,1,,,,, -788,"[P] Breast cancer","Breast cancer","Breast cancer","rao@ohdsi.org","Pending peer review","","","",1,"'Asieh Golozar'","'0000-0002-4243-155X'","","","","439676, 37311061","","2023-09-16","2023-10-05",,"",,0,,,"ERA","0","end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",365,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,,,,,,,,,,, -789,"[P] Glioblastoma multiforme (GBM)","Glioblastoma multiforme (GBM)","Glioblastoma multiforme (GBM)","rao@ohdsi.org","Pending peer review","","","",1,"'Asieh Golozar', 'Vlad Korsik'","'0000-0002-4243-155X'","","","","","","2023-09-16","2023-09-20",,"",,0,,,"ERA","0","end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",365,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,,,,,,,,,,, -790,"[P] Colorectal Cancer","Colorectal Cancer","Colorectal Cancer","rao@ohdsi.org","Pending peer review","","","",1,"'Asieh Golozar', 'Peter Prinsen'","'0000-0002-4243-155X'","","","","","","2023-09-16","2023-09-20",,"",,0,,,"ERA","0","end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",365,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,,,,,,,,,,, -791,"[P] Multiple Myeloma","Multiple Myeloma","Multiple Myeloma","rao@ohdsi.org","Pending peer review","","","",1,"'Asieh Golozar'","'0000-0002-4243-155X'","","","","","","2023-09-16","2023-09-20",,"",,0,,,"ERA","0","end of continuous observation",,,0,"First",FALSE,"All","First",2,2,"ConditionOccurrence, Observation",365,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,,,,,,,,,, -792,"[P] Metastatic Hormone-Sensitive Prostate Cancer Synchronous","Metastatic Hormone-Sensitive Prostate Cancer Synchronous","Metastatic Hormone-Sensitive Prostate Cancer Synchronous","rao@ohdsi.org","Pending peer review","","","#Pioneer2",1,"'Asieh Golozar'","'0000-0002-4243-155X'","'OHDSI'","","","377091, 4196708","https://forums.ohdsi.org/t/17895","2023-09-16","2023-10-05",,"",,0,,,"ERA","0","end of continuous observation",,,4,"First",FALSE,"All","First",3,2,"ConditionOccurrence, Measurement",183,183,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,,,,,,,,,,, -793,"[P] Metastatic Hormone-Sensitive Prostate Cancer Metachronus","Metastatic Hormone-Sensitive Prostate Cancer Metachronus","Metastatic Hormone-Sensitive Prostate Cancer Metachronus","rao@ohdsi.org","Pending peer review","","","#Pioneer2",1,"'Asieh Golozar'","'0000-0002-4243-155X'","'OHDSI'","","","439676, 37311061","","2023-09-16","2023-10-05",,"",,0,,,"ERA","0","end of continuous observation",,,7,"First",FALSE,"All","First",3,2,"ConditionOccurrence, Measurement",183,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,,,,,,,,,,, -794,"[P] Hemorrhage of digestive system","Hemorrhage of digestive system","Hemorrhage of digestive system","rao@ohdsi.org","Pending peer review","","all events of Hemorrhage of digestive system. Persons exit on cohort end date plus 14 days","",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","","","2023-09-17","2023-10-16",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",14,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -795,"[P] Antineoplastic drugs against colorectal cancer","Antineoplastic drugs against colorectal cancer","Antineoplastic drugs against colorectal cancer","rao@ohdsi.org","Pending peer review","","First exposure of drugs Antineoplastic drugs against colorectal cancer.","#ColorectalCancer, #Cancer",1,"Andreas Weinberger Rosen","0000-0001-9990-8155","","","","439676, 37311061","","2023-09-18","2023-09-20",,"",,0,,,"ERA","0","end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"DrugExposure",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,1,,,,,,, -796,"[P] Potential curative surgery for colorectal cancer","Potential curative surgery for colorectal cancer","Potential curative surgery for colorectal cancer","rao@ohdsi.org","Pending peer review","","First event potential curative surgery for colorectal cancer.","#ColorectalCancer, #Cancer",1,"Andreas Weinberger Rosen","0000-0001-9990-8155","","","","","","2023-09-18","2023-09-20",,"",,0,,,"ERA","0","end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ProcedureOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,1,,,,, -797,"[P] Radiotherapy against colorectal cancer","Radiotherapy against colorectal cancer","Radiotherapy against colorectal cancer","rao@ohdsi.org","Pending peer review","","First exposure of radiotherapy, excluding procedures with that are probably not related to colorectal cancer.","#ColorectalCancer, #Cancer",1,"Andreas Weinberger Rosen","0000-0001-9990-8155","'OHDSI'","","","317302, 320425","","2023-09-18","2023-09-20",,"",,0,,,"ERA","0","end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ProcedureOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,1,,,,, -798,"[P] Primary adenocarcinoma of the colon or rectum","Primary adenocarcinoma of the colon or rectum","Primary adenocarcinoma of the colon or rectum","rao@ohdsi.org","Pending peer review","","First event of primary adenocarcinoma of the colon or rectum","#ColorectalCancer, #Cancer",1,"Andreas Weinberger Rosen","0000-0001-9990-8155","'OHDSI'","","","377091, 4196708","https://forums.ohdsi.org/t/17895","2023-09-18","2024-01-05",,"",,0,,,"ERA","0","end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",365,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,,,,,,,,,,, -802,"[P] Acute Respiratory Failure 2","Acute Respiratory Failure 2","Acute Respiratory Failure","rao@ohdsi.org","Pending peer review","","First event of acute respiratory failure","#ColorectalCancer, #Cancer",1,"Andreas Weinberger Rosen","0000-0001-9990-8155","'OHDSI'","Evan Minty","","79908, 139803, 443904","https://forums.ohdsi.org/t/17769","2023-09-18","2024-01-05",,"",,0,,,"ERA","0","end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,, -803,"[P] Fascial dehiscence and evisceration","Fascial dehiscence and evisceration","Fascial dehiscence and evisceration","rao@ohdsi.org","Pending peer review","","First fascial dehiscence or evisceration","#ColorectalCancer, #Cancer",1,"Andreas Weinberger Rosen","0000-0001-9990-8155","'OHDSI'","","","254761, 312437, 437663, 439926, 442752, 4041664, 4178904, 4272240, 43530714","https://forums.ohdsi.org/t/17895","2023-09-18","2024-01-05",,"",,0,,,"ERA","0","end of continuous observation",,,0,"First",FALSE,"All","First",2,2,"ConditionOccurrence, ProcedureOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,1,,,,, -804,"[P] Anastomotic leak or dehiscence","Anastomotic leak or dehiscence","Anastomotic leak or dehiscence","rao@ohdsi.org","Pending peer review","","First event of anastomotic leak or dehiscence of large or small intestine","#ColorectalCancer, #Cancer",1,"Andreas Weinberger Rosen","0000-0001-9990-8155","","","","199074","","2023-09-18","2024-01-05",,"",,0,,,"ERA","0","end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,, -805,"[P] Intestinal obstruction (broad)","Intestinal obstruction (broad)","Intestinal obstruction","rao@ohdsi.org","Pending peer review","","First event Intestinal obstruction","#ColorectalCancer, #Cancer",1,"Andreas Weinberger Rosen","0000-0001-9990-8155","","","","197320","","2023-09-18","2024-01-05",,"",,0,,,"ERA","0","end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,, -806,"[P] Intraabdominal abscess","Intraabdominal abscess","Intraabdominal abscess","rao@ohdsi.org","Pending peer review","","First event Intraabdominal abscess","#ColorectalCancer, #Cancer",1,"Andreas Weinberger Rosen","0000-0001-9990-8155","","","","4245975","","2023-09-18","2024-01-05",,"",,0,,,"ERA","0","end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,, -807,"[P] Perioperative aspiration","Perioperative aspiration","Perioperative aspiration","rao@ohdsi.org","Pending peer review","","First event of Perioperative aspiration","#ColorectalCancer, #Cancer",1,"Andreas Weinberger Rosen","0000-0001-9990-8155","","","","316139, 319835","","2023-09-18","2024-01-05",,"",,0,,,"ERA","0","end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,, -808,"[P] Postoperative hemorrhage","Postoperative hemorrhage","Postoperative hemorrhage","rao@ohdsi.org","Pending peer review","","First event postoperative hemorrhage","",1,"Andreas Weinberger Rosen","0000-0001-9990-8155","","","","4002836","","2023-09-18","2024-01-05",,"",,0,,,"ERA","0","end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,, -809,"[P] Surgical wound infection (narrow)","Surgical wound infection (narrow)","Surgical wound infection (narrow)","rao@ohdsi.org","Pending peer review","","First event surgical wound infection","#ColorectalCancer, #Cancer",1,"Andreas Weinberger Rosen","0000-0001-9990-8155","","","","443454","","2023-09-18","2024-01-05",,"",,0,,,"ERA","0","end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,, -810,"[P] Distant metastasis following colorectal cancer (wide)","Distant metastasis following colorectal cancer (wide)","Distant metastasis following colorectal cancer (wide)","rao@ohdsi.org","Pending peer review","","First event distant metastasis following colorectal cancer","#ColorectalCancer, #Cancer",1,"Andreas Weinberger Rosen","0000-0001-9990-8155","'OHDSI'","","","314666, 4329847","https://forums.ohdsi.org/t/15900","2023-09-18","2024-01-05",,"",,0,,,"ERA","0","end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,, -811,"[P] Local recurrence after colorectal cancer","Local recurrence after colorectal cancer","Local recurrence after colorectal cancer","rao@ohdsi.org","Pending peer review","","First event local recurrence after colorectal cancer","#ColorectalCancer, #Cancer",1,"Andreas Weinberger Rosen","0000-0001-9990-8155","","","","4183609, 4266367","","2023-09-18","2024-01-05",,"",,0,,,"ERA","0","end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,, -812,"[P] Primary adenocarcinoma of the colon or rectum, MSI-H or dMMR, no surgery or oncological treatment","Primary adenocarcinoma of the colon or rectum, MSI-H or dMMR, no surgery or oncological treatment","Primary adenocarcinoma of the colon or rectum, MSI-H or dMMR, no surgery or oncological treatment","rao@ohdsi.org","Pending peer review","","First event of primary adenocarcinoma of the colon or rectum with MSI-H or dMMR, no curative surgery or oncological treatment any time after","#ColorectalCancer, #Cancer",1,"Andreas Weinberger Rosen","0000-0001-9990-8155","","","","376713, 439847","","2023-09-18","2024-01-05",,"",,0,,,"ERA","0","end of continuous observation",,,3,"First",FALSE,"All","First",1,1,"ConditionOccurrence",365,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,,,,,,,,,,, -813,"[P] Primary adenocarcinoma of the colon or rectum treated with potentially curative surgery","Primary adenocarcinoma of the colon or rectum treated with potentially curative surgery","Primary adenocarcinoma of the colon or rectum treated with potentially curative surgery","rao@ohdsi.org","Pending peer review","","First event of Primary adenocarcinoma of the colon or rectum treated with curative surgery within 90 days of the operation","#ColorectalCancer, #Cancer",1,"Andreas Weinberger Rosen","0000-0001-9990-8155","","","","443454","","2023-09-18","2024-01-05",,"",,0,,,"ERA","0","end of continuous observation",,,1,"First",FALSE,"All","First",1,1,"ProcedureOccurrence",365,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,,,,,,1,,,,, -814,"[P] Primary adenocarcinoma of the colon or rectum, no curative intended surgery and oncological treatment","Primary adenocarcinoma of the colon or rectum, no curative intended surgery and oncological treatment","Primary adenocarcinoma of the colon or rectum, no curative intended surgery and oncological treatment","rao@ohdsi.org","Pending peer review","","First event of Primary adenocarcinoma of the colon or rectum treated with no curative surgery but oncological treatment within 90 days of the operation","#ColorectalCancer, #Cancer",1,"Andreas Weinberger Rosen","0000-0001-9990-8155","","","","373503","","2023-09-18","2024-01-05",,"",,0,,,"ERA","0","end of continuous observation",,,1,"First",FALSE,"All","First",2,2,"DrugExposure, ProcedureOccurrence",365,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,,,,1,,1,,,,, -817,"[P] Primary adenocarcinoma of the colon or rectum, no curative intended surgery and oncological treatment2","Primary adenocarcinoma of the colon or rectum, no curative intended surgery and oncological treatment2","Primary adenocarcinoma of the colon or rectum, no curative intended surgery and oncological treatment","rao@ohdsi.org","Pending peer review","","Primary adenocarcinoma of the colon or rectum, no curative intended surgery, and oncological treatment at any time after","#ColorectalCancer, #Cancer",1,"Andreas Weinberger Rosen","0000-0001-9990-8155","","","","192671","","2023-09-18","2024-01-05",,"",,0,,,"ERA","0","end of continuous observation",,,3,"First",FALSE,"All","First",1,1,"ConditionOccurrence",365,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,,,,,,,,,,, -818,"[P] Primary adenocarcinoma of the colon or rectum, MSI-L, MSI-indeterminate, MSS or pMMR","Primary adenocarcinoma of the colon or rectum, MSI-L, MSI-indeterminate, MSS or pMMR","Primary adenocarcinoma of the colon or rectum, MSI-L, MSI-indeterminate, MSS or pMMR","rao@ohdsi.org","Pending peer review","","First event of primary adenocarcinoma of the colon or rectum, with a molecular subtype of MSI-L, MSI-indeterminate, MSS or pMMR","#ColorectalCancer, #Cancer",1,"Andreas Weinberger Rosen","0000-0001-9990-8155","","","","313217, 44784217","","2023-09-18","2024-01-05",,"",,0,,,"ERA","0","end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",365,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,,,,,,,,,,, -819,"[P] Primary adenocarcinoma of the colon or rectum, MSI-L, MSI-indeterminate, MSS or pMMR, treated with curative intended surgery","Primary adenocarcinoma of the colon or rectum, MSI-L, MSI-indeterminate, MSS or pMMR, treated with curative intended surgery","Primary adenocarcinoma of the colon or rectum, MSI-L, MSI-indeterminate, MSS or pMMR, treated with curative intended surgery","rao@ohdsi.org","Pending peer review","","First event of Primary adenocarcinoma of the colon or rectum, MSI-L, MSI-indeterminate, MSS or pMMR, treated with curative intended surgery within 90 days of diagnosis","#ColorectalCancer, #Cancer",1,"Andreas Weinberger Rosen","0000-0001-9990-8155","","","","438624, 4027133","","2023-09-18","2024-01-05",,"",,0,,,"ERA","0","end of continuous observation",,,1,"First",FALSE,"All","First",1,1,"ProcedureOccurrence",365,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,,,,,,1,,,,, -820,"[P] Primary adenocarcinoma of the colon or rectum, MSI-L, MSI-indeterminate, MSS or pMMR, oncological treatment, no curative surgery","Primary adenocarcinoma of the colon or rectum, MSI-L, MSI-indeterminate, MSS or pMMR, oncological treatment, no curative surgery","Primary adenocarcinoma of the colon or rectum, MSI-L, MSI-indeterminate, MSS or pMMR, oncological treatment, no curative surgery","rao@ohdsi.org","Pending peer review","","First event of Primary adenocarcinoma of the colon or rectum, MSI-L, MSI-indeterminate, MSS or pMMR, treated with oncological therapy, but no curative intended surgery","#ColorectalCancer, #Cancer",1,"Andreas Weinberger Rosen","0000-0001-9990-8155","","","","","","2023-09-18","2024-01-05",,"",,0,,,"ERA","0","end of continuous observation",,,1,"First",FALSE,"All","First",2,2,"DrugExposure, ProcedureOccurrence",365,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,,,,1,,1,,,,, -821,"[P] Primary adenocarcinoma of the colon or rectum, MSI-L, MSI-indeterminate, MSS or pMMR, no surgery or oncological treatment","Primary adenocarcinoma of the colon or rectum, MSI-L, MSI-indeterminate, MSS or pMMR, no surgery or oncological treatment","Primary adenocarcinoma of the colon or rectum, MSI-L, MSI-indeterminate, MSS or pMMR, no surgery or oncological treatment","rao@ohdsi.org","Pending peer review","","First event of Primary adenocarcinoma of the colon or rectum with a MSI-L, MSI-indeterminate, MSS or pMMR subtype, and no surgery or oncological treatment anytime in the future.","#ColorectalCancer, #Cancer",1,"Andreas Weinberger Rosen","0000-0001-9990-8155","","","","","","2023-09-18","2024-01-05",,"",,0,,,"ERA","0","end of continuous observation",,,3,"First",FALSE,"All","First",1,1,"ConditionOccurrence",365,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,,,,,,,,,,, -822,"[P] Primary adenocarcinoma of colon or rectum, MSI-H or dMMR, surgical treatment","Primary adenocarcinoma of colon or rectum, MSI-H or dMMR, surgical treatment","Primary adenocarcinoma of colon or rectum, MSI-H or dMMR, surgical treatment","rao@ohdsi.org","Pending peer review","","First event of Primary adenocarcinoma of the colon or rectum with the MSI-H or dMMR molecular subtype, receiving potential curative surgery","#ColorectalCancer, #Cancer",1,"Andreas Weinberger Rosen","0000-0001-9990-8155","","","","40481547","","2023-09-18","2024-01-05",,"",,0,,,"ERA","0","end of continuous observation",,,1,"First",FALSE,"All","First",1,1,"ProcedureOccurrence",365,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,,,,,,1,,,,, -823,"[P] Primary adenocarcinoma of colon or rectum, MSI-H or dMMR, oncological treatment no surgery","Primary adenocarcinoma of colon or rectum, MSI-H or dMMR, oncological treatment no surgery","Primary adenocarcinoma of colon or rectum, MSI-H or dMMR, oncological treatment no surgery","rao@ohdsi.org","Pending peer review","","First event primary adenocarcinoma of the colon or rectum, with MSI-H or dMMR molecular subtype, treated with oncological treatment no curative surgery","#ColorectalCancer, #Cancer",1,"Andreas Weinberger Rosen","0000-0001-9990-8155","","","","439676, 37311061","","2023-09-18","2024-01-05",,"",,0,,,"ERA","0","end of continuous observation",,,1,"First",FALSE,"All","First",2,2,"DrugExposure, ProcedureOccurrence",365,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,,,,1,,1,,,,, -824,"[P] Primary adenocarcinoma of colon or rectum, MSI-H or dMMR","Primary adenocarcinoma of colon or rectum, MSI-H or dMMR","Primary adenocarcinoma of colon or rectum, MSI-H or dMMR","rao@ohdsi.org","Pending peer review","","First event Primary adenocarcinoma of the colon or rectum, with MSI-H or dMMR molecular subtype","#ColorectalCancer, #Cancer",1,"Andreas Weinberger Rosen","0000-0001-9990-8155","","","","","","2023-09-18","2024-01-05",,"",,0,,,"ERA","0","end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",365,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,,,,,,,,,,, -825,"[P] Primary adenocarcinoma of colon","Primary adenocarcinoma of colon","Primary adenocarcinoma of colon","rao@ohdsi.org","Pending peer review","","First event of primary adenocarcinoma of colon","#ColorectalCancer, #Cancer",1,"Andreas Weinberger Rosen","0000-0001-9990-8155","","","","","","2023-09-18","2024-01-05",,"",,0,,,"ERA","0","end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",365,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,,,,,,,,,,, -826,"[P] Primary adenocarcinoma of colon, no surgery or oncological treatment","Primary adenocarcinoma of colon, no surgery or oncological treatment","Primary adenocarcinoma of colon, no surgery or oncological treatment","rao@ohdsi.org","Pending peer review","","First event of primary adenocarcinoma of the colon, no curative surgery and no oncological treatment anytime after","#ColorectalCancer, #Cancer",1,"Andreas Weinberger Rosen","0000-0001-9990-8155","'OHDSI'","","","373995","https://forums.ohdsi.org/t/17895","2023-09-18","2024-01-05",,"",,0,,,"ERA","0","end of continuous observation",,,3,"First",FALSE,"All","First",1,1,"ConditionOccurrence",365,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,,,,,,,,,,, -827,"[P] Primary adenocarcinoma of colon surgical treatment","Primary adenocarcinoma of colon surgical treatment","Primary adenocarcinoma of colon surgical treatment","rao@ohdsi.org","Pending peer review","","First event of curative surgery for primary adenocarcinoma","#ColorectalCancer, #Cancer",1,"Andreas Weinberger Rosen","0000-0001-9990-8155","'OHDSI'","","","378419","","2023-09-18","2024-01-05",,"",,0,,,"ERA","0","end of continuous observation",,,1,"First",FALSE,"All","First",1,1,"ProcedureOccurrence",365,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,,,,,,1,,,,, -828,"[P] Primary adenocarcinoma of colon oncological treatment, no surgery","Primary adenocarcinoma of colon oncological treatment, no surgery","Primary adenocarcinoma of colon oncological treatment, no surgery","rao@ohdsi.org","Pending peer review","","First event of oncological treatment after primary adenocarcinoma, with no curative surgery","#ColorectalCancer, #Cancer",1,"Andreas Weinberger Rosen","0000-0001-9990-8155","","","","138525, 194133","https://forums.ohdsi.org/t/18223","2023-09-18","2024-01-05",,"",,0,,,"ERA","0","end of continuous observation",,,1,"First",FALSE,"All","First",2,2,"DrugExposure, ProcedureOccurrence",365,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,,,,1,,1,,,,, -829,"[P] Primary adenocarcinoma of colon, MSI-L, MSI-indeterminate, MSS or pMMR","Primary adenocarcinoma of colon, MSI-L, MSI-indeterminate, MSS or pMMR","Primary adenocarcinoma of colon, MSI-L, MSI-indeterminate, MSS or pMMR","rao@ohdsi.org","Pending peer review","","First event of primary adenocarcinoma of colon, with MSI-L or pMMR molecular subtype","#ColorectalCancer, #Cancer",1,"Andreas Weinberger Rosen","0000-0001-9990-8155","'OHDSI'","","","444362","","2023-09-18","2024-01-05",,"",,0,,,"ERA","0","end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",365,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,,,,,,,,,,, -830,"[P] Primary adenocarcinoma of colon, MSI-L, MSI-indeterminate, MSS or pMMR, surgically treated","Primary adenocarcinoma of colon, MSI-L, MSI-indeterminate, MSS or pMMR, surgically treated","Primary adenocarcinoma of colon, MSI-L, MSI-indeterminate, MSS or pMMR, surgically treated","rao@ohdsi.org","Pending peer review","","First event of potential curative surgery after a primary adenocarcinoma with MSI-L, MSS, pMMR molecular subtype","#ColorectalCancer, #Cancer",1,"Andreas Weinberger Rosen","0000-0001-9990-8155","","","","438409, 4047120","https://forums.ohdsi.org/t/15901","2023-09-18","2023-09-20",,"",,0,,,"ERA","0","end of continuous observation",,,3,"First",FALSE,"All","First",1,1,"ProcedureOccurrence",365,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,1,,,,, -831,"[P] Primary adenocarcinoma of colon MSI-L, MSI-indeterminate, MSS or pMMR, oncological treatment, no surgery","Primary adenocarcinoma of colon MSI-L, MSI-indeterminate, MSS or pMMR, oncological treatment, no surgery","Primary adenocarcinoma of colon MSI-L, MSI-indeterminate, MSS or pMMR, oncological treatment, no surgery","rao@ohdsi.org","Pending peer review","","First event of oncological treatment of primary adenocarcinoma of colon with MSS, MSI-L or pMMR subtype","#ColorectalCancer, #Cancer",1,"Andreas Weinberger Rosen","0000-0001-9990-8155","'OHDSI'","","","314666, 4296653, 4329847","https://forums.ohdsi.org/t/15900","2023-09-18","2024-01-05",,"",,0,,,"ERA","0","end of continuous observation",,,1,"First",FALSE,"All","First",2,2,"DrugExposure, ProcedureOccurrence",365,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,,,,1,,1,,,,, -832,"[P] Primary adenocarcinoma of colon MSI-L, MSI-indeterminate, MSS or pMMR, no surgery or oncological treatment","Primary adenocarcinoma of colon MSI-L, MSI-indeterminate, MSS or pMMR, no surgery or oncological treatment","Primary adenocarcinoma of colon MSI-L, MSI-indeterminate, MSS or pMMR, no surgery or oncological treatment","rao@ohdsi.org","Pending peer review","","First event of adenocarcinoma of colon with molecular subtype pMMR/MSI-L/MSS for patients not receiving surgery or oncological treatment","#ColorectalCancer, #Cancer",1,"Andreas Weinberger Rosen","0000-0001-9990-8155","'OHDSI'","","","198263","https://forums.ohdsi.org/t/17895","2023-09-18","2024-01-05",,"",,0,,,"ERA","0","end of continuous observation",,,3,"First",FALSE,"All","First",1,1,"ConditionOccurrence",365,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,,,,,,,,,,, -833,"[P] Primary adenocarcinoma of colon MSI-H or dMMR","Primary adenocarcinoma of colon MSI-H or dMMR","Primary adenocarcinoma of colon MSI-H or dMMR","rao@ohdsi.org","Pending peer review","","First event of a primary adenocarcinoma of colon with MSI-H / pMMR molecular profile","#ColorectalCancer, #Cancer",1,"Andreas Weinberger Rosen","0000-0001-9990-8155","'OHDSI'","","","442597, 4152351","https://forums.ohdsi.org/t/17895","2023-09-18","2024-01-05",,"",,0,,,"ERA","0","end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",365,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,,,,,,,,,,, -834,"[P] Primary adenocarcinoma of colon MSI-H or dMMR, surgical treatment","Primary adenocarcinoma of colon MSI-H or dMMR, surgical treatment","Primary adenocarcinoma of colon MSI-H or dMMR, surgical treatment","rao@ohdsi.org","Pending peer review","","First event of potentially curative surgery for adenocarcinoma of colon following diagnosis of MSI-H dMMR subtype","#ColorectalCancer, #Cancer",1,"Andreas Weinberger Rosen","0000-0001-9990-8155","'OHDSI'","","","439926, 4272240","https://forums.ohdsi.org/t/17895","2023-09-18","2024-01-05",,"",,0,,,"ERA","0","end of continuous observation",,,1,"First",FALSE,"All","First",1,1,"ProcedureOccurrence",365,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,,,,,,1,,,,, -835,"[P] Primary adenocarcinoma of colon MSI-H or dMMR, oncological treatment, no surgery","Primary adenocarcinoma of colon MSI-H or dMMR, oncological treatment, no surgery","Primary adenocarcinoma of colon MSI-H or dMMR, oncological treatment, no surgery","rao@ohdsi.org","Pending peer review","","First event of oncological treatment for colorectal cancer following diagnosis of primary adenocarcinoma of colon with MSI-H or dMMR profile, no curative surgery","#ColorectalCancer, #Cancer",1,"Andreas Weinberger Rosen","0000-0001-9990-8155","'OHDSI'","","","4096682",,"2023-09-18","2024-01-05",,"",,0,,,"ERA","0","end of continuous observation",,,1,"First",FALSE,"All","First",2,2,"DrugExposure, ProcedureOccurrence",365,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,,,,1,,1,,,,, -836,"[P] Primary adenocarcinoma of colon MSI-H or dMMR, no surgery or oncological treatment","Primary adenocarcinoma of colon MSI-H or dMMR, no surgery or oncological treatment","Primary adenocarcinoma of colon MSI-H or dMMR, no surgery or oncological treatment","rao@ohdsi.org","Pending peer review","","First event of primary adenocarcinoma of colon with MSI-H or dMMR profile, no curative surgery or oncological treatment at anytime past diagnosis","#ColorectalCancer, #Cancer",1,"Andreas Weinberger Rosen","0000-0001-9990-8155","'OHDSI'","","","137977, 435656","https://forums.ohdsi.org/t/17895","2023-09-18","2024-01-05",,"",,0,,,"ERA","0","end of continuous observation",,,3,"First",FALSE,"All","First",1,1,"ConditionOccurrence",365,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,,,,,,,,,,, -837,"[P] Primary adenocarcinoma of rectum","Primary adenocarcinoma of rectum","Primary adenocarcinoma of rectum","rao@ohdsi.org","Pending peer review","","First event of a primary adenocarcinoma of rectum","#ColorectalCancer, #Cancer",1,"Andreas Weinberger Rosen","0000-0001-9990-8155","'OHDSI'","","","436222","https://forums.ohdsi.org/t/17895","2023-09-18","2024-01-05",,"",,0,,,"ERA","0","end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",365,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,,,,,,,,,,, -838,"[P] Primary adenocarcinoma of rectum MSI-H or dMMR","Primary adenocarcinoma of rectum MSI-H or dMMR","Primary adenocarcinoma of rectum MSI-H or dMMR","rao@ohdsi.org","Pending peer review","","First event of a primary adenocarcinoma of rectum with MSI-H or dMMR molecular subtype","#ColorectalCancer, #Cancer",1,"Andreas Weinberger Rosen","0000-0001-9990-8155","'OHDSI'","","","196360, 197508","","2023-09-18","2024-01-05",,"",,0,,,"ERA","0","end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",365,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,,,,,,,,,,, -839,"[P] Primary adenocarcinoma of rectum, MSI-H or dMMR, no surgery or oncological treatment","Primary adenocarcinoma of rectum, MSI-H or dMMR, no surgery or oncological treatment","Primary adenocarcinoma of rectum, MSI-H or dMMR, no surgery or oncological treatment","rao@ohdsi.org","Pending peer review","","First event of a primary adenocarcinoma of rectum with MSI-H or dMMR molecular subtype, without any curative surgery or oncological treatment in the future","#ColorectalCancer, #Cancer",1,"Andreas Weinberger Rosen","0000-0001-9990-8155","'OHDSI'","","","80809","","2023-09-18","2024-01-05",,"",,0,,,"ERA","0","end of continuous observation",,,1,"First",FALSE,"All","First",1,1,"ProcedureOccurrence",365,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,,,,,,1,,,,, -840,"[P] Primary adenocarcinoma of rectum MSI-H or dMMR, oncological treatment, no surgery","Primary adenocarcinoma of rectum MSI-H or dMMR, oncological treatment, no surgery","Primary adenocarcinoma of rectum MSI-H or dMMR, oncological treatment, no surgery","rao@ohdsi.org","Pending peer review","","First event of oncological treatment for patient with primary adenocarcinoma of rectum with MSI-H or dMMR molecular subtype, without any curative surgery","#ColorectalCancer, #Cancer",1,"Andreas Weinberger Rosen","0000-0001-9990-8155","'OHDSI'","","","318443, 764123","","2023-09-18","2024-01-05",,"",,0,,,"ERA","0","end of continuous observation",,,1,"First",FALSE,"All","First",2,2,"DrugExposure, ProcedureOccurrence",365,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,,,,1,,1,,,,, -841,"[P] Primary adenocarcinoma of rectum, MSI-H or dMMR, surgical treatment","Primary adenocarcinoma of rectum, MSI-H or dMMR, surgical treatment","Primary adenocarcinoma of rectum, MSI-H or dMMR, surgical treatment","rao@ohdsi.org","Pending peer review","","First event of potentially curative surgery for patients diagnosed with primary adenocarcinoma of rectum with MSI-H / dMMR subtype","#ColorectalCancer, #Cancer",1,"Andreas Weinberger Rosen","0000-0001-9990-8155","'OHDSI'","","","201606","","2023-09-18","2024-01-05",,"",,0,,,"ERA","0","end of continuous observation",,,1,"First",FALSE,"All","First",1,1,"ProcedureOccurrence",365,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,,,,,,1,,,,, -842,"[P] Primary adenocarcinoma of rectum, MSI-L, MSI-indeterminate, MSS or pMMR","Primary adenocarcinoma of rectum, MSI-L, MSI-indeterminate, MSS or pMMR","Primary adenocarcinoma of rectum, MSI-L, MSI-indeterminate, MSS or pMMR","rao@ohdsi.org","Pending peer review","","First event of primary adenocarcinoma of rectum, with MSI-L, MSI-indeterminate, MSS or pMMR subtype","#ColorectalCancer, #Cancer",1,"Andreas Weinberger Rosen","0000-0001-9990-8155","'OHDSI'","","","440383","","2023-09-18","2024-01-05",,"",,0,,,"ERA","0","end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",365,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,,,,,,,,,,, -843,"[P] Primary adenocarcinoma of rectum MSI-L, MSI-indeterminate, MSS or pMMR, oncological treatment, no surgery","Primary adenocarcinoma of rectum MSI-L, MSI-indeterminate, MSS or pMMR, oncological treatment, no surgery","Primary adenocarcinoma of rectum MSI-L, MSI-indeterminate, MSS or pMMR, oncological treatment, no surgery","rao@ohdsi.org","Pending peer review","","First event of oncology in patients diagnosed with primary adenocarcinoma of rectum with MSI-L, MSI-indeterminate, MSS or pMMR profile, with no subsequent potentially curative surgery","#ColorectalCancer, #Cancer",1,"Andreas Weinberger Rosen","0000-0001-9990-8155","'OHDSI'","","","140168","","2023-09-18","2024-01-05",,"",,0,,,"ERA","0","end of continuous observation",,,1,"First",FALSE,"All","First",2,2,"DrugExposure, ProcedureOccurrence",365,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,,,,1,,1,,,,, -844,"[P] Primary adenocarcinoma of rectum MSI-L, MSI-indeterminate, MSS or pMMR, no surgery and no oncological treatment","Primary adenocarcinoma of rectum MSI-L, MSI-indeterminate, MSS or pMMR, no surgery and no oncological treatment","Primary adenocarcinoma of rectum MSI-L, MSI-indeterminate, MSS or pMMR, no surgery and no oncological treatment","rao@ohdsi.org","Pending peer review","","First event of primary adenocarcinoma of tectum with MSI-L / MSS / pMMR profile, no surgery or oncological treatment","#ColorectalCancer, #Cancer",1,"Andreas Weinberger Rosen","0000-0001-9990-8155","'OHDSI'","","","81893","","2023-09-18","2024-01-05",,"",,0,,,"ERA","0","end of continuous observation",,,3,"First",FALSE,"All","First",1,1,"ConditionOccurrence",365,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,,,,,,,,,,, -845,"[P] Primary adenocarcinoma of rectum MSI-L, MSI-indeterminate, MSS or pMMR, treated with potentially curative surgery","Primary adenocarcinoma of rectum MSI-L, MSI-indeterminate, MSS or pMMR, treated with potentially curative surgery","Primary adenocarcinoma of rectum MSI-L, MSI-indeterminate, MSS or pMMR, treated with potentially curative surgery","rao@ohdsi.org","Pending peer review","","First event of potentially curative surgery for primary adenocarcinoma of rectum with MSI-L / pMMR subtype","#ColorectalCancer, #Cancer",1,"Andreas Weinberger Rosen","0000-0001-9990-8155","'OHDSI'","","","26942, 138723, 4144746","https://forums.ohdsi.org/t/17854","2023-09-18","2024-01-05",,"",,0,,,"ERA","0","end of continuous observation",,,1,"First",FALSE,"All","First",1,1,"ProcedureOccurrence",365,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,,,,,,1,,,,, -846,"[P] Primary adenocarcinoma of rectum oncological treatment, no surgery","Primary adenocarcinoma of rectum oncological treatment, no surgery","Primary adenocarcinoma of rectum oncological treatment, no surgery","rao@ohdsi.org","Pending peer review","","First event of oncological for patients with primary adenocarcinoma in rectum, with no subsequent potentially curative surgery","#ColorectalCancer, #Cancer",1,"Andreas Weinberger Rosen","0000-0001-9990-8155","'OHDSI'","","","257011, 437663, 4170143, 4250734","https://forums.ohdsi.org/t/17876","2023-09-18","2024-01-05",,"",,0,,,"ERA","0","end of continuous observation",,,1,"First",FALSE,"All","First",2,2,"DrugExposure, ProcedureOccurrence",365,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,,,,1,,1,,,,, -847,"[P] Primary adenocarcinoma of rectum surgical treatment","Primary adenocarcinoma of rectum surgical treatment","Primary adenocarcinoma of rectum surgical treatment","rao@ohdsi.org","Pending peer review","","First event of potentially curative surgery following diagnosis of primary adenocarcinoma of rectum","#ColorectalCancer, #Cancer",1,"Andreas Weinberger Rosen","0000-0001-9990-8155","'OHDSI'","","","435503, 439777, 441269, 4250490","https://forums.ohdsi.org/t/17856","2023-09-18","2024-01-05",,"",,0,,,"ERA","0","end of continuous observation",,,1,"First",FALSE,"All","First",1,1,"ProcedureOccurrence",365,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,,,,,,1,,,,, -848,"[P] Primary adenocarcinoma of rectum, no surgery or oncological treatment","Primary adenocarcinoma of rectum, no surgery or oncological treatment","Primary adenocarcinoma of rectum, no surgery or oncological treatment","rao@ohdsi.org","Pending peer review","","First event of primary adenocarcinoma of rectum, no future potentially curative surgery or oncological treatment","#ColorectalCancer, #Cancer",1,"Andreas Weinberger Rosen","0000-0001-9990-8155","'OHDSI'","","","435503, 439777, 441269, 4250490","https://forums.ohdsi.org/t/17856","2023-09-18","2024-01-05",,"",,0,,,"ERA","0","end of continuous observation",,,3,"First",FALSE,"All","First",1,1,"ConditionOccurrence",365,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,,,,,,,,,,, -850,"[W] Intestinal obstruction (broad 2)","Intestinal obstruction (broad 2)","Intestinal obstruction","rao@ohdsi.org","Pending peer review","","First event Intestinal obstruction","#ColorectalCancer, #Cancer",1,"Andreas Weinberger Rosen","0000-0001-9990-8155","'OHDSI'","","","432881","","2023-09-18","2023-10-16",,"","duplicated 805",0,,,"ERA","0","end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,, -851,"[P] Intraabdominal obstruction (broad)","Intraabdominal obstruction (broad)","Intraabdominal obstruction","rao@ohdsi.org","Pending peer review","","First event Intraabdominal obstruction","#ColorectalCancer, #Cancer",1,"Andreas Weinberger Rosen","0000-0001-9990-8155","'OHDSI'","Anna Ostropolets","","435224","https://forums.ohdsi.org/t/17409","2023-09-18","2023-09-20",,"",,0,,,"ERA","0","end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,, -852,"[P] Surgical wound infection (broad)","Surgical wound infection (broad)","Surgical wound infection (broad)","rao@ohdsi.org","Pending peer review","","First event surgical wound infection","#ColorectalCancer, #Cancer",1,"Andreas Weinberger Rosen","0000-0001-9990-8155","'OHDSI'","","","435224","https://forums.ohdsi.org/t/17409","2023-09-18","2024-01-05",,"",,0,,,"ERA","0","end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,, -854,"[P] Distant metastasis following colorectal cancer (medium)","Distant metastasis following colorectal cancer (medium)","Distant metastasis following colorectal cancer (medium)","rao@ohdsi.org","Pending peer review","","First event distant metastasis following colorectal cancer","#ColorectalCancer, #Cancer",1,"Andreas Weinberger Rosen","0000-0001-9990-8155","'OHDSI'","","","433749, 4103532","","2023-09-18","2024-01-05",,"",,0,,,"ERA","0","end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,, -855,"[P] Distant metastasis following colorectal cancer (narrow)","Distant metastasis following colorectal cancer (narrow)","Distant metastasis following colorectal cancer (narrow)","rao@ohdsi.org","Pending peer review","","First event distant metastasis following colorectal cancer","#ColorectalCancer, #Cancer",1,"Andreas Weinberger Rosen","0000-0001-9990-8155","'OHDSI'","","","433749, 4103532","","2023-09-18","2024-01-05",,"",,0,,,"ERA","0","end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,, -856,"[P] Earliest event of Migraine, including history of migraine","Earliest event of Migraine, including history of migraine","Earliest event of Migraine, including history of migraine","rao@ohdsi.org","Pending peer review","","Earliest occurrence of Migraine indexed on occurrence of Migraine condition (or observation of history of migraine-in the one of the cohorts versions) or symptoms (Headache , Aura) or a use of antimigraine drug (or the 1st time). Patients entering the cohort with an antimigraine drugs or migraine symptoms are required to have a diagnosis or observation of Migraine or history of migraine within 60 days. Cohort exit is the end of continuous observation.","#ColorectalCancer, #Cancer",1,"Azza Shoaibi', 'Jill Hardin'","0000-0002-6976-2594'","'OHDSI'","","","313800, 4119134","","2023-09-18","2023-09-20",,"",,0,,,"ERA","0","end of continuous observation",,,1,"All",FALSE,"All","First",4,3,"ConditionOccurrence, DrugExposure, Observation",0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,1,,,,,,, -857,"[P] Earliest event of Migraine","Earliest event of Migraine","Earliest event of Migraine","rao@ohdsi.org","Pending peer review","","Earliest occurrence of Migraine indexed on occurrence of Migraine condition (or observation of history of migraine-in the one of the cohorts versions) or symptoms (Headache , Aura) or a use of antimigraine drug (or the 1st time). Patients entering the cohort with an antimigraine drugs or migraine symptoms are required to have a diagnosis or observation of Migraine or history of migraine within 60 days. Cohort exit is the end of continuous observation.","#JNJ, #Indication",1,"Azza Shoaibi', 'Jill Hardin'","0000-0002-6976-2594'","'OHDSI'","","","137967, 4345578","","2023-09-18","2023-10-04",,"",,0,,,"ERA","0","end of continuous observation",,,0,"First",FALSE,"All","First",3,2,"ConditionOccurrence, DrugExposure",0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,,,,1,,,,,,, -858,"[P] Earliest event of Rheumatoid Arthritis","Earliest event of Rheumatoid Arthritis","Earliest event of Rheumatoid Arthritis","rao@ohdsi.org","Pending peer review","","Earliest occurrence of Rheumatoid Arthritis indexed on diagnosis (condition or observation) date, for the first time in history cohort exit is the end of continuous observation","#JNJ, #Indication",1,"Joel Swerdel'","0000-0002-6976-2594'","'OHDSI'","","","321042","","2023-09-18","2023-10-04",,"",,0,,,"ERA","0","end of continuous observation",,,0,"First",FALSE,"All","First",2,2,"ConditionOccurrence, Observation",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,,,,,,,,,, -859,"[P] Earliest event of Crohns disease","Earliest event of Crohns disease","Earliest event of Crohns disease","rao@ohdsi.org","Pending peer review","","Earliest occurrence of Crohns disease indexed on diagnosis date, for the first time in history cohort exit is the end of continuous observation","#Crohn",1,"Joel Swerdel'","0000-0002-6976-2594'","'OHDSI'","","","201606","","2023-09-18","2023-10-04",,"",,0,,,"ERA","0","end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,,,,,,,,,,, -860,"[P] Earliest event of Ulcerative colitis","Earliest event of Ulcerative colitis","Earliest event of Ulcerative colitis","rao@ohdsi.org","Pending peer review","","Earliest occurrence of Ulcerative Colitis indexed on diagnosis date, for the first time in history cohort exit is the end of continuous observation","#UlcerativeColitis",1,"Joel Swerdel'","0000-0002-6976-2594'","'OHDSI'","","","441202","https://forums.ohdsi.org/t/17835","2023-09-18","2023-09-22",,"",,0,,,"ERA","0","end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,,,,,,,,,,, -861,"[W] Earliest event of Urinary tract infections (UTI)","Earliest event of Urinary tract infections (UTI)","Earliest event of Urinary tract infections (UTI)","rao@ohdsi.org","Pending peer review","","Earliest event of diagnosis of urinary tract infections, cohort exist is end of observation period.","#ColorectalCancer, #Cancer",1,"Stephen Fortin","0000-0002-6976-2594'","'OHDSI'","","","141651","","2023-09-18","2023-11-29",,"","Cohort appears to model biologically implausible situation",0,,,"ERA","0","end of continuous observation",,,0,"All",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,, -862,"[P] Earliest event of Alzheimer's disease derived from Imfeld, 2","Earliest event of Alzheimer's disease derived from Imfeld, 2","Earliest event of Alzheimer's disease derived from Imfeld, 2","rao@ohdsi.org","Pending peer review","","","#ColorectalCancer, #Cancer",1,"Azza Shoaibi'","0000-0002-6976-2594'","'OHDSI'","","","42872891","","2023-09-18","2023-09-20",,"",,0,,,"ERA","0","end of continuous observation",,,0,"First",FALSE,"All","First",2,2,"ConditionOccurrence, DrugExposure",0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,1,,,,,,, -863,"[P] Cognitive impairment, incident","Cognitive impairment, incident","Cognitive impairment, incident","rao@ohdsi.org","Pending peer review","","Earliest occurrence of Crohns disease indexed on diagnosis date, for the first time in history , with 365 days prior observation time. cohort exit is the end of continuous observation","",1,"Azza Shoaibi', 'Dave Kern'","0000-0002-6976-2594'","'OHDSI'","","","4297400, 439795",,"2023-09-18","2023-10-04",,"",,0,,,"ERA","0","end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,,,,,,,,,,, -864,"[P] Earliest event of Dementia","Earliest event of Dementia","Earliest event of Dementia","rao@ohdsi.org","Pending peer review","","Occurrences of dementia indexed on diagnosis or observation date with no required prior continuous enrollment subset to earliest observation where the patient was 18 years or older cohort exit is the end of continuous observation.","#Dementia",1,"Azza Shoaibi'","0000-0002-6976-2594'","'OHDSI'","","","4182210","","2023-09-18","2023-10-03",,"",,0,,,"ERA","0","end of continuous observation",,,1,"All",FALSE,"All","First",2,2,"ConditionOccurrence, Observation",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,, -865,"[P] Non-Emergent Major Non Cardiac Surgery among adults","Non-Emergent Major Non Cardiac Surgery among adults","Major Non Cardiac Surgery, adults, inpt stay, no ED","rao@ohdsi.org","Pending peer review","","","#Surgery",1,"Evan Minty'","0000-0003-4631-9992'","'OHDSI'","","","4301351",,"2023-09-19","2024-01-05",,"",,0,,,"ERA","0","end of continuous observation",,,2,"First",FALSE,"All","First",35,1,"ProcedureOccurrence",0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,1,,,,, -866,"[P] Abdominal Aortic Aneurysm repair, adults, inpt stay, no ED","Abdominal Aortic Aneurysm repair, adults, inpt stay, no ED","Abdominal Aortic Aneurysm repair, adults, inpt stay, no ED","rao@ohdsi.org","Pending peer review","","","#Surgery",1,"Evan Minty', 'Brian Bucher'","0000-0003-4631-9992', '0000-0001-8376-9752'","'OHDSI'","","","4301351",,"2023-09-19","2024-01-05",,"",,0,,,"ERA","0","end of continuous observation",,,4,"First",FALSE,"All","First",2,1,"ProcedureOccurrence",0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,1,,,,, -867,"[P] Lower Extremity Bypass, adults, inpt stay, no ED","Lower Extremity Bypass, adults, inpt stay, no ED","Lower Extremity Bypass, adults, inpt stay, no ED","rao@ohdsi.org","Pending peer review","","","#surgery",1,"Evan Minty', 'Brian Bucher'","0000-0003-4631-9992', '0000-0001-8376-9752'","'OHDSI'","","","4301351",,"2023-09-19","2024-01-05",,"",,0,,,"ERA","0","end of continuous observation",,,2,"First",FALSE,"All","First",2,1,"ProcedureOccurrence",0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,1,,,,, -868,"[P] Carotid Endarterectomy, adults, inpt stay, no ED","Carotid Endarterectomy, adults, inpt stay, no ED","Carotid Endarterectomy, adults, inpt stay, no ED","rao@ohdsi.org","Pending peer review","","","#Surgery",1,"Evan Minty, Brian Bucher","0000-0003-4631-9992, 0000-0001-8376-9752","'OHDSI'","","","4301351",,"2023-09-19","2024-01-05",,"",,0,,,"ERA","0","end of continuous observation",,,2,"First",FALSE,"All","First",2,1,"ProcedureOccurrence",0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,1,,,,, -869,"[P] Lung Resection, adults, inpt stay, no ED","Lung Resection, adults, inpt stay, no ED","Lung Resection, adults, inpt stay, no ED","rao@ohdsi.org","Pending peer review","","","#Surgery",1,"Evan Minty', 'Brian Bucher'","0000-0003-4631-9992', '0000-0001-8376-9752'","'OHDSI'","","","4301351",,"2023-09-19","2024-01-05",,"",,0,,,"ERA","0","end of continuous observation",,,2,"First",FALSE,"All","First",2,1,"ProcedureOccurrence",0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,1,,,,, -870,"[P] Esophagectomy, adults, inpt stay, no ED","Esophagectomy, adults, inpt stay, no ED","Esophagectomy, adults, inpt stay, no ED","rao@ohdsi.org","Pending peer review","","","#Surgery",1,"Evan Minty', 'Brian Bucher'","0000-0003-4631-9992', '0000-0001-8376-9752'","'OHDSI'","","","132702","","2023-09-19","2024-01-05",,"",,0,,,"ERA","0","end of continuous observation",,,2,"First",FALSE,"All","First",2,1,"ProcedureOccurrence",0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,1,,,,, -871,"[P] Pancreatectomy, adults, inpt stay, no ED","Pancreatectomy, adults, inpt stay, no ED","Pancreatectomy, adults, inpt stay, no ED","rao@ohdsi.org","Pending peer review","","","#Surgery",1,"Evan Minty', 'Brian Bucher'","0000-0003-4631-9992', '0000-0001-8376-9752'","'OHDSI'","","","4301351",,"2023-09-19","2024-01-05",,"",,0,,,"ERA","0","end of continuous observation",,,2,"First",FALSE,"All","First",2,1,"ProcedureOccurrence",0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,1,,,,, -872,"[P] Colectomy, adults, inpt stay, no ED","Colectomy, adults, inpt stay, no ED","Colectomy, adults, inpt stay, no ED","rao@ohdsi.org","Pending peer review","","","#Surgery",1,"Evan Minty', 'Brian Bucher'","0000-0003-4631-9992', '0000-0001-8376-9752'","'OHDSI'","","","4301351",,"2023-09-19","2024-01-05",,"",,0,,,"ERA","0","end of continuous observation",,,2,"First",FALSE,"All","First",2,1,"ProcedureOccurrence",0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,1,,,,, -873,"[P] Cystectomy, adults, inpt stay, no ED","Cystectomy, adults, inpt stay, no ED","Cystectomy, adults, inpt stay, no ED","rao@ohdsi.org","Pending peer review","","","#Surgery",1,"Evan Minty', 'Brian Bucher'","0000-0003-4631-9992', '0000-0001-8376-9752'","'OHDSI'","","","4301351",,"2023-09-19","2024-01-05",,"",,0,,,"ERA","0","end of continuous observation",,,2,"First",FALSE,"All","First",2,1,"ProcedureOccurrence",0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,1,,,,, -874,"[P] Nephrectomy, adults, inpt stay, no ED","Nephrectomy, adults, inpt stay, no ED","Nephrectomy, adults, inpt stay, no ED","rao@ohdsi.org","Pending peer review","","","#Surgery",1,"Evan Minty, Brian Bucher","0000-0003-4631-9992, 0000-0001-8376-9752","'OHDSI'","","","4301351",,"2023-09-19","2024-01-05",,"",,0,,,"ERA","0","end of continuous observation",,,2,"First",FALSE,"All","First",2,1,"ProcedureOccurrence",0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,1,,,,, -875,"[P] Coronary Artery Bypass Graft, adults, inpt stay, no ED","Coronary Artery Bypass Graft, adults, inpt stay, no ED","Coronary Artery Bypass Graft, adults, inpt stay, no ED","rao@ohdsi.org","Pending peer review","","","#Surgery",1,"Evan Minty', 'Brian Bucher'","0000-0003-4631-9992', '0000-0001-8376-9752'","'OHDSI'","","","4301351",,"2023-09-19","2024-01-05",,"",,0,,,"ERA","0","end of continuous observation",,,2,"First",FALSE,"All","First",2,1,"ProcedureOccurrence",0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,1,,,,, -876,"[P] Cardiac Valve Surgery, adults, inpt stay, no ED","Cardiac Valve Surgery, adults, inpt stay, no ED","Cardiac Valve Surgery, adults, inpt stay, no ED","rao@ohdsi.org","Pending peer review","","","#Surgery",1,"Evan Minty', 'Brian Bucher'","0000-0003-4631-9992', '0000-0001-8376-9752'","'OHDSI'","","","4301351",,"2023-09-19","2024-01-05",,"",,0,,,"ERA","0","end of continuous observation",,,2,"First",FALSE,"All","First",2,1,"ProcedureOccurrence",0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,1,,,,, -877,"[P] Non-Emergent MNCS (age 18 or greater), post op Afib (parox)","Non-Emergent MNCS (age 18 or greater), post op Afib (parox)","Non-Emergent MNCS (age 18 or greater), post op Afib (parox)","rao@ohdsi.org","Pending peer review","","","#Surgery, #NonEmergent",1,"Evan Minty'","0000-0003-4631-9992'","'OHDSI'","","","374954","","2023-09-19","2023-10-05",,"",,0,,,"ERA","0","end of continuous observation",,,4,"First",FALSE,"All","First",35,1,"ProcedureOccurrence",0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,1,,,,, -878,"[P] Major Non Cardiac Surgery, adults, inpt stay, no ED, post op new Afib","Major Non Cardiac Surgery, adults, inpt stay, no ED, post op new Afib","Major Non Cardiac Surgery, adults, inpt stay, no ED, post op new Afib","rao@ohdsi.org","Pending peer review","","","#Surgery",1,"Evan Minty'","0000-0003-4631-9992'","'OHDSI'","","","436100","https://forums.ohdsi.org/t/17784","2023-09-19","2024-01-05",,"",,0,,,"ERA","0","end of continuous observation",,,4,"First",FALSE,"All","First",35,1,"ProcedureOccurrence",0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,1,,,,, -881,"[P] Acute myocardial infarction","Acute myocardial infarction","Acute myocardial infarction events","rao@ohdsi.org","Pending","","Acute myocardial infarction condition record during an inpatient or ER visit successive records with > 180 day gap are considered independent episodes","#usedInStudy, #LEGEND, #Hypertension, #legendHypertension, #Diabetes, #legendDiabetes",1,"'Marc Suchard','Martijn Schuemie','Harlan Krumholz','Seng Chan You','RuiJun Chun','Nicole Pratt','Christian Reich','Jon Duke','David Madigan','George Hripcsak','Patrick Ryan'","0000-0001-9818-479X', '0000-0002-0817-5361', '0000-0003-2046-127X','','','0000-0001-8730-8910', '','','','',''","'OHDSI'","","","139900","https://forums.ohdsi.org/t/17895","2023-09-20","2023-09-24",,"",,0,,,"ERA","180","fixed duration relative to initial event","StartDate",7,0,"All",TRUE,"All","All",1,1,"ConditionOccurrence",0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -882,"[P] Decreased libido","Decreased libido","Persons with decreased libido","rao@ohdsi.org","Pending","","The first condition record of decreased libido","#usedInStudy, #LEGEND, #Hypertension, #legendHypertension, #Symptoms",1,"'Marc Suchard','Martijn Schuemie','Harlan Krumholz','Seng Chan You','RuiJun Chun','Nicole Pratt','Christian Reich','Jon Duke','David Madigan','George Hripcsak','Patrick Ryan'","0000-0001-9818-479X', '0000-0002-0817-5361', '0000-0003-2046-127X','','','0000-0001-8730-8910', '','','','',''","'OHDSI'","","","377575","https://forums.ohdsi.org/t/17895","2023-09-20","2023-09-21",,"",,0,,,"ERA","0","end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,,,,,,,,,,, -884,"[P] Diarrhea including enteritis","Diarrhea including enteritis","Diarrhea events","rao@ohdsi.org","Pending","","Diarrhea condition record of any type successive records with > 30 day gap are considered independent episodes","#usedInStudy, #LEGEND, #Hypertension, #legendHypertension",1,"'Marc Suchard','Martijn Schuemie','Harlan Krumholz','Seng Chan You','RuiJun Chun','Nicole Pratt','Christian Reich','Jon Duke','David Madigan','George Hripcsak','Patrick Ryan'","0000-0001-9818-479X', '0000-0002-0817-5361', '0000-0003-2046-127X','','','0000-0001-8730-8910', '','','','',''","'OHDSI'","","","196523",,"2023-09-20","2023-10-09",,"",,0,,,"ERA","30","fixed duration relative to initial event","StartDate",1,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -888,"[P] Gastrointestinal bleeding","Gastrointestinal bleeding","Gastrointestinal bleeding events","rao@ohdsi.org","Pending","","Gastrointestinal hemorrhage condition record during an inpatient or ER visit successive records with > 30 day gap are considered independent episodes","#usedInStudy, #LEGEND, #Hypertension, #legendHypertension",1,"'Marc Suchard','Martijn Schuemie','Harlan Krumholz','Seng Chan You','RuiJun Chun','Nicole Pratt','Christian Reich','Jon Duke','David Madigan','George Hripcsak','Patrick Ryan'","0000-0001-9818-479X', '0000-0002-0817-5361', '0000-0003-2046-127X','','','0000-0001-8730-8910', '','','','',''","'OHDSI'","","","196715","","2023-09-20","2023-09-20",,"",,0,,,"ERA","30","fixed duration relative to initial event","StartDate",7,0,"All",TRUE,"All","All",1,1,"ConditionOccurrence",0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -889,"[P] Hyponatremia","Hyponatremia","Hyponatremia events","rao@ohdsi.org","Pending","","Hyponatremia condition record of any type successive records with > 90 day gap are considered independent episodes","#usedInStudy, #LEGEND, #Hypertension, #legendHypertension",1,"'Marc Suchard','Martijn Schuemie','Harlan Krumholz','Seng Chan You','RuiJun Chun','Nicole Pratt','Christian Reich','Jon Duke','David Madigan','George Hripcsak','Patrick Ryan'","0000-0001-9818-479X', '0000-0002-0817-5361', '0000-0003-2046-127X','','','0000-0001-8730-8910', '','','','',''","'OHDSI'","","","199837","","2023-09-20","2023-09-20",,"",,0,,,"ERA","90","fixed duration relative to initial event","StartDate",1,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -890,"[P] Hypotension","Hypotension","Hypotension events","rao@ohdsi.org","Pending","","Hypotension condition record of any type successive records with > 90 day gap are considered independent episodes","#usedInStudy, #LEGEND, #Hypertension, #legendHypertension",1,"'Marc Suchard','Martijn Schuemie','Harlan Krumholz','Seng Chan You','RuiJun Chun','Nicole Pratt','Christian Reich','Jon Duke','David Madigan','George Hripcsak','Patrick Ryan'","0000-0001-9818-479X', '0000-0002-0817-5361', '0000-0003-2046-127X','','','0000-0001-8730-8910', '','','','',''","'OHDSI'","","","4133004, 43531681","https://forums.ohdsi.org/t/17769","2023-09-20","2023-09-20",,"",,0,,,"ERA","90","fixed duration relative to initial event","StartDate",1,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -891,"[P] Nausea","Nausea","Nausea events","rao@ohdsi.org","Pending","","Nausea condition record of any type successive records with > 30 day gap are considered independent episodes","#usedInStudy, #LEGEND, #Hypertension, #legendHypertension",1,"'Marc Suchard','Martijn Schuemie','Harlan Krumholz','Seng Chan You','RuiJun Chun','Nicole Pratt','Christian Reich','Jon Duke','David Madigan','George Hripcsak','Patrick Ryan'","0000-0001-9818-479X', '0000-0002-0817-5361', '0000-0003-2046-127X','','','0000-0001-8730-8910', '','','','',''","'OHDSI'","","","436093","","2023-09-20","2023-09-20",,"",,0,,,"ERA","30","fixed duration relative to initial event","StartDate",1,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -892,"[P] Stroke","Stroke","Stroke (ischemic or hemorrhagic) events","rao@ohdsi.org","Pending","","Stroke (ischemic or hemorrhagic) condition record during an inpatient or ER visit successive records with > 180 day gap are considered independent episodes","#usedInStudy, #LEGEND, #Hypertension, #legendHypertension",1,"'Marc Suchard','Martijn Schuemie','Harlan Krumholz','Seng Chan You','RuiJun Chun','Nicole Pratt','Christian Reich','Jon Duke','David Madigan','George Hripcsak','Patrick Ryan'","0000-0001-9818-479X', '0000-0002-0817-5361', '0000-0003-2046-127X','','','0000-0001-8730-8910', '','','','',''","'OHDSI'","","","443454","","2023-09-20","2023-09-20",,"",,0,,,"ERA","180","fixed duration relative to initial event","StartDate",7,0,"All",TRUE,"All","All",1,1,"ConditionOccurrence",0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -893,"[P] Vertigo","Vertigo","Persons with vertigo","rao@ohdsi.org","Pending","","The first condition record of vertigo","#usedInStudy, #LEGEND, #Hypertension, #legendHypertension",1,"'Marc Suchard','Martijn Schuemie','Harlan Krumholz','Seng Chan You','RuiJun Chun','Nicole Pratt','Christian Reich','Jon Duke','David Madigan','George Hripcsak','Patrick Ryan'","0000-0001-9818-479X', '0000-0002-0817-5361', '0000-0003-2046-127X','','','0000-0001-8730-8910', '','','','',''","'OHDSI'","","","4192640, 199074","https://forums.ohdsi.org/t/17848","2023-09-20","2023-09-20",,"",,0,,,"ERA","0","end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,,,,,,,,,,, -894,"[P] Abdominal pain","Abdominal pain","Abdominal pain events","rao@ohdsi.org","Pending","","Abdominal pain condition record of any type successive records with > 90 day gap are considered independent episodes","#usedInStudy, #LEGEND, #Hypertension, #legendHypertension, #Symptoms",1,"'Marc Suchard','Martijn Schuemie','Harlan Krumholz','Seng Chan You','RuiJun Chun','Nicole Pratt','Christian Reich','Jon Duke','David Madigan','George Hripcsak','Patrick Ryan'","0000-0001-9818-479X', '0000-0002-0817-5361', '0000-0003-2046-127X','','','0000-0001-8730-8910', '','','','',''","'OHDSI'","","","4192640, 199074, 4340961","https://forums.ohdsi.org/t/17848","2023-09-20","2023-09-24",,"",,0,,,"ERA","90","fixed duration relative to initial event","StartDate",1,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -895,"[P] Abnormal weight gain","Abnormal weight gain","Abnormal weight gain events","rao@ohdsi.org","Pending","","Abnormal weight gain record of any type successive records with > 90 day gap are considered independent episodes","#usedInStudy, #LEGEND, #Hypertension, #legendHypertension, #legendDiabetes, #Symptoms",1,"'Marc Suchard','Martijn Schuemie','Harlan Krumholz','Seng Chan You','RuiJun Chun','Nicole Pratt','Christian Reich','Jon Duke','David Madigan','George Hripcsak','Patrick Ryan'","0000-0001-9818-479X', '0000-0002-0817-5361', '0000-0003-2046-127X','','','0000-0001-8730-8910', '','','','',''","","","","377091, 380378, 4029498","https://forums.ohdsi.org/t/17569","2023-09-20","2023-09-24",,"",,0,,,"ERA","90","fixed duration relative to initial event","StartDate",1,0,"All",FALSE,"All","All",1,1,"Observation",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,,,,,,,,,, -896,"[P] Abnormal weight loss","Abnormal weight loss","Abnormal weight loss events","rao@ohdsi.org","Pending","","Abnormal weight loss observation record of any type successive records with > 90 day gap are considered independent episodes","#usedInStudy, #LEGEND, #Hypertension, #legendHypertension, #legendDiabetes",1,"'Marc Suchard','Martijn Schuemie','Harlan Krumholz','Seng Chan You','RuiJun Chun','Nicole Pratt','Christian Reich','Jon Duke','David Madigan','George Hripcsak','Patrick Ryan'","0000-0001-9818-479X', '0000-0002-0817-5361', '0000-0003-2046-127X','','','0000-0001-8730-8910', '','','','',''","","","","435928","","2023-09-20","2023-09-28",,"",,0,,,"ERA","90","fixed duration relative to initial event","StartDate",1,0,"All",FALSE,"All","All",1,1,"Observation",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,,,,,,,,,, -898,"[P] Acute renal failure","Acute renal failure","Acute renal failure events","rao@ohdsi.org","Pending","","Acute renal failure condition record during an inpatient or ER visit successive records with >30 day gap are considered independent episodes","#usedInStudy, #LEGEND, #Hypertension, #legendHypertension, #Diabetes, #legendDiabete",1,"'Marc Suchard','Martijn Schuemie','Harlan Krumholz','Seng Chan You','RuiJun Chun','Nicole Pratt','Christian Reich','Jon Duke','David Madigan','George Hripcsak','Patrick Ryan'","0000-0001-9818-479X', '0000-0002-0817-5361', '0000-0003-2046-127X','','','0000-0001-8730-8910', '','','','',''","'OHDSI'","","","374923, 4091559","https://forums.ohdsi.org/t/17788","2023-09-20","2023-09-24",,"",,0,,,"ERA","30","fixed duration relative to initial event","StartDate",30,0,"All",TRUE,"All","All",1,1,"ConditionOccurrence",0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -900,"[P] Anaphylactoid reaction","Anaphylactoid reaction","Anaphylactoid reaction events","rao@ohdsi.org","Pending","","Anaphylactoid reaction condition record during an inpatient or ER visit successive records with >7 day gap are considered independent episodes","#usedInStudy, #LEGEND, #Hypertension, #legendHypertension",1,"'Marc Suchard','Martijn Schuemie','Harlan Krumholz','Seng Chan You','RuiJun Chun','Nicole Pratt','Christian Reich','Jon Duke','David Madigan','George Hripcsak','Patrick Ryan'","0000-0001-9818-479X', '0000-0002-0817-5361', '0000-0003-2046-127X','','','0000-0001-8730-8910', '','','','',''","","","","441202","https://forums.ohdsi.org/t/16033","2023-09-20","2023-09-20",,"",,0,,,"ERA","7","fixed duration relative to initial event","StartDate",7,0,"All",TRUE,"All","All",1,1,"ConditionOccurrence",0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -901,"[P] Anemia","Anemia","Persons with anemia","rao@ohdsi.org","Pending","","The first condition record of anemia","#usedInStudy, #LEGEND, #Hypertension, #legendHypertension",1,"'Marc Suchard','Martijn Schuemie','Harlan Krumholz','Seng Chan You','RuiJun Chun','Nicole Pratt','Christian Reich','Jon Duke','David Madigan','George Hripcsak','Patrick Ryan'","0000-0001-9818-479X', '0000-0002-0817-5361', '0000-0003-2046-127X','','','0000-0001-8730-8910', '','','','',''","'OHDSI'","","","441202","https://forums.ohdsi.org/t/18193","2023-09-20","2023-09-20",,"",,0,,,"ERA","0","end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,,,,,,,,,,, -917,"[P] Anxiety","Anxiety","Persons with anxiety","rao@ohdsi.org","Pending","","The first condition record of anxiety, which is followed by another anxiety condition record or a drug used to treat anxiety","#usedInStudy, #LEGEND, #Hypertension, #legendHypertension",1,"'Marc Suchard','Martijn Schuemie','Harlan Krumholz','Seng Chan You','RuiJun Chun','Nicole Pratt','Christian Reich','Jon Duke','David Madigan','George Hripcsak','Patrick Ryan'","0000-0001-9818-479X', '0000-0002-0817-5361', '0000-0003-2046-127X','','','0000-0001-8730-8910', '','','','',''","'OHDSI'","","","4245975","","2023-09-20","2023-09-20",,"",,0,,,"ERA","0","end of continuous observation",,,0,"First",TRUE,"First","First",1,1,"ConditionOccurrence",0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,,,,,,,,,,, -918,"[P] Bradycardia","Bradycardia","Persons with bradycardia","rao@ohdsi.org","Pending","","The first condition record of bradycardia, which is followed by another bradycardia condition record","#usedInStudy, #LEGEND, #Hypertension, #legendHypertension",1,"'Marc Suchard','Martijn Schuemie','Harlan Krumholz','Seng Chan You','RuiJun Chun','Nicole Pratt','Christian Reich','Jon Duke','David Madigan','George Hripcsak','Patrick Ryan'","0000-0001-9818-479X', '0000-0002-0817-5361', '0000-0003-2046-127X','','','0000-0001-8730-8910', '','','','',''","'OHDSI'","","","4245975","","2023-09-20","2023-09-20",,"",,0,,,"ERA","0","end of continuous observation",,,0,"First",TRUE,"First","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,,,,,,,,,,, -919,"[P] Cardiac arrhythmia","Cardiac arrhythmia","Person with cardiac arrhythmia","rao@ohdsi.org","Pending","","The first condition record of cardiac arrhythmia, which is followed by another cardiac arrhythmia condition record, at least two drug records for a drug used to treat arrhythmias, or a procedure to treat arrhythmias","#usedInStudy, #LEGEND, #Hypertension, #legendHypertension",1,"'Marc Suchard','Martijn Schuemie','Harlan Krumholz','Seng Chan You','RuiJun Chun','Nicole Pratt','Christian Reich','Jon Duke','David Madigan','George Hripcsak','Patrick Ryan'","0000-0001-9818-479X', '0000-0002-0817-5361', '0000-0003-2046-127X','','','0000-0001-8730-8910', '','','','',''","'OHDSI'","","","197320","","2023-09-20","2023-09-20",,"",,0,,,"ERA","0","end of continuous observation",,,0,"First",TRUE,"First","First",1,1,"ConditionOccurrence",0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,,,,,,,,,,, -920,"[P] Cardiovascular disease","Cardiovascular disease","Total cardiovascular disease events (ischemic stroke, hemorrhagic stroke, heart failure, acute myocardial infarction or sudden cardiac death)","rao@ohdsi.org","Pending","","A condition record of ischemic stroke, hemorrhagic stroke, heart failure, acute myocardial infarction or sudden cardiac death during an inpatient or ER visit successive records with > 180 day gap are considered independent episodes","#usedInStudy, #LEGEND, #Hypertension, #legendHypertension",1,"'Marc Suchard','Martijn Schuemie','Harlan Krumholz','Seng Chan You','RuiJun Chun','Nicole Pratt','Christian Reich','Jon Duke','David Madigan','George Hripcsak','Patrick Ryan'","0000-0001-9818-479X', '0000-0002-0817-5361', '0000-0003-2046-127X','','','0000-0001-8730-8910', '','','','',''","'OHDSI'","","","197320","","2023-09-20","2023-09-20",,"",,0,,,"ERA","180","fixed duration relative to initial event","StartDate",7,0,"All",TRUE,"All","All",5,1,"ConditionOccurrence",0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -921,"[P] Cardiovascular-related mortality","Cardiovascular-related mortality","Cardiovascular-related mortality","rao@ohdsi.org","Pending","","Death record with at least 1 cardiovascular-related condition record (myocardial infarction, ischemic stroke, intracranial hemorrhage, sudden cardiac death, hospitalization for heart failure) in 30 days prior to death","#usedInStudy, #LEGEND, #Hypertension, #legendHypertension",1,"'Marc Suchard','Martijn Schuemie','Harlan Krumholz','Seng Chan You','RuiJun Chun','Nicole Pratt','Christian Reich','Jon Duke','David Madigan','George Hripcsak','Patrick Ryan'","0000-0001-9818-479X', '0000-0002-0817-5361', '0000-0003-2046-127X','','','0000-0001-8730-8910', '','','','',''","'OHDSI'","","","197320","https://forums.ohdsi.org/t/16067","2023-09-20","2023-09-20",,"",,0,,,"ERA","0","end of continuous observation",,,0,"First",TRUE,"First","First",1,1,"Death",0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,1,,,,,,,, -922,"[P] Chest pain or angina","Chest pain or angina","Persons with chest pain or angina","rao@ohdsi.org","Pending","","The first condition record of chest pain or angina","#usedInStudy, #LEGEND, #Hypertension, #legendHypertension",1,"'Marc Suchard','Martijn Schuemie','Harlan Krumholz','Seng Chan You','RuiJun Chun','Nicole Pratt','Christian Reich','Jon Duke','David Madigan','George Hripcsak','Patrick Ryan'","0000-0001-9818-479X', '0000-0002-0817-5361', '0000-0003-2046-127X','','','0000-0001-8730-8910', '','','','',''","'OHDSI'","","","435503, 439777, 441269","https://forums.ohdsi.org/t/17856","2023-09-20","2023-09-20",,"",,0,,,"ERA","0","end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,,,,,,,,,,, -923,"[P] Kidney disease","Kidney disease","Persons with chronic kidney disease","rao@ohdsi.org","Pending","","The first condition record of chronic kidney disease, which is followed by either another chronic kidney disease condition record or a dialysis procedure or observation","#usedInStudy, #LEGEND, #Hypertension, #legendHypertension",1,"'Marc Suchard','Martijn Schuemie','Harlan Krumholz','Seng Chan You','RuiJun Chun','Nicole Pratt','Christian Reich','Jon Duke','David Madigan','George Hripcsak','Patrick Ryan'","0000-0001-9818-479X', '0000-0002-0817-5361', '0000-0003-2046-127X','','','0000-0001-8730-8910', '','','','',''","'OHDSI'","","","435503, 439777, 441269","https://forums.ohdsi.org/t/17856","2023-09-20","2023-09-20",,"",,0,,,"ERA","0","end of continuous observation",,,0,"First",TRUE,"First","First",1,1,"ConditionOccurrence",0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,,,,,,,,,,, -924,"[P] Coronary heart disease","Coronary heart disease","Coronary heart disease events (acute myocardial infarction or sudden cardiac death)","rao@ohdsi.org","Pending","","A condition record of acute myocardial infarction or sudden cardiac death during an inpatient or ER visit successive records with > 180 day gap are considered independent episodes","#usedInStudy, #LEGEND, #Hypertension, #legendHypertension",1,"'Marc Suchard','Martijn Schuemie','Harlan Krumholz','Seng Chan You','RuiJun Chun','Nicole Pratt','Christian Reich','Jon Duke','David Madigan','George Hripcsak','Patrick Ryan'","0000-0001-9818-479X', '0000-0002-0817-5361', '0000-0003-2046-127X','','','0000-0001-8730-8910', '','','','',''","'OHDSI'","","","437579, 4103295","","2023-09-20","2023-09-20",,"",,0,,,"ERA","180","fixed duration relative to initial event","StartDate",7,0,"All",TRUE,"All","All",2,1,"ConditionOccurrence",0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -925,"[P] Cough","Cough","Cough events","rao@ohdsi.org","Pending","","Cough condition record of any type successive records with > 90 day gap are considered independent episodes","#usedInStudy, #LEGEND, #Hypertension, #legendHypertension, #respiratory, #lung",1,"'Marc Suchard','Martijn Schuemie','Harlan Krumholz','Seng Chan You','RuiJun Chun','Nicole Pratt','Christian Reich','Jon Duke','David Madigan','George Hripcsak','Patrick Ryan'","0000-0001-9818-479X', '0000-0002-0817-5361', '0000-0003-2046-127X','','','0000-0001-8730-8910', '','','','',''","'OHDSI'","","","321042, 437579, 4103295","","2023-09-20","2023-09-28",,"",,0,,,"ERA","90","fixed duration relative to initial event","StartDate",1,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -927,"[P] Dementia2","Dementia2","Persons with dementia","rao@ohdsi.org","Pending","","The first condition record of dementia","#usedInStudy, #LEGEND, #Hypertension, #legendHypertension",1,"'Marc Suchard','Martijn Schuemie','Harlan Krumholz','Seng Chan You','RuiJun Chun','Nicole Pratt','Christian Reich','Jon Duke','David Madigan','George Hripcsak','Patrick Ryan'","0000-0001-9818-479X', '0000-0002-0817-5361', '0000-0003-2046-127X','','','0000-0001-8730-8910', '','','','',''","'OHDSI'","","","4182210","","2023-09-20","2023-10-03",,"",,0,,,"ERA","0","end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,,,,,,,,,,, -928,"[P] Depression2","Depression2","Persons with depression","rao@ohdsi.org","Pending","","The first condition record of depression, which is followed by another depression condition record, at least two drugs used to treat depression without another indication, or two psychotherapy procedures","#usedInStudy, #LEGEND, #Hypertension, #legendHypertension",1,"'Marc Suchard','Martijn Schuemie','Harlan Krumholz','Seng Chan You','RuiJun Chun','Nicole Pratt','Christian Reich','Jon Duke','David Madigan','George Hripcsak','Patrick Ryan'","0000-0001-9818-479X', '0000-0002-0817-5361', '0000-0003-2046-127X','','','0000-0001-8730-8910', '','','','',''","'OHDSI'","","","377556","","2023-09-20","2023-09-20",,"",,0,,,"ERA","0","end of continuous observation",,,0,"First",TRUE,"First","First",1,1,"ConditionOccurrence",0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,,,,,,,,,,, -929,"[P] Edema events","Edema events","Edema events","rao@ohdsi.org","Pending","","Edema condition record of any type successive records with > 180 day gap are considered independent episodes","#usedInStudy, #LEGEND, #Hypertension, #legendHypertension, #Symptoms",1,"'Marc Suchard','Martijn Schuemie','Harlan Krumholz','Seng Chan You','RuiJun Chun','Nicole Pratt','Christian Reich','Jon Duke','David Madigan','George Hripcsak','Patrick Ryan'","0000-0001-9818-479X', '0000-0002-0817-5361', '0000-0003-2046-127X','','','0000-0001-8730-8910', '','','','',''","'OHDSI'","","","374053, 377889","","2023-09-20","2023-10-03",,"",,0,,,"ERA","180","fixed duration relative to initial event","StartDate",1,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -930,"[P] End stage renal disease2","End stage renal disease2","Persons with end stage renal disease","rao@ohdsi.org","Pending","","The first condition record of end stage renal disease, which is followed by either another end stage renal disease condition record or a dialysis procedure or observation within 90 days","#usedInStudy, #LEGEND, #Hypertension, #legendHypertension",1,"'Marc Suchard','Martijn Schuemie','Harlan Krumholz','Seng Chan You','RuiJun Chun','Nicole Pratt','Christian Reich','Jon Duke','David Madigan','George Hripcsak','Patrick Ryan'","0000-0001-9818-479X', '0000-0002-0817-5361', '0000-0003-2046-127X','','','0000-0001-8730-8910', '','','','',''","'OHDSI'","","","138525, 194133","https://forums.ohdsi.org/t/17895","2023-09-20","2023-09-20",,"",,0,,,"ERA","0","end of continuous observation",,,0,"All",TRUE,"First","First",1,1,"ConditionOccurrence",0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,, -931,"[P] Fall2","Fall2","Fall events","rao@ohdsi.org","Pending","","Fall condition record of any type successive records with > 180 day gap are considered independent episodes","#usedInStudy, #LEGEND, #Hypertension, #legendHypertension",1,"'Marc Suchard','Martijn Schuemie','Harlan Krumholz','Seng Chan You','RuiJun Chun','Nicole Pratt','Christian Reich','Jon Duke','David Madigan','George Hripcsak','Patrick Ryan'","0000-0001-9818-479X', '0000-0002-0817-5361', '0000-0003-2046-127X','','','0000-0001-8730-8910', '','','','',''","'OHDSI'","","","134736, 194133","https://forums.ohdsi.org/t/17895","2023-09-20","2023-09-20",,"",,0,,,"ERA","180","fixed duration relative to initial event","StartDate",1,0,"All",FALSE,"All","All",1,1,"Observation",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,,,,,,,,,, -932,"[P] Gout2","Gout2","Persons with gout","rao@ohdsi.org","Pending","","The first condition record of gout","#usedInStudy, #LEGEND, #Hypertension, #legendHypertension",1,"'Marc Suchard','Martijn Schuemie','Harlan Krumholz','Seng Chan You','RuiJun Chun','Nicole Pratt','Christian Reich','Jon Duke','David Madigan','George Hripcsak','Patrick Ryan'","0000-0001-9818-479X', '0000-0002-0817-5361', '0000-0003-2046-127X','','','0000-0001-8730-8910', '','','','',''","'OHDSI'","","","200219","https://forums.ohdsi.org/t/17895","2023-09-20","2023-09-20",,"",,0,,,"ERA","0","end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,,,,,,,,,,, -933,"[P] Headache2","Headache2","Headache events","rao@ohdsi.org","Pending","","Headache condition record of any type successive records with > 30 day gap are considered independent episodes","#usedInStudy, #LEGEND, #Hypertension, #legendHypertension, #Symptoms",1,"'Marc Suchard','Martijn Schuemie','Harlan Krumholz','Seng Chan You','RuiJun Chun','Nicole Pratt','Christian Reich','Jon Duke','David Madigan','George Hripcsak','Patrick Ryan'","0000-0001-9818-479X', '0000-0002-0817-5361', '0000-0003-2046-127X','','','0000-0001-8730-8910', '','','','',''","'OHDSI'","","","197381, 4306292","https://forums.ohdsi.org/t/17895","2023-09-20","2023-09-24",,"",,0,,,"ERA","30","fixed duration relative to initial event","StartDate",1,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -934,"[P] Heart failure2","Heart failure2","Persons with heart failure","rao@ohdsi.org","Pending","","The first condition record of heart failure, which is followed by at least 1 heart failure condition record in the following year","#usedInStudy, #LEGEND, #Hypertension, #legendHypertension",1,"'Marc Suchard','Martijn Schuemie','Harlan Krumholz','Seng Chan You','RuiJun Chun','Nicole Pratt','Christian Reich','Jon Duke','David Madigan','George Hripcsak','Patrick Ryan'","0000-0001-9818-479X', '0000-0002-0817-5361', '0000-0003-2046-127X','','','0000-0001-8730-8910', '','','','',''","'OHDSI'","","","78232, 80180","https://forums.ohdsi.org/t/17895","2023-09-20","2023-09-20",,"",,0,,,"ERA","0","fixed duration relative to initial event","StartDate",1,0,"All",TRUE,"First","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,, -935,"[P] Hemorrhagic stroke2","Hemorrhagic stroke2","Hemorrhagic stroke (intracerebral bleeding) events","rao@ohdsi.org","Pending","","Intracranial, cerebral or subarachnoid hemorrhage condition record during an inpatient or ER visit successive records with > 180 day gap are considered independent episodes","#usedInStudy, #LEGEND, #Hypertension, #legendHypertension",1,"'Marc Suchard','Martijn Schuemie','Harlan Krumholz','Seng Chan You','RuiJun Chun','Nicole Pratt','Christian Reich','Jon Duke','David Madigan','George Hripcsak','Patrick Ryan'","0000-0001-9818-479X', '0000-0002-0817-5361', '0000-0003-2046-127X','','','0000-0001-8730-8910', '','','','',''","'OHDSI'","","","194997","","2023-09-20","2023-09-20",,"",,0,,,"ERA","180","fixed duration relative to initial event","StartDate",7,0,"All",TRUE,"All","All",1,1,"ConditionOccurrence",0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -936,"[P] Hepatic failure2","Hepatic failure2","Persons with hepatic failure","rao@ohdsi.org","Pending","","The first condition record of hepatic failure, necrosis, or coma","#usedInStudy, #LEGEND, #Hypertension, #legendHypertension",1,"'Marc Suchard','Martijn Schuemie','Harlan Krumholz','Seng Chan You','RuiJun Chun','Nicole Pratt','Christian Reich','Jon Duke','David Madigan','George Hripcsak','Patrick Ryan'","0000-0001-9818-479X', '0000-0002-0817-5361', '0000-0003-2046-127X','','','0000-0001-8730-8910', '','','','',''","'OHDSI'","","","320116, 4138837","","2023-09-20","2023-09-20",,"",,0,,,"ERA","0","end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,, -938,"[P] Hospitalization with heart failure","Hospitalization with heart failure","Hospitalization with heart failure events","rao@ohdsi.org","Pending","","Inpatient or ER visits with heart failure condition record all qualifying inpatient visits occurring > 7 days apart are considered independent episodes","#usedInStudy, #LEGEND, #Hypertension, #legendHypertension",1,"'Marc Suchard','Martijn Schuemie','Harlan Krumholz','Seng Chan You','RuiJun Chun','Nicole Pratt','Christian Reich','Jon Duke','David Madigan','George Hripcsak','Patrick Ryan'","0000-0001-9818-479X', '0000-0002-0817-5361', '0000-0003-2046-127X','','','0000-0001-8730-8910', '','','','',''","'OHDSI'","Evan Minty","","79908, 138965, 139803, 380995, 443904","https://forums.ohdsi.org/t/17769","2023-09-20","2023-09-20",,"",,0,,,"ERA","7","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"VisitOccurrence",0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,1,,,,,,,,, -939,"[P] Hospitalization with preinfarction syndrome","Hospitalization with preinfarction syndrome","Hospitalization with preinfarction syndrome events","rao@ohdsi.org","Pending","","Inpatient or ER visits with preinfarction syndrome condition record all qualifying inpatient visits occurring > 7 days apart are considered independent episodes","#usedInStudy, #LEGEND, #Hypertension, #legendHypertension",1,"'Marc Suchard','Martijn Schuemie','Harlan Krumholz','Seng Chan You','RuiJun Chun','Nicole Pratt','Christian Reich','Jon Duke','David Madigan','George Hripcsak','Patrick Ryan'","0000-0001-9818-479X', '0000-0002-0817-5361', '0000-0003-2046-127X','','','0000-0001-8730-8910', '','','','',''","","","","201820, 201826","https://forums.ohdsi.org/t/15764","2023-09-20","2023-09-20",,"",,0,,,"ERA","7","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"VisitOccurrence",0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,1,,,,,,,,, -940,"[P] Hyperkalemia","Hyperkalemia","Hyperkalemia events","rao@ohdsi.org","Pending","","Condition record for hyperkalemia or potassium measurements > 5.6 mmol/L successive records with >90 day gap are considered independent episodes","#usedInStudy, #LEGEND, #Hypertension, #legendHypertension, #Diabetes, #legendDiabetes",1,"'Marc Suchard','Martijn Schuemie','Harlan Krumholz','Seng Chan You','RuiJun Chun','Nicole Pratt','Christian Reich','Jon Duke','David Madigan','George Hripcsak','Patrick Ryan'","0000-0001-9818-479X', '0000-0002-0817-5361', '0000-0003-2046-127X','','','0000-0001-8730-8910', '','','','',''","'OHDSI'","","","313217, 44784217","","2023-09-20","2023-09-24",,"",,0,,,"ERA","90","fixed duration relative to initial event","StartDate",1,0,"All",FALSE,"All","All",2,2,"ConditionOccurrence, Measurement",0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -941,"[P] Hypokalemia","Hypokalemia","Hypokalemia events","rao@ohdsi.org","Pending","","Hypokalemia condition record of any type successive records with > 90 day gap are considered independent episodes","#usedInStudy, #LEGEND, #Hypertension, #legendHypertension",1,"'Marc Suchard','Martijn Schuemie','Harlan Krumholz','Seng Chan You','RuiJun Chun','Nicole Pratt','Christian Reich','Jon Duke','David Madigan','George Hripcsak','Patrick Ryan'","0000-0001-9818-479X', '0000-0002-0817-5361', '0000-0003-2046-127X','','','0000-0001-8730-8910', '','','','',''","'OHDSI'","","","138384, 140673","","2023-09-20","2023-09-20",,"",,0,,,"ERA","90","fixed duration relative to initial event","StartDate",1,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -942,"[P] Hypomagnesemia","Hypomagnesemia","Hypomagnesemia events","rao@ohdsi.org","Pending","","Hypomagnesemia condition record of any type successive records with > 90 day gap are considered independent episodes","#usedInStudy, #LEGEND, #Hypertension, #legendHypertension",1,"'Marc Suchard','Martijn Schuemie','Harlan Krumholz','Seng Chan You','RuiJun Chun','Nicole Pratt','Christian Reich','Jon Duke','David Madigan','George Hripcsak','Patrick Ryan'","0000-0001-9818-479X', '0000-0002-0817-5361', '0000-0003-2046-127X','','','0000-0001-8730-8910', '','','','',''","'OHDSI'","","","78474, 80767, 137809","","2023-09-20","2023-09-20",,"",,0,,,"ERA","90","fixed duration relative to initial event","StartDate",1,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -943,"[P] Impotence","Impotence","Persons with impotence","rao@ohdsi.org","Pending","","The first condition record of impotence","#usedInStudy, #LEGEND, #Hypertension, #legendHypertension",1,"'Marc Suchard','Martijn Schuemie','Harlan Krumholz','Seng Chan You','RuiJun Chun','Nicole Pratt','Christian Reich','Jon Duke','David Madigan','George Hripcsak','Patrick Ryan'","0000-0001-9818-479X', '0000-0002-0817-5361', '0000-0003-2046-127X','','','0000-0001-8730-8910', '','','','',''","'OHDSI'","","","4245975","","2023-09-20","2023-09-20",,"",,0,,,"ERA","0","end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,,,,,,,,,,, -944,"[P] Ischemic stroke","Ischemic stroke","Ischemic stroke events","rao@ohdsi.org","Pending","","Ischemic stroke condition record during an inpatient or ER visit successive records with > 180 day gap are considered independent episodes","#usedInStudy, #LEGEND, #Hypertension, #legendHypertension",1,"'Marc Suchard','Martijn Schuemie','Harlan Krumholz','Seng Chan You','RuiJun Chun','Nicole Pratt','Christian Reich','Jon Duke','David Madigan','George Hripcsak','Patrick Ryan'","0000-0001-9818-479X', '0000-0002-0817-5361', '0000-0003-2046-127X','','','0000-0001-8730-8910', '','','','',''","'OHDSI'","","","194990","","2023-09-20","2023-09-20",,"",,0,,,"ERA","180","fixed duration relative to initial event","StartDate",7,0,"All",TRUE,"All","All",1,1,"ConditionOccurrence",0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -945,"[P] Malignant neoplasm","Malignant neoplasm","Persons with a malignant neoplasm other than non-melanoma skin cancer","rao@ohdsi.org","Pending","","The first condition record of a malignant neoplasm, with at least 2 conditions records for one of 17 leading cancer (breast, prostate, lung, colorectal, bladder, ovary, uterus, thyroid, kidney, brain, pancreas, liver, multiple myeloma, leukemia, melanoma, myelodysplastic syndrome)","#usedInStudy, #LEGEND, #Hypertension, #legendHypertension",1,"'Marc Suchard','Martijn Schuemie','Harlan Krumholz','Seng Chan You','RuiJun Chun','Nicole Pratt','Christian Reich','Jon Duke','David Madigan','George Hripcsak','Patrick Ryan'","0000-0001-9818-479X', '0000-0002-0817-5361', '0000-0003-2046-127X','','','0000-0001-8730-8910', '','','','',''","'OHDSI'","","","194990","","2023-09-20","2023-09-20",,"",,0,,,"ERA","0","end of continuous observation",,,0,"First",TRUE,"First","First",1,1,"ConditionOccurrence",0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,,,,,,,,,,, -946,"[P] Measured renal dysfunction","Measured renal dysfunction","Persons with measured renal dysfunction","rao@ohdsi.org","Pending","","The first creatinine measurement with value > 3 mg/dL","#usedInStudy, #LEGEND, #Hypertension, #legendHypertension",1,"'Marc Suchard','Martijn Schuemie','Harlan Krumholz','Seng Chan You','RuiJun Chun','Nicole Pratt','Christian Reich','Jon Duke','David Madigan','George Hripcsak','Patrick Ryan'","0000-0001-9818-479X', '0000-0002-0817-5361', '0000-0003-2046-127X','','','0000-0001-8730-8910', '','','','',''","'OHDSI'","","","4245975","","2023-09-20","2023-09-20",,"",,0,,,"ERA","0","fixed duration relative to initial event","StartDate",1,0,"First",FALSE,"All","First",1,1,"Measurement",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,, -947,"[P] Neutropenia or agranulocytosis","Neutropenia or agranulocytosis","Persons with neutropenia or agranulocytosis","rao@ohdsi.org","Pending","","The first condition record of neutropenia or agranulocytosis","#usedInStudy, #LEGEND, #Hypertension, #legendHypertension",1,"'Marc Suchard','Martijn Schuemie','Harlan Krumholz','Seng Chan You','RuiJun Chun','Nicole Pratt','Christian Reich','Jon Duke','David Madigan','George Hripcsak','Patrick Ryan'","0000-0001-9818-479X', '0000-0002-0817-5361', '0000-0003-2046-127X','','','0000-0001-8730-8910', '','','','',''","'OHDSI'","Evan Minty","","79908, 139803, 443904","https://forums.ohdsi.org/t/17769","2023-09-20","2023-09-20",,"",,0,,,"ERA","0","end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,,,,,,,,,,, -948,"[P] Rash","Rash","Rash events","rao@ohdsi.org","Pending","","Rash condition record of any type successive records with > 90 day gap are considered independent episodes","#usedInStudy, #LEGEND, #Hypertension, #legendHypertension, #Symptoms",1,"'Marc Suchard','Martijn Schuemie','Harlan Krumholz','Seng Chan You','RuiJun Chun','Nicole Pratt','Christian Reich','Jon Duke','David Madigan','George Hripcsak','Patrick Ryan'","0000-0001-9818-479X', '0000-0002-0817-5361', '0000-0003-2046-127X','','','0000-0001-8730-8910', '','','','',''","'OHDSI'","","","79864, 437038","","2023-09-20","2023-09-24",,"",,0,,,"ERA","90","fixed duration relative to initial event","StartDate",1,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -950,"[P] Rhabdomyolysis2","Rhabdomyolysis2","Rhabdomyolysis events","rao@ohdsi.org","Pending","","Rhabdomyolysis condition record or muscle disorder condition record with creatine measurement 5*ULN during an inpatient or ER visit successive records with >90 day gap are considered independent episodes","#usedInStudy, #LEGEND, #Hypertension, #legendHypertension",1,"'Marc Suchard','Martijn Schuemie','Harlan Krumholz','Seng Chan You','RuiJun Chun','Nicole Pratt','Christian Reich','Jon Duke','David Madigan','George Hripcsak','Patrick Ryan'","0000-0001-9818-479X', '0000-0002-0817-5361', '0000-0003-2046-127X','','','0000-0001-8730-8910', '','','','',''","'OHDSI'","","","192671","","2023-09-20","2023-09-20",,"",,0,,,"ERA","90","fixed duration relative to initial event","StartDate",1,0,"All",TRUE,"All","All",2,1,"ConditionOccurrence",0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -953,"[P] Sudden cardiac death in inpatient","Sudden cardiac death in inpatient","Sudden cardiac death events in inpatient","rao@ohdsi.org","Pending","","Sudden cardiac death condition record during an inpatient or ER visit successive records with > 180 day gap are considered independent episodes","#usedInStudy, #LEGEND, #Hypertension, #legendHypertension",1,"'Marc Suchard','Martijn Schuemie','Harlan Krumholz','Seng Chan You','RuiJun Chun','Nicole Pratt','Christian Reich','Jon Duke','David Madigan','George Hripcsak','Patrick Ryan'","0000-0001-9818-479X', '0000-0002-0817-5361', '0000-0003-2046-127X','','','0000-0001-8730-8910', '','','','',''","'OHDSI'","","","197607, 4302555","","2023-09-20","2023-09-24",,"",,0,,,"ERA","180","fixed duration relative to initial event","StartDate",7,0,"All",TRUE,"All","All",1,1,"ConditionOccurrence",0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -954,"[P] Syncope","Syncope","Syncope events","rao@ohdsi.org","Pending","","Syncope condition record of any type successive records with > 180 day gap are considered independent episodes","#usedInStudy, #LEGEND, #Hypertension, #legendHypertension",1,"'Marc Suchard','Martijn Schuemie','Harlan Krumholz','Seng Chan You','RuiJun Chun','Nicole Pratt','Christian Reich','Jon Duke','David Madigan','George Hripcsak','Patrick Ryan'","0000-0001-9818-479X', '0000-0002-0817-5361', '0000-0003-2046-127X','','','0000-0001-8730-8910', '','','','',''","","","","377252","https://forums.ohdsi.org/t/18236","2023-09-20","2023-09-20",,"",,0,,,"ERA","180","fixed duration relative to initial event","StartDate",1,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -955,"[P] Thrombocytopenia","Thrombocytopenia","Persons with thrombocytopenia","rao@ohdsi.org","Pending","","The first condition record of thrombocytopenia","#usedInStudy, #LEGEND, #Hypertension, #legendHypertension",1,"'Marc Suchard','Martijn Schuemie','Harlan Krumholz','Seng Chan You','RuiJun Chun','Nicole Pratt','Christian Reich','Jon Duke','David Madigan','George Hripcsak','Patrick Ryan'","0000-0001-9818-479X', '0000-0002-0817-5361', '0000-0003-2046-127X','','','0000-0001-8730-8910', '','','','',''","","","","376938","https://forums.ohdsi.org/t/18236","2023-09-20","2023-09-20",,"",,0,,,"ERA","0","end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,,,,,,,,,,, -956,"[P] Transient ischemic attack","Transient ischemic attack","Transient ischemic attack events","rao@ohdsi.org","Pending","","Transient ischemic attack condition record during an inpatient or ER visit successive records with > 30 day gap are considered independent episodes","#usedInStudy, #LEGEND, #Hypertension, #legendHypertension",1,"'Marc Suchard','Martijn Schuemie','Harlan Krumholz','Seng Chan You','RuiJun Chun','Nicole Pratt','Christian Reich','Jon Duke','David Madigan','George Hripcsak','Patrick Ryan'","0000-0001-9818-479X', '0000-0002-0817-5361', '0000-0003-2046-127X','','','0000-0001-8730-8910', '','','','',''","","","","4112970","https://forums.ohdsi.org/t/18236","2023-09-20","2023-09-20",,"",,0,,,"ERA","30","fixed duration relative to initial event","StartDate",7,0,"All",TRUE,"All","All",1,1,"ConditionOccurrence",0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -957,"[P] Type 2 diabetes mellitus","Type 2 diabetes mellitus","Persons with type 2 diabetes mellitus","rao@ohdsi.org","Pending","","The first condition record of Type 2 Diabetes Mellitus, which is followed by another Type 2 Diabetes Mellitus condition record, at least 2 drugs used to treat Type 2 diabetes, or at least 2 HbA1c measurements with value > 6.5%","#usedInStudy, #LEGEND, #Hypertension, #legendHypertension",1,"'Marc Suchard','Martijn Schuemie','Harlan Krumholz','Seng Chan You','RuiJun Chun','Nicole Pratt','Christian Reich','Jon Duke','David Madigan','George Hripcsak','Patrick Ryan'","0000-0001-9818-479X', '0000-0002-0817-5361', '0000-0003-2046-127X','','','0000-0001-8730-8910', '','','','',''","","","","4216000, 4246137","https://forums.ohdsi.org/t/18236","2023-09-20","2023-09-20",,"",,0,,,"ERA","0","end of continuous observation",,,0,"First",TRUE,"First","First",1,1,"ConditionOccurrence",0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,,,,,,,,,,, -963,"[P] Vomiting","Vomiting","Vomiting events","rao@ohdsi.org","Pending","","Vomiting condition record of any type successive records with > 30 day gap are considered independent episodes","#usedInStudy, #LEGEND, #Hypertension, #legendHypertension",1,"'Marc Suchard','Martijn Schuemie','Harlan Krumholz','Seng Chan You','RuiJun Chun','Nicole Pratt','Christian Reich','Jon Duke','David Madigan','George Hripcsak','Patrick Ryan'","0000-0001-9818-479X', '0000-0002-0817-5361', '0000-0003-2046-127X','','','0000-0001-8730-8910', '','','','',''","'OHDSI'","","","25297, 4226263","https://forums.ohdsi.org/t/17895","2023-09-20","2023-09-20",,"",,0,,,"ERA","30","fixed duration relative to initial event","StartDate",1,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -964,"[P] Chronic kidney disease","Chronic kidney disease","Persons with chronic kidney disease with 2+ diagnoses across 30d or 2+ dialysis","rao@ohdsi.org","Pending","","Persons with chronic kidney disease with 2+ diagnoses across 30d or 2+ dialysis","#usedInStudy, #LEGEND, #Hypertension, #legendHypertension",1,"'Marc Suchard','Martijn Schuemie','Harlan Krumholz','Seng Chan You','RuiJun Chun','Nicole Pratt','Christian Reich','Jon Duke','David Madigan','George Hripcsak','Patrick Ryan'","0000-0001-9818-479X', '0000-0002-0817-5361', '0000-0003-2046-127X','','','0000-0001-8730-8910', '','','','',''","'OHDSI'","","","314754","https://forums.ohdsi.org/t/17895","2023-09-20","2023-09-20",,"",,0,,,"ERA","0","end of continuous observation",,,0,"First",TRUE,"First","First",1,1,"ConditionOccurrence",0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,,,,,,,,,,, -965,"[P] 3-point MACE","3-point MACE","","rao@ohdsi.org","Pending","","Condition record of acute myocardial infarction, hemorrhagic or ischemic stroke or sudden cardiac death during an inpatient or ER visit","#usedInStudy, #LEGEND, #Diabetes, #legendDiabetes",1,"Rohan Khera','Martijn Schuemie','Yuan Lu','Anna Ostropolets','RuiJun Chun','George Hripcsak','Patrick Ryan','Harlan Krumholz','Marc Suchard'","0000-0001-9467-6199', '0000-0002-0817-5361', '', '0000-0002-0847-6682', '', '','','0000-0003-2046-127X','0000-0001-9818-479X'","'OHDSI'","","","253506, 255848","https://forums.ohdsi.org/t/17895","2023-09-20","2023-09-20",,"",,0,,,"ERA","180","fixed duration relative to initial event","StartDate",7,0,"All",TRUE,"All","All",4,1,"ConditionOccurrence",0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -967,"[P] 4-point MACE","4-point MACE","","rao@ohdsi.org","Pending","","3-Point MACE $+$ inpatient or ER visit (hospitalization) with heart failure condition record","#usedInStudy, #LEGEND, #Diabetes, #legendDiabetes",1,"Rohan Khera','Martijn Schuemie','Yuan Lu','Anna Ostropolets','RuiJun Chun','George Hripcsak','Patrick Ryan','Harlan Krumholz','Marc Suchard'","0000-0001-9467-6199', '0000-0002-0817-5361', '', '0000-0002-0847-6682', '', '','','0000-0003-2046-127X','0000-0001-9818-479X'","'OHDSI'","","","4023572","https://forums.ohdsi.org/t/17895","2023-09-20","2023-09-20",,"",,0,,,"ERA","180","fixed duration relative to initial event","StartDate",7,0,"All",TRUE,"All","All",5,1,"ConditionOccurrence",0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -976,"[P] Glycemic control","Glycemic control","","rao@ohdsi.org","Pending","","First hemoglobin A1c measurement with value $\le$ 7\%","#usedInStudy, #LEGEND, #Diabetes, #legendDiabetes",1,"Rohan Khera','Martijn Schuemie','Yuan Lu','Anna Ostropolets','RuiJun Chun','George Hripcsak','Patrick Ryan','Harlan Krumholz','Marc Suchard'","0000-0001-9467-6199', '0000-0002-0817-5361', '', '0000-0002-0847-6682', '', '','','0000-0003-2046-127X','0000-0001-9818-479X'","'OHDSI'","","","317009","","2023-09-20","2023-09-24",,"",,0,,,"ERA","90","fixed duration relative to initial event","StartDate",1,0,"All",FALSE,"All","All",2,1,"Measurement",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -979,"[P] Hospitalization with heart failure indexed on hospitalization","Hospitalization with heart failure indexed on hospitalization","","rao@ohdsi.org","Pending","","Inpatient or ER visit with heart failure condition record","#usedInStudy, #LEGEND, #Diabetes, #legendDiabetes",1,"Rohan Khera','Martijn Schuemie','Yuan Lu','Anna Ostropolets','RuiJun Chun','George Hripcsak','Patrick Ryan','Harlan Krumholz','Marc Suchard'","0000-0001-9467-6199', '0000-0002-0817-5361', '', '0000-0002-0847-6682', '', '','','0000-0003-2046-127X','0000-0001-9818-479X'","","","","441542, 442077","","2023-09-20","2023-09-24",,"",,0,,,"ERA","7","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"VisitOccurrence",0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,1,,,,,,,,, -980,"[P] Revascularization","Revascularization","Coronary Vessel Revascularization","rao@ohdsi.org","Pending","","Procedure record of percutaneous coronary intervention or coronary artery bypass grafting during an inpatient or ER visit","#usedInStudy, #LEGEND, #Diabetes, #legendDiabetes",1,"Rohan Khera','Martijn Schuemie','Yuan Lu','Anna Ostropolets','RuiJun Chun','George Hripcsak','Patrick Ryan','Harlan Krumholz','Marc Suchard'","0000-0001-9467-6199', '0000-0002-0817-5361', '', '0000-0002-0847-6682', '', '','','0000-0003-2046-127X','0000-0001-9818-479X'","'OHDSI'","","","4283892,4336464",,"2023-09-20","2023-10-04",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",1,1,"All",FALSE,"All","All",2,1,"ProcedureOccurrence",0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,1,,,,, -982,"[P] Stroke (ischemic or hemorrhagic) in inpatient","Stroke (ischemic or hemorrhagic) in inpatient","Stroke (ischemic or hemorrhagic) in inpatient","rao@ohdsi.org","Pending","","Condition record of hemorrhagic or ischemic stroke during an inpatient or ER visit","#usedInStudy, #LEGEND, #Diabetes, #legendDiabetes",1,"Rohan Khera','Martijn Schuemie','Yuan Lu','Anna Ostropolets','RuiJun Chun','George Hripcsak','Patrick Ryan','Harlan Krumholz','Marc Suchard'","0000-0001-9467-6199', '0000-0002-0817-5361', '', '0000-0002-0847-6682', '', '','','0000-0003-2046-127X','0000-0001-9818-479X'","'OHDSI'","","","134438, 45766714","https://forums.ohdsi.org/t/17895","2023-09-20","2023-09-24",,"",,0,,,"ERA","180","fixed duration relative to initial event","StartDate",7,0,"All",TRUE,"All","All",1,1,"ConditionOccurrence",0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -986,"[P] Acute pancreatitis2","Acute pancreatitis2","","rao@ohdsi.org","Pending","","Condition record of acute pancreatitis during an inpatient or ER visit","#usedInStudy, #LEGEND, #Diabetes, #legendDiabetes",1,"Rohan Khera','Martijn Schuemie','Yuan Lu','Anna Ostropolets','RuiJun Chun','George Hripcsak','Patrick Ryan','Harlan Krumholz','Marc Suchard'","0000-0001-9467-6199', '0000-0002-0817-5361', '', '0000-0002-0847-6682', '', '','','0000-0003-2046-127X','0000-0001-9818-479X'","'OHDSI'","","","","","2023-09-20","2023-09-20",,"",,0,,,"ERA","30","fixed duration relative to initial event","StartDate",7,0,"All",TRUE,"All","All",1,1,"ConditionOccurrence",0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -989,"[P] Bladder cancer","Bladder cancer","Bladder Cancer","rao@ohdsi.org","Pending","","Malignant tumor of urinary bladder condition record of any type limited to earliest event per person","#usedInStudy, #LEGEND, #Diabetes, #legendDiabetes",1,"Rohan Khera','Martijn Schuemie','Yuan Lu','Anna Ostropolets','RuiJun Chun','George Hripcsak','Patrick Ryan','Harlan Krumholz','Marc Suchard'","0000-0001-9467-6199', '0000-0002-0817-5361', '', '0000-0002-0847-6682', '', '','','0000-0003-2046-127X','0000-0001-9818-479X'","'OHDSI'","","","","","2023-09-20","2023-10-05",,"",,0,,,"ERA","0","end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,,,,,,,,,,, -990,"[P] Bone fracture","Bone fracture","Bone Fracture","rao@ohdsi.org","Pending","","Bone fracture condition record of any type successive records with > 90 day gap are considered independent episodes","#usedInStudy, #LEGEND, #Diabetes, #legendDiabetes",1,"Rohan Khera','Martijn Schuemie','Yuan Lu','Anna Ostropolets','RuiJun Chun','George Hripcsak','Patrick Ryan','Harlan Krumholz','Marc Suchard'","0000-0001-9467-6199', '0000-0002-0817-5361', '', '0000-0002-0847-6682', '', '','','0000-0003-2046-127X','0000-0001-9818-479X'","'OHDSI'","","","75053",,"2023-09-20","2023-10-04",,"",,0,,,"ERA","90","fixed duration relative to initial event","EndDate",1,0,"All",FALSE,"All","All",2,2,"ConditionOccurrence, ProcedureOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,1,,,,, -991,"[P] Breast cancer Malignant tumor of breast","Breast cancer Malignant tumor of breast","Breast cancer Malignant tumor of breast","rao@ohdsi.org","Pending","","Malignant tumor of breast condition record of any type limited to earliest event per person","#usedInStudy, #LEGEND, #Diabetes, #legendDiabetes",1,"Rohan Khera','Martijn Schuemie','Yuan Lu','Anna Ostropolets','RuiJun Chun','George Hripcsak','Patrick Ryan','Harlan Krumholz','Marc Suchard'","0000-0001-9467-6199', '0000-0002-0817-5361', '', '0000-0002-0847-6682', '', '','','0000-0003-2046-127X','0000-0001-9818-479X'","'OHDSI'","","","197925, 4245614","","2023-09-20","2023-09-24",,"",,0,,,"ERA","0","end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",365,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,,,,,,,,,,, -992,"[P] Diabetic ketoacidosis with inpatient or ER visit","Diabetic ketoacidosis with inpatient or ER visit","","rao@ohdsi.org","Pending","","Diabetic ketoacidosis condition record during an inpatient or ER visit","#usedInStudy, #LEGEND, #Diabetes, #legendDiabetes",1,"Rohan Khera','Martijn Schuemie','Yuan Lu','Anna Ostropolets','RuiJun Chun','George Hripcsak','Patrick Ryan','Harlan Krumholz','Marc Suchard'","0000-0001-9467-6199', '0000-0002-0817-5361', '', '0000-0002-0847-6682', '', '','','0000-0003-2046-127X','0000-0001-9818-479X'","'OHDSI'","","","261687","https://forums.ohdsi.org/t/17895","2023-09-20","2023-09-24",,"",,0,,,"ERA","180","fixed duration relative to initial event","StartDate",7,0,"All",TRUE,"All","All",1,1,"ConditionOccurrence",0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -993,"[W] Diarrhea including enteritis","Diarrhea including enteritis","","rao@ohdsi.org","Pending","","Diarrhea condition record of any type successive records with > 30 day gap are considered independent episodes","#usedInStudy, #LEGEND, #Diabetes, #legendDiabetes",1,"Rohan Khera','Martijn Schuemie','Yuan Lu','Anna Ostropolets','RuiJun Chun','George Hripcsak','Patrick Ryan','Harlan Krumholz','Marc Suchard'","0000-0001-9467-6199', '0000-0002-0817-5361', '', '0000-0002-0847-6682', '', '','','0000-0003-2046-127X','0000-0001-9818-479X'","'OHDSI'","","","4209223, 4285898, 42537251","https://forums.ohdsi.org/t/17895","2023-09-20","2023-10-09",,"","duplicate 884",0,,,"ERA","30","fixed duration relative to initial event","StartDate",1,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -994,"[P] Genitourinary infection","Genitourinary infection","Genitourinary infection","rao@ohdsi.org","Pending","","Condition record of any type of genital or urinary tract infection during an outpatient or ER vists","#usedInStudy, #LEGEND, #Diabetes, #legendDiabetes",1,"Rohan Khera','Martijn Schuemie','Yuan Lu','Anna Ostropolets','RuiJun Chun','George Hripcsak','Patrick Ryan','Harlan Krumholz','Marc Suchard'","0000-0001-9467-6199', '0000-0002-0817-5361', '', '0000-0002-0847-6682', '', '','','0000-0003-2046-127X','0000-0001-9818-479X'","'OHDSI'","","","24660, 4083666","https://forums.ohdsi.org/t/17895","2023-09-20","2023-09-25",,"",,0,,,"ERA","30","fixed duration relative to initial event","StartDate",1,0,"All",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,, -996,"[P] Hypoglycemia","Hypoglycemia","Hypoglycemia","rao@ohdsi.org","Pending","","Hypoglycemia condition record of any type successive records with > 90 day gap are considered independent episodes","#usedInStudy, #LEGEND, #Diabetes, #legendDiabetes",1,"Rohan Khera','Martijn Schuemie','Yuan Lu','Anna Ostropolets','RuiJun Chun','George Hripcsak','Patrick Ryan','Harlan Krumholz','Marc Suchard'","0000-0001-9467-6199', '0000-0002-0817-5361', '', '0000-0002-0847-6682', '', '','','0000-0003-2046-127X','0000-0001-9818-479X'","'OHDSI'","","","257007, 4320791","https://forums.ohdsi.org/t/17895","2023-09-20","2023-09-24",,"",,0,,,"ERA","30","fixed duration relative to initial event","StartDate",1,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -997,"[W] Hypotension or low blood pressure","Hypotension or low blood pressure","Hypotension","rao@ohdsi.org","Pending","","Hypotension condition record of any type successive records with > 90 day gap are considered independent episodes","#usedInStudy, #LEGEND, #Diabetes, #legendDiabetes",1,"Rohan Khera','Martijn Schuemie','Yuan Lu','Anna Ostropolets','RuiJun Chun','George Hripcsak','Patrick Ryan','Harlan Krumholz','Marc Suchard'","0000-0001-9467-6199', '0000-0002-0817-5361', '', '0000-0002-0847-6682', '', '','','0000-0003-2046-127X','0000-0001-9818-479X'","'OHDSI'","","","24969, 260134","https://forums.ohdsi.org/t/17895","2023-09-20","2023-10-09",,"","duplicates 890",0,,,"ERA","90","fixed duration relative to initial event","StartDate",1,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -998,"[P] Joint pain3","Joint pain3","","rao@ohdsi.org","Pending","","Joint pain condition record of any type successive records with > 90 days gap are considered independent episodes","#usedInStudy, #LEGEND, #Diabetes, #legendDiabetes",1,"Rohan Khera','Martijn Schuemie','Yuan Lu','Anna Ostropolets','RuiJun Chun','George Hripcsak','Patrick Ryan','Harlan Krumholz','Marc Suchard'","0000-0001-9467-6199', '0000-0002-0817-5361', '', '0000-0002-0847-6682', '', '','','0000-0003-2046-127X','0000-0001-9818-479X'","'OHDSI'","","","4096682","https://forums.ohdsi.org/t/17895","2023-09-20","2023-09-20",,"",,0,,,"ERA","90","fixed duration relative to initial event","StartDate",1,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -999,"[P] Lower extremity amputation3","Lower extremity amputation3","Lower extremity amputation","rao@ohdsi.org","Pending","","Procedure record of below knee lower extremity amputation during inpatient or outpatient visit","#usedInStudy, #LEGEND, #Diabetes, #legendDiabetes",1,"Rohan Khera','Martijn Schuemie','Yuan Lu','Anna Ostropolets','RuiJun Chun','George Hripcsak','Patrick Ryan','Harlan Krumholz','Marc Suchard'","0000-0001-9467-6199', '0000-0002-0817-5361', '', '0000-0002-0847-6682', '', '','','0000-0003-2046-127X','0000-0001-9818-479X'","'OHDSI'","","","261600, 4078925","https://forums.ohdsi.org/t/17895","2023-09-20","2023-09-24",,"",,0,,,"ERA","0","fixed duration relative to initial event","StartDate",0,0,"All",TRUE,"All","All",1,1,"ProcedureOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,1,,,,, -1000,"[P] Nausea3","Nausea3","","rao@ohdsi.org","Pending","","Nausea condition record of any type successive records with > 30 day gap are considered independent episodes","#usedInStudy, #LEGEND, #Diabetes, #legendDiabetes",1,"Rohan Khera','Martijn Schuemie','Yuan Lu','Anna Ostropolets','RuiJun Chun','George Hripcsak','Patrick Ryan','Harlan Krumholz','Marc Suchard'","0000-0001-9467-6199', '0000-0002-0817-5361', '', '0000-0002-0847-6682', '', '','','0000-0003-2046-127X','0000-0001-9818-479X'","'OHDSI'","","","319049, 4256228","https://forums.ohdsi.org/t/17895","2023-09-20","2023-09-20",,"",,0,,,"ERA","30","fixed duration relative to initial event","StartDate",1,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -1001,"[W] Peripheral edema","Peripheral edema","Peripheral edema","rao@ohdsi.org","Pending","","Edema condition record of any type successive records with > 180 day gap are considered independent episodes","#usedInStudy, #LEGEND, #Diabetes, #legendDiabetes",1,"Rohan Khera','Martijn Schuemie','Yuan Lu','Anna Ostropolets','RuiJun Chun','George Hripcsak','Patrick Ryan','Harlan Krumholz','Marc Suchard'","0000-0001-9467-6199', '0000-0002-0817-5361', '', '0000-0002-0847-6682', '', '','','0000-0003-2046-127X','0000-0001-9818-479X'","'OHDSI'","","","319049, 4256228","https://forums.ohdsi.org/t/17895","2023-09-20","2023-10-16",,"","unclear about the origins and also how does it differ from 929",0,,,"ERA","180","fixed duration relative to initial event","StartDate",1,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -1002,"[P] Photosensitivity","Photosensitivity","Photosensitivity","rao@ohdsi.org","Pending","","Condition record of drug-induced photosensitivity during any type of visit","#usedInStudy, #LEGEND, #Diabetes, #legendDiabetes",1,"Rohan Khera','Martijn Schuemie','Yuan Lu','Anna Ostropolets','RuiJun Chun','George Hripcsak','Patrick Ryan','Harlan Krumholz','Marc Suchard'","0000-0001-9467-6199', '0000-0002-0817-5361', '', '0000-0002-0847-6682', '', '','','0000-0003-2046-127X','0000-0001-9818-479X'","'OHDSI'","","","254061","https://forums.ohdsi.org/t/17895","2023-09-20","2023-09-24",,"",,0,,,"ERA","90","fixed duration relative to initial event","StartDate",1,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -1003,"[P] Renal cancer","Renal cancer","Renal Cancer","rao@ohdsi.org","Pending","","Primary malignant neoplasm of kidney condition record of any type limited to earliest event per person","#usedInStudy, #LEGEND, #Diabetes, #legendDiabetes",1,"Rohan Khera','Martijn Schuemie','Yuan Lu','Anna Ostropolets','RuiJun Chun','George Hripcsak','Patrick Ryan','Harlan Krumholz','Marc Suchard'","0000-0001-9467-6199', '0000-0002-0817-5361', '', '0000-0002-0847-6682', '', '','','0000-0003-2046-127X','0000-0001-9818-479X'","'OHDSI'","","","73754","https://forums.ohdsi.org/t/18236","2023-09-20","2023-09-24",,"",,0,,,"ERA","0","end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",365,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,,,,,,,,,,, -1004,"[P] Thyroid tumor","Thyroid tumor","Thyroid tumor","rao@ohdsi.org","Pending","","Neoplasm of thyroid gland condition record of any type limited to earliest event per person","#usedInStudy, #LEGEND, #Diabetes, #legendDiabetes",1,"Rohan Khera','Martijn Schuemie','Yuan Lu','Anna Ostropolets','RuiJun Chun','George Hripcsak','Patrick Ryan','Harlan Krumholz','Marc Suchard'","0000-0001-9467-6199', '0000-0002-0817-5361', '', '0000-0002-0847-6682', '', '','','0000-0003-2046-127X','0000-0001-9818-479X'","","","","4131909",,"2023-09-20","2023-10-05",,"",,0,,,"ERA","0","end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,,,,,,,,,,, -1005,"[P] Venous thromboembolism","Venous thromboembolism","Venous thromboembolism","rao@ohdsi.org","Pending","","Venous thromboembolism condition record of any type successive records with > 180 day gap are considered independent episodes","#usedInStudy, #LEGEND, #Diabetes, #legendDiabetes",1,"Rohan Khera','Martijn Schuemie','Yuan Lu','Anna Ostropolets','RuiJun Chun','George Hripcsak','Patrick Ryan','Harlan Krumholz','Marc Suchard'","0000-0001-9467-6199', '0000-0002-0817-5361', '', '0000-0002-0847-6682', '', '','','0000-0003-2046-127X','0000-0001-9818-479X'","'OHDSI'","","","72404, 72711","https://forums.ohdsi.org/t/17895","2023-09-20","2023-09-24",,"",,0,,,"ERA","180","fixed duration relative to initial event","StartDate",1,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -1006,"[P] Vomiting symptoms","Vomiting symptoms","Vomiting","rao@ohdsi.org","Pending","","Vomiting condition record of any type successive records with > 30 day gap are considered independent episodes","#usedInStudy, #LEGEND, #Diabetes, #legendDiabetes, #Symptoms",1,"Rohan Khera','Martijn Schuemie','Yuan Lu','Anna Ostropolets','RuiJun Chun','George Hripcsak','Patrick Ryan','Harlan Krumholz','Marc Suchard'","0000-0001-9467-6199', '0000-0002-0817-5361', '', '0000-0002-0847-6682', '', '','','0000-0003-2046-127X','0000-0001-9818-479X'","'OHDSI'","","","435524, 442588","https://forums.ohdsi.org/t/17895","2023-09-20","2023-09-24",,"",,0,,,"ERA","30","fixed duration relative to initial event","StartDate",1,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -1007,"[P] Earliest event of Epilepsy","Earliest event of Epilepsy","Earliest event of Epilepsy","rao@ohdsi.org","Pending","","Earliest occurrence of Epilepsy indexed on diagnosis date cohort exit is the end of continuous observation.","#JnJ, #Indication",1,"Azza Shoaibi'","0000-0002-6976-2594'","'OHDSI'","","","197684, 4021780","https://forums.ohdsi.org/t/17895","2023-09-20","2023-09-20",,"",,0,,,"ERA","0","end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,, -1009,"[P] Earliest event of Treatment resistant depression (TRD)","Earliest event of Treatment resistant depression (TRD)","Earliest event of Treatment resistant depression (TRD)","rao@ohdsi.org","Pending","","Depression disorder patients indexed on prescription date of a first-line anti-depressant preceded by at least two prior first-line anti-depressants) or indexed on an antipsychotic preceded by a first-line anti-depressant or indexed on use of esketamine preceded by a first-line anti-depressant subset to the earliest entry with a depressive disorder diagnosis in the prior year and no history of mania, dementia, or psychosis requiring continuous enrollment for the year preceding the index date and the year preceding the depression diagnosis cohort exit is the end of continuous observation.","#JnJ, #Indication",1,"Azza Shoaibi'","0000-0002-6976-2594'","'OHDSI'","","","25297, 28060, 4226263","","2023-09-20","2023-10-04",,"",,0,,,"ERA","0","end of continuous observation",,,3,"All",TRUE,"First","First",3,1,"DrugEra",0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,1,,,, -1010,"[P] Earliest event of Chronic Graft Versus Host Disease (GVHD)","Earliest event of Chronic Graft Versus Host Disease (GVHD)","Earliest event of Chronic Graft Versus Host Disease (GVHD)","rao@ohdsi.org","Pending","","Earliest occurrence of Chronic graft-versus-host disease indexed on diagnosis date of Chronic graft-versus-host disease or acute on Chronic graft-versus-host disease (for the first time in history) or unspecified raft-versus-host disease with a Hematopoietic Stem Cell Transplantation (HSCT) anytime prior to 180 days prior to index, cohort exit is the end of continuous observation","#JnJ, #Indication",1,"Jill Hardin","","'OHDSI'","","","257007, 4320791","","2023-09-20","2023-09-20",,"",,0,,,"ERA","0","end of continuous observation",,,0,"All",FALSE,"All","First",3,1,"ConditionOccurrence",0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,,,,,,,,,,, -1011,"[P] Earliest event of Marginal zone lymphoma","Earliest event of Marginal zone lymphoma","Earliest event of Marginal zone lymphoma","rao@ohdsi.org","Pending","","Earliest occurrence of Marginal zone lymphoma, indexed on diagnosis date, for the first time in history cohort exit is the end of continuous observation","#JnJ, #Indication",1,"Jill Hardin","","'OHDSI'","","","260123, 4283893","https://forums.ohdsi.org/t/17895","2023-09-20","2023-09-20",,"",,0,,,"ERA","0","end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,,,,,,,,,,, -1012,"[P] Earliest event of Waldenstrom macroglobulinemia","Earliest event of Waldenstrom macroglobulinemia","Earliest event of Waldenstrom macroglobulinemia","rao@ohdsi.org","Pending","","Earliest occurrence of Waldenstrom macroglobulinemia indexed on diagnosis date, for the first time in history cohort exit is the end of continuous observation","#JnJ, #Indication",1,"'Jill Hardin'","","'OHDSI'","","","435502",,"2023-09-20","2023-10-04",,"",,0,,,"ERA","0","end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,,,,,,,,,,, -1013,"[P] Earliest event of Ankylosing Spondylitis","Earliest event of Ankylosing Spondylitis","Earliest event of Ankylosing Spondylitis","rao@ohdsi.org","Pending","","Earliest occurrence of Ankylosing Spondylitis indexed on diagnosis date, for the first time in history cohort exit is the end of continuous observation","#JnJ, #Indication",1,"Joel Swerdel'","","'OHDSI'","","","257007, 43021227","https://forums.ohdsi.org/t/17895","2023-09-20","2023-09-20",,"",,0,,,"ERA","0","end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,,,,,,,,,,, -1016,"[P] Earliest event of Polyarticular juvenile idiopathic arthritis (JIA)","Earliest event of Polyarticular juvenile idiopathic arthritis (JIA)","Earliest event of Polyarticular juvenile idiopathic arthritis (JIA)","rao@ohdsi.org","Pending","","First occurrence of Polyarticular juvenile idiopathic arthritis (JIA)) indexed on diagnosis date, for the first time in history. Requiring that events occurred on or after January of 2016 and limited to patients with age less or equal to 16 years old. cohort exit is the end of continuous observation.","#JnJ, #Indication",1,"Joel Swerdel'","0000-0002-6976-2594'","'OHDSI'","","","372328","","2023-09-20","2023-10-05",,"",,0,,,"ERA","0","end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,,,,,,,,,,, -1017,"[P] Earliest event of Neonatal Thrombocytopenia (NT), less than 1 year old","Earliest event of Neonatal Thrombocytopenia (NT), less than 1 year old","Earliest event of Neonatal Thrombocytopenia (NT), less than 1 year old","rao@ohdsi.org","Pending","","Earliest occurrence of Neonatal Thrombocytopenia indexed on diagnosis date, for the first time in history limited to patients less than 1 years old, cohort exit is the end of continuous observation","#JnJ, #Indication",1,"Nathan Hal', 'Azza Shoaibi'","0000-0002-6976-2594'","'OHDSI'","","","439777","https://forums.ohdsi.org/t/17856","2023-09-20","2023-09-20",,"",,0,,,"ERA","0","end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,,,,,,,,,,, -1018,"[P] Earliest event of Warm Autoimmune Hemolytic Anemia (wAIHA)","Earliest event of Warm Autoimmune Hemolytic Anemia (wAIHA)","Earliest event of Warm Autoimmune Hemolytic Anemia (wAIHA)","rao@ohdsi.org","Pending","","Earliest occurrence of Warm Autoimmune Hemolytic Anemia (wAIHA) indexed on diagnosis date, for the first time in history cohort exit is the end of continuous observation","#JnJ, #Indication",1,"'Jill Hardin'","","'OHDSI'","","","437264, 440069","","2023-09-20","2023-10-05",,"",,0,,,"ERA","0","end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,,,,,,,,,,, -1019,"[P] All events of Hemolytic Disease Fetus and Newborn (HDFN), RhD type, with a pregnancy episode","All events of Hemolytic Disease Fetus and Newborn (HDFN), RhD type, with a pregnancy episode","All events of Hemolytic Disease Fetus and Newborn (HDFN), RhD type, with a pregnancy episode","rao@ohdsi.org","Pending","","All events of Hemolytic Disease Fetus and Newborn (HDFN) indexed on diagnosis date, requiring a pregnancy episode that started any time prior index and pregnancy ends between 14 days pre to all time post index patients exit the cohort 270 days post index or on events signaling pregnancy end. Reoccurrence events are collapsed if the next event starts within 90 days of end of prior event.","#JnJ, #Indication",1,"Joel Swerdel'","0000-0002-6976-2594'","'OHDSI'","","","444367, 4145627","","2023-09-20","2023-09-20",,"",,0,,,"ERA","90","fixed duration relative to initial event","StartDate",270,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -1020,"[P] Earliest event of Major depressive disorder, with NO occurrence of certain psychiatric disorder","Earliest event of Major depressive disorder, with NO occurrence of certain psychiatric disorder","Earliest event of Major depressive disorder, with NO occurrence of certain psychiatric disorder","rao@ohdsi.org","Pending","","Earliest occurrence of major depressive disorder indexed on diagnosis date requiring no occurrence anytime prior including day 0 of Bipolar disorder, Schizoaffective, Schizophrenia not including paraphrenia, Dementia or Psychotic disorder cohort exit is the end of continuous observation.","#JnJ, #Indication",1,"Dave Kern, Joel Swerdel","","'OHDSI'","","","441259, 4177600",,"2023-09-20","2023-09-20",,"",,0,,,"ERA","0","end of continuous observation",,,0,"First",TRUE,"All","First",1,1,"ConditionOccurrence",0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,,,,,,,,,,, -1021,"[P] Earliest event of Myasthenia Gravis, inpatient, 2nd diagnosis or treatment, age gte 18","Earliest event of Myasthenia Gravis, inpatient, 2nd diagnosis or treatment, age gte 18","Earliest event of Myasthenia Gravis, inpatient, 2nd diagnosis or treatment, age gte 18","rao@ohdsi.org","Pending","","Earliest occurrence of myasthenia gravis (excluding congenital, juvenile, neonatal or genetic) indexed on diagnosis date requiring either a second diagnosis of myasthenia gravis within 365 days after the first diagnosis (index date) or a drug exposure to Pyridostigmine on or 60 days after the first diagnosis or that the first diagnosis occur in an inpatient setting cohort exit is the end of continuous observation. Limit to persons with age greater than or equal to 18 on entry.","#JnJ, #Indication",1,"Mitch Conover'","","'OHDSI'","","","4155911",,"2023-09-20","2023-09-20",,"",,0,,,"ERA","0","end of continuous observation",,,1,"First",FALSE,"All","First",2,2,"ConditionOccurrence, DrugExposure",0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,1,,,,,,, -1022,"[P] Earliest event of Depressive and Sleep Disorder","Earliest event of Depressive and Sleep Disorder","Earliest event of Depressive and Sleep Disorder","rao@ohdsi.org","Pending","","Earliest occurrence of either 1) a depressive disorder diagnosis that is preceded by a sleep disorder diagnosis in the prior year 2) a sleep disorder diagnosis that is preceded by a depressive disorder diagnosis in the prior year cohort exit is the end of continuous observation.","#JnJ, #Indication",1,"Joel Swerdel','Azza Shoaibi'","","'OHDSI'","","","441259, 4307580",,"2023-09-20","2023-09-20",,"",,0,,,"ERA","0","end of continuous observation",,,0,"First",FALSE,"All","First",2,1,"ConditionOccurrence",0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,,,,,,,,,,, -1023,"[P] Earliest Event of Depressive Disorder with Suicidal Ideation or Attempt Prevalent","Earliest Event of Depressive Disorder with Suicidal Ideation or Attempt Prevalent","Earliest Event of Depressive Disorder with Suicidal Ideation or Attempt Prevalent","rao@ohdsi.org","Pending","","Earliest occurrence of either 1) a depressive disorder diagnosis that is preceded by a suicidal ideation diagnosis or suicide observation in the prior year, or 2) a suicide ideation diagnosis that is preceded by a depressive disorder diagnosis in the prior year, or 3) a suicide attempt observation that is preceded by a depressive disorder diagnosis in the prior year cohort exit is the end of continuous observation.","#JnJ, #Indication",1,"Joel Swerdel','Azza Shoaibi' ,'Pranav Bhimani'","","'OHDSI'","","","438252, 4118793",,"2023-09-20","2023-09-20",,"",,0,,,"ERA","0","end of continuous observation",,,0,"First",FALSE,"All","First",3,2,"ConditionOccurrence, Observation",0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,,,,,,,,,, -1024,"[P] Earliest Event of Depressive Disorder with Anhedonia","Earliest Event of Depressive Disorder with Anhedonia","Earliest Event of Depressive Disorder with Anhedonia","rao@ohdsi.org","Pending","","Earliest occurrence of either 1) a depressive disorder diagnosis that is preceded by an Anhedonia diagnosis in the prior year or 2) an anhedonia diagnosis that is preceded by a depressive disorder diagnosis in the prior year cohort exit is the end of continuous observation.","#JnJ, #Indication",1,"Joel Swerdel', 'Pranav Bhimani'","","'OHDSI'","","","137977, 435656","https://forums.ohdsi.org/t/17895","2023-09-20","2023-09-20",,"",,0,,,"ERA","0","end of continuous observation",,,0,"First",FALSE,"All","First",2,1,"ConditionOccurrence",0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,,,,,,,,,,, -1025,"[P] First event of Attention-deficit hyperactivity (ADHD) disorder or procedure","First event of Attention-deficit hyperactivity (ADHD) disorder or procedure","First event of Attention-deficit hyperactivity (ADHD) disorder or procedure","rao@ohdsi.org","Pending","","First occurrence of Attention-deficit hyperactivity disorder (ADHD) condition or related procedures, indexed on the earliest occurrence of ADHD condition, procedure or treatment (limited to drug exposure followed by a related condition or procedure), with 365d prior observation, exit at end of observation","#JnJ, #Indication",1,"Jamie Weaves', 'Mitch Connover'","","'OHDSI'","","","40480225,4047120",,"2023-09-20","2023-10-04",,"",,0,,,"ERA","0","end of continuous observation",,,0,"First",FALSE,"All","First",3,3,"ConditionOccurrence, DrugExposure, ProcedureOccurrence",0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,1,,1,,,,, -1026,"[P] Earliest Event of Multiple Sclerosis","Earliest Event of Multiple Sclerosis","Earliest Event of Multiple Sclerosis","rao@ohdsi.org","Pending","","Earliest occurrence of multiple sclerosis indexed on diagnosis date for the first time in persons history cohort exit is the end of continuous observation.","#JnJ, #Indication",1,"Joel Swerdel'","","'OHDSI'","","","135618, 4169287","https://forums.ohdsi.org/t/17895","2023-09-20","2023-09-20",,"",,0,,,"ERA","0","end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,,,,,,,,,,, -1027,"[P] Earliest event of Chronic Leukocytic Leukemia","Earliest event of Chronic Leukocytic Leukemia","Earliest event of Chronic Leukocytic Leukemia","rao@ohdsi.org","Pending","","Earliest event of Chronic Leukocytic Leukemia (not including Hairy cell, prolymphocytic leukemia, T cell, reticuloendotheliosis) for the first time in persons history, exit cohort at the end of continuous observation period.","#JnJ, #Indication",1,"Jill Hardin'","","'OHDSI'","","","133834, 133835, 45766714","","2023-09-20","2023-09-20",,"",,0,,,"ERA","0","end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,,,,,,,,,,, -1028,"[P] Earliest event of Urothelial carcinoma","Earliest event of Urothelial carcinoma","Earliest event of Urothelial carcinoma","rao@ohdsi.org","Pending","","Earliest event of Urothelial Carcinoma indexed on diagnosis Indexed on Primary or malignant urothelial bladder cancer diagnosis cohort exit is the end of continuous observation.","#JnJ, #Indication",1,"Jill Hardin'","","'OHDSI'","","","134438","","2023-09-20","2023-09-20",,"",,0,,,"ERA","0","end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,, -1029,"[P] Earliest event of Mantle Cell Lymphoma","Earliest event of Mantle Cell Lymphoma","Earliest event of Mantle Cell Lymphoma","rao@ohdsi.org","Pending","","Earliest event of Urothelial Carcinoma indexed on diagnosis Indexed on Primary or malignant urothelial bladder cancer diagnosis cohort exit is the end of continuous observation.","#JnJ, #Indication",1,"Jill Hardin'","","'OHDSI'","","","4242574","","2023-09-20","2023-09-20",,"",,0,,,"ERA","0","end of continuous observation",,,0,"First",FALSE,"All","First",2,1,"ConditionOccurrence",0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,, -1030,"[P] Earliest event of Prostate cancer, among adult males","Earliest event of Prostate cancer, among adult males","Earliest event of Prostate cancer, among adult males","rao@ohdsi.org","Pending","","Earliest event of Prostate cancer restricting age greater than or equal to 18 and males indexed on prostate cancer diagnosis cohort exit is the end of continuous observation.","#JnJ, #Indication",1,"Rupa Makadia","","'OHDSI'","","","137053","","2023-09-20","2023-09-20",,"",,0,,,"ERA","0","end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,, -1031,"[P] Earliest event of Coronary artery disease (CAD)","Earliest event of Coronary artery disease (CAD)","Earliest event of Coronary artery disease (CAD)","rao@ohdsi.org","Pending","","Earliest event of Coronary Artery Disease for the first time in the persons history Indexed on coronary artery disease diagnosis (condition or observation) cohort exit is the end of continuous observation.","#JnJ, #Indication",1,"Joel Swerdel'","","'OHDSI'","","","4203600, 4239682, 4331304","","2023-09-20","2023-09-20",,"",,0,,,"ERA","0","end of continuous observation",,,0,"First",FALSE,"All","First",2,2,"ConditionOccurrence, Observation",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,,,,,,,,,, -1032,"[P] Earliest event of Type 2 Diabetes Mellitus (DM), with no type 1 or secondary DM","Earliest event of Type 2 Diabetes Mellitus (DM), with no type 1 or secondary DM","Earliest event of Type 2 Diabetes Mellitus (DM), with no type 1 or secondary DM","rao@ohdsi.org","Pending","","Earliest event of Type 2 Diabetes Mellitus (DM), indexed on diagnosis or Blood glucose lowering drugs excluding insulin or high Hemoglobin A1c (limited to treatments or measurement that are followed with Type 2 DM diagnosis within 365 days) excluding persons with Type 1 DM or secondary diabetes mellitus in the all time prior including index date","#JnJ, #Indication",1,"Patrick Ryan,","","'OHDSI'","","","4027396","","2023-09-20","2023-09-20",,"",,0,,,"ERA","0","end of continuous observation",,,3,"First",FALSE,"All","First",4,3,"ConditionOccurrence, DrugExposure, Measurement",0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,1,,,,,,, -1033,"[P] Earliest event of Human Immunodeficiency Virus I (HIV), with treatment, lab or 2nd diagnosis","Earliest event of Human Immunodeficiency Virus I (HIV), with treatment, lab or 2nd diagnosis","Earliest event of Human Immunodeficiency Virus I (HIV), with treatment, lab or 2nd diagnosis","rao@ohdsi.org","Pending","","Earliest event of Human Immunodeficiency Virus I (HIV), with HIV drugs or laboratory results any time after index date or second diagnosis post index cohort exit is the end of continuous observation","#JnJ, #Indication",1,"Rupa Makadia, Jamie Calusardo","","'OHDSI'","","","4027396, 4117779","","2023-09-20","2023-10-04",,"",,0,,,"ERA","0","end of continuous observation",,,0,"All",TRUE,"First","First",1,1,"ConditionOccurrence",0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,, -1034,"[P] All events of Respiratory syncytial virus infection, with 30 days washout","All events of Respiratory syncytial virus infection, with 30 days washout","All events of Respiratory syncytial virus infection, with 30 days washout","rao@ohdsi.org","Pending","","All events of Respiratory syncytial virus infection, with no such events in prior 30 days (washout). Persons exit the cohort at the start date + 30 day.","#JnJ, #Indication",1,"Nathan Hall, Rupa Makadia","","'OHDSI'","","","377889","","2023-09-20","2023-09-20",,"",,0,,,"ERA","0","fixed duration relative to initial event","StartDate",30,1,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -1035,"[P] New users of Thiazide diuretics","New users of Thiazide diuretics","New users of Thiazide diuretics","rao@ohdsi.org","Pending peer review","","New users of Thiazide diuretics","#HowOften, #Target, #Study, #Symposium",1,"'Patrick Ryan'","","'Johnson and Johnson', 'OHDSI'","","","",,"2023-09-21","2023-09-21",,"",,0,,,"ERA","0","end of continuous drug exposure",,,0,"First",FALSE,"All","First",1,1,"DrugExposure",365,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,,,,1,,,,0,90,0, -1036,"[P] New users of Beta blockers","New users of Beta blockers","New users of Beta blockers","rao@ohdsi.org","Pending peer review","","New users of Beta blockers","#HowOften, #Target, #Study, #Symposium",1,"'Patrick Ryan'","","'Johnson and Johnson', 'OHDSI'","","","",,"2023-09-21","2023-09-21",,"",,0,,,"ERA","0","end of continuous drug exposure",,,0,"First",FALSE,"All","First",1,1,"DrugExposure",365,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,,,,1,,,,2,90,0, -1037,"[P] New users of SGLT2 inhibitor","New users of SGLT2 inhibitor","New users of SGLT2 inhibitor","rao@ohdsi.org","Pending peer review","","New users of SGLT2 inhibitor","#HowOften, #Target, #Study, #Symposium",1,"'Patrick Ryan'","","'Johnson and Johnson', 'OHDSI'","","","",,"2023-09-21","2023-09-21",,"",,0,,,"ERA","0","end of continuous drug exposure",,,0,"First",FALSE,"All","First",1,1,"DrugExposure",365,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,,,,1,,,,3,90,0, -1038,"[P] New users of GLP-1 receptor antagonists","New users of GLP-1 receptor antagonists","New users of GLP-1 receptor antagonists","rao@ohdsi.org","Pending peer review","","New users of GLP-1 receptor antagonists","#HowOften, #Target, #Study, #Symposium",1,"'Patrick Ryan'","","'Johnson and Johnson', 'OHDSI'","","","",,"2023-09-21","2023-09-21",,"",,0,,,"ERA","0","end of continuous drug exposure",,,0,"First",FALSE,"All","First",1,1,"DrugExposure",365,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,,,,1,,,,4,90,0, -1039,"[P] New users of DPP-4 inhibitors","New users of DPP-4 inhibitors","New users of DPP-4 inhibitors","rao@ohdsi.org","Pending peer review","","New users of DPP-4 inhibitors","#HowOften, #Target, #Study, #Symposium",1,"'Patrick Ryan'","","'Johnson and Johnson', 'OHDSI'","","","",,"2023-09-21","2023-09-21",,"",,0,,,"ERA","0","end of continuous drug exposure",,,0,"First",FALSE,"All","First",1,1,"DrugExposure",365,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,,,,1,,,,5,90,0, -1040,"[P] New users of Tumor Necrosis Factor alpha (TNFa) inhibitors","New users of Tumor Necrosis Factor alpha (TNFa) inhibitors","New users of Tumor Necrosis Factor alpha (TNFa) inhibitors","rao@ohdsi.org","Pending peer review","","New users of Tumor Necrosis Factor alpha (TNFa) inhibitors","#HowOften, #Target, #Study, #Symposium",1,"'Patrick Ryan'","","'Johnson and Johnson', 'OHDSI'","","","",,"2023-09-21","2023-09-21",,"",,0,,,"ERA","0","end of continuous drug exposure",,,0,"First",FALSE,"All","First",1,1,"DrugExposure",365,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,,,,1,,,,6,90,0, -1041,"[P] New users of JAK inhibitors","New users of JAK inhibitors","New users of JAK inhibitors","rao@ohdsi.org","Pending peer review","","New users of JAK inhibitors","#HowOften, #Target, #Study, #Symposium",1,"'Patrick Ryan'","","'Johnson and Johnson', 'OHDSI'","","","",,"2023-09-21","2023-09-21",,"",,0,,,"ERA","0","end of continuous drug exposure",,,0,"First",FALSE,"All","First",1,1,"DrugExposure",365,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,,,,1,,,,7,90,0, -1042,"[P] New users of IL-23 inhibitors","New users of IL-23 inhibitors","New users of IL-23 inhibitors","rao@ohdsi.org","Pending peer review","","New users of IL-23 inhibitors","#HowOften, #Target, #Study, #Symposium",1,"'Patrick Ryan'","","'Johnson and Johnson', 'OHDSI'","","","",,"2023-09-21","2023-10-03",,"",,0,,,"ERA","0","end of continuous drug exposure",,,0,"First",FALSE,"All","First",1,1,"DrugExposure",365,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,,,,1,,,,8,90,0, -1043,"[P] New users of Fluoroquinolone systemic","New users of Fluoroquinolone systemic","New users of Fluoroquinolone systemic","rao@ohdsi.org","Pending peer review","","New users of Fluoroquinolone systemic","#HowOften, #Target, #Study, #Symposium",1,"'Patrick Ryan'","","'Johnson and Johnson', 'OHDSI'","","","",,"2023-09-21","2023-09-21",,"",,0,,,"ERA","0","end of continuous drug exposure",,,0,"First",FALSE,"All","First",1,1,"DrugExposure",365,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,,,,1,,,,9,30,0, -1044,"[P] New users of Cephalosporin systemetic","New users of Cephalosporin systemetic","New users of Cephalosporin systemetic","rao@ohdsi.org","Pending peer review","","New users of Cephalosporin systemetic","#HowOften, #Target, #Study, #Symposium",1,"'Patrick Ryan'","","'Johnson and Johnson', 'OHDSI'","","","",,"2023-09-21","2023-09-21",,"",,0,,,"ERA","0","end of continuous drug exposure",,,0,"First",FALSE,"All","First",1,1,"DrugExposure",365,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,,,,1,,,,10,30,0, -1045,"[P] New users of Trimethoprim systemetic","New users of Trimethoprim systemetic","New users of Trimethoprim systemetic","rao@ohdsi.org","Pending peer review","","New users of Trimethoprim systemetic","#HowOften, #Target, #Study, #Symposium",1,"'Patrick Ryan'","","'Johnson and Johnson', 'OHDSI'","","","",,"2023-09-21","2023-09-21",,"",,0,,,"ERA","0","end of continuous drug exposure",,,0,"First",FALSE,"All","First",1,1,"DrugExposure",365,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,,,,1,,,,11,30,0, -1046,"[P] New users of Thiazide diuretics nested in essential hypertension","New users of Thiazide diuretics nested in essential hypertension","New users of Thiazide diuretics nested in essential hypertension","rao@ohdsi.org","Pending peer review","","New users of Thiazide diuretics nested in essential hypertension","#HowOften, #Target, #Study, #Symposium",1,"'Patrick Ryan'","","'Johnson and Johnson', 'OHDSI'","","","",,"2023-09-21","2023-09-21",,"",,0,,,"ERA","0","end of continuous drug exposure",,,1,"First",FALSE,"All","First",1,1,"DrugExposure",365,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,,,,1,,,,0,90,0, -1047,"[P] New users of dihydropyridine calcium channel blockers nested in essential hypertension","New users of dihydropyridine calcium channel blockers nested in essential hypertension","New users of dihydropyridine calcium channel blockers nested in essential hypertension","rao@ohdsi.org","Pending peer review","","New users of dihydropyridine calcium channel blockers nested in essential hypertension","#HowOften, #Target, #Study, #Symposium",1,"'Patrick Ryan'","","'Johnson and Johnson', 'OHDSI'","","","",,"2023-09-21","2023-09-21",,"",,0,,,"ERA","0","end of continuous drug exposure",,,1,"First",FALSE,"All","First",1,1,"DrugExposure",365,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,,,,1,,,,1,90,0, -1048,"[P] New users of dihydropyridine calcium channel blockers","New users of dihydropyridine calcium channel blockers","New users of dihydropyridine calcium channel blockers","rao@ohdsi.org","Pending peer review","","New users of dihydropyridine calcium channel blockers","#HowOften, #Target, #Study, #Symposium",1,"'Patrick Ryan'","","'Johnson and Johnson', 'OHDSI'","","","",,"2023-09-21","2023-09-21",,"",,0,,,"ERA","0","end of continuous drug exposure",,,0,"First",FALSE,"All","First",1,1,"DrugExposure",365,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,,,,1,,,,1,90,0, -1049,"[P] New users of Beta blockers nested in essential hypertension","New users of Beta blockers nested in essential hypertension","New users of Beta blockers nested in essential hypertension","rao@ohdsi.org","Pending peer review","","New users of Beta blockers nested in essential hypertension","#HowOften, #Target, #Study, #Symposium",1,"'Patrick Ryan'","","'Johnson and Johnson', 'OHDSI'","","","",,"2023-09-21","2023-09-21",,"",,0,,,"ERA","0","end of continuous drug exposure",,,1,"First",FALSE,"All","First",1,1,"DrugExposure",365,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,,,,1,,,,2,90,0, -1050,"[P] New users of Beta blockers nested in Left Heart Failure","New users of Beta blockers nested in Left Heart Failure","New users of Beta blockers nested in Left Heart Failure","rao@ohdsi.org","Pending peer review","","New users of Beta blockers nested in Left Heart Failure","#HowOften, #Target, #Study, #Symposium",1,"'Patrick Ryan'","","'Johnson and Johnson', 'OHDSI'","","","",,"2023-09-21","2023-09-21",,"",,0,,,"ERA","0","end of continuous drug exposure",,,1,"First",FALSE,"All","First",1,1,"DrugExposure",365,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,,,,1,,,,2,90,0, -1051,"[P] New users of SGLT2 inhibitor nested in Left Heart Failure","New users of SGLT2 inhibitor nested in Left Heart Failure","New users of SGLT2 inhibitor nested in Left Heart Failure","rao@ohdsi.org","Pending peer review","","New users of SGLT2 inhibitor nested in Left Heart Failure","#HowOften, #Target, #Study, #Symposium",1,"'Patrick Ryan'","","'Johnson and Johnson', 'OHDSI'","","","",,"2023-09-21","2023-09-21",,"",,0,,,"ERA","0","end of continuous drug exposure",,,1,"First",FALSE,"All","First",1,1,"DrugExposure",365,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,,,,1,,,,3,90,0, -1052,"[P] New users of Beta blockers nested in Acute Myocardial Infarction","New users of Beta blockers nested in Acute Myocardial Infarction","New users of Beta blockers nested in Acute Myocardial Infarction","rao@ohdsi.org","Pending peer review","","New users of Beta blockers nested in Acute Myocardial Infarction","#HowOften, #Target, #Study, #Symposium",1,"'Patrick Ryan'","","'Johnson and Johnson', 'OHDSI'","","","",,"2023-09-21","2023-09-21",,"",,0,,,"ERA","0","end of continuous drug exposure",,,1,"First",FALSE,"All","First",1,1,"DrugExposure",365,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,,,,1,,,,2,90,0, -1053,"[P] New users of GLP-1 receptor antagonists nested in Type 2 diabetes mellitus","New users of GLP-1 receptor antagonists nested in Type 2 diabetes mellitus","New users of GLP-1 receptor antagonists nested in Type 2 diabetes mellitus","rao@ohdsi.org","Pending peer review","","New users of GLP-1 receptor antagonists nested in Type 2 diabetes mellitus","#HowOften, #Target, #Study, #Symposium",1,"'Patrick Ryan'","","'Johnson and Johnson', 'OHDSI'","","","",,"2023-09-21","2023-09-21",,"",,0,,,"ERA","0","end of continuous drug exposure",,,1,"First",FALSE,"All","First",1,1,"DrugExposure",365,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,,,,1,,,,4,90,0, -1054,"[P] New users of SGLT2 inhibitor nested in Type 2 diabetes mellitus","New users of SGLT2 inhibitor nested in Type 2 diabetes mellitus","New users of SGLT2 inhibitor nested in Type 2 diabetes mellitus","rao@ohdsi.org","Pending peer review","","New users of SGLT2 inhibitor nested in Type 2 diabetes mellitus","#HowOften, #Target, #Study, #Symposium",1,"'Patrick Ryan'","","'Johnson and Johnson', 'OHDSI'","","","",,"2023-09-21","2023-09-21",,"",,0,,,"ERA","0","end of continuous drug exposure",,,1,"First",FALSE,"All","First",1,1,"DrugExposure",365,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,,,,1,,,,3,90,0, -1055,"[P] New users of DPP-4 inhibitors nested in Type 2 diabetes mellitus","New users of DPP-4 inhibitors nested in Type 2 diabetes mellitus","New users of DPP-4 inhibitors nested in Type 2 diabetes mellitus","rao@ohdsi.org","Pending peer review","","New users of DPP-4 inhibitors nested in Type 2 diabetes mellitus","#HowOften, #Target, #Study, #Symposium",1,"'Patrick Ryan'","","'Johnson and Johnson', 'OHDSI'","","","",,"2023-09-21","2023-09-21",,"",,0,,,"ERA","0","end of continuous drug exposure",,,1,"First",FALSE,"All","First",1,1,"DrugExposure",365,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,,,,1,,,,5,90,0, -1056,"[P] New users of GLP-1 receptor antagonists nested in obesity","New users of GLP-1 receptor antagonists nested in obesity","New users of GLP-1 receptor antagonists nested in obesity","rao@ohdsi.org","Pending peer review","","New users of GLP-1 receptor antagonists nested in obesity","#HowOften, #Target, #Study, #Symposium",1,"'Patrick Ryan'","","'Johnson and Johnson', 'OHDSI'","","","",,"2023-09-21","2023-09-21",,"",,0,,,"ERA","0","end of continuous drug exposure",,,1,"First",FALSE,"All","First",1,1,"DrugExposure",365,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,,,,1,,,,4,90,0, -1057,"[P] New users of IL-23 inhibitors nested in Plaque psoriasis","New users of IL-23 inhibitors nested in Plaque psoriasis","New users of IL-23 inhibitors nested in Plaque psoriasis","rao@ohdsi.org","Pending peer review","","New users of IL-23 inhibitors nested in Plaque psoriasis","#HowOften, #Target, #Study, #Symposium",1,"'Patrick Ryan'","","'Johnson and Johnson', 'OHDSI'","","","",,"2023-09-21","2023-10-03",,"",,0,,,"ERA","0","end of continuous drug exposure",,,1,"First",FALSE,"All","First",1,1,"DrugExposure",365,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,,,,1,,,,8,90,0, -1058,"[P] New users of Tumor Necrosis Factor alpha (TNFa) inhibitors nested in Plaque psoriasis","New users of Tumor Necrosis Factor alpha (TNFa) inhibitors nested in Plaque psoriasis","New users of Tumor Necrosis Factor alpha (TNFa) inhibitors nested in Plaque psoriasis","rao@ohdsi.org","Pending peer review","","New users of Tumor Necrosis Factor alpha (TNFa) inhibitors nested in Plaque psoriasis","#HowOften, #Target, #Study, #Symposium",1,"'Patrick Ryan'","","'Johnson and Johnson', 'OHDSI'","","","",,"2023-09-21","2023-09-21",,"",,0,,,"ERA","0","end of continuous drug exposure",,,1,"First",FALSE,"All","First",1,1,"DrugExposure",365,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,,,,1,,,,6,90,0, -1059,"[P] New users of Tumor Necrosis Factor alpha (TNFa) inhibitors nested in Psoriatic Arthritis","New users of Tumor Necrosis Factor alpha (TNFa) inhibitors nested in Psoriatic Arthritis","New users of Tumor Necrosis Factor alpha (TNFa) inhibitors nested in Psoriatic Arthritis","rao@ohdsi.org","Pending peer review","","New users of Tumor Necrosis Factor alpha (TNFa) inhibitors nested in Psoriatic Arthritis","#HowOften, #Target, #Study, #Symposium",1,"'Patrick Ryan'","","'Johnson and Johnson', 'OHDSI'","","","",,"2023-09-21","2023-09-21",,"",,0,,,"ERA","0","end of continuous drug exposure",,,1,"First",FALSE,"All","First",1,1,"DrugExposure",365,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,,,,1,,,,6,90,0, -1060,"[P] New users of Fluoroquinolone systemic nested in Urinary Tract Infection","New users of Fluoroquinolone systemic nested in Urinary Tract Infection","New users of Fluoroquinolone systemic nested in Urinary Tract Infection","rao@ohdsi.org","Pending peer review","","New users of Fluoroquinolone systemic nested in Urinary Tract Infection","#HowOften, #Target, #Study, #Symposium",1,"'Patrick Ryan'","","'Johnson and Johnson', 'OHDSI'","","","",,"2023-09-21","2023-09-21",,"",,0,,,"ERA","0","end of continuous drug exposure",,,1,"First",FALSE,"All","First",1,1,"DrugExposure",365,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,,,,1,,,,9,30,0, -1061,"[P] New users of Cephalosporin systemetic nested in Urinary Tract Infection","New users of Cephalosporin systemetic nested in Urinary Tract Infection","New users of Cephalosporin systemetic nested in Urinary Tract Infection","rao@ohdsi.org","Pending peer review","","New users of Cephalosporin systemetic nested in Urinary Tract Infection","#HowOften, #Target, #Study, #Symposium",1,"'Patrick Ryan'","","'Johnson and Johnson', 'OHDSI'","","","",,"2023-09-21","2023-09-21",,"",,0,,,"ERA","0","end of continuous drug exposure",,,1,"First",FALSE,"All","First",1,1,"DrugExposure",365,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,,,,1,,,,10,30,0, -1062,"[P] New users of Trimethoprim systemetic nested in Urinary Tract Infection","New users of Trimethoprim systemetic nested in Urinary Tract Infection","New users of Trimethoprim systemetic nested in Urinary Tract Infection","rao@ohdsi.org","Pending peer review","","New users of Trimethoprim systemetic nested in Urinary Tract Infection","#HowOften, #Target, #Study, #Symposium",1,"'Patrick Ryan'","","'Johnson and Johnson', 'OHDSI'","","","",,"2023-09-21","2023-09-21",,"",,0,,,"ERA","0","end of continuous drug exposure",,,1,"First",FALSE,"All","First",1,1,"DrugExposure",365,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,,,,1,,,,11,30,0, -1063,"[P] New users of Fluoroquinolone systemic nested in Acute Typical Pneumonia","New users of Fluoroquinolone systemic nested in Acute Typical Pneumonia","New users of Fluoroquinolone systemic nested in Acute Typical Pneumonia","rao@ohdsi.org","Pending peer review","","New users of Fluoroquinolone systemic nested in Acute Typical Pneumonia","#HowOften, #Target, #Study, #Symposium",1,"'Patrick Ryan'","","'Johnson and Johnson', 'OHDSI'","","","",,"2023-09-21","2023-09-21",,"",,0,,,"ERA","0","end of continuous drug exposure",,,1,"First",FALSE,"All","First",1,1,"DrugExposure",365,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,,,,1,,,,9,30,0, -1064,"[P] New users of Cephalosporin systemetic nested in Acute Typical Pneumonia","New users of Cephalosporin systemetic nested in Acute Typical Pneumonia","New users of Cephalosporin systemetic nested in Acute Typical Pneumonia","rao@ohdsi.org","Pending peer review","","New users of Cephalosporin systemetic nested in Acute Typical Pneumonia","#HowOften, #Target, #Study, #Symposium",1,"'Patrick Ryan'","","'Johnson and Johnson', 'OHDSI'","","","",,"2023-09-21","2023-09-21",,"",,0,,,"ERA","0","end of continuous drug exposure",,,1,"First",FALSE,"All","First",1,1,"DrugExposure",365,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,,,,1,,,,10,30,0, -1065,"[P] New users of Trimethoprim systemetic nested in Acute Typical Pneumonia","New users of Trimethoprim systemetic nested in Acute Typical Pneumonia","New users of Trimethoprim systemetic nested in Acute Typical Pneumonia","rao@ohdsi.org","Pending peer review","","New users of Trimethoprim systemetic nested in Acute Typical Pneumonia","#HowOften, #Target, #Study, #Symposium",1,"'Patrick Ryan'","","'Johnson and Johnson', 'OHDSI'","","","",,"2023-09-21","2023-09-21",,"",,0,,,"ERA","0","end of continuous drug exposure",,,1,"First",FALSE,"All","First",1,1,"DrugExposure",365,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,,,,1,,,,11,30,0, -1066,"[P] New users of Tumor Necrosis Factor alpha (TNFa) inhibitors nested in Rheumatoid arthritis","New users of Tumor Necrosis Factor alpha (TNFa) inhibitors nested in Rheumatoid arthritis","New users of Tumor Necrosis Factor alpha (TNFa) inhibitors nested in Rheumatoid arthritis","rao@ohdsi.org","Pending peer review","","New users of Tumor Necrosis Factor alpha (TNFa) inhibitors nested in Rheumatoid arthritis","#HowOften, #Target, #Study, #Symposium",1,"'Patrick Ryan'","","'Johnson and Johnson', 'OHDSI'","","","",,"2023-09-21","2023-09-21",,"",,0,,,"ERA","0","end of continuous drug exposure",,,1,"First",FALSE,"All","First",1,1,"DrugExposure",365,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,,,,1,,,,6,90,0, -1067,"[P] New users of JAK inhibitors nested in Ulcerative colitis","New users of JAK inhibitors nested in Ulcerative colitis","New users of JAK inhibitors nested in Ulcerative colitis","rao@ohdsi.org","Pending peer review","","New users of JAK inhibitors nested in Ulcerative colitis","#HowOften, #Target, #Study, #Symposium",1,"'Patrick Ryan'","","'Johnson and Johnson', 'OHDSI'","","","",,"2023-09-21","2023-09-21",,"",,0,,,"ERA","0","end of continuous drug exposure",,,1,"First",FALSE,"All","First",1,1,"DrugExposure",365,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,,,,1,,,,7,90,0, -1068,"[P] New users of Tumor Necrosis Factor alpha (TNFa) inhibitors nested in Ulcerative colitis","New users of Tumor Necrosis Factor alpha (TNFa) inhibitors nested in Ulcerative colitis","New users of Tumor Necrosis Factor alpha (TNFa) inhibitors nested in Ulcerative colitis","rao@ohdsi.org","Pending peer review","","New users of Tumor Necrosis Factor alpha (TNFa) inhibitors nested in Ulcerative colitis","#HowOften, #Target, #Study, #Symposium",1,"'Patrick Ryan'","","'Johnson and Johnson', 'OHDSI'","","","",,"2023-09-21","2023-09-21",,"",,0,,,"ERA","0","end of continuous drug exposure",,,1,"First",FALSE,"All","First",1,1,"DrugExposure",365,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,,,,1,,,,6,90,0, -1069,"[P] New users of Tumor Necrosis Factor alpha (TNFa) inhibitors nested in Crohns disease","New users of Tumor Necrosis Factor alpha (TNFa) inhibitors nested in Crohns disease","New users of Tumor Necrosis Factor alpha (TNFa) inhibitors nested in Crohns disease","rao@ohdsi.org","Pending peer review","","New users of Tumor Necrosis Factor alpha (TNFa) inhibitors nested in Crohns disease","#HowOften, #Target, #Study, #Symposium",1,"'Patrick Ryan'","","'Johnson and Johnson', 'OHDSI'","","","",,"2023-09-21","2023-09-21",,"",,0,,,"ERA","0","end of continuous drug exposure",,,1,"First",FALSE,"All","First",1,1,"DrugExposure",365,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,,,,1,,,,6,90,0, -1070,"[P] New users of JAK inhibitors nested in Rheumatoid arthritis","New users of JAK inhibitors nested in Rheumatoid arthritis","New users of JAK inhibitors nested in Rheumatoid arthritis","rao@ohdsi.org","Pending peer review","","New users of JAK inhibitors nested in Rheumatoid arthritis","#HowOften, #Target, #Study, #Symposium",1,"'Patrick Ryan'","","'Johnson and Johnson', 'OHDSI'","","","",,"2023-09-21","2023-09-21",,"",,0,,,"ERA","0","end of continuous drug exposure",,,1,"First",FALSE,"All","First",1,1,"DrugExposure",365,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,,,,1,,,,7,90,0, -1071,"[P] persons at risk at start of year 2012-2022 with 365d prior observation","persons at risk at start of year 2012-2022 with 365d prior observation","persons at risk at start of year 2012-2022 with 365d prior observation","rao@ohdsi.org","Pending peer review","","persons at risk at start of year 2012-2022 with 365d prior observation","#Target, #Study, #Symposium, #baseCohort",1,"'Patrick Ryan'","","'Johnson and Johnson', 'OHDSI'","","","",,"2023-09-21","2023-10-02",,"",,0,,,"ERA","0","fixed duration relative to initial event","StartDate",1,0,"All",TRUE,"All","All",11,1,"ObservationPeriod",365,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,,1 -1072,"[P] CMV Anterior Uveitis","CMV Anterior Uveitis","Cytomegalovirus CMV Anterior Uveitis","rao@ohdsi.org","Pending peer review","",,"#Opthalmology, #OhdsiWorkGroup",1,"'Edward Lee','Kiana Tavakoli','Rupesh Agrawal','Karen Armbrust','Kareem Moussa','Jessica Shantha','Edmund Tsui','Brian Toy'","'','0000-0002-9612-5697','','','','','','','',''","'Roski Eye Institute, Keck School of Medicine, USC','Shiley Eye Institute, University of California San Diego','National Healthcare Group Eye Institute, Tan Tock Seng Hospital, Singapore', 'Minneapolis VA Health Care System, University of Minnesota','UC Davis','UCSF','UCLA Stein Eye Institute, David Geffen School of Medicine at UCLA','Roski Eye Institute, Keck School of Medicine, USC'","","","436100",,"2023-09-21","2023-10-18",,"",,0,,,"ERA","0","end of continuous observation",,,6,"First",FALSE,"All","First",5,3,"ConditionOccurrence, Measurement, Observation",0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,, -1073,"[P] Serious Infection, opportunistic infections and other infections of interest event","Serious Infection, opportunistic infections and other infections of interest event","Serious Infection, opportunistic infections and other infections of interest event","rao@ohdsi.org","Pending peer review","","Incidence of Serious Infection, opportunistic infections and other infections of interest event.","#Infection",1,"Joel Swerdel'","0000-0002-6976-2594'","'OHDSI'","","","81893",,"2023-09-22","2023-09-22",,"",,0,,,"ERA","90","fixed duration relative to initial event","StartDate",30,0,"All",FALSE,"All","All",3,1,"ConditionOccurrence",0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -1074,"[P] Serious Infection","Serious Infection","Serious Infection","rao@ohdsi.org","Pending peer review","","Incidence of Serious Infection.","#Infection",1,"Joel Swerdel'","0000-0002-6976-2594'","'OHDSI'","","","81893",,"2023-09-22","2023-09-22",,"",,0,,,"ERA","90","fixed duration relative to initial event","StartDate",30,0,"All",TRUE,"All","All",1,1,"ConditionOccurrence",0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -1075,"[P] FDA AESI Narcolepsy","FDA AESI Narcolepsy","Narcolepsy","rao@ohdsi.org","Pending peer review","","Narcolepsy","#AESI, ,#FDA, #Study, #Symposium, #Covid19SubjectsAesiIncidenceRate",1,"'Azza Shoaibi','Gowtham Rao','Rupa Makadia', 'Patrick Ryan'","'0000-0002-6976-2594', '0000-0002-4949-7236','',''","'Johnson and Johnson', 'OHDSI'","","","",,"2023-09-22","2023-09-22",,"",,0,,,"ERA","0","fixed duration relative to initial event","StartDate",1,1,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -1076,"[P] FDA AESI Anaphylaxis","FDA AESI Anaphylaxis","Anaphylaxis","rao@ohdsi.org","Pending peer review","","Anaphylaxis","#AESI, ,#FDA, #Study, #Symposium, #Covid19, #Covid19SubjectsAesiIncidenceRate",1,"'Azza Shoaibi','Gowtham Rao','Rupa Makadia', 'Patrick Ryan'","'0000-0002-6976-2594', '0000-0002-4949-7236','',''","'Johnson and Johnson', 'OHDSI'","","","",,"2023-09-22","2023-09-22",,"",,0,,,"ERA","0","fixed duration relative to initial event","StartDate",1,1,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -1077,"[P] FDA AESI Anaphylaxis v2","FDA AESI Anaphylaxis v2","Anaphylaxis v2","rao@ohdsi.org","Pending peer review","","Anaphylaxis v2","#AESI, ,#FDA, #Study, #Symposium, #Covid19, #Covid19SubjectsAesiIncidenceRate",1,"'Azza Shoaibi','Gowtham Rao','Rupa Makadia', 'Patrick Ryan'","'0000-0002-6976-2594', '0000-0002-4949-7236','',''","'Johnson and Johnson', 'OHDSI'","","","",,"2023-09-22","2023-10-09",,"",,0,,,"ERA","0","fixed duration relative to initial event","StartDate",1,1,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -1078,"[P] FDA AESI Bells Palsy","FDA AESI Bells Palsy","Bells Palsy","rao@ohdsi.org","Pending peer review","","Bells Palsy","#AESI, ,#FDA, #Study, #Symposium, #Covid19, #Covid19SubjectsAesiIncidenceRate",1,"'Azza Shoaibi','Gowtham Rao','Rupa Makadia', 'Patrick Ryan'","'0000-0002-6976-2594', '0000-0002-4949-7236','',''","'Johnson and Johnson', 'OHDSI'","","","",,"2023-09-22","2023-09-22",,"",,0,,,"ERA","0","fixed duration relative to initial event","StartDate",1,1,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -1079,"[P] FDA AESI Encephalomyelitis","FDA AESI Encephalomyelitis","Encephalomyelitis","rao@ohdsi.org","Pending peer review","","Encephalomyelitis","#AESI, ,#FDA, #Study, #Symposium, #Covid19, #Covid19SubjectsAesiIncidenceRate",1,"'Azza Shoaibi','Gowtham Rao','Rupa Makadia', 'Patrick Ryan'","'0000-0002-6976-2594', '0000-0002-4949-7236','',''","'Johnson and Johnson', 'OHDSI'","","","",,"2023-09-22","2023-09-22",,"",,0,,,"ERA","0","fixed duration relative to initial event","StartDate",1,1,"All",TRUE,"All","All",1,1,"ConditionOccurrence",0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -1080,"[P] FDA AESI Guillain Barre Syndrome","FDA AESI Guillain Barre Syndrome","Guillain Barre Syndrome","rao@ohdsi.org","Pending peer review","","Guillain Barre Syndrome","#AESI, ,#FDA, #Study, #Symposium, #Covid19, #Covid19SubjectsAesiIncidenceRate",1,"'Azza Shoaibi','Gowtham Rao','Rupa Makadia', 'Patrick Ryan'","'0000-0002-6976-2594', '0000-0002-4949-7236','',''","'Johnson and Johnson', 'OHDSI'","","","",,"2023-09-22","2023-09-22",,"",,0,,,"ERA","0","fixed duration relative to initial event","StartDate",1,1,"All",TRUE,"All","All",1,1,"ConditionOccurrence",0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -1081,"[P] FDA AESI Acute Myocardial Infarction or its complications","FDA AESI Acute Myocardial Infarction or its complications","Acute Myocardial Infarction including its complications","rao@ohdsi.org","Pending peer review","","Acute Myocardial Infarction","#AESI, ,#FDA, #Study, #Symposium, #Covid19, #Covid19SubjectsAesiIncidenceRate",1,"'Azza Shoaibi','Gowtham Rao','Rupa Makadia', 'Patrick Ryan'","'0000-0002-6976-2594', '0000-0002-4949-7236','',''","'Johnson and Johnson', 'OHDSI'","","","",,"2023-09-22","2023-09-25",,"",,0,,,"ERA","0","fixed duration relative to initial event","StartDate",1,1,"All",TRUE,"All","All",1,1,"ConditionOccurrence",0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -1082,"[P] FDA AESI Myocarditis Pericarditis","FDA AESI Myocarditis Pericarditis","Myocarditis Pericarditis","rao@ohdsi.org","Pending peer review","","Myocarditis Pericarditis","#AESI, ,#FDA, #Study, #Symposium, #Covid19, #Covid19SubjectsAesiIncidenceRate",1,"'Azza Shoaibi','Gowtham Rao','Rupa Makadia', 'Patrick Ryan'","'0000-0002-6976-2594', '0000-0002-4949-7236','',''","'Johnson and Johnson', 'OHDSI'","","","",,"2023-09-22","2023-09-22",,"",,0,,,"ERA","0","fixed duration relative to initial event","StartDate",1,1,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -1083,"[P] FDA AESI Immune Thrombocytopenia (ITP)","FDA AESI Immune Thrombocytopenia (ITP)","Immune Thrombocytopenia (ITP)","rao@ohdsi.org","Pending peer review","","Immune Thrombocytopenia (ITP)","#AESI, ,#FDA, #Study, #Symposium, #Covid19, #Covid19SubjectsAesiIncidenceRate",1,"'Azza Shoaibi','Gowtham Rao','Rupa Makadia', 'Patrick Ryan'","'0000-0002-6976-2594', '0000-0002-4949-7236','',''","'Johnson and Johnson', 'OHDSI'","","","",,"2023-09-22","2023-09-22",,"",,0,,,"ERA","0","fixed duration relative to initial event","StartDate",1,1,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -1084,"[P] FDA AESI Disseminated Intravascular Coagulation","FDA AESI Disseminated Intravascular Coagulation","Disseminated Intravascular Coagulation","rao@ohdsi.org","Pending peer review","","Disseminated Intravascular Coagulation","#AESI, ,#FDA, #Study, #Symposium, #Covid19, #Covid19SubjectsAesiIncidenceRate",1,"'Azza Shoaibi','Gowtham Rao','Rupa Makadia', 'Patrick Ryan'","'0000-0002-6976-2594', '0000-0002-4949-7236','',''","'Johnson and Johnson', 'OHDSI'","","","",,"2023-09-22","2023-09-22",,"",,0,,,"ERA","0","fixed duration relative to initial event","StartDate",1,1,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -1085,"[P] FDA AESI Appendicitis","FDA AESI Appendicitis","Appendicitis","rao@ohdsi.org","Pending peer review","","Appendicitis","#AESI, ,#FDA, #Study, #Symposium, #Covid19, #Covid19SubjectsAesiIncidenceRate",1,"'Azza Shoaibi','Gowtham Rao','Rupa Makadia', 'Patrick Ryan'","'0000-0002-6976-2594', '0000-0002-4949-7236','',''","'Johnson and Johnson', 'OHDSI'","","","",,"2023-09-22","2023-09-22",,"",,0,,,"ERA","0","fixed duration relative to initial event","StartDate",1,1,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -1086,"[P] FDA AESI Transverse Myelitis","FDA AESI Transverse Myelitis","Transverse Myelitis","rao@ohdsi.org","Pending peer review","","Transverse Myelitis","#AESI, ,#FDA, #Study, #Symposium, #Covid19, #Covid19SubjectsAesiIncidenceRate",1,"'Azza Shoaibi','Gowtham Rao','Rupa Makadia', 'Patrick Ryan'","'0000-0002-6976-2594', '0000-0002-4949-7236','',''","'Johnson and Johnson', 'OHDSI'","","","",,"2023-09-22","2023-09-22",,"",,0,,,"ERA","0","fixed duration relative to initial event","StartDate",1,1,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -1087,"[P] FDA AESI Hemorrhagic Stroke","FDA AESI Hemorrhagic Stroke","Hemorrhagic Stroke","rao@ohdsi.org","Pending peer review","","Hemorrhagic Stroke","#AESI, ,#FDA, #Study, #Symposium, #Covid19, #Covid19SubjectsAesiIncidenceRate",1,"'Azza Shoaibi','Gowtham Rao','Rupa Makadia', 'Patrick Ryan'","'0000-0002-6976-2594', '0000-0002-4949-7236','',''","'Johnson and Johnson', 'OHDSI'","","","",,"2023-09-22","2023-09-22",,"",,0,,,"ERA","0","fixed duration relative to initial event","StartDate",1,1,"All",TRUE,"All","All",1,1,"ConditionOccurrence",0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -1088,"[P] FDA AESI Deep Vein Thrombosis (DVT)","FDA AESI Deep Vein Thrombosis (DVT)","Deep Vein Thrombosis (DVT)","rao@ohdsi.org","Pending peer review","","Deep Vein Thrombosis (DVT)","#AESI, ,#FDA, #Study, #Symposium, #Covid19, #Covid19SubjectsAesiIncidenceRate",1,"'Azza Shoaibi','Gowtham Rao','Rupa Makadia', 'Patrick Ryan'","'0000-0002-6976-2594', '0000-0002-4949-7236','',''","'Johnson and Johnson', 'OHDSI'","","","",,"2023-09-22","2023-09-22",,"",,0,,,"ERA","0","fixed duration relative to initial event","StartDate",1,1,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -1089,"[P] FDA AESI Non-hemorrhagic Stroke","FDA AESI Non-hemorrhagic Stroke","Non-hemorrhagic Stroke","rao@ohdsi.org","Pending peer review","","Non-hemorrhagic Stroke","#AESI, ,#FDA, #Study, #Symposium, #Covid19, #Covid19SubjectsAesiIncidenceRate",1,"'Azza Shoaibi','Gowtham Rao','Rupa Makadia', 'Patrick Ryan'","'0000-0002-6976-2594', '0000-0002-4949-7236','',''","'Johnson and Johnson', 'OHDSI'","","","",,"2023-09-22","2023-09-22",,"",,0,,,"ERA","0","fixed duration relative to initial event","StartDate",1,1,"All",TRUE,"All","All",1,1,"ConditionOccurrence",0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -1090,"[P] FDA AESI Pulmonary Embolism","FDA AESI Pulmonary Embolism","Pulmonary Embolism","rao@ohdsi.org","Pending peer review","","Pulmonary Embolism","#AESI, ,#FDA, #Study, #Symposium, #Covid19, #Covid19SubjectsAesiIncidenceRate",1,"'Azza Shoaibi','Gowtham Rao','Rupa Makadia', 'Patrick Ryan'","'0000-0002-6976-2594', '0000-0002-4949-7236','',''","'Johnson and Johnson', 'OHDSI'","","","",,"2023-09-22","2023-09-22",,"",,0,,,"ERA","0","fixed duration relative to initial event","StartDate",1,1,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -1091,"[P] FDA AESI Thrombosis with Thrombocytopenia (TWT)","FDA AESI Thrombosis with Thrombocytopenia (TWT)","Thrombosis with Thrombocytopenia (TWT)","rao@ohdsi.org","Pending peer review","","Thrombosis with Thrombocytopenia (TWT)","#AESI, ,#FDA, #Study, #Symposium, #Covid19, #Covid19SubjectsAesiIncidenceRate",1,"'Azza Shoaibi','Gowtham Rao','Rupa Makadia', 'Patrick Ryan'","'0000-0002-6976-2594', '0000-0002-4949-7236','',''","'Johnson and Johnson', 'OHDSI'","","","",,"2023-09-22","2023-09-22",,"",,0,,,"ERA","0","fixed duration relative to initial event","StartDate",1,2,"All",FALSE,"All","All",11,1,"ConditionOccurrence",0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -1093,"[P] Abdominal Aortic Aneurysm Repair, adults, inpt stay, no ED, post op new Afib","Abdominal Aortic Aneurysm Repair, adults, inpt stay, no ED, post op new Afib","Abdominal Aortic Aneurysm Repair, adults, inpt stay, no ED, post op new Afib","rao@ohdsi.org","Pending peer review","","Non emergent (No ED visit) AAA repair (requiring inpatient stay) among adults, first occurrence Afib (any) that occurs 14d after index (date of surgery), no prior atrial fibrillation","#Surgery, #WorkGroup",1,"Evan Minty","0000-0003-4631-9992","'OHDSI'","","","",,"2023-09-25","2024-01-05",,"",,0,,,"ERA","0","end of continuous observation",,,4,"First",FALSE,"All","First",2,1,"ProcedureOccurrence",0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,1,,,,, -1094,"[P] Lower Extremity Bypass - post op new Afib","Lower Extremity Bypass - post op new Afib","Lower Extremity Bypass - post op new Afib","rao@ohdsi.org","Pending peer review","","Non emergent (No ED visit) Lower Extremity Bypass (requiring inpatient stay) among adults, first occurrence Afib (any) that occurs 14d after index (date of surgery), no prior atrial fibrillation.","#Surgery, #WorkGroup",1,"Evan Minty","0000-0003-4631-9992","'OHDSI'","","","",,"2023-09-25","2024-01-05",,"",,0,,,"ERA","0","end of continuous observation",,,4,"First",FALSE,"All","First",2,1,"ProcedureOccurrence",0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,1,,,,, -1095,"[P] Carotid Endarterectomy, adults, inpt stay, no ED, post op new Afib","Carotid Endarterectomy, adults, inpt stay, no ED, post op new Afib","Carotid Endarterectomy, adults, inpt stay, no ED, post op new Afib","rao@ohdsi.org","Pending peer review","","Non emergent (No ED visit) Carotid Endarterctomy (requiring inpatient stay) among adults, first occurrence Afib (any) that occurs 14d after index (date of surgery), no prior atrial fibrillation","#Surgery, #WorkGroup",1,"Evan Minty","0000-0003-4631-9992","'OHDSI'","","","",,"2023-09-25","2024-01-05",,"",,0,,,"ERA","0","end of continuous observation",,,4,"First",FALSE,"All","First",2,1,"ProcedureOccurrence",0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,1,,,,, -1097,"[P] Esophagectomy, adults, inpt stay, no ED, post op new Afib","Esophagectomy, adults, inpt stay, no ED, post op new Afib","Esophagectomy, adults, inpt stay, no ED, post op new Afib","rao@ohdsi.org","Pending peer review","","Non emergent (No ED visit) Esophagectomy (requiring inpatient stay) among adults, first occurrence Afib (any) that occurs 14d after index (date of surgery), no prior atrial fibrillation","#Surgery, #WorkGroup",1,"Evan Minty","0000-0003-4631-9992","'OHDSI'","","","",,"2023-09-25","2024-01-05",,"",,0,,,"ERA","0","end of continuous observation",,,4,"First",FALSE,"All","First",2,1,"ProcedureOccurrence",0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,1,,,,, -1098,"[P] Pancreatectomy, adults, inpt stay, no ED, post op new Afib","Pancreatectomy, adults, inpt stay, no ED, post op new Afib","Pancreatectomy, adults, inpt stay, no ED, post op new Afib","rao@ohdsi.org","Pending peer review","","Non emergent (No ED visit) Pancreatectomy (requiring inpatient stay) among adults, first occurrence Afib (any) that occurs 14d after index (date of surgery), no prior atrial fibrillation","#Surgery, #WorkGroup",1,"Evan Minty","0000-0003-4631-9992","'OHDSI'","","","",,"2023-09-25","2024-01-05",,"",,0,,,"ERA","0","end of continuous observation",,,4,"First",FALSE,"All","First",2,1,"ProcedureOccurrence",0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,1,,,,, -1099,"[P] Colectomy, adults, inpt stay, no ED, post op new Afib","Colectomy, adults, inpt stay, no ED, post op new Afib","Colectomy, adults, inpt stay, no ED, post op new Afib","rao@ohdsi.org","Pending peer review","","Non emergent (No ED visit) Colectomy (requiring inpatient stay) among adults, first occurrence Afib (any) that occurs 14d after index (date of surgery), no prior atrial fibrillation","#Surgery, #WorkGroup",1,"Evan Minty","0000-0003-4631-9992","'OHDSI'","","","",,"2023-09-25","2024-01-05",,"",,0,,,"ERA","0","end of continuous observation",,,4,"First",FALSE,"All","First",2,1,"ProcedureOccurrence",0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,1,,,,, -1100,"[P] Cystectomy, adults, inpt stay, no ED, post op new Afib","Cystectomy, adults, inpt stay, no ED, post op new Afib","Cystectomy, adults, inpt stay, no ED, post op new Afib","rao@ohdsi.org","Pending peer review","","Non emergent (No ED visit) Cystectomy (requiring inpatient stay) among adults, first occurrence Afib (any) that occurs 14d after index (date of surgery), no prior atrial fibrillation","#Surgery, #WorkGroup",1,"Evan Minty","0000-0003-4631-9992","'OHDSI'","","","",,"2023-09-25","2024-01-05",,"",,0,,,"ERA","0","end of continuous observation",,,4,"First",FALSE,"All","First",2,1,"ProcedureOccurrence",0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,1,,,,, -1101,"[P] Nephrectomy, adults, inpt stay, no ED, post op new Afib","Nephrectomy, adults, inpt stay, no ED, post op new Afib","Nephrectomy, adults, inpt stay, no ED, post op new Afib","rao@ohdsi.org","Pending peer review","","Non emergent (No ED visit) Nephrectomy (requiring inpatient stay) among adults, first occurrence Afib (any) that occurs 14d after index (date of surgery), no prior atrial fibrillation","#Surgery, #WorkGroup",1,"Evan Minty","0000-0003-4631-9992","'OHDSI'","","","",,"2023-09-25","2024-01-05",,"",,0,,,"ERA","0","end of continuous observation",,,4,"First",FALSE,"All","First",2,1,"ProcedureOccurrence",0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,1,,,,, -1102,"[P] Coronary Artery Bypass Graft Surgery, adults, inpt stay, no ED, post op new Afib","Coronary Artery Bypass Graft Surgery, adults, inpt stay, no ED, post op new Afib","Coronary Artery Bypass Graft Surgery, adults, inpt stay, no ED, post op new Afib","rao@ohdsi.org","Pending peer review","","Non emergent (No ED visit)CABG (requiring inpatient stay) among adults, first occurrence Afib (any) that occurs 14d after index (date of surgery), no prior atrial fibrillation","#Surgery, #WorkGroup",1,"Evan Minty","0000-0003-4631-9992","'OHDSI'","","","",,"2023-09-25","2024-01-05",,"",,0,,,"ERA","0","end of continuous observation",,,4,"First",FALSE,"All","First",2,1,"ProcedureOccurrence",0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,1,,,,, -1103,"[P] Cardiac Valve Surgery, adults, inpt stay, no ED, post op new Afib","Cardiac Valve Surgery, adults, inpt stay, no ED, post op new Afib","Cardiac Valve Surgery, adults, inpt stay, no ED, post op new Afib","rao@ohdsi.org","Pending peer review","","Non emergent (No ED visit) Aortic Or Mitral Repair or Replacement (requiring inpatient stay) among adults, first occurrence Afib (any) that occurs 14d after index (date of surgery), no prior atrial fibrillation","#Surgery, #WorkGroup",1,"Evan Minty","0000-0003-4631-9992","'OHDSI'","","","",,"2023-09-25","2024-01-05",,"",,0,,,"ERA","0","end of continuous observation",,,4,"First",FALSE,"All","First",2,1,"ProcedureOccurrence",0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,1,,,,, -1104,"[P] RBC Transfusion (adult relevant, no auto 1yr clean window)","RBC Transfusion (adult relevant, no auto 1yr clean window)","RBC Transfusion (adult relevant, no auto 1yr clean window)","rao@ohdsi.org","Pending peer review","","RBC transfusion with no prior transfusion","#Surgery, #WorkGroup",1,"Evan Minty","0000-0003-4631-9992","'OHDSI'","","","",,"2023-09-25","2023-09-25",,"",,0,,,"ERA","0","end of continuous observation",,,1,"First",FALSE,"All","First",1,1,"ProcedureOccurrence",0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,1,,,,, -1105,"[P] Clostridium difficile - first episode","Clostridium difficile - first episode","Clostridium difficile - first episode","rao@ohdsi.org","Pending peer review","","Clostridium difficile with no history of clostridium difficle","#Surgery, #WorkGroup",1,"Evan Minty","0000-0003-4631-9992","'OHDSI'","","","4307981",,"2023-09-25","2023-10-04",,"",,0,,,"ERA","0","end of continuous observation",,,2,"First",FALSE,"All","First",2,2,"ConditionOccurrence, Measurement",0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,, -1106,"[P] Non-Emergent Major Non Cardiac Surgery no prior Opioid","Non-Emergent Major Non Cardiac Surgery no prior Opioid","Non-Emergent Major Non Cardiac Surgery no prior Opioid","rao@ohdsi.org","Pending peer review","","Persons having any of major non cardiac surgery","#Surgery, #WorkGroup",1,"Evan Minty","0000-0003-4631-9992","'OHDSI'","","","","","2023-09-25","2023-10-05",,"",,0,,,"ERA","0","end of continuous observation",,,3,"First",FALSE,"All","First",35,1,"ProcedureOccurrence",0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,1,,,,, -1150,"Emergency room only or Emergency room and inpatient visits (0Pe, 0Era)","Emergency room only or Emergency room and inpatient visits (0Pe, 0Era)","Emergency room visits (0Pe, 0Era)","rao@ohdsi.org","Accepted","3.4.0","All events of Emergency Room visits or Emergency room or inpatient visit. This cohort is deemed validated as it represents data convention and did not need to go thru peer review process","#standard, #Visits",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","","","2023-10-04","2023-10-04",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"VisitOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,1,,,,,,,,, -1151,"[P] Autism","Autism","Autism","rao@ohdsi.org","Pending peer review","","","#autism",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","439776","","2023-10-05","2023-10-05",,"",,0,,,"ERA","0","end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,, -1152,"[P] Deep Vein Thrombosis DVT 10","Deep Vein Thrombosis DVT 10","Deep Vein Thrombosis DVT","rao@ohdsi.org","Prediction","","All events of Deep Vein Thrombosis (DVT), indexed on a condition occurrence of Deep Vein Thrombosis (DVT). Requiring a clean window of 30 days, cohort exit is 1 day after start date.","#Prediction",1,"'Jenna Reps'","'0000-0002-2970-0778'","'Johnson and Johnson', 'OHDSI'","","","4133004",,"2023-10-09","2023-10-09",,"","Prediction phenotypes",0,,,"ERA","0","fixed duration relative to initial event","StartDate",1,1,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -1153,"[P] Seizure 10","Seizure 10","Seizure","rao@ohdsi.org","Prediction","","First Seizure record in 42 days continues for 1 day","#Prediction",1,"'Jenna Reps'","'0000-0002-2970-0778'","'Johnson and Johnson', 'OHDSI'","","","377091",,"2023-10-09","2023-10-09",,"","Prediction phenotypes",0,,,"ERA","0","fixed duration relative to initial event","StartDate",1,1,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -1154,"[P] Heart failure 10","Heart failure 10","Heart failure","rao@ohdsi.org","Prediction","","First Heart failure continues until observation end","#Prediction",1,"'Jenna Reps'","'0000-0002-2970-0778'","'Johnson and Johnson', 'OHDSI'","","","316139",,"2023-10-09","2023-10-09",,"","Prediction phenotypes",0,,,"ERA","0","end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,, -1155,"[P] Non-hemorrhagic Stroke 10","Non-hemorrhagic Stroke 10","Non-hemorrhagic Stroke","rao@ohdsi.org","Prediction","","All events of Ischemic (Non-hemorrhagic) Stroke, indexed on a condition occurrence of Ischemic (Non-hemorrhagic), limited to events with overlapping inpatient visit with no such events in prior 365 days (clean window). Persons exit the cohort at the start date + 1 day.","#Prediction",1,"'Jenna Reps'","'0000-0002-2970-0778'","'Johnson and Johnson', 'OHDSI'","","","443454",,"2023-10-09","2023-10-09",,"","Prediction phenotypes",0,,,"ERA","0","fixed duration relative to initial event","StartDate",1,1,"All",TRUE,"All","All",1,1,"ConditionOccurrence",0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -1156,"[P] Hemorrhagic stroke 10","Hemorrhagic stroke 10","Hemorrhagic stroke","rao@ohdsi.org","Prediction","","All events of Hemorrhagic stroke, indexed on a condition occurrence of Hemorrhagic stroke, limited to events with overlapping inpatient visit with no such events in prior 365 days (clean window). Persons exit the cohort at the start date + 1 day.","#Prediction",1,"'Jenna Reps'","'0000-0002-2970-0778'","'Johnson and Johnson', 'OHDSI'","","","439847",,"2023-10-09","2023-10-09",,"","Prediction phenotypes",0,,,"ERA","0","fixed duration relative to initial event","StartDate",1,1,"All",TRUE,"All","All",1,1,"ConditionOccurrence",0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -1157,"[P] peripheral vascular disease 10","peripheral vascular disease 10","peripheral vascular disease","rao@ohdsi.org","Prediction","","First peripheral vascular disease continues until end of observation","#Prediction",1,"'Jenna Reps'","'0000-0002-2970-0778'","'Johnson and Johnson', 'OHDSI'","","","321052",,"2023-10-09","2023-10-09",,"","Prediction phenotypes",0,,,"ERA","0","end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,, -1158,"[P] Aspirin 10","Aspirin 10","Aspirin","rao@ohdsi.org","Prediction","","aspirin exposures w 0d prior obsv 30d gap","#Prediction",1,"'Jenna Reps'","'0000-0002-2970-0778'","'Johnson and Johnson', 'OHDSI'","","","1112807",,"2023-10-09","2023-10-09",,"","Prediction phenotypes",0,,,"ERA","0","end of continuous drug exposure",,,0,"All",FALSE,"All","All",1,1,"DrugExposure",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,1,,,,0,30,0, -1159,"[P] Angina 10","Angina 10","Angina","rao@ohdsi.org","Prediction","","First Angina in 30 days continues for 1 days","#Prediction",1,"'Jenna Reps'","'0000-0002-2970-0778'","'Johnson and Johnson', 'OHDSI'","","","77670",,"2023-10-09","2023-10-09",,"","Prediction phenotypes",0,,,"ERA","1","fixed duration relative to initial event","EndDate",1,1,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -1160,"[P] Atrial Fibrillation 10","Atrial Fibrillation 10","Atrial Fibrillation","rao@ohdsi.org","Prediction","","First Atrial Fibrillation continues until end of observation","#Prediction",1,"'Jenna Reps'","'0000-0002-2970-0778'","'Johnson and Johnson', 'OHDSI'","","","313217",,"2023-10-09","2023-10-09",,"","Prediction phenotypes",0,,,"ERA","0","end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,,,,,,,,,,, -1161,"[P] Major depressive disorder with NO occurrence of certain psychiatric disorder 10","Major depressive disorder with NO occurrence of certain psychiatric disorder 10","Major depressive disorder with NO occurrence of certain psychiatric disorder","rao@ohdsi.org","Prediction","","Earliest occurrence of major depressive disorder indexed on diagnosis date requiring no occurrence anytime prior including day 0 of Bipolar disorder, Schizoaffective, Schizophrenia not including paraphrenia, Dementia or Psychotic disorder cohort exit is the end of continuous observation.","#Prediction",1,"'Jenna Reps'","'0000-0002-2970-0778'","'Johnson and Johnson', 'OHDSI'","","","440383",,"2023-10-09","2023-10-09",,"","Prediction phenotypes",0,,,"ERA","0","end of continuous observation",,,0,"First",TRUE,"All","First",1,1,"ConditionOccurrence",0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,,,,,,,,,,, -1162,"[P] Coronary artery disease (CAD) 10","Coronary artery disease (CAD) 10","Coronary artery disease (CAD)","rao@ohdsi.org","Prediction","","First coronary artery disease (CAD) continues until observation end","#Prediction",1,"'Jenna Reps'","'0000-0002-2970-0778'","'Johnson and Johnson', 'OHDSI'","","","318443",,"2023-10-09","2023-10-09",,"","Prediction phenotypes",0,,,"ERA","0","end of continuous observation",,,0,"First",FALSE,"All","First",2,2,"ConditionOccurrence, Observation",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,,,,,,,,,, -1163,"[P] Acute Kidney Injury 10","Acute Kidney Injury 10","Acute Kidney Injury","rao@ohdsi.org","Prediction","","All events of Acute Kidney Injury (AKI) indexed on a diagnosis of Acute kidney injury or a Dialysis procedure at a medicare certified esrd facility for acute kidney injury without esrd,. Applying a washout period of 30 days between observed events excluding events/patients with 1. a diagnosis of End-Stage Kidney Disease in the 365 days before AKI occurrence 2. patients receiving chronic dialysis defined as more than 3 recorded events of dialysis in 365 days before AKI occurrence 3. kidney Transplant any time prior . patients exit the cohort 7 days post index.","#Prediction",1,"'Jenna Reps'","'0000-0002-2970-0778'","'Johnson and Johnson', 'OHDSI'","","","197320",,"2023-10-09","2023-10-09",,"","Prediction phenotypes",0,,,"ERA","0","fixed duration relative to initial event","EndDate",7,4,"All",FALSE,"All","All",2,2,"ConditionOccurrence, ProcedureOccurrence",0,0,7,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,1,,,,, -1164,"[P] Asthma 10","Asthma 10","Asthma","rao@ohdsi.org","Prediction","","First Asthma continues until end of observation","#Prediction",1,"'Jenna Reps'","'0000-0002-2970-0778'","'Johnson and Johnson', 'OHDSI'","","","317009",,"2023-10-09","2023-10-09",,"","Prediction phenotypes",0,,,"ERA","0","end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,, -1165,"[P] Alcoholism 10","Alcoholism 10","Alcoholism","rao@ohdsi.org","Prediction","","First record of Alcoholism until observation end","#Prediction",1,"'Jenna Reps'","'0000-0002-2970-0778'","'Johnson and Johnson', 'OHDSI'","","","4218106",,"2023-10-09","2023-10-09",,"","Prediction phenotypes",0,,,"ERA","0","end of continuous observation",,,0,"First",FALSE,"All","First",3,3,"ConditionOccurrence, Observation, ProcedureOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,1,,,,, -1166,"[P] Smoking 10","Smoking 10","Smoking","rao@ohdsi.org","Prediction","","First Smoking condition or observtion or procedure record continues until end of observation","#Prediction",1,"'Jenna Reps'","'0000-0002-2970-0778'","'Johnson and Johnson', 'OHDSI'","","","4209423",,"2023-10-09","2023-10-09",,"","Prediction phenotypes",0,,,"ERA","0","end of continuous observation",,,0,"First",FALSE,"All","First",3,3,"ConditionOccurrence, Observation, ProcedureOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,1,,,,, -1167,"[P] sleep apnea 10","sleep apnea 10","sleep apnea","rao@ohdsi.org","Prediction","","First sleep apnea record continues until end of observation","#Prediction",1,"'Jenna Reps'","'0000-0002-2970-0778'","'Johnson and Johnson', 'OHDSI'","","","313459",,"2023-10-09","2023-10-09",,"","Prediction phenotypes",0,,,"ERA","0","end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,, -1168,"[P] skin ulcer 10","skin ulcer 10","skin ulcer","rao@ohdsi.org","Prediction","","First skin ulcer record in 365 days continues for 30 days","#Prediction",1,"'Jenna Reps'","'0000-0002-2970-0778'","'Johnson and Johnson', 'OHDSI'","","","4262920",,"2023-10-09","2023-10-09",,"","Prediction phenotypes",0,,,"ERA","0","fixed duration relative to initial event","EndDate",30,1,"All",FALSE,"All","All",3,3,"ConditionOccurrence, Observation, ProcedureOccurrence",0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,,,,,1,,,,, -1169,"[P] Chronic hepatitis 10","Chronic hepatitis 10","Chronic hepatitis","rao@ohdsi.org","Prediction","","First Chronic hepatitis continues until end of observation","#Prediction",1,"'Jenna Reps'","'0000-0002-2970-0778'","'Johnson and Johnson', 'OHDSI'","","","4212540",,"2023-10-09","2023-10-09",,"","Prediction phenotypes",0,,,"ERA","0","end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,, -1170,"[P] hyperlipidemia 10","hyperlipidemia 10","hyperlipidemia","rao@ohdsi.org","Prediction","","First hyperlipidemia continues until end of observation","#Prediction",1,"'Jenna Reps'","'0000-0002-2970-0778'","'Johnson and Johnson', 'OHDSI'","","","432867",,"2023-10-09","2023-10-09",,"","Prediction phenotypes",0,,,"ERA","0","end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,, -1171,"[P] hypothyroidism 10","hypothyroidism 10","hypothyroidism","rao@ohdsi.org","Prediction","","First hypothyroidism continues until end of observation","#Prediction",1,"'Jenna Reps'","'0000-0002-2970-0778'","'Johnson and Johnson', 'OHDSI'","","","140673",,"2023-10-09","2023-10-09",,"","Prediction phenotypes",0,,,"ERA","0","end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,, -1172,"[P] Heart valve disorder 10","Heart valve disorder 10","Heart valve disorder","rao@ohdsi.org","Prediction","","First Heart valve disorder continues until end of observation","#Prediction",1,"'Jenna Reps'","'0000-0002-2970-0778'","'Johnson and Johnson', 'OHDSI'","","","4281749",,"2023-10-09","2023-10-09",,"","Prediction phenotypes",0,,,"ERA","0","end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,, -1173,"[P] Low back pain 10","Low back pain 10","Low back pain","rao@ohdsi.org","Prediction","","First Low back pain continues until end of observation","#Prediction",1,"'Jenna Reps'","'0000-0002-2970-0778'","'Johnson and Johnson', 'OHDSI'","","","194133",,"2023-10-09","2023-10-09",,"","Prediction phenotypes",0,,,"ERA","0","end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,, -1174,"[P] neuropathy 10","neuropathy 10","neuropathy","rao@ohdsi.org","Prediction","","First neuropathy continues until end of observation","#Prediction",1,"'Jenna Reps'","'0000-0002-2970-0778'","'Johnson and Johnson', 'OHDSI'","","","4301699",,"2023-10-09","2023-10-09",,"","Prediction phenotypes",0,,,"ERA","0","end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,, -1175,"[P] Psychotic disorder 10","Psychotic disorder 10","Psychotic disorder","rao@ohdsi.org","Prediction","","First Psychotic disorder continues until end of observation","#Prediction",1,"'Jenna Reps'","'0000-0002-2970-0778'","'Johnson and Johnson', 'OHDSI'","","","436073",,"2023-10-09","2023-10-09",,"","Prediction phenotypes",0,,,"ERA","0","end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,, -1176,"[P] Sepsis 10","Sepsis 10","Sepsis","rao@ohdsi.org","Prediction","","First Sepsis record in 180 days continues for 7 days","#Prediction",1,"'Jenna Reps'","'0000-0002-2970-0778'","'Johnson and Johnson', 'OHDSI'","","","132797",,"2023-10-09","2023-10-09",,"","Prediction phenotypes",0,,,"ERA","0","fixed duration relative to initial event","EndDate",7,1,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -1177,"[P] Acute Respiratory failure 10","Acute Respiratory failure 10","Acute Respiratory failure","rao@ohdsi.org","Prediction","","First Acute Respiratory failure record in 365 days continues for 14 days","#Prediction",1,"'Jenna Reps'","'0000-0002-2970-0778'","'Johnson and Johnson', 'OHDSI'","","","319049",,"2023-10-09","2023-10-09",,"","Prediction phenotypes",0,,,"ERA","0","fixed duration relative to initial event","EndDate",14,1,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -1178,"[P] Gastroesophageal reflux disease 10","Gastroesophageal reflux disease 10","Gastroesophageal reflux disease","rao@ohdsi.org","Prediction","","First Gastroesophageal reflux disease continues until observation end","#Prediction",1,"'Jenna Reps'","'0000-0002-2970-0778'","'Johnson and Johnson', 'OHDSI'","","","318800",,"2023-10-09","2023-10-09",,"","Prediction phenotypes",0,,,"ERA","0","end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,, -1179,"[P] obesity 10","obesity 10","obesity","rao@ohdsi.org","Prediction","","First obesity measurement or condition or observation continues until end of observation","#Prediction",1,"'Jenna Reps'","'0000-0002-2970-0778'","'Johnson and Johnson', 'OHDSI'","","","433736",,"2023-10-09","2023-10-09",,"","Prediction phenotypes",0,,,"ERA","0","end of continuous observation",,,0,"First",FALSE,"All","First",5,3,"ConditionOccurrence, Measurement, Observation",0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,, -1180,"[P] Inflammatory Bowel Disease 10","Inflammatory Bowel Disease 10","Inflammatory Bowel Disease","rao@ohdsi.org","Prediction","","First Inflammatory Bowel Disease continues until end of observation","#Prediction",1,"'Jenna Reps'","'0000-0002-2970-0778'","'Johnson and Johnson', 'OHDSI'","","","201606",,"2023-10-09","2023-10-09",,"","Prediction phenotypes",0,,,"ERA","0","end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,, -1181,"[P] STEROIDS 10","STEROIDS 10","STEROIDS","rao@ohdsi.org","Prediction","","STEROIDS record with 60 day persistence","#Prediction",1,"'Jenna Reps'","'0000-0002-2970-0778'","'Johnson and Johnson', 'OHDSI'","","","1551099",,"2023-10-09","2023-10-09",,"","Prediction phenotypes",0,,,"ERA","0","end of continuous drug exposure",,,0,"All",FALSE,"All","All",1,1,"DrugExposure",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,1,,,,0,60,0, -1182,"[P] Opioids 10","Opioids 10","Opioids","rao@ohdsi.org","Prediction","","Opioids with 30 day persistence","#Prediction",1,"'Jenna Reps'","'0000-0002-2970-0778'","'Johnson and Johnson', 'OHDSI'","","","1174888",,"2023-10-09","2023-10-09",,"","Prediction phenotypes",0,,,"ERA","0","end of continuous drug exposure",,,0,"All",FALSE,"All","All",1,1,"DrugExposure",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,1,,,,0,30,0, -1183,"[P] ANTIEPILEPTICS 10","ANTIEPILEPTICS 10","ANTIEPILEPTICS","rao@ohdsi.org","Prediction","","ANTIEPILEPTICS exposure with 30 day persistence","#Prediction",1,"'Jenna Reps'","'0000-0002-2970-0778'","'Johnson and Johnson', 'OHDSI'","","","797399",,"2023-10-09","2023-10-09",,"","Prediction phenotypes",0,,,"ERA","0","end of continuous drug exposure",,,0,"All",FALSE,"All","All",1,1,"DrugExposure",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,1,,,,0,30,0, -1184,"[P] Osteoarthritis 10","Osteoarthritis 10","Osteoarthritis","rao@ohdsi.org","Prediction","","First Osteoarthritis continues until end of observation","#Prediction",1,"'Jenna Reps'","'0000-0002-2970-0778'","'Johnson and Johnson', 'OHDSI'","","","80180",,"2023-10-09","2023-10-09",,"","Prediction phenotypes",0,,,"ERA","0","end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,, -1185,"[P] Osteoporosis 10","Osteoporosis 10","Osteoporosis","rao@ohdsi.org","Prediction","","First Osteoporosis continues until end of observation","#Prediction",1,"'Jenna Reps'","'0000-0002-2970-0778'","'Johnson and Johnson', 'OHDSI'","","","80502",,"2023-10-09","2023-10-09",,"","Prediction phenotypes",0,,,"ERA","0","end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,, -1186,"[P] Urinary tract infectious 10","Urinary tract infectious 10","Urinary tract infectious","rao@ohdsi.org","Prediction","","First Urinary tract infectious record in 30 days continues for 1 day","#Prediction",1,"'Jenna Reps'","'0000-0002-2970-0778'","'Johnson and Johnson', 'OHDSI'","","","81902",,"2023-10-09","2023-10-09",,"","Prediction phenotypes",0,,,"ERA","0","fixed duration relative to initial event","StartDate",1,1,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -1187,"[P] acetaminophen exposure 10","acetaminophen exposure 10","acetaminophen exposure","rao@ohdsi.org","Prediction","","acetaminophen exposure with 30 day persistence window","#Prediction",1,"'Jenna Reps'","'0000-0002-2970-0778'","'Johnson and Johnson', 'OHDSI'","","","1125315",,"2023-10-09","2023-10-09",,"","Prediction phenotypes",0,,,"ERA","0","end of continuous drug exposure",,,0,"All",FALSE,"All","All",1,1,"DrugExposure",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,1,,,,0,30,0, -1188,"[P] Anemia 10","Anemia 10","Anemia","rao@ohdsi.org","Prediction","","Anemia record or measurement continues for 21 days unless normal measurement","#Prediction",1,"'Jenna Reps'","'0000-0002-2970-0778'","'Johnson and Johnson', 'OHDSI'","","","4144746",,"2023-10-09","2023-10-09",,"","Prediction phenotypes",0,,,"ERA","365","fixed duration relative to initial event","StartDate",21,3,"All",FALSE,"All","All",3,2,"ConditionOccurrence, Measurement",0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -1189,"[P] Anxiety 10","Anxiety 10","Anxiety","rao@ohdsi.org","Prediction","","First Anxiety continues until end of observation","#Prediction",1,"'Jenna Reps'","'0000-0002-2970-0778'","'Johnson and Johnson', 'OHDSI'","","","441542",,"2023-10-09","2023-10-09",,"","Prediction phenotypes",0,,,"ERA","0","end of continuous observation",,,0,"First",FALSE,"All","First",2,2,"ConditionOccurrence, Observation",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,, -1190,"[P] HORMONAL CONTRACEPTIVES 10","HORMONAL CONTRACEPTIVES 10","HORMONAL CONTRACEPTIVES","rao@ohdsi.org","Prediction","","HORMONAL CONTRACEPTIVES with 30 day persistence window","#Prediction",1,"'Jenna Reps'","'0000-0002-2970-0778'","'Johnson and Johnson', 'OHDSI'","","","21602473",,"2023-10-09","2023-10-09",,"","Prediction phenotypes",0,,,"ERA","0","end of continuous drug exposure",,,0,"All",FALSE,"All","All",1,1,"DrugExposure",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,1,,,,0,30,0, -1191,"[P] Chronic kidney disease or end stage renal disease 10","Chronic kidney disease or end stage renal disease 10","Chronic kidney disease or end stage renal disease","rao@ohdsi.org","Prediction","","First chronic kidney disease or end stage renal disease continues until observation end","#Prediction",1,"'Jenna Reps'","'0000-0002-2970-0778'","'Johnson and Johnson', 'OHDSI'","","","46271022",,"2023-10-09","2023-10-09",,"","Prediction phenotypes",0,,,"ERA","0","end of continuous observation",,,0,"First",FALSE,"All","First",5,3,"ConditionOccurrence, Observation, ProcedureOccurrence",0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,1,,,,, -1192,"[P] Chronic obstructive pulmonary disease (COPD) 10","Chronic obstructive pulmonary disease (COPD) 10","Chronic obstructive pulmonary disease (COPD)","rao@ohdsi.org","Prediction","","First chronic obstructive pulmonary disease (COPD) continues until observation end","#Prediction",1,"'Jenna Reps'","'0000-0002-2970-0778'","'Johnson and Johnson', 'OHDSI'","","","255573",,"2023-10-09","2023-10-09",,"","Prediction phenotypes",0,,,"ERA","0","end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,, -1193,"[P] Type 1 diabetes and no prior specific nonT1DM diabetes 10","Type 1 diabetes and no prior specific nonT1DM diabetes 10","Type 1 diabetes and no prior specific nonT1DM diabetes","rao@ohdsi.org","Prediction","","Earliest Type 1 diabetes with no prior type 2 or secondary diabetes continues until end of observation.","#Prediction",1,"'Jenna Reps'","'0000-0002-2970-0778'","'Johnson and Johnson', 'OHDSI'","","","201254",,"2023-10-09","2023-10-09",,"","Prediction phenotypes",0,,,"ERA","0","end of continuous observation",,,2,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,, -1194,"[P] Type 2 Diabetes Mellitus with no type 1 or secondary DM 10","Type 2 Diabetes Mellitus with no type 1 or secondary DM 10","Type 2 Diabetes Mellitus with no type 1 or secondary DM","rao@ohdsi.org","Prediction","","Earliest Type 2 diabetes with no prior type 1 or secondary diabetes continues until end of observation.","#Prediction",1,"'Jenna Reps'","'0000-0002-2970-0778'","'Johnson and Johnson', 'OHDSI'","","","201820",,"2023-10-09","2023-10-09",,"","Prediction phenotypes",0,,,"ERA","0","end of continuous observation",,,2,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,, -1195,"[P] Dyspnea 10","Dyspnea 10","Dyspnea","rao@ohdsi.org","Prediction","","All events of Dyspnea with no Dyspnea in prior 30 days","#Prediction",1,"'Jenna Reps'","'0000-0002-2970-0778'","'Johnson and Johnson', 'OHDSI'","","","312437",,"2023-10-09","2023-10-09",,"","Prediction phenotypes",0,,,"ERA","0","fixed duration relative to initial event","EndDate",0,1,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -1196,"[P] Edema 10","Edema 10","Edema","rao@ohdsi.org","Prediction","","All events of Edema with no Edemain prior 30 days and cohort ends 3 days after index.","#Prediction",1,"'Jenna Reps'","'0000-0002-2970-0778'","'Johnson and Johnson', 'OHDSI'","","","433595",,"2023-10-09","2023-10-09",,"","Prediction phenotypes",0,,,"ERA","0","fixed duration relative to initial event","StartDate",3,1,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -1197,"[P] Acute gastrointestinal bleeding 10","Acute gastrointestinal bleeding 10","Acute gastrointestinal bleeding","rao@ohdsi.org","Prediction","","First gastrointestinal bleed in 45 days continues for 7 days","#Prediction",1,"'Jenna Reps'","'0000-0002-2970-0778'","'Johnson and Johnson', 'OHDSI'","","","192671",,"2023-10-09","2023-10-09",,"","Prediction phenotypes",0,,,"ERA","0","fixed duration relative to initial event","StartDate",7,1,"All",FALSE,"All","All",2,2,"ConditionOccurrence, ProcedureOccurrence",0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,1,,,,, -1198,"[P] Hypertension 10","Hypertension 10","Hypertension","rao@ohdsi.org","Prediction","","First Hypertension continues until end of observation","#Prediction",1,"'Jenna Reps'","'0000-0002-2970-0778'","'Johnson and Johnson', 'OHDSI'","","","316866",,"2023-10-09","2023-10-09",,"","Prediction phenotypes",0,,,"ERA","0","end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,, -1199,"[P] Pneumonia 10","Pneumonia 10","Pneumonia","rao@ohdsi.org","Prediction","","First Pneumonia record in 180 days continues until for 30 days","#Prediction",1,"'Jenna Reps'","'0000-0002-2970-0778'","'Johnson and Johnson', 'OHDSI'","","","255848",,"2023-10-09","2023-10-09",,"","Prediction phenotypes",0,,,"ERA","0","fixed duration relative to initial event","EndDate",30,1,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -1200,"[P] Rheumatoid Arthritis 10","Rheumatoid Arthritis 10","Rheumatoid Arthritis","rao@ohdsi.org","Prediction","","First Rheumatoid Arthritis record continues until end of observation","#Prediction",1,"'Jenna Reps'","'0000-0002-2970-0778'","'Johnson and Johnson', 'OHDSI'","","","80809",,"2023-10-09","2023-10-09",,"","Prediction phenotypes",0,,,"ERA","0","end of continuous observation",,,0,"First",FALSE,"All","First",2,2,"ConditionOccurrence, Observation",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,, -1201,"[P] Antibiotics Aminoglycosides 10","Antibiotics Aminoglycosides 10","Antibiotics Aminoglycosides","rao@ohdsi.org","Prediction","","any Antibiotics Aminoglycosides with 30 day persistence","#Prediction",1,"'Jenna Reps'","'0000-0002-2970-0778'","'Johnson and Johnson', 'OHDSI'","","","915981",,"2023-10-09","2023-10-09",,"","Prediction phenotypes",0,,,"ERA","0","end of continuous drug exposure",,,0,"All",FALSE,"All","All",1,1,"DrugExposure",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,1,,,,0,30,0, -1202,"[P] Antibiotics Carbapenems 10","Antibiotics Carbapenems 10","Antibiotics Carbapenems","rao@ohdsi.org","Prediction","","any Antibiotics Carbapenems with 30 day persistence","#Prediction",1,"'Jenna Reps'","'0000-0002-2970-0778'","'Johnson and Johnson', 'OHDSI'","","","1709170",,"2023-10-09","2023-10-09",,"","Prediction phenotypes",0,,,"ERA","0","end of continuous drug exposure",,,0,"All",FALSE,"All","All",1,1,"DrugExposure",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,1,,,,0,30,0, -1203,"[P] Antibiotics Cephalosporins 10","Antibiotics Cephalosporins 10","Antibiotics Cephalosporins","rao@ohdsi.org","Prediction","","any Antibiotics Cephalosporins with 30 day persistence","#Prediction",1,"'Jenna Reps'","'0000-0002-2970-0778'","'Johnson and Johnson', 'OHDSI'","","","1786621",,"2023-10-09","2023-10-09",,"","Prediction phenotypes",0,,,"ERA","0","end of continuous drug exposure",,,0,"All",FALSE,"All","All",1,1,"DrugExposure",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,1,,,,0,30,0, -1204,"[P] Antibiotics Fluoroquinolones 10","Antibiotics Fluoroquinolones 10","Antibiotics Fluoroquinolones","rao@ohdsi.org","Prediction","","any Antibiotics Fluoroquinolones with 30 day persistence","#Prediction",1,"'Jenna Reps'","'0000-0002-2970-0778'","'Johnson and Johnson', 'OHDSI'","","","1797513",,"2023-10-09","2023-10-09",,"","Prediction phenotypes",0,,,"ERA","0","end of continuous drug exposure",,,0,"All",FALSE,"All","All",1,1,"DrugExposure",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,1,,,,0,30,0, -1205,"[P] Antibiotics Glycopeptides and lipoglycopeptides 10","Antibiotics Glycopeptides and lipoglycopeptides 10","Antibiotics Glycopeptides and lipoglycopeptides","rao@ohdsi.org","Prediction","","any Antibiotics Glycopeptides and lipoglycopeptides with 30 day persistence","#Prediction",1,"'Jenna Reps'","'0000-0002-2970-0778'","'Johnson and Johnson', 'OHDSI'","","","1707687",,"2023-10-09","2023-10-09",,"","Prediction phenotypes",0,,,"ERA","0","end of continuous drug exposure",,,0,"All",FALSE,"All","All",1,1,"DrugExposure",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,1,,,,0,30,0, -1206,"[P] Antibiotics Macrolides 10","Antibiotics Macrolides 10","Antibiotics Macrolides","rao@ohdsi.org","Prediction","","any Antibiotics Macrolides with 30 day persistence","#Prediction",1,"'Jenna Reps'","'0000-0002-2970-0778'","'Johnson and Johnson', 'OHDSI'","","","1734104",,"2023-10-09","2023-10-09",,"","Prediction phenotypes",0,,,"ERA","0","end of continuous drug exposure",,,0,"All",FALSE,"All","All",1,1,"DrugExposure",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,1,,,,0,30,0, -1207,"[P] Antibiotics Monobactams 10","Antibiotics Monobactams 10","Antibiotics Monobactams","rao@ohdsi.org","Prediction","","any Antibiotics Monobactams with 30 day persistence","#Prediction",1,"'Jenna Reps'","'0000-0002-2970-0778'","'Johnson and Johnson', 'OHDSI'","","","1715117",,"2023-10-09","2023-10-09",,"","Prediction phenotypes",0,,,"ERA","0","end of continuous drug exposure",,,0,"All",FALSE,"All","All",1,1,"DrugExposure",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,1,,,,0,30,0, -1208,"[P] Antibiotics Oxazolidinones 10","Antibiotics Oxazolidinones 10","Antibiotics Oxazolidinones","rao@ohdsi.org","Prediction","","any Antibiotics Oxazolidinones with 30 day persistence","#Prediction",1,"'Jenna Reps'","'0000-0002-2970-0778'","'Johnson and Johnson', 'OHDSI'","","","1736887",,"2023-10-09","2023-10-09",,"","Prediction phenotypes",0,,,"ERA","0","end of continuous drug exposure",,,0,"All",FALSE,"All","All",1,1,"DrugExposure",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,1,,,,0,30,0, -1209,"[P] Antibiotics Penicillins 10","Antibiotics Penicillins 10","Antibiotics Penicillins","rao@ohdsi.org","Prediction","","any Antibiotics Penicillins with 30 day persistence","#Prediction",1,"'Jenna Reps'","'0000-0002-2970-0778'","'Johnson and Johnson', 'OHDSI'","","","1713332",,"2023-10-09","2023-10-09",,"","Prediction phenotypes",0,,,"ERA","0","end of continuous drug exposure",,,0,"All",FALSE,"All","All",1,1,"DrugExposure",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,1,,,,0,30,0, -1210,"[P] Antibiotics Polypeptides 10","Antibiotics Polypeptides 10","Antibiotics Polypeptides","rao@ohdsi.org","Prediction","","any Antibiotics Polypeptides with 30 day persistence","#Prediction",1,"'Jenna Reps'","'0000-0002-2970-0778'","'Johnson and Johnson', 'OHDSI'","","","948582",,"2023-10-09","2023-10-09",,"","Prediction phenotypes",0,,,"ERA","0","end of continuous drug exposure",,,0,"All",FALSE,"All","All",1,1,"DrugExposure",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,1,,,,0,30,0, -1211,"[P] Antibiotics Rifamycins 10","Antibiotics Rifamycins 10","Antibiotics Rifamycins","rao@ohdsi.org","Prediction","","any Antibiotics Rifamycins with 30 day persistence","#Prediction",1,"'Jenna Reps'","'0000-0002-2970-0778'","'Johnson and Johnson', 'OHDSI'","","","1735947",,"2023-10-09","2023-10-09",,"","Prediction phenotypes",0,,,"ERA","0","end of continuous drug exposure",,,0,"All",FALSE,"All","All",1,1,"DrugExposure",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,1,,,,1,30,0, -1212,"[P] Antibiotics Sulfonamides 10","Antibiotics Sulfonamides 10","Antibiotics Sulfonamides","rao@ohdsi.org","Prediction","","any Antibiotics Sulfonamides with 30 day persistence","#Prediction",1,"'Jenna Reps'","'0000-0002-2970-0778'","'Johnson and Johnson', 'OHDSI'","","","1836430",,"2023-10-09","2023-10-09",,"","Prediction phenotypes",0,,,"ERA","0","end of continuous drug exposure",,,0,"All",FALSE,"All","All",1,1,"DrugExposure",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,1,,,,2,30,0, -1213,"[P] Antibiotics Streptogramins 10","Antibiotics Streptogramins 10","Antibiotics Streptogramins","rao@ohdsi.org","Prediction","","any Antibiotics Streptogramins with 30 day persistence","#Prediction",1,"'Jenna Reps'","'0000-0002-2970-0778'","'Johnson and Johnson', 'OHDSI'","","","1789517",,"2023-10-09","2023-10-09",,"","Prediction phenotypes",0,,,"ERA","0","end of continuous drug exposure",,,0,"All",FALSE,"All","All",1,1,"DrugExposure",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,1,,,,3,30,0, -1214,"[P] Antibiotics Tetracyclines 10","Antibiotics Tetracyclines 10","Antibiotics Tetracyclines","rao@ohdsi.org","Prediction","","any Antibiotics Tetracyclines with 30 day persistence","#Prediction",1,"'Jenna Reps'","'0000-0002-2970-0778'","'Johnson and Johnson', 'OHDSI'","","","1738521",,"2023-10-09","2023-10-09",,"","Prediction phenotypes",0,,,"ERA","0","end of continuous drug exposure",,,0,"All",FALSE,"All","All",1,1,"DrugExposure",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,1,,,,4,30,0, -1215,"[P] Any cancer (excl. prostate cancer and benign cancer) 10","Any cancer (excl. prostate cancer and benign cancer) 10","Any cancer (excl. prostate cancer and benign cancer)","rao@ohdsi.org","Prediction","","First cancer (excluding prostate and benign) continues until end of observation","#Prediction",1,"'Jenna Reps'","'0000-0002-2970-0778'","'Johnson and Johnson', 'OHDSI'","","","438112",,"2023-10-09","2023-10-09",,"","Prediction phenotypes",0,,,"ERA","0","end of continuous observation",,,0,"First",FALSE,"All","First",4,3,"ConditionOccurrence, Measurement, Observation",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,,,,,,,,,, -1217,"[P] Platinum based chemotherapy regimens","Platinum based chemotherapy regimens","Platinum based chemotherapy regimens","rao@ohdsi.org","Pending peer review","","Events of platinum based chemotherapy with 60 days of surveillance because most cycles of every 4 weeks","",1,"'Gowtham A. Rao'","'0000-0002-4949-7236'","'OHDSI'","","","","","2023-10-09","2023-11-30",,"",,0,,,"ERA","0","end of continuous drug exposure",,,0,"All",FALSE,"All","All",1,1,"DrugExposure",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,1,,,,0,60,0, -1219,"[P] Hyperlipidemia","Hyperlipidemia","Hyperlipidemia","ryan@ohdsi.org","Pending peer review","","Earliest event of hyperlipidemia","",1,"Patrick Ryan","","'OHDSI'","","","432867","","2023-10-16","2023-11-29",,"",,0,,,"ERA","0","end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,, -1220,"[P] Hypoparathyroidism","Hypoparathyroidism","Hypoparathyroidism","ryan@ohdsi.org","Pending peer review","","Earliest event of hypoparathyroidism","",1,"Patrick Ryan","","'OHDSI'","","","140362","","2023-10-16","2023-10-16",,"",,0,,,"ERA","0","end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,, -1221,"[P] Osteoporosis","Osteoporosis","Osteoporosis","ryan@ohdsi.org","Pending peer review","","Earliest event of Osteoporosis","",1,"Patrick Ryan","","'OHDSI'","","","80502","","2023-10-16","2023-10-16",,"",,0,,,"ERA","0","end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,, -1222,"[P] Viral hepatitis type A","Viral hepatitis type A","Viral Hepatitis A","ryan@ohdsi.org","Pending peer review","","Earliest event of Viral Hepatitis A","",1,"Patrick Ryan","","'OHDSI'","","","4223947","","2023-10-16","2023-10-16",,"",,0,,,"ERA","0","end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,, -1223,"[P] Birdshot chorioretinitis","Birdshot chorioretinitis","Birdshot chorioretinitis","rao@ohdsi.org","Pending peer review","","","#Opthalmology, #OhdsiWorkGroup",1,"'Edward Lee','Kiana Tavakoli', 'Rupesh Agrawal','William Rojas Carabali','Karen Armbrust','Kareem Moussa','Jessica Shantha','Edmund Tsui','Brian Toy'","'','0000-0003-1883-9018','0000-0002-6662-5850','0000-0002-9976-8989','0000-0001-9381-4756','0000-0001-9110-9594','0000-0002-4449-8598','0000-0001-7532-9191','0000-0002-9612-5697'","'Roski Eye Institute, Keck School of Medicine, USC','Shiley Eye Institute, University of California San Diego','National Healthcare Group Eye Institute, Tan Tock Seng Hospital, Singapore','Lee Kong Chian School of Medicine, Nanyang Technological University, Singapore','Minneapolis VA Health Care System, University of Minnesota','Department of Ophthalmology & Vision Science, University of California, Davis','F.I. Proctor Foundation, University of California, San Francisco','UCLA Stein Eye Institute, David Geffen School of Medicine at UCLA','Roski Eye Institute, Keck School of Medicine, USC'","","","436100",,"2023-10-17","2023-10-17",,"",,0,,,"ERA","0","end of continuous observation",,,3,"First",FALSE,"All","First",2,2,"ConditionOccurrence, Measurement",0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,, -1224,"[P] CMV Anterior Uveitis (sensitivity analysis)","CMV Anterior Uveitis (sensitivity analysis)","CMV Anterior Uveitis sensitivite","rao@ohdsi.org","Pending peer review","","","#Opthalmology, #OhdsiWorkGroup",1,"'Edward Lee','Kiana Tavakoli', 'Rupesh Agrawal','William Rojas Carabali','Karen Armbrust','Kareem Moussa','Jessica Shantha','Edmund Tsui','Brian Toy'","'','0000-0003-1883-9018','0000-0002-6662-5850','0000-0002-9976-8989','0000-0001-9381-4756','0000-0001-9110-9594','0000-0002-4449-8598','0000-0001-7532-9191','0000-0002-9612-5697'","'Roski Eye Institute, Keck School of Medicine, USC','Shiley Eye Institute, University of California San Diego','National Healthcare Group Eye Institute, Tan Tock Seng Hospital, Singapore','Lee Kong Chian School of Medicine, Nanyang Technological University, Singapore','Minneapolis VA Health Care System, University of Minnesota','Department of Ophthalmology & Vision Science, University of California, Davis','F.I. Proctor Foundation, University of California, San Francisco','UCLA Stein Eye Institute, David Geffen School of Medicine at UCLA','Roski Eye Institute, Keck School of Medicine, USC'","","","436100",,"2023-10-18","2023-10-19",,"",,0,,,"ERA","0","end of continuous observation",,,6,"First",FALSE,"All","First",5,3,"ConditionOccurrence, Measurement, Observation",0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,, -1225,"[P] VZV Anterior Uveitis (SUN)","VZV Anterior Uveitis (SUN)","VZV Anterior Uveitis (SUN)","rao@ohdsi.org","Pending peer review","","","#Opthalmology, #OhdsiWorkGroup",1,"'Edward Lee','Kiana Tavakoli', 'Rupesh Agrawal','William Rojas Carabali','Karen Armbrust','Kareem Moussa','Jessica Shantha','Edmund Tsui','Brian Toy'","'','0000-0003-1883-9018','0000-0002-6662-5850','0000-0002-9976-8989','0000-0001-9381-4756','0000-0001-9110-9594','0000-0002-4449-8598','0000-0001-7532-9191','0000-0002-9612-5697'","'Roski Eye Institute, Keck School of Medicine, USC','Shiley Eye Institute, University of California San Diego','National Healthcare Group Eye Institute, Tan Tock Seng Hospital, Singapore','Lee Kong Chian School of Medicine, Nanyang Technological University, Singapore','Minneapolis VA Health Care System, University of Minnesota','Department of Ophthalmology & Vision Science, University of California, Davis','F.I. Proctor Foundation, University of California, San Francisco','UCLA Stein Eye Institute, David Geffen School of Medicine at UCLA','Roski Eye Institute, Keck School of Medicine, USC'","","","436100",,"2023-10-19","2023-10-19",,"",,0,,,"ERA","0","end of continuous observation",,,7,"First",FALSE,"All","First",5,3,"ConditionOccurrence, Measurement, Observation",0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,, -1226,"[P] VZV Anterior Uveitis (SUN) sensitive","VZV Anterior Uveitis (SUN) sensitive","VZV Anterior Uveitis (SUN) sensitive","rao@ohdsi.org","Pending peer review","","","#Opthalmology, #OhdsiWorkGroup",1,"'Edward Lee','Kiana Tavakoli', 'Rupesh Agrawal','William Rojas Carabali','Karen Armbrust','Kareem Moussa','Jessica Shantha','Edmund Tsui','Brian Toy'","'','0000-0003-1883-9018','0000-0002-6662-5850','0000-0002-9976-8989','0000-0001-9381-4756','0000-0001-9110-9594','0000-0002-4449-8598','0000-0001-7532-9191','0000-0002-9612-5697'","'Roski Eye Institute, Keck School of Medicine, USC','Shiley Eye Institute, University of California San Diego','National Healthcare Group Eye Institute, Tan Tock Seng Hospital, Singapore','Lee Kong Chian School of Medicine, Nanyang Technological University, Singapore','Minneapolis VA Health Care System, University of Minnesota','Department of Ophthalmology & Vision Science, University of California, Davis','F.I. Proctor Foundation, University of California, San Francisco','UCLA Stein Eye Institute, David Geffen School of Medicine at UCLA','Roski Eye Institute, Keck School of Medicine, USC'","","","436100",,"2023-10-19","2023-10-19",,"",,0,,,"ERA","0","end of continuous observation",,,7,"First",FALSE,"All","First",5,3,"ConditionOccurrence, Measurement, Observation",0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,, -1227,"[P] HSV Anterior Uveitis (SUN)","HSV Anterior Uveitis (SUN)","HSV Anterior Uveitis (SUN)","rao@ohdsi.org","Pending peer review","","","#Opthalmology, #OhdsiWorkGroup",1,"'Edward Lee','Kiana Tavakoli', 'Rupesh Agrawal','William Rojas Carabali','Karen Armbrust','Kareem Moussa','Jessica Shantha','Edmund Tsui','Brian Toy'","'','0000-0003-1883-9018','0000-0002-6662-5850','0000-0002-9976-8989','0000-0001-9381-4756','0000-0001-9110-9594','0000-0002-4449-8598','0000-0001-7532-9191','0000-0002-9612-5697'","'Roski Eye Institute, Keck School of Medicine, USC','Shiley Eye Institute, University of California San Diego','National Healthcare Group Eye Institute, Tan Tock Seng Hospital, Singapore','Lee Kong Chian School of Medicine, Nanyang Technological University, Singapore','Minneapolis VA Health Care System, University of Minnesota','Department of Ophthalmology & Vision Science, University of California, Davis','F.I. Proctor Foundation, University of California, San Francisco','UCLA Stein Eye Institute, David Geffen School of Medicine at UCLA','Roski Eye Institute, Keck School of Medicine, USC'","","","436100",,"2023-10-19","2023-10-19",,"",,0,,,"ERA","0","end of continuous observation",,,8,"All",FALSE,"All","First",5,3,"ConditionOccurrence, Measurement, Observation",0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,, -1228,"[P] HSV Anterior Uveitis (SUN) sensitive","HSV Anterior Uveitis (SUN) sensitive","HSV Anterior Uveitis (SUN) sensitive","rao@ohdsi.org","Pending peer review","","","#Opthalmology, #OhdsiWorkGroup",1,"'Edward Lee','Kiana Tavakoli', 'Rupesh Agrawal','William Rojas Carabali','Karen Armbrust','Kareem Moussa','Jessica Shantha','Edmund Tsui','Brian Toy'","'','0000-0003-1883-9018','0000-0002-6662-5850','0000-0002-9976-8989','0000-0001-9381-4756','0000-0001-9110-9594','0000-0002-4449-8598','0000-0001-7532-9191','0000-0002-9612-5697'","'Roski Eye Institute, Keck School of Medicine, USC','Shiley Eye Institute, University of California San Diego','National Healthcare Group Eye Institute, Tan Tock Seng Hospital, Singapore','Lee Kong Chian School of Medicine, Nanyang Technological University, Singapore','Minneapolis VA Health Care System, University of Minnesota','Department of Ophthalmology & Vision Science, University of California, Davis','F.I. Proctor Foundation, University of California, San Francisco','UCLA Stein Eye Institute, David Geffen School of Medicine at UCLA','Roski Eye Institute, Keck School of Medicine, USC'","","","436100",,"2023-10-19","2023-10-19",,"",,0,,,"ERA","0","end of continuous observation",,,8,"All",FALSE,"All","First",5,3,"ConditionOccurrence, Measurement, Observation",0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,, -1229,"[P] Behcet Uveitis (SUN)","Behcet Uveitis (SUN)","Behcet Uveitis (SUN)","rao@ohdsi.org","Pending peer review","","","#Opthalmology, #OhdsiWorkGroup",1,"'Edward Lee','Kiana Tavakoli', 'Rupesh Agrawal','William Rojas Carabali','Karen Armbrust','Kareem Moussa','Jessica Shantha','Edmund Tsui','Brian Toy'","'','0000-0003-1883-9018','0000-0002-6662-5850','0000-0002-9976-8989','0000-0001-9381-4756','0000-0001-9110-9594','0000-0002-4449-8598','0000-0001-7532-9191','0000-0002-9612-5697'","'Roski Eye Institute, Keck School of Medicine, USC','Shiley Eye Institute, University of California San Diego','National Healthcare Group Eye Institute, Tan Tock Seng Hospital, Singapore','Lee Kong Chian School of Medicine, Nanyang Technological University, Singapore','Minneapolis VA Health Care System, University of Minnesota','Department of Ophthalmology & Vision Science, University of California, Davis','F.I. Proctor Foundation, University of California, San Francisco','UCLA Stein Eye Institute, David Geffen School of Medicine at UCLA','Roski Eye Institute, Keck School of Medicine, USC'","","","436100",,"2023-10-19","2023-10-19",,"",,0,,,"ERA","0","end of continuous observation",,,5,"All",FALSE,"All","First",7,2,"ConditionOccurrence, Measurement",0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,, -1231,"[P] Sickle Cell Crisis","Sickle Cell Crisis","Sickle Cell Crisis","rao@ohdsi.org","Pending peer review","","First occurrence of Sickle Cell Crisis","#epi1073",1,"'Gowtham a rao'","'0000-0002-4949-7236'","'OHDSI'","","","4216915","","2023-10-19","2023-10-19",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",3,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -1244,"[P] Non Platinum chemotherapy regimen","Non Platinum chemotherapy regimen","Non Platinum chemotherapy regimen","rao@ohdsi.org","Pending peer review","","Events of non platinum based chemotherapy with 60 days of surveillance because most cycles of every 4 weeks","",1,"'Gowtham A. Rao'","'0000-0002-4949-7236'","'OHDSI'","","","","","2023-11-30","2023-11-30",,"",,0,,,"ERA","0","end of continuous drug exposure",,,0,"All",FALSE,"All","All",1,1,"DrugExposure",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,1,,,,0,60,0, -1261,"[P] Acute Typical Pneumonia","Acute Typical Pneumonia","Acute Typical Pneumonia","rao@ohdsi.org","Pending peer review","","Acute Typical Pneumonia","#respiratory, #lung",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","0","255848, 4318404","","2024-01-05","2024-01-05",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",30,1,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -1262,"[P] Asthma or Chronic obstructive pulmonary disease (COPD)","Asthma or Chronic obstructive pulmonary disease (COPD)","Asthma or Chronic obstructive pulmonary disease (COPD)","rao@ohdsi.org","Pending peer review","","Asthma or Chronic obstructive pulmonary disease (COPD)","#respiratory, #lung",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","0","255573, 317009","","2024-01-05","2024-01-05",,"",,0,,,"ERA","0","end of continuous observation",,,0,"First",FALSE,"All","First",2,1,"ConditionOccurrence",0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,, -1263,"[P] Chronic obstructive pulmonary disease (COPD) without asthma","Chronic obstructive pulmonary disease (COPD) without asthma","Chronic obstructive pulmonary disease (COPD) without asthma","rao@ohdsi.org","Pending peer review","","Chronic obstructive pulmonary disease (COPD) without asthma","#respiratory, #lung",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","0","255573","","2024-01-05","2024-01-05",,"",,0,,,"ERA","0","end of continuous observation",,,1,"First",FALSE,"All","First",3,2,"ConditionOccurrence, DrugExposure",0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,1,,,,,,, -1264,"[P] Pneumonitis and lung infections","Pneumonitis and lung infections","Pneumonitis and lung infections","rao@ohdsi.org","Pending peer review","","Pneumonitis and lung infections","#respiratory, #lung",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","0","253506, 255848",,"2024-01-05","2024-01-05",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",30,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -1265,"[P] Pulmonary hypertension associated with lung diseases and or hypoxia (WHO Group 3)","Pulmonary hypertension associated with lung diseases and or hypoxia (WHO Group 3)","Pulmonary hypertension associated with lung diseases and/or hypoxia (WHO Group 3)","rao@ohdsi.org","Pending peer review","","Pulmonary hypertension associated with lung diseases and or hypoxia (WHO Group 3)","",1,"'Joel N. Swerdel'","'0000-0001-9491-2737'","'OHDSI'","","0","4322024","","2024-01-05","2024-01-05",,"",,0,,,"ERA","0","end of continuous observation",,,2,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,, -1266,"[P] Non-small cell lung cancer (NSCLC) for first time using ICD0","Non-small cell lung cancer (NSCLC) for first time using ICD0","Non-small cell lung cancer (NSCLC)","rao@ohdsi.org","Pending peer review","","Non-small cell lung cancer (NSCLC) for first time using ICD0","",1,"'Asieh Golozar', 'Vlad Korsik'","'0000-0002-4243-155X'","","","0","439676, 37311061","","2024-01-05","2024-01-05",,"",,0,,,"ERA","0","end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",365,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,,,,,,,,,,, -1267,"[P] Lung cancer using ICD0","Lung cancer using ICD0","Lung cancer","rao@ohdsi.org","Pending peer review","","Lung cancer using ICD0","",1,"'Asieh Golozar'","'0000-0002-4243-155X'","","","0","439676, 37311061","","2024-01-05","2024-01-05",,"",,0,,,"ERA","0","end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",365,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,,,,,,,,,,, -1268,"[P] Lung Resection, adults, inpt stay, no ED, post op new Afib","Lung Resection, adults, inpt stay, no ED, post op new Afib","Lung Resection, adults, inpt stay, no ED, post op new Afib","rao@ohdsi.org","Pending peer review","","Lung Resection - post op new Afib (any)","#Surgery, #WorkGroup",1,"Evan Minty","0000-0003-4631-9992","'OHDSI'","","0","","","2024-01-05","2024-01-05",,"",,0,,,"ERA","0","end of continuous observation",,,4,"First",FALSE,"All","First",2,1,"ProcedureOccurrence",0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,1,,,,, -1269,"[P] Pulmonary fibrosis","Pulmonary fibrosis","Pulmonary fibrosis","rao@ohdsi.org","Pending peer review","","Pulmonary fibrosis","#Condition, #respiratory, #lung",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","0","4197819","","2024-01-05","2024-01-05",,"",,0,,,"ERA","0","end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,, -1270,"[P] History of Bladder cancer","History of Bladder cancer","Bladder cancer including history","rao@ohdsi.org","Pending","","History of Bladder cancer","",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","0","197508","","2024-01-05","2024-01-05",,"",,0,,,"ERA","0","end of continuous observation",,,0,"First",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,, -1271,"[P] Chronic obstructive pulmonary disease (COPD)","Chronic obstructive pulmonary disease (COPD)","Chronic obstructive pulmonary disease (COPD)","rao@ohdsi.org","Pending peer review","","Chronic obstructive pulmonary disease (COPD)","#respiratory, #lung",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","0","255573","","2024-01-05","2024-01-05",,"",,0,,,"ERA","0","end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,, -1272,"[P] Chronic Interstitial lung disease (ILD)","Chronic Interstitial lung disease (ILD)","Chronic Interstitial lung disease (ILD) not including Acute Respiratory Distress Syndrome","rao@ohdsi.org","Pending peer review","","Chronic Interstitial lung disease (ILD)","#respiratory, #lung",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","0","4119786","","2024-01-05","2024-01-05",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",365,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -1273,"[P] Lung Nodule","Lung Nodule","Lung Nodule","rao@ohdsi.org","Pending peer review","","Lung Nodule","#respiratory, #lung",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","0","37206719","","2024-01-05","2024-01-05",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",730,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -1274,"[P] Lung Nodule - solitary","Lung Nodule - solitary","Lung Nodule - solitary","rao@ohdsi.org","Pending peer review","","Lung Nodule - solitary","#respiratory, #lung",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","0","37206719,4142875","","2024-01-05","2024-01-05",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",730,1,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -1275,"[P] Lung Nodule - multiple","Lung Nodule - multiple","Lung Nodule - multiple","rao@ohdsi.org","Pending peer review","","Lung Nodule - multiple","#respiratory, #lung",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","0","37206719,40482871","","2024-01-05","2024-01-05",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",730,1,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -1276,"[P] Lung Mass (not acute, necrotic, atlectatic, abscess, fibrosis)","Lung Mass (not acute, necrotic, atlectatic, abscess, fibrosis)","Lung Mass (not acute, necrotic, atlectatic, abscess, fibrosis)","rao@ohdsi.org","Pending peer review","","Lung Mass (not acute, necrotic, atlectatic, abscess, fibrosis)","#respiratory, #lung",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","0","37206719","","2024-01-05","2024-01-05",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",730,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -1277,"[P] Lung Lesion (not acute, necrotic, atlectatic, abscess, fibrosis)","Lung Lesion (not acute, necrotic, atlectatic, abscess, fibrosis)","Lung Lesion that is not acute, necrotic, atlectatic, abscess, fibrosis","rao@ohdsi.org","Pending peer review","","Lung Lesion (not acute, necrotic, atlectatic, abscess, fibrosis)","#respiratory, #lung",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","0","4116778,37206719","","2024-01-05","2024-01-05",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",730,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -1278,"[P] Non Small Cell Lung Cancer (Stage 3)","Non Small Cell Lung Cancer (Stage 3)","Stage 3 Non Small Cell Lung Cancer (NSCLC), indexed on lung abnormaility with no evidence of SCLC and had follow-up for NSCLC","rao@ohdsi.org","Pending peer review","","Non Small Cell Lung Cancer (Stage 3)","#respiratory, #lung",1,"'Dmytro Dymshyts', 'Gowtham A. Rao'","'','0000-0002-4949-7236'","'OHDSI'","","0","37206719,4311499","","2024-01-05","2024-01-05",,"",,0,,,"ERA","0","end of continuous observation",,,15,"All",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,, -1279,"[P] Non Small Cell Lung Cancer","Non Small Cell Lung Cancer","Non Small Cell Lung Cancer (NSCLC), indexed on lung abnormaility with no evidence of SCLC and had follow-up for NSCLC","rao@ohdsi.org","Pending peer review","","Non Small Cell Lung Cancer","#respiratory, #lung",1,"'Dmytro Dymshyts', 'Gowtham A. Rao'","'','0000-0002-4949-7236'","'OHDSI'","","0","37206719,4311499","","2024-01-05","2024-01-05",,"",,0,,,"ERA","0","end of continuous observation",,,4,"All",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,, -1280,"[P] Small Cell Lung Cancer","Small Cell Lung Cancer","Small Cell Lung Cancer","rao@ohdsi.org","Pending peer review","","Small Cell Lung Cancer","#respiratory, #lung",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","0","37206719","","2024-01-05","2024-01-05",,"",,0,,,"ERA","0","end of continuous observation",,,0,"All",FALSE,"All","First",2,1,"ConditionOccurrence",0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,, -1281,"[P] Primary Lung Cancer","Primary Lung Cancer","Primary Lung Cancer, indexed on lung abnormaility","rao@ohdsi.org","Pending peer review","","Primary Lung Cancer","#respiratory, #lung",1,"'Dmytro Dymshyts', 'Gowtham A. Rao'","'','0000-0002-4949-7236'","'OHDSI'","","0","37206719,4311499","","2024-01-05","2024-01-05",,"",,0,,,"ERA","0","end of continuous observation",,,1,"All",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,, -1282,"[P] Hoarseness","Hoarseness","Hoarseness","rao@ohdsi.org","Pending peer review","","Hoarseness","#Symptoms, #respiratory, #lung",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","0","312437, 4041664",,"2024-01-05","2024-01-05",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",14,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -1283,"[P] Bone Pain","Bone Pain","Bone Pain","rao@ohdsi.org","Pending peer review","","Bone Pain","#Symptom",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","0","4129418",,"2024-01-05","2024-01-05",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",14,0,"All",FALSE,"All","All",2,1,"ConditionOccurrence",0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -1284,"[P] Weight loss","Weight loss","Weight loss","rao@ohdsi.org","Pending peer review","","Weight loss","#Symptoms",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","0","4177176,435928",,"2024-01-05","2024-01-05",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",14,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -1285,"[P] Acute bronchitis","Acute bronchitis","Acute Bronchitis","rao@ohdsi.org","Pending peer review","","Acute bronchitis","#Symptoms",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","0","256451,260139",,"2024-01-05","2024-01-05",,"",,0,,,"ERA","0","fixed duration relative to initial event","StartDate",0,1,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -1286,"[P] Non Small Cell Lung Cancer (Stage 3) without second diagnosis","Non Small Cell Lung Cancer (Stage 3) without second diagnosis","Stage 3 Non Small Cell Lung Cancer (NSCLC), indexed on lung abnormaility with no evidence of SCLC and had follow-up for NSCLC","rao@ohdsi.org","Pending peer review","","Non Small Cell Lung Cancer (Stage 3) without second diagnosis","#respiratory, #lung",1,"'Dmytro Dymshyts', 'Gowtham A. Rao'","'','0000-0002-4949-7236'","'OHDSI'","","0","37206719,4311499","","2024-01-05","2024-01-05",,"",,0,,,"ERA","0","end of continuous observation",,,14,"All",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,, -1287,"[P] Intestinal obstruction - colorectal specific","Intestinal obstruction - colorectal specific","Intestinal obstruction - colorectal specific","rao@ohdsi.org","Pending peer review","","Earliest occurence of Intestinal obstruction - colorectal specific","",1,"Andreas Weinberger Rosen","0000-0001-9990-8155","","","","193518","","2024-01-05","2024-01-05",,"",,0,,,"ERA","0","end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,, -1288,"[P] Intraabdominal abscess - narrow for colorectal cancer","Intraabdominal abscess - narrow for colorectal cancer","Intraabdominal abscess - narrow for colorectal cancer","rao@ohdsi.org","Pending peer review","","Earliest occurence of Intraabdominal abscess - narrow for colorectal cancer","",1,"Andreas Weinberger Rosen","0000-0001-9990-8155","","","","193518","","2024-01-05","2024-01-05",,"",,0,,,"ERA","0","end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,, -1289,"[P] Major Non Cardiac Surgery, adults","Major Non Cardiac Surgery, adults","Major Non Cardiac Surgery, adults","rao@ohdsi.org","Pending peer review","","","#Surgery",1,"Evan Minty', 'Brian Bucher'","0000-0003-4631-9992', '0000-0001-8376-9752'","'OHDSI'","","","",,"2024-01-05","2024-01-05",,"",,0,,,"ERA","0","end of continuous observation",,,1,"First",FALSE,"All","First",35,1,"ProcedureOccurrence",0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,1,,,,, -1290,"[P] Abdominal Aortic Aneurysm repair, adults","Abdominal Aortic Aneurysm repair, adults","Abdominal Aortic Aneurysm repair, adults","rao@ohdsi.org","Pending peer review","","","#Surgery",1,"Evan Minty', 'Brian Bucher'","0000-0003-4631-9992', '0000-0001-8376-9752'","'OHDSI'","","","",,"2024-01-05","2024-01-05",,"",,0,,,"ERA","0","end of continuous observation",,,1,"First",FALSE,"All","First",2,1,"ProcedureOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,1,,,,, -1291,"[P] Lower Extremity Bypass, adults","Lower Extremity Bypass, adults","Lower Extremity Bypass, adults","rao@ohdsi.org","Pending peer review","","","#Surgery",1,"Evan Minty', 'Brian Bucher'","0000-0003-4631-9992', '0000-0001-8376-9752'","'OHDSI'","","","",,"2024-01-05","2024-01-05",,"",,0,,,"ERA","0","end of continuous observation",,,1,"First",FALSE,"All","First",2,1,"ProcedureOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,1,,,,, -1292,"[P] Carotid Endarterectomy, adults","Carotid Endarterectomy, adults","Carotid Endarterectomy, adults","rao@ohdsi.org","Pending peer review","","","#Surgery",1,"Evan Minty', 'Brian Bucher'","0000-0003-4631-9992', '0000-0001-8376-9752'","'OHDSI'","","","",,"2024-01-05","2024-01-05",,"",,0,,,"ERA","0","end of continuous observation",,,1,"First",FALSE,"All","First",2,1,"ProcedureOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,1,,,,, -1293,"[P] Lung Resection, adults","Lung Resection, adults","Lung Resection, adults","rao@ohdsi.org","Pending peer review","","","#Surgery",1,"Evan Minty', 'Brian Bucher'","0000-0003-4631-9992', '0000-0001-8376-9752'","'OHDSI'","","","",,"2024-01-05","2024-01-05",,"",,0,,,"ERA","0","end of continuous observation",,,1,"First",FALSE,"All","First",2,1,"ProcedureOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,1,,,,, -1294,"[P] Esophagectomy, adults","Esophagectomy, adults","Esophagectomy, adults","rao@ohdsi.org","Pending peer review","","","#Surgery",1,"Evan Minty', 'Brian Bucher'","0000-0003-4631-9992', '0000-0001-8376-9752'","'OHDSI'","","","",,"2024-01-05","2024-01-05",,"",,0,,,"ERA","0","end of continuous observation",,,1,"First",FALSE,"All","First",2,1,"ProcedureOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,1,,,,, -1295,"[P] Pancreatectomy, adults","Pancreatectomy, adults","Pancreatectomy, adults","rao@ohdsi.org","Pending peer review","","","#Surgery",1,"Evan Minty', 'Brian Bucher'","0000-0003-4631-9992', '0000-0001-8376-9752'","'OHDSI'","","","",,"2024-01-05","2024-01-05",,"",,0,,,"ERA","0","end of continuous observation",,,1,"First",FALSE,"All","First",2,1,"ProcedureOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,1,,,,, -1296,"[P] Colectomy, adults","Colectomy, adults","Colectomy, adults","rao@ohdsi.org","Pending peer review","","","#Surgery",1,"Evan Minty', 'Brian Bucher'","0000-0003-4631-9992', '0000-0001-8376-9752'","'OHDSI'","","","",,"2024-01-05","2024-01-05",,"",,0,,,"ERA","0","end of continuous observation",,,1,"First",FALSE,"All","First",2,1,"ProcedureOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,1,,,,, -1297,"[P] Cystectomy, adults","Cystectomy, adults","Cystectomy, adults","rao@ohdsi.org","Pending peer review","","","#Surgery",1,"Evan Minty', 'Brian Bucher'","0000-0003-4631-9992', '0000-0001-8376-9752'","'OHDSI'","","","",,"2024-01-05","2024-01-05",,"",,0,,,"ERA","0","end of continuous observation",,,1,"First",FALSE,"All","First",2,1,"ProcedureOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,1,,,,, -1298,"[P] Nephrectomy, adults","Nephrectomy, adults","Nephrectomy, adults","rao@ohdsi.org","Pending peer review","","","#Surgery",1,"Evan Minty', 'Brian Bucher'","0000-0003-4631-9992', '0000-0001-8376-9752'","'OHDSI'","","","",,"2024-01-05","2024-01-05",,"",,0,,,"ERA","0","end of continuous observation",,,1,"First",FALSE,"All","First",2,1,"ProcedureOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,1,,,,, -1299,"[P] Coronary Artery Bypass Graft, adults","Coronary Artery Bypass Graft, adults","Coronary Artery Bypass Graft, adults","rao@ohdsi.org","Pending peer review","","","#Surgery",1,"Evan Minty', 'Brian Bucher'","0000-0003-4631-9992', '0000-0001-8376-9752'","'OHDSI'","","","",,"2024-01-05","2024-01-05",,"",,0,,,"ERA","0","end of continuous observation",,,1,"First",FALSE,"All","First",2,1,"ProcedureOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,1,,,,, -1300,"[P] Cardiac Valve Surgery, adults","Cardiac Valve Surgery, adults","Cardiac Valve Surgery, adults","rao@ohdsi.org","Pending peer review","","","#Surgery",1,"Evan Minty', 'Brian Bucher'","0000-0003-4631-9992', '0000-0001-8376-9752'","'OHDSI'","","","",,"2024-01-05","2024-01-05",,"",,0,,,"ERA","0","end of continuous observation",,,1,"First",FALSE,"All","First",2,1,"ProcedureOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,1,,,,, -1301,"[P] Acute Urinary tract infections UTI events","Acute Urinary tract infections UTI events","Acute Urinary tract infections UTI","rao@ohdsi.org","Pending peer review","","all events of acute urinary tract infection","",1,"Evan Minty","0000-0003-4631-9992'","","","","81902","","2024-01-05","2024-01-05",,"",,0,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -1303,"[P] Acute Heart failure from legend","Acute Heart failure from legend","Acute Heart failure","rao@ohdsi.org","Pending","","The first condition record of heart failure, which is followed by at least 1 heart failure condition record in the following year","",1,"'Evan Minty'","0000-0003-4631-9992'","'OHDSI'","","","78232, 80180","https://forums.ohdsi.org/t/17895","2024-01-05","2024-01-05",,"","modified from 934 to support HowOften study.",0,,,"ERA","1","fixed duration relative to initial event","StartDate",0,0,"All",TRUE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -1304,"[P] Major Non Cardiac Surgery, adults, post op new Afib","Major Non Cardiac Surgery, adults, post op new Afib","Major Non Cardiac Surgery, adults, post op new Afib","rao@ohdsi.org","Pending peer review","","","#Surgery, #WorkGroup",1,"Evan Minty","0000-0003-4631-9992","'OHDSI'","","","",,"2024-01-05","2024-01-05",,"",,0,,,"ERA","0","end of continuous observation",,,3,"First",FALSE,"All","First",35,1,"ProcedureOccurrence",0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,1,,,,, -1305,"[P] AAA repair, adults, post op new Afib","AAA repair, adults, post op new Afib","AAA repair, adults, post op new Afib","rao@ohdsi.org","Pending peer review","","","#Surgery, #WorkGroup",1,"Evan Minty","0000-0003-4631-9992","'OHDSI'","","","",,"2024-01-05","2024-01-05",,"",,0,,,"ERA","0","end of continuous observation",,,3,"First",FALSE,"All","First",2,1,"ProcedureOccurrence",0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,1,,,,, -1306,"[P] Lower Extremity Bypass, adults, post op new Afib","Lower Extremity Bypass, adults, post op new Afib","Lower Extremity Bypass, adults, post op new Afib","rao@ohdsi.org","Pending peer review","","","#Surgery, #WorkGroup",1,"Evan Minty","0000-0003-4631-9992","'OHDSI'","","","",,"2024-01-05","2024-01-05",,"",,0,,,"ERA","0","end of continuous observation",,,3,"First",FALSE,"All","First",2,1,"ProcedureOccurrence",0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,1,,,,, -1307,"[P] Carotid Endarterectomy, adults, post op new Afib","Carotid Endarterectomy, adults, post op new Afib","Carotid Endarterectomy, adults, post op new Afib","rao@ohdsi.org","Pending peer review","","","#Surgery, #WorkGroup",1,"Evan Minty","0000-0003-4631-9992","'OHDSI'","","","",,"2024-01-05","2024-01-05",,"",,0,,,"ERA","0","end of continuous observation",,,3,"First",FALSE,"All","First",2,1,"ProcedureOccurrence",0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,1,,,,, -1308,"[P] Lung Resection, adults, post op new Afib","Lung Resection, adults, post op new Afib","Lung Resection, adults, post op new Afib","rao@ohdsi.org","Pending peer review","","","#Surgery, #WorkGroup",1,"Evan Minty","0000-0003-4631-9992","'OHDSI'","","","",,"2024-01-05","2024-01-05",,"",,0,,,"ERA","0","end of continuous observation",,,3,"First",FALSE,"All","First",2,1,"ProcedureOccurrence",0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,1,,,,, -1309,"[P] Esophagectomy, adults, post op new Afib","Esophagectomy, adults, post op new Afib","Esophagectomy, adults, post op new Afib","rao@ohdsi.org","Pending peer review","","","#Surgery, #WorkGroup",1,"Evan Minty","0000-0003-4631-9992","'OHDSI'","","","",,"2024-01-05","2024-01-05",,"",,0,,,"ERA","0","end of continuous observation",,,3,"First",FALSE,"All","First",2,1,"ProcedureOccurrence",0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,1,,,,, -1310,"[P] Pancreatectomy, adults, post op new Afib","Pancreatectomy, adults, post op new Afib","Pancreatectomy, adults, post op new Afib","rao@ohdsi.org","Pending peer review","","","#Surgery, #WorkGroup",1,"Evan Minty","0000-0003-4631-9992","'OHDSI'","","","",,"2024-01-05","2024-01-05",,"",,0,,,"ERA","0","end of continuous observation",,,3,"First",FALSE,"All","First",2,1,"ProcedureOccurrence",0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,1,,,,, -1311,"[P] Colectomy, adults, post op new Afib","Colectomy, adults, post op new Afib","Colectomy, adults, post op new Afib","rao@ohdsi.org","Pending peer review","","","#Surgery, #WorkGroup",1,"Evan Minty","0000-0003-4631-9992","'OHDSI'","","","",,"2024-01-05","2024-01-05",,"",,0,,,"ERA","0","end of continuous observation",,,3,"First",FALSE,"All","First",2,1,"ProcedureOccurrence",0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,1,,,,, -1312,"[P] Cystectomy, adults, post op new Afib","Cystectomy, adults, post op new Afib","Cystectomy, adults, post op new Afib","rao@ohdsi.org","Pending peer review","","","#Surgery, #WorkGroup",1,"Evan Minty","0000-0003-4631-9992","'OHDSI'","","","",,"2024-01-05","2024-01-05",,"",,0,,,"ERA","0","end of continuous observation",,,3,"First",FALSE,"All","First",2,1,"ProcedureOccurrence",0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,1,,,,, -1313,"[P] Nephrectomy, adults, post op new Afib","Nephrectomy, adults, post op new Afib","Nephrectomy, adults, post op new Afib","rao@ohdsi.org","Pending peer review","","","#Surgery, #WorkGroup",1,"Evan Minty","0000-0003-4631-9992","'OHDSI'","","","",,"2024-01-05","2024-01-05",,"",,0,,,"ERA","0","end of continuous observation",,,3,"First",FALSE,"All","First",2,1,"ProcedureOccurrence",0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,1,,,,, -1314,"[P] Coronary Artery Bypass Graft, adults, post op new Afib","Coronary Artery Bypass Graft, adults, post op new Afib","Coronary Artery Bypass Graft, adults, post op new Afib","rao@ohdsi.org","Pending peer review","","","#Surgery, #WorkGroup",1,"Evan Minty","0000-0003-4631-9992","'OHDSI'","","","",,"2024-01-05","2024-01-05",,"",,0,,,"ERA","0","end of continuous observation",,,3,"First",FALSE,"All","First",2,1,"ProcedureOccurrence",0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,1,,,,, -1315,"[P] Cardiac Valve Surgery, adults, post op new Afib","Cardiac Valve Surgery, adults, post op new Afib","Cardiac Valve Surgery, adults, post op new Afib","rao@ohdsi.org","Pending peer review","","","#Surgery, #WorkGroup",1,"Evan Minty","0000-0003-4631-9992","'OHDSI'","","","",,"2024-01-05","2024-01-05",,"",,0,,,"ERA","0","end of continuous observation",,,3,"First",FALSE,"All","First",2,1,"ProcedureOccurrence",0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,1,,,,, -1316,"Acquired Neutropenia or unspecified leukopenia (21Pe, 365Era)","Acquired Neutropenia or unspecified leukopenia (21Pe, 365Era)","Neutropenia or unspecified leukopenia","rao@ohdsi.org","Accepted","3.11.0","All events of neutropenia indexed on diagnosis or lab results, with no congenital or genetic neutropenia all days pre to 7 days post index. Also excluded, events with normal neutrophil count or a diagnosis of Neutrophilia on index. patients exit 21 days post end date or with the occurrence of a normal neutrophil count. Reoccurring events for the same patients will be combined into event eras if they are within 365 days of each other.","#PhenotypePhebruary, #2023, #Neutropenia, #DME",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","Anna Ostropolets","","435224","https://forums.ohdsi.org/t/17409","2024-09-06","2024-09-06",,"213",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",90,3,"All",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,,,,,,,,,,, -1317,"[P] Reyes syndrome","Reyes syndrome","Reyes syndrome","rao@ohdsi.org","Pending peer review","","First occurrence of Reyes syndrome","#Disease, #DME",1,"'Gowtham A. Rao', 'Azza Shoaibi'","'0000-0002-4949-7236', '0000-0002-6976-2594'","'OHDSI'","","","375241","","2024-09-11","2024-09-26",,"",,0,,,"ERA","0","end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,,,,,,,,,,, -1318,"[P] NSCLC solitary primary rx naive","NSCLC solitary primary rx naive","Solitary Primary Non Small Cell Lung Cancer - treatment naive","rao@ohdsi.org","Pending peer review","","First occurrence of Solitary Primary Non Small Cell Lung Cancer - treatment naive","#Oncology, #LungCancer",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","4311499","","2024-12-06","2025-03-28",,"",,0,,,"ERA","0","end of continuous observation",,,43,"First",TRUE,"First","First",1,1,"ConditionOccurrence",365,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,,,,,,,,,,, -1329,"[P] Death due to substance overdose (post mortem)","Death due to substance overdose (post mortem)","Death due to substance overdose","rao@ohdsi.org","Pending peer review","","first event of death with measurement of overdose within 7 days of death to account for reporting date discrepancy","#Death",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","4306655","","2025-03-28","2025-03-28",,"",,0,,,"ERA","0","fixed duration relative to initial event","StartDate",0,1,"First",FALSE,"All","First",2,2,"Death, Observation",0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,,1,,,,,,,, -1330,"[P] Acute Overdose (or “Acute Toxicity”) by substances with abuse potential","Acute Overdose (or “Acute Toxicity”) by substances with abuse potential","Acute Overdose (or Acute Toxicity) by substances with abuse potential","rao@ohdsi.org","Pending peer review","","Acute Overdose (or Acute Toxicity) by substances with abuse potential events","#SubstanceUseDisorder, #MentalHealth",1,"'Gowtham A. Rao', 'Azza Shoaibi'","'0000-0002-4949-7236', '0000-0002-6976-2594'","'OHDSI'","","","602985","","2025-03-28","2025-03-31",,"",,0,,,"ERA","1","fixed duration relative to initial event","EndDate",1,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -1331,"[P] Opioid overdose - treatment drugs","Opioid overdose - treatment drugs","Opioid overdose - treatment drugs","rao@ohdsi.org","Pending peer review","","Opioid overdose - treatment drugs","#SubstanceUseDisorder, #MentalHealth",1,"'Gowtham A. Rao', 'Azza Shoaibi'","'0000-0002-4949-7236', '0000-0002-6976-2594'","'OHDSI'","","","21604816","","2025-03-28","2025-03-28",,"",,0,,,"ERA","0","end of continuous drug exposure",,,0,"All",FALSE,"All","All",1,1,"DrugExposure",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,1,,,,0,30,0, -1332,"[P] Alcohol poisoning (acute severe intoxication)","Alcohol poisoning (acute severe intoxication)","Alcohol poisoning (acute severe intoxication)","rao@ohdsi.org","Pending peer review","","All events of Alcohol poisoning (acute severe intoxication)","#SubstanceUseDisorder, #MentalHealth",1,"'Gowtham A. Rao', 'Azza Shoaibi'","'0000-0002-4949-7236', '0000-0002-6976-2594'","'OHDSI'","","","602985","","2025-03-28","2025-03-28",,"",,0,,,"ERA","1","fixed duration relative to initial event","EndDate",1,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -1333,"[P] Advanced liver disease","Advanced liver disease","Advanced Liver Disease","rao@ohdsi.org","Pending peer review","","earliest event of Advanced Liver Disease. Persons exit on end of observation period","#Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","45769564","","2025-03-28","2025-03-28",,"",,0,,,"ERA","0","end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,, -1334,"[P] Liver cirrhosis from alcohol","Liver cirrhosis from alcohol","Liver cirrhosis from alcohol","rao@ohdsi.org","Pending peer review","","earliest event of Liver cirrhosis from alcohol. Persons exit on end of observation period","#Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","4064161","","2025-03-28","2025-03-28",,"",,0,,,"ERA","0","end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,, -1336,"[P] Infective Endocarditis","Infective Endocarditis","Infective Endocarditis events","rao@ohdsi.org","Pending peer review","","earliest event of Infective Endocarditis. Events within 180 days are collapsed","#Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","4064161","","2025-03-28","2025-03-28",,"",,0,,,"ERA","180","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -1337,"[P] Human immunodeficiency virus infection earliest occurrence","Human immunodeficiency virus infection earliest occurrence","Human immunodeficiency virus infection","rao@ohdsi.org","Pending peer review","","Earliest diagnosis of Human immunodeficiency virus infection","",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","439727","","2025-03-28","2025-03-28",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",0,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,, -1338,"[P] Binge Eating Disorder","Binge Eating Disorder","All events of binge eating disorder","rao@ohdsi.org","Pending peer review","","All events of binge eating disorder assumed to last 30 days. Events within 1 year are collapsed.","#Indication",1,"'Gowtham A. Rao', 'Azza Shoaibi'","'0000-0002-4949-7236', '0000-0002-6976-2594'","'OHDSI'","","","4208913","","2025-03-28","2025-03-28",,"",,0,,,"ERA","365","fixed duration relative to initial event","EndDate",30,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -1339,"[P] Bulimia Nervosa","Bulimia Nervosa","All events of Bulimia Nervosa","rao@ohdsi.org","Pending peer review","","All events of Bulimia Nervosa assumed to last 30 days. Events within 1 year are collapsed.","#Indication",1,"'Gowtham A. Rao', 'Azza Shoaibi'","'0000-0002-4949-7236', '0000-0002-6976-2594'","'OHDSI'","","","438407","","2025-03-28","2025-03-28",,"",,0,,,"ERA","365","fixed duration relative to initial event","EndDate",30,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -1340,"[P] Anorexia Nervosa","Anorexia Nervosa","All events of Anorexia Nervosa","rao@ohdsi.org","Pending peer review","","All events of Anorexia Nervosa assumed to last 30 days. Events within 1 year are collapsed.","#Indication",1,"'Gowtham A. Rao', 'Azza Shoaibi'","'0000-0002-4949-7236', '0000-0002-6976-2594'","'OHDSI'","","","436675","","2025-03-28","2025-03-28",,"",,0,,,"ERA","365","fixed duration relative to initial event","EndDate",30,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -1341,"[P] Eating Disorders","Eating Disorders","All events of Eating Disorders","rao@ohdsi.org","Pending peer review","","All events of Eating Disorders assumed to last 30 days. Events within 1 year are collapsed.","#Indication",1,"'Gowtham A. Rao', 'Azza Shoaibi'","'0000-0002-4949-7236', '0000-0002-6976-2594'","'OHDSI'","","","439002","","2025-03-29","2025-03-29",,"",,0,,,"ERA","365","fixed duration relative to initial event","EndDate",30,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -1342,"[P] Narcissistic personality disorder","Narcissistic personality disorder","All events of Narcissistic personality disorder","rao@ohdsi.org","Pending peer review","","All events of Narcissistic personality disorder assumed to last 30 days. Events within 1 year are collapsed.","#Indication",1,"'Gowtham A. Rao', 'Azza Shoaibi'","'0000-0002-4949-7236', '0000-0002-6976-2594'","'OHDSI'","","","440080","","2025-03-29","2025-03-29",,"",,0,,,"ERA","365","fixed duration relative to initial event","EndDate",30,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -1343,"[P] Antisocial Personality Disorder","Antisocial Personality Disorder","All events of Antisocial Personality Disorder","rao@ohdsi.org","Pending peer review","","All events of Antisocial Personality Disorder assumed to last 30 days. Events within 1 year are collapsed.","#Indication",1,"'Gowtham A. Rao', 'Azza Shoaibi'","'0000-0002-4949-7236', '0000-0002-6976-2594'","'OHDSI'","","","440080","","2025-03-29","2025-03-29",,"",,0,,,"ERA","365","fixed duration relative to initial event","EndDate",30,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -1344,"[P] Borderline Personality Disorder","Borderline Personality Disorder","All events of Borderline Personality Disorder","rao@ohdsi.org","Pending peer review","","All events of Borderline Personality Disorder assumed to last 30 days. Events within 1 year are collapsed.","#Indication",1,"'Gowtham A. Rao', 'Azza Shoaibi'","'0000-0002-4949-7236', '0000-0002-6976-2594'","'OHDSI'","","","440080","","2025-03-29","2025-03-29",,"",,0,,,"ERA","365","fixed duration relative to initial event","EndDate",30,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -1345,"[P] Personality Disorders","Personality Disorders","All events of Personality Disorders","rao@ohdsi.org","Pending peer review","","All events of Personality Disorder assumed to last 30 days. Events within 1 year are collapsed.","#Indication",1,"'Gowtham A. Rao', 'Azza Shoaibi'","'0000-0002-4949-7236', '0000-0002-6976-2594'","'OHDSI'","","","440080","","2025-03-29","2025-03-29",,"",,0,,,"ERA","365","fixed duration relative to initial event","EndDate",30,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -1346,"[P] Attention-Deficit Hyperactivity Disorder","Attention-Deficit Hyperactivity Disorder","All events of Attention-Deficit Hyperactivity Disorder","rao@ohdsi.org","Pending peer review","","All events of Attention-Deficit Hyperactivity Disorder assumed to last 30 days. Events within 1 year are collapsed.","#Indication",1,"'Gowtham A. Rao', 'Azza Shoaibi'","'0000-0002-4949-7236', '0000-0002-6976-2594'","'OHDSI'","","","438409","","2025-03-29","2025-03-29",,"",,0,,,"ERA","365","fixed duration relative to initial event","EndDate",30,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -1347,"[P] Posttraumatic Stress Disorder","Posttraumatic Stress Disorder","All events of Posttraumatic Stress Disorder","rao@ohdsi.org","Pending peer review","","All events of Posttraumatic Stress Disorder assumed to last 30 days. Events within 1 year are collapsed.","#Indication",1,"'Gowtham A. Rao', 'Azza Shoaibi'","'0000-0002-4949-7236', '0000-0002-6976-2594'","'OHDSI'","","","436676","","2025-03-29","2025-03-29",,"",,0,,,"ERA","365","fixed duration relative to initial event","EndDate",30,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -1348,"[P] Obsessive Compulsive Disorder","Obsessive Compulsive Disorder","All events of Obsessive Compulsive Disorder","rao@ohdsi.org","Pending peer review","","All events of Obsessive Compulsive Disorder assumed to last 30 days. Events within 1 year are collapsed.","#Indication",1,"'Gowtham A. Rao', 'Azza Shoaibi'","'0000-0002-4949-7236', '0000-0002-6976-2594'","'OHDSI'","","","440374","","2025-03-29","2025-03-29",,"",,0,,,"ERA","365","fixed duration relative to initial event","EndDate",30,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -1349,"[P] Anxiety Disorder","Anxiety Disorder","All events of Posttraumatic Stress Disorder","rao@ohdsi.org","Pending peer review","","All events of Posttraumatic Stress Disorder assumed to last 30 days. Events within 1 year are collapsed.","#Indication",1,"'Gowtham A. Rao', 'Azza Shoaibi'","'0000-0002-4949-7236', '0000-0002-6976-2594'","'OHDSI'","","","442077","","2025-03-29","2025-03-29",,"",,0,,,"ERA","365","fixed duration relative to initial event","EndDate",30,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -1350,"[P] Primary Psychiatric Disorders","Primary Psychiatric Disorders","Primary Psychiatric Disorders","rao@ohdsi.org","Pending peer review","","All events of Primary Psychiatric Disorders","#Disease",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","432586","","2025-03-29","2025-03-29",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",365,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -1351,"[P] Gambling Disorder","Gambling Disorder","Gambling Disorder","rao@ohdsi.org","Pending peer review","","All events of Gambling Disorder","#Disease",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","4023166","","2025-03-29","2025-03-29",,"",,0,,,"ERA","365","fixed duration relative to initial event","EndDate",90,0,"All",FALSE,"All","All",2,2,"ConditionOccurrence, Observation",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,,,,,,,,,, -1352,"[P] Behavioral Addictions","Behavioral Addictions","Behavioral Addictions","rao@ohdsi.org","Pending peer review","","All events of Behavioral Addictions","#Disease",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","4023166","","2025-03-29","2025-03-29",,"",,0,,,"ERA","365","fixed duration relative to initial event","EndDate",90,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -1353,"[P] Tobacco and Nicotine User","Tobacco and Nicotine User","Tobacco and Nicotine User","rao@ohdsi.org","Pending peer review","","All events of Tobacco and Nicotine User","#Disease",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","903654","","2025-03-29","2025-03-29",,"",,0,,,"ERA","365","fixed duration relative to initial event","EndDate",90,0,"All",FALSE,"All","All",1,1,"Observation",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,,,,,,,,,, -1354,"[P] Tobacco and Nicotine Use Disorder - procedure","Tobacco and Nicotine Use Disorder - procedure","Tobacco and Nicotine Use Disorder - procedure","rao@ohdsi.org","Pending peer review","","All events of Tobacco and Nicotine Use Disorder - procedure","#Disease",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","46273821","","2025-03-29","2025-03-29",,"",,0,,,"ERA","365","fixed duration relative to initial event","EndDate",90,0,"All",FALSE,"All","All",1,1,"ProcedureOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,1,,,,, -1355,"[P] Measurements for Opioid Use Disorder","Measurements for Opioid Use Disorder","Measurements for Opioid Use Disorder","rao@ohdsi.org","Pending peer review","","All events of Measurements for Opioid Use Disorder","#Disease",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","4091460","","2025-03-29","2025-03-29",,"",,0,,,"ERA","30","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"Measurement",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -1356,"[P] Opioid Use Disorder - treatment procedure or drug","Opioid Use Disorder - treatment procedure or drug","Opioid Use Disorder - treatment procedure","rao@ohdsi.org","Pending peer review","","All events of Opioid Use Disorder - treatment procedure","#Disease",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","46273821","","2025-03-29","2025-03-29",,"",,0,,,"ERA","365","fixed duration relative to initial event","EndDate",90,0,"All",FALSE,"All","All",3,3,"DrugExposure, Observation, ProcedureOccurrence",0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,,,1,,1,,,,, -1357,"[P] Measurements for Cannabis Use Disorder","Measurements for Cannabis Use Disorder","Measurements for Cannabis Use Disorder","rao@ohdsi.org","Pending peer review","","All events of Measurements for Cannabis Use Disorder","#Disease",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","4280954","","2025-03-29","2025-03-29",,"",,0,,,"ERA","30","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"Measurement",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -1358,"[P] Alcohol Withdrawal - procedure","Alcohol Withdrawal - procedure","Alcohol Withdrawal - procedure","rao@ohdsi.org","Pending peer review","","All events of Alcohol Withdrawal - procedure","#Disease",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","37311131","","2025-03-29","2025-03-29",,"",,0,,,"ERA","365","fixed duration relative to initial event","EndDate",90,0,"All",FALSE,"All","All",1,1,"ProcedureOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,1,,,,, -1359,"[P] Alcohol withdrawal","Alcohol withdrawal","Alcohol Withdrawal","rao@ohdsi.org","Pending peer review","","All events of Alcohol Withdrawal","#Disease",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","37311131","","2025-03-29","2025-03-29",,"",,0,,,"ERA","365","fixed duration relative to initial event","EndDate",90,0,"All",FALSE,"All","All",2,2,"ConditionOccurrence, ProcedureOccurrence",0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,1,,,,, -1360,"[P] Alcohol withdrawal - condition","Alcohol withdrawal - condition","Alcohol Withdrawal","rao@ohdsi.org","Pending peer review","","All events of Alcohol Withdrawal","#Disease",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","37311131","","2025-03-29","2025-03-29",,"",,0,,,"ERA","365","fixed duration relative to initial event","EndDate",90,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -1361,"[P] Alcohol detoxification","Alcohol detoxification","Alcohol detoxification","rao@ohdsi.org","Pending peer review","","All events of Alcohol detoxification","#Disease",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","37311131","","2025-03-29","2025-03-29",,"",,0,,,"ERA","365","fixed duration relative to initial event","EndDate",90,0,"All",FALSE,"All","All",1,1,"ProcedureOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,1,,,,, -1362,"[P] Alcohol poisoning","Alcohol poisoning","[P] Alcohol poisoning","rao@ohdsi.org","Pending peer review","","All events of [P] Alcohol poisoning","#Disease",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","37162280","","2025-03-29","2025-03-29",,"",,0,,,"ERA","365","fixed duration relative to initial event","EndDate",3,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -1363,"[P] Psychosis caused by ethanol - condition","Psychosis caused by ethanol - condition","[P] Psychosis caused by ethanol - condition","rao@ohdsi.org","Pending peer review","","All events of [P] Psychosis caused by ethanol - condition","#Disease",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","37162280","","2025-03-29","2025-03-29",,"",,0,,,"ERA","365","fixed duration relative to initial event","EndDate",7,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -1364,"[P] Alcohol Intoxication - condition","Alcohol Intoxication - condition","[P] Alcohol Intoxication - condition","rao@ohdsi.org","Pending peer review","","All events of [P] Alcohol Intoxication - condition","#Disease",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","37162280","","2025-03-29","2025-03-29",,"",,0,,,"ERA","365","fixed duration relative to initial event","EndDate",1,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -1365,"[P] Heroin use disorder - condition","Heroin use disorder - condition","[P] Heroin use disorder - condition","rao@ohdsi.org","Pending peer review","","All events of [P] Heroin use disorder - condition","#Disease",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","37162280","","2025-03-29","2025-03-29",,"",,0,,,"ERA","365","fixed duration relative to initial event","EndDate",30,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -1366,"[P] Fentanyl use disorder","Fentanyl use disorder","[P] Fentanyl use disorder","rao@ohdsi.org","Pending peer review","","All events of [P] Fentanyl use disorder","#Disease",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","37162280","","2025-03-29","2025-03-29",,"",,0,,,"ERA","365","fixed duration relative to initial event","EndDate",30,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -1367,"[P] Stimulant Use Disorder","Stimulant Use Disorder","[P] Stimulant Use Disorder","rao@ohdsi.org","Pending peer review","","All events of [P] Stimulant Use Disorder","#Disease",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","37162280","","2025-03-29","2025-03-29",,"",,0,,,"ERA","365","fixed duration relative to initial event","EndDate",30,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -1368,"[P] Cocaine Use Disorder","Cocaine Use Disorder","[P] Cocaine Use Disorder","rao@ohdsi.org","Pending peer review","","All events of [P] Cocaine Use Disorder","#Disease",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","37162280","","2025-03-29","2025-03-29",,"",,0,,,"ERA","365","fixed duration relative to initial event","EndDate",30,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -1369,"[P] Methamphetamine use disorder","Methamphetamine use disorder","[P] Methamphetamine use disorder","rao@ohdsi.org","Pending peer review","","All events of [P] Methamphetamine use disorder","#Disease",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","37162280","","2025-03-29","2025-03-29",,"",,0,,,"ERA","365","fixed duration relative to initial event","EndDate",30,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -1370,"[P] Sedative Hypnotic Anxiolytic Use Disorder","Sedative Hypnotic Anxiolytic Use Disorder","[P] Sedative Hypnotic Anxiolytic Use Disorder","rao@ohdsi.org","Pending peer review","","All events of [P] Sedative Hypnotic Anxiolytic Use Disorder","#Disease",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","37162280","","2025-03-29","2025-03-29",,"",,0,,,"ERA","365","fixed duration relative to initial event","EndDate",30,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -1371,"[P] Benzodiazepines use disorder","Benzodiazepines use disorder","[P] Benzodiazepines use disorder","rao@ohdsi.org","Pending peer review","","All events of [P] Benzodiazepines use disorder","#Disease",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","37162280","","2025-03-29","2025-03-29",,"",,0,,,"ERA","365","fixed duration relative to initial event","EndDate",30,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -1372,"[P] Barbiturates use disorder","Barbiturates use disorder","[P] Barbiturates use disorder","rao@ohdsi.org","Pending peer review","","All events of [P] Barbiturates use disorder","#Disease",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","37162280","","2025-03-29","2025-03-29",,"",,0,,,"ERA","365","fixed duration relative to initial event","EndDate",30,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -1373,"[P] Inhalant Use Disorder","Inhalant Use Disorder","[P] Inhalant Use Disorder","rao@ohdsi.org","Pending peer review","","All events of [P] Inhalant Use Disorder","#Disease",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","37162280","","2025-03-29","2025-03-29",,"",,0,,,"ERA","365","fixed duration relative to initial event","EndDate",30,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -1374,"[P] Tobacco and Nicotine Use Disorder - condition","Tobacco and Nicotine Use Disorder - condition","[P] Tobacco and Nicotine Use Disorder - condition","rao@ohdsi.org","Pending peer review","","All events of [P] Tobacco and Nicotine Use Disorder - condition","#Disease",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","37162280","","2025-03-29","2025-03-29",,"",,0,,,"ERA","365","fixed duration relative to initial event","EndDate",365,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -1375,"[P] Tobacco and Nicotine Toxicity","Tobacco and Nicotine Toxicity","[P] Tobacco and Nicotine Toxicity","rao@ohdsi.org","Pending peer review","","All events of [P] Tobacco and Nicotine Toxicity","#Disease",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","37162280","","2025-03-29","2025-03-29",,"",,0,,,"ERA","365","fixed duration relative to initial event","EndDate",3,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -1376,"[P] Infectious Diseases (HIV, Hepatitis B, Hepatitis C)","Infectious Diseases (HIV, Hepatitis B, Hepatitis C)","[P] Infectious Diseases (HIV, Hepatitis B, Hepatitis C)","rao@ohdsi.org","Pending peer review","","All events of [P] Infectious Diseases (HIV, Hepatitis B, Hepatitis C)","#Disease",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","37162280","","2025-03-29","2025-03-29",,"",,0,,,"ERA","365","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -1377,"[P] Substance Use Disorder in Remission","Substance Use Disorder in Remission","[P] Substance Use Disorder in Remission","rao@ohdsi.org","Pending peer review","","All events of [P] Substance Use Disorder in Remission","#Disease",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","37162280","","2025-03-29","2025-03-29",,"",,0,,,"ERA","365","fixed duration relative to initial event","EndDate",180,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -1378,"[P] Controlled Medication Use","Controlled Medication Use","[P] Controlled Medication Use","rao@ohdsi.org","Pending peer review","","All events of [P] Controlled Medication Use","#Disease",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","37162280","","2025-03-29","2025-03-29",,"",,0,,,"ERA","365","fixed duration relative to initial event","EndDate",180,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -1379,"[P] Physical Dependence from Legitimate Therapy","Physical Dependence from Legitimate Therapy","[P] Physical Dependence from Legitimate Therapy","rao@ohdsi.org","Pending peer review","","All events of [P] Physical Dependence from Legitimate Therapy","#Disease",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","37162280","","2025-03-29","2025-03-29",,"",,0,,,"ERA","365","fixed duration relative to initial event","EndDate",180,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -1380,"[P] Prescription Drug Misuse","Prescription Drug Misuse","[P] Prescription Drug Misuse","rao@ohdsi.org","Pending peer review","","All events of [P] Prescription Drug Misuse","#Disease",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","37162280","","2025-03-29","2025-03-29",,"",,0,,,"ERA","365","fixed duration relative to initial event","EndDate",180,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -1381,"[P] Cravings","Cravings","[P] Cravings","rao@ohdsi.org","Pending peer review","","All events of [P] Cravings","#Disease",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","37162280","","2025-03-29","2025-03-29",,"",,0,,,"ERA","365","fixed duration relative to initial event","EndDate",30,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -1382,"[P] Compulsions","Compulsions","[P] Compulsions","rao@ohdsi.org","Pending peer review","","All events of [P] Compulsions","#Disease",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","37162280","","2025-03-29","2025-03-29",,"",,0,,,"ERA","365","fixed duration relative to initial event","EndDate",365,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -1383,"[P] Mental or Moral Distress","Mental or Moral Distress","[P] Mental or Moral Distress","rao@ohdsi.org","Pending peer review","","All events of [P] Mental or Moral Distress","#Disease",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","37162280","","2025-03-29","2025-03-29",,"",,0,,,"ERA","365","fixed duration relative to initial event","EndDate",7,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -1384,"[P] Any Distress (Physical or Mental)","Any Distress (Physical or Mental)","[P] Any Distress (Physical or Mental)","rao@ohdsi.org","Pending peer review","","All events of [P] Any Distress (Physical or Mental)","#Disease",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","37162280","","2025-03-29","2025-03-29",,"",,0,,,"ERA","365","fixed duration relative to initial event","EndDate",7,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -1385,"[P] Withdrawal of substances with abuse potential","Withdrawal of substances with abuse potential","[P] Withdrawal of substances with abuse potential","rao@ohdsi.org","Pending peer review","","All events of [P] Withdrawal of substances with abuse potential","#Disease",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","37162280","","2025-03-29","2025-03-29",,"",,0,,,"ERA","365","fixed duration relative to initial event","EndDate",3,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -1386,"[P] Withdrawal Seizures","Withdrawal Seizures","[P] Withdrawal Seizures","rao@ohdsi.org","Pending peer review","","All events of [P] Withdrawal Seizures","#Disease",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","37162280","","2025-03-29","2025-03-29",,"",,0,,,"ERA","365","fixed duration relative to initial event","EndDate",3,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -1387,"[P] Methadone","Methadone","[P] Methadone","rao@ohdsi.org","Pending peer review","","[P] Methadone","",1,"Gowtham A. Rao","0000-0002-4949-7236","","","","","","2025-04-02","2025-04-02",,"",,0,,,"ERA","0","end of continuous drug exposure",,,0,"All",FALSE,"All","All",1,1,"DrugExposure",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,1,,,,1,0,90, -1388,"[P] Methadone Treatment Program Enrollment","Methadone Treatment Program Enrollment","[P] Methadone Treatment Program Enrollment","rao@ohdsi.org","Pending peer review","","[P] Methadone Treatment Program Enrollment","",1,"Gowtham A. Rao","0000-0002-4949-7236","","","","","","2025-04-02","2025-04-02",,"",,0,,,"ERA","90","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",2,2,"ProcedureOccurrence, VisitOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,1,,,,1,,,,, -1389,"[P] Naltrexone","Naltrexone","[P] Naltrexone","rao@ohdsi.org","Pending peer review","","[P] Naltrexone","",1,"Gowtham A. Rao","0000-0002-4949-7236","","","","","","2025-04-02","2025-04-02",,"",,0,,,"ERA","0","end of continuous drug exposure",,,0,"All",FALSE,"All","All",1,1,"DrugExposure",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,1,,,,1,0,90, -1390,"[P] Naltrexone Maintenance Therapy","Naltrexone Maintenance Therapy","[P] Naltrexone Maintenance Therapy","rao@ohdsi.org","Pending peer review","","[P] Naltrexone Maintenance Therapy","",1,"Gowtham A. Rao","0000-0002-4949-7236","","","","","","2025-04-02","2025-04-02",,"",,0,,,"ERA","180","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ProcedureOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,1,,,,, -1391,"[P] Opioid Agonists","Opioid Agonists","[P] Opioid Agonists","rao@ohdsi.org","Pending peer review","","[P] Opioid Agonists","",1,"Gowtham A. Rao","0000-0002-4949-7236","","","","","","2025-04-02","2025-04-02",,"",,0,,,"ERA","0","end of continuous drug exposure",,,0,"All",FALSE,"All","All",1,1,"DrugExposure",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,1,,,,1,0,90, -1392,"[P] Opioid Antagonists","Opioid Antagonists","[P] Opioid Antagonists","rao@ohdsi.org","Pending peer review","","[P] Opioid Antagonists","",1,"Gowtham A. Rao","0000-0002-4949-7236","","","","","","2025-04-02","2025-04-02",,"",,0,,,"ERA","0","end of continuous drug exposure",,,0,"All",FALSE,"All","All",1,1,"DrugExposure",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,1,,,,1,0,90, -1393,"[P] Medication-Assisted Treatment","Medication-Assisted Treatment","[P] Medication-Assisted Treatment","rao@ohdsi.org","Pending peer review","","[P] Medication-Assisted Treatment","",1,"Gowtham A. Rao","0000-0002-4949-7236","","","","","","2025-04-02","2025-04-02",,"",,0,,,"ERA","90","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",2,2,"Observation, ProcedureOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,,,,,1,,,,, -1394,"[P] Nicotine Replacement Therapy","Nicotine Replacement Therapy","[P] Nicotine Replacement Therapy","rao@ohdsi.org","Pending peer review","","[P] Nicotine Replacement Therapy","",1,"Gowtham A. Rao","0000-0002-4949-7236","","","","","","2025-04-02","2025-04-02",,"",,0,,,"ERA","0","end of continuous drug exposure",,,0,"All",FALSE,"All","All",1,1,"DrugExposure",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,1,,,,1,0,90, -1395,"[P] OTC Nicotine Replacement","OTC Nicotine Replacement","[P] OTC Nicotine Replacement","rao@ohdsi.org","Pending peer review","","[P] OTC Nicotine Replacement","",1,"Gowtham A. Rao","0000-0002-4949-7236","","","","","","2025-04-02","2025-04-02",,"",,0,,,"ERA","0","end of continuous drug exposure",,,0,"All",FALSE,"All","All",1,1,"DrugExposure",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,1,,,,1,0,90, -1396,"[P] Varenicline","Varenicline","[P] Varenicline","rao@ohdsi.org","Pending peer review","","[P] Varenicline","",1,"Gowtham A. Rao","0000-0002-4949-7236","","","","","","2025-04-02","2025-04-02",,"",,0,,,"ERA","0","end of continuous drug exposure",,,0,"All",FALSE,"All","All",1,1,"DrugExposure",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,1,,,,1,0,90, -1397,"[P] Pain Management","Pain Management","[P] Pain Management","rao@ohdsi.org","Pending peer review","","[P] Pain Management","",1,"Gowtham A. Rao","0000-0002-4949-7236","","","","","","2025-04-02","2025-04-02",,"",,0,,,"ERA","180","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ProcedureOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,1,,,,, -1398,"[P] Terminal Palliative Care","Terminal Palliative Care","[P] Terminal Palliative Care","rao@ohdsi.org","Pending peer review","","[P] Terminal Palliative Care","",1,"Gowtham A. Rao","0000-0002-4949-7236","","","","","","2025-04-02","2025-04-02",,"",,0,,,"ERA","30","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",2,2,"Observation, ProcedureOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,,,,,1,,,,, -1399,"[P] Alcohol Misuse Counseling","Alcohol Misuse Counseling","[P] Alcohol Misuse Counseling","rao@ohdsi.org","Pending peer review","","[P] Alcohol Misuse Counseling","",1,"Gowtham A. Rao","0000-0002-4949-7236","","","","","","2025-04-02","2025-04-02",,"",,0,,,"ERA","90","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ProcedureOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,1,,,,, -1400,"[P] Smoking Cessation Counseling","Smoking Cessation Counseling","[P] Smoking Cessation Counseling","rao@ohdsi.org","Pending peer review","","[P] Smoking Cessation Counseling","",1,"Gowtham A. Rao","0000-0002-4949-7236","","","","","","2025-04-02","2025-04-02",,"",,0,,,"ERA","180","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ProcedureOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,1,,,,, -1401,"[P] Psychotherapy","Psychotherapy","[P] Psychotherapy","rao@ohdsi.org","Pending peer review","","[P] Psychotherapy","",1,"Gowtham A. Rao","0000-0002-4949-7236","","","","","","2025-04-02","2025-04-02",,"",,0,,,"ERA","30","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",2,2,"Observation, ProcedureOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,,,,,1,,,,, -1402,"[P] Group Therapy","Group Therapy","[P] Group Therapy","rao@ohdsi.org","Pending peer review","","[P] Group Therapy","",1,"Gowtham A. Rao","0000-0002-4949-7236","","","","","","2025-04-02","2025-04-02",,"",,0,,,"ERA","30","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",2,2,"Observation, ProcedureOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,,,,,1,,,,, -1403,"[P] Family Psychotherapy","Family Psychotherapy","[P] Family Psychotherapy","rao@ohdsi.org","Pending peer review","","[P] Family Psychotherapy","",1,"Gowtham A. Rao","0000-0002-4949-7236","","","","","","2025-04-02","2025-04-02",,"",,0,,,"ERA","90","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ProcedureOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,1,,,,, -1404,"[P] Behavioral Therapies","Behavioral Therapies","[P] Behavioral Therapies","rao@ohdsi.org","Pending peer review","","[P] Behavioral Therapies","",1,"Gowtham A. Rao","0000-0002-4949-7236","","","","","","2025-04-02","2025-04-02",,"",,0,,,"ERA","365","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ProcedureOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,1,,,,, -1405,"[P] 12-Step Facilitation Behavioral Therapy","12-Step Facilitation Behavioral Therapy","[P] 12-Step Facilitation Behavioral Therapy","rao@ohdsi.org","Pending peer review","","[P] 12-Step Facilitation Behavioral Therapy","",1,"Gowtham A. Rao","0000-0002-4949-7236","","","","","","2025-04-02","2025-04-02",,"",,0,,,"ERA","365","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ProcedureOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,1,,,,, -1406,"[P] Harm Reduction Interventions","Harm Reduction Interventions","[P] Harm Reduction Interventions","rao@ohdsi.org","Pending peer review","","[P] Harm Reduction Interventions","",1,"Gowtham A. Rao","0000-0002-4949-7236","","","","","","2025-04-02","2025-04-02",,"",,0,,,"ERA","365","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",2,2,"Observation, ProcedureOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,,,,,1,,,,, -1407,"[P] Specialty Addiction Treatment","Specialty Addiction Treatment","[P] Specialty Addiction Treatment","rao@ohdsi.org","Pending peer review","","[P] Specialty Addiction Treatment","",1,"Gowtham A. Rao","0000-0002-4949-7236","","","","","","2025-04-02","2025-04-02",,"",,0,,,"ERA","30","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",2,2,"ProcedureOccurrence, VisitOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,1,,,,1,,,,, -1408,"[P] Alcohol Use Screening","Alcohol Use Screening","[P] Alcohol Use Screening","rao@ohdsi.org","Pending peer review","","[P] Alcohol Use Screening","",1,"Gowtham A. Rao","0000-0002-4949-7236","","","","","","2025-04-02","2025-04-02",,"",,0,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",2,2,"Measurement, Observation",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,,,,,,,,,, -1409,"[P] Screening for substance abuse","Screening for substance abuse","[P] Screening for substance abuse","rao@ohdsi.org","Pending peer review","","[P] Screening for substance abuse","",1,"Gowtham A. Rao","0000-0002-4949-7236","","","","","","2025-04-02","2025-04-02",,"",,0,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"Measurement",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -1410,"[P] Use of Substance Use Screening Tools","Use of Substance Use Screening Tools","[P] Use of Substance Use Screening Tools","rao@ohdsi.org","Pending peer review","","[P] Use of Substance Use Screening Tools","",1,"Gowtham A. Rao","0000-0002-4949-7236","","","","","","2025-04-02","2025-04-02",,"",,0,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",3,3,"Measurement, Observation, ProcedureOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,,,,,1,,,,, -1411,"[P] Laboratory Toxicology Tests","Laboratory Toxicology Tests","[P] Laboratory Toxicology Tests","rao@ohdsi.org","Pending peer review","","[P] Laboratory Toxicology Tests","",1,"Gowtham A. Rao","0000-0002-4949-7236","","","","","","2025-04-02","2025-04-02",,"",,0,,,"ERA","1","fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"Measurement",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -1412,"[P] Naloxone Dispensing","Naloxone Dispensing","[P] Naloxone Dispensing","rao@ohdsi.org","Pending peer review","","[P] Naloxone Dispensing","",1,"Gowtham A. Rao","0000-0002-4949-7236","","","","","","2025-04-02","2025-04-02",,"",,0,,,"ERA","0","end of continuous drug exposure",,,0,"All",FALSE,"All","All",1,1,"DrugExposure",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,1,,,,1,1,1, -1413,"[P] Screening, Brief Intervention, and Referral to Treatment (SBIRT)","Screening, Brief Intervention, and Referral to Treatment (SBIRT)","[P] Screening, Brief Intervention, and Referral to Treatment (SBIRT)","rao@ohdsi.org","Pending peer review","","[P] Screening, Brief Intervention, and Referral to Treatment (SBIRT)","",1,"Gowtham A. Rao","0000-0002-4949-7236","","","","","","2025-04-02","2025-04-02",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",1,0,"All",FALSE,"All","All",2,2,"Observation, ProcedureOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,,,,,1,,,,, -1415,"[P] Impaired Control","Impaired Control","[P] Impaired Control","rao@ohdsi.org","Pending peer review","","[P] Impaired Control","",1,"Gowtham A. Rao","0000-0002-4949-7236","","","","","","2025-04-02","2025-04-02",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",180,0,"All",FALSE,"All","All",2,2,"ConditionOccurrence, Observation",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,,,,,,,,,, -1416,"[P] Neglect of Roles or Social Impairment","Neglect of Roles or Social Impairment","[P] Neglect of Roles or Social Impairment","rao@ohdsi.org","Pending peer review","","[P] Neglect of Roles or Social Impairment","",1,"Gowtham A. Rao","0000-0002-4949-7236","","","","","","2025-04-02","2025-04-02",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",14,0,"All",FALSE,"All","All",1,1,"Observation",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,,,,,,,,,, -1417,"[P] Risky Use","Risky Use","[P] Risky Use","rao@ohdsi.org","Pending peer review","","[P] Risky Use","",1,"Gowtham A. Rao","0000-0002-4949-7236","","","","","","2025-04-02","2025-04-02",,"",,0,,,"ERA","30","fixed duration relative to initial event","EndDate",1,0,"All",FALSE,"All","All",1,1,"Observation",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,,,,,,,,,, -1418,"[P] Tolerance","Tolerance","[P] Tolerance","rao@ohdsi.org","Pending peer review","","[P] Tolerance","",1,"Gowtham A. Rao","0000-0002-4949-7236","","","","","","2025-04-02","2025-04-02",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",90,0,"All",FALSE,"All","All",1,1,"Observation",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,,,,,,,,,, -1419,"[P] Pattern of Use Causing Harm or Distress","Pattern of Use Causing Harm or Distress","[P] Pattern of Use Causing Harm or Distress","rao@ohdsi.org","Pending peer review","","[P] Pattern of Use Causing Harm or Distress","",1,"Gowtham A. Rao","0000-0002-4949-7236","","","","","","2025-04-02","2025-04-02",,"",,0,,,"ERA","0","fixed duration relative to initial event","EndDate",30,0,"All",FALSE,"All","All",2,2,"ConditionOccurrence, Observation",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,,,,,,,,,, -1420,"[P] Medical Conditions Mimicking Intoxication","Medical Conditions Mimicking Intoxication","[P] Medical Conditions Mimicking Intoxication","rao@ohdsi.org","Pending peer review","","[P] Medical Conditions Mimicking Intoxication","",1,"Gowtham A. Rao","0000-0002-4949-7236","","","","","","2025-04-02","2025-04-02",,"",,0,,,"ERA","30","fixed duration relative to initial event","EndDate",14,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -1421,"[P] Hypoglycemic disorder","Hypoglycemic disorder","[P] Hypoglycemic disorder","rao@ohdsi.org","Pending peer review","","[P] Hypoglycemic disorder","",1,"Gowtham A. Rao","0000-0002-4949-7236","","","","","","2025-04-02","2025-04-02",,"",,0,,,"ERA","7","fixed duration relative to initial event","EndDate",1,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -1422,"[P] Stroke events","Stroke events","[P] Stroke events","rao@ohdsi.org","Pending peer review","","[P] Stroke events","",1,"Gowtham A. Rao","0000-0002-4949-7236","","","","","","2025-04-02","2025-04-02",,"",,0,,,"ERA","30","fixed duration relative to initial event","EndDate",7,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -1423,"[P] Single Acute Intoxication","Single Acute Intoxication","[P] Single Acute Intoxication","rao@ohdsi.org","Pending peer review","","[P] Single Acute Intoxication","",1,"Gowtham A. Rao","0000-0002-4949-7236","","","","","","2025-04-02","2025-04-02",,"",,0,,,"ERA","7","fixed duration relative to initial event","EndDate",1,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -1424,"[P] Opioid Acute intoxication","Opioid Acute intoxication","[P] Opioid Acute intoxication","rao@ohdsi.org","Pending peer review","","[P] Opioid Acute intoxication","",1,"Gowtham A. Rao","0000-0002-4949-7236","","","","","","2025-04-02","2025-04-02",,"",,0,,,"ERA","7","fixed duration relative to initial event","EndDate",1,0,"All",FALSE,"All","All",2,2,"ConditionOccurrence, DrugExposure",0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,1,,,,,,, -1425,"[P] Alcohol Acute intoxication","Alcohol Acute intoxication","[P] Alcohol Acute intoxication","rao@ohdsi.org","Pending peer review","","[P] Alcohol Acute intoxication","",1,"Gowtham A. Rao","0000-0002-4949-7236","","","","","","2025-04-02","2025-04-02",,"",,0,,,"ERA","7","fixed duration relative to initial event","EndDate",1,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,, -1426,"[P] Psychoactive Substances","Psychoactive Substances","[P] Psychoactive Substances","rao@ohdsi.org","Pending peer review","","[P] Psychoactive Substances","",1,"Gowtham A. Rao","0000-0002-4949-7236","","","","","","2025-04-02","2025-04-02",,"",,0,,,"ERA","180","fixed duration relative to initial event","EndDate",7,0,"All",FALSE,"All","All",2,2,"ConditionOccurrence, Observation",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,,,,,,,,,, -1427,"[P] Acamprosate, all exposures","Acamprosate, all exposures","[P] Acamprosate, all exposures","rao@ohdsi.org","Pending peer review","","[P] Acamprosate, all exposures","",1,"Gowtham A. Rao","0000-0002-4949-7236","","","","","","2025-04-02","2025-04-02",,"",,0,,,"ERA","0","end of continuous drug exposure",,,0,"All",FALSE,"All","All",1,1,"DrugExposure",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,1,,,,0,1,30, -1428,"[P] Disulfiram, all exposures","Disulfiram, all exposures","[P] Disulfiram, all exposures","rao@ohdsi.org","Pending peer review","","[P] Disulfiram, all exposures","",1,"Gowtham A. Rao","0000-0002-4949-7236","","","","","","2025-04-02","2025-04-02",,"",,0,,,"ERA","0","end of continuous drug exposure",,,0,"All",FALSE,"All","All",1,1,"DrugExposure",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,1,,,,0,1,30, -1429,"[P] Buprenorphine, all exposures","Buprenorphine, all exposures","[P] Buprenorphine, all exposures","rao@ohdsi.org","Pending peer review","","[P] Buprenorphine, all exposures","",1,"Gowtham A. Rao","0000-0002-4949-7236","","","","","","2025-04-02","2025-04-02",,"",,0,,,"ERA","0","end of continuous drug exposure",,,0,"All",FALSE,"All","All",1,1,"DrugExposure",0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,1,,,,1,0,30, +"cohortId","cohortName","cohortNameFormatted","cohortNameLong","librarian","status","addedVersion","logicDescription","hashTag","isCirceJson","contributors","contributorOrcIds","contributorOrganizations","peerReviewers","peerReviewerOrcIds","recommendedReferentConceptIds","ohdsiForumPost","createdDate","modifiedDate","lastModifiedBy","replaces","notes","isReferenceCohort","censorWindowStartDate","censorWindowEndDate","collapseSettingsType","collapseEraPad","exitStrategy","exitDateOffSetField","exitDateOffSet","numberOfInclusionRules","initialEventLimit","initialEventRestrictionAdditionalCriteria","initialEventRestrictionAdditionalCriteriaLimit","inclusionRuleQualifyingEventLimit","numberOfCohortEntryEvents","numberOfDomainsInEntryEvents","domainsInEntryEvents","continousObservationWindowPrior","continousObservationWindowPost","numberOfConceptSets","demographicCriteria","demographicCriteriaAge","demographicCriteriaGender","useOfObservationPeriodInclusionRule","restrictedByVisit","hasWashoutInText","domainConditionOccurrence","domainMeasurement","eventCohort","domainObservation","domainVisitOccurrence","domainDeath","domainDrugExposure","criteriaLocationAgePrimaryCriteria","domainDeviceExposure","domainProcedureOccurrence","criteriaLocationFirstPrimaryCriteria","criteriaLocationAgeInclusionRules","criteriaLocationVisitTypePrimaryCriteria","criteriaLocationFirstInclusionRules","criteriaLocationGenderPrimaryCriteria","criteriaLocationConditionSourceConceptPrimaryCriteria","criteriaLocationGenderInclusionRules","criteriaLocationProviderSpecialtyInclusionRules","criteriaLocationVisitSourceConceptPrimaryCriteria","criteriaLocationConditionSourceConceptInclusionRules","criteriaLocationProviderSpecialtyPrimaryCriteria","domainDrugEra","criteriaLocationProcedureSourceConceptPrimaryCriteria","exitDrugCodeSetId","exitPersistenceWindow","exitSurveillanceWindow","domainObservationPeriod","criteriaLocationAgeAdditionalCriteria","criteriaLocationGenderAdditionalCriteria","criteriaLocationMeasurementSourceConceptPrimaryCriteria","criteriaLocationObservationSourceConceptInclusionRules" +2,"[W] COVID-19 diagnosis or SARS-CoV-2 test (1pos)","COVID-19 diagnosis or SARS-CoV-2 test (1pos)","COVID-19 diagnosis or SARS-CoV-2 test (1pos)","rao@ohdsi.org","Withdrawn","","Withdrawn by contributor before peer review","",1,"","","","","","439676, 37311061","","2021-09-22","2023-09-19",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",0,0,"First",FALSE,"All","First",2,2,"ConditionOccurrence, Measurement",0,0,2,0,0,0,0,0,0,1,1,0,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3,"[P] Cough or Sputum","Cough or Sputum","Cough or Sputum","rao@ohdsi.org","Pending peer review","","All events of cough or sputum finding","#Symptoms, #respiratory, #lung",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","254761","https://forums.ohdsi.org/t/17895","2021-09-22","2023-09-28",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",14,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4,"[P] Diarrhea","Diarrhea","Diarrhea","rao@ohdsi.org","Pending peer review","","All events of diarrhea including Functional Diarrhea","#Symptoms",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","196523","https://forums.ohdsi.org/t/17895","2021-09-23","2023-09-25",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",7,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5,"[P] Dyspnea","Dyspnea","Dyspnea","rao@ohdsi.org","Pending peer review","","All events of dyspnea including difficulty breathing or abnormal breathing","#Symptoms, #respiratory, #lung",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","312437, 4041664","https://forums.ohdsi.org/t/17895","2021-09-23","2023-09-28",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",14,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6,"[P] Fever","Fever","Fever","rao@ohdsi.org","Pending peer review","","All events of fever or elevated temperature measurement","#Symptoms",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","437663, 4178904","https://forums.ohdsi.org/t/17895","2021-09-23","2023-09-25",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",7,0,"All",FALSE,"All","All",6,3,"ConditionOccurrence, Measurement, Observation",0,0,2,0,0,0,0,0,0,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,, +7,"[P] Headache or Headache disorder","Headache or Headache disorder","Headache or Headache disorder","rao@ohdsi.org","Pending peer review","","All events of Headache or headache disorder","#Symptoms",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","378253","https://forums.ohdsi.org/t/17895","2021-09-23","2023-09-25",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",14,0,"All",FALSE,"All","All",2,2,"ConditionOccurrence, Observation",0,0,1,0,0,0,0,0,0,1,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,, +8,"[P] Altered smell or taste including Anosmia, Hyposmia or Dysgeusia","Altered smell or taste including Anosmia, Hyposmia or Dysgeusia","Altered smell or taste including Anosmia, Hyposmia or Dysgeusia","rao@ohdsi.org","Pending peer review","","Altered smell or taste including Anosmia, Hyposmia or Dysgeusia","#Symptoms",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","43530714","https://forums.ohdsi.org/t/17895","2021-09-23","2023-09-25",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",14,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +9,"[P] Sore throat","Sore throat","Sore throat","rao@ohdsi.org","Pending peer review","","All events of Sore throat","#Symptoms",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","25297, 4226263","https://forums.ohdsi.org/t/17895","2021-09-23","2023-09-25",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",14,0,"All",FALSE,"All","All",2,2,"ConditionOccurrence, Observation",0,0,1,0,0,0,0,0,0,1,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,, +10,"[P] Nausea or Vomiting","Nausea or Vomiting","Nausea or Vomiting","rao@ohdsi.org","Pending peer review","","All events of Nausea or vomiting","#Symptoms",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","27674, 4101344","https://forums.ohdsi.org/t/17895","2021-09-23","2023-09-25",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",14,0,"All",FALSE,"All","All",2,2,"ConditionOccurrence, Observation",0,0,1,0,0,0,0,0,0,1,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,, +11,"[P] Malaise and or fatigue","Malaise and or fatigue","Malaise and or fatigue","rao@ohdsi.org","Pending peer review","","All events of Malaise and or fatigue","#Symptoms",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","439926, 4272240","https://forums.ohdsi.org/t/17895","2021-09-23","2023-09-25",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",14,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +12,"[P] Rhinitis or common cold or Sinusitis","Rhinitis or common cold or Sinusitis","Rhinitis or common cold or Sinusitis","rao@ohdsi.org","Pending peer review","","All events of Rhinitis or common cold","#Symptoms",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","257007, 4320791","https://forums.ohdsi.org/t/17895","2021-09-23","2023-09-25",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",14,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +13,"[P] Myalgia (not explained by injury, ischemia or systemic inflammation)","Myalgia (not explained by injury, ischemia or systemic inflammation)","Myalgia (not explained by injury, ischemia or systemic inflammation)","rao@ohdsi.org","Pending peer review","","All events of Myalgia. Exclude persons with secondary causes of myalgia explained by injury, ischemia or chronic systemic inflammation","#Symptoms",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","442752, 4150129","https://forums.ohdsi.org/t/17895","2021-09-23","2023-09-25",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",14,1,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,2,1,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +14,"[P] Myalgia","Myalgia","Myalgia","rao@ohdsi.org","Pending peer review","","All events of Myalgia","#Symptoms",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","442752, 4150129","https://forums.ohdsi.org/t/17895","2021-09-23","2023-09-25",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",14,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +15,"[P][R] Exposure to viral disease ","Exposure to viral disease","Exposure to viral disease","rao@ohdsi.org","Pending peer review","","all events of Exposure to viral disease. Persons exit on cohort end date","#Referent, #Observation",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","37016200","","2021-09-23","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"Observation",0,0,1,0,0,0,0,0,0,,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,, +16,"[W] Exposure to SARS-Cov 2 and coronavirus","Exposure to SARS-Cov 2 and coronavirus","Exposure to SARS-Cov 2 and coronavirus","rao@ohdsi.org","","","","",1,"","","","","","","","2021-09-23","2023-09-19",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +17,"[P][R] Exposure to SARS-CoV-2 ","Exposure to SARS-CoV-2","Exposure to SARS-CoV-2","rao@ohdsi.org","Pending peer review","","all events of Exposure to SARS-CoV-2. Persons exit on cohort end date","#Referent, #Observation",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","37311059","","2021-09-23","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"Observation",0,0,1,0,0,0,0,0,0,,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,, +18,"[P][R] Multisystem inflammatory syndrome (MIS) ","Multisystem inflammatory syndrome (MIS)","Multisystem inflammatory syndrome (MIS)","rao@ohdsi.org","Pending peer review","","all events of Multisystem inflammatory syndrome (MIS). Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","703578","","2021-09-23","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +20,"[P] Bronchitis or Bronchiolitis","Bronchitis or Bronchiolitis","Bronchitis or Bronchiolitis","rao@ohdsi.org","Pending peer review","","All events of Bronchitis","#Symptoms",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","256451, 260139","https://forums.ohdsi.org/t/17895","2021-09-23","2023-09-25",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",14,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +21,"[P] Acute respiratory distress syndrome (ARDS) or Acute Respiratory Failure","Acute respiratory distress syndrome (ARDS) or Acute Respiratory Failure","Acute respiratory distress syndrome (ARDS) or Acute Respiratory Failure","rao@ohdsi.org","Pending peer review","","All events of Acute respiratory distress syndrome (ARDS) or Acute Respiratory Failure","",1,"","","","","","319049","","2021-09-23","2023-09-19",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +22,"[W] SARS-CoV-2 testing","SARS-CoV-2 testing","SARS-CoV-2 testing","rao@ohdsi.org","Withdrawn","","Withdrawn by contributor before peer review","",1,"","","","","","","","2021-09-23","2023-09-19",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"Measurement",0,0,1,0,0,0,0,0,0,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +23,"Inpatient Hospitalization (1Pe, 0Era)","Inpatient Hospitalization (1Pe, 0Era)","Inpatient Hospitalization (1Pe, 0Era)","rao@ohdsi.org","Accepted","3.4.0","All events of Inpatient visit. This cohort is deemed validated as it represents data convention and did not need to go thru peer review process","#standard, #Visits",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","","","2021-09-23","2023-09-19",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",1,0,"All",FALSE,"All","All",1,1,"VisitOccurrence",0,0,1,0,0,0,0,0,0,,,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,, +24,"Emergency room visits (0Pe, 0Era)","Emergency room visits (0Pe, 0Era)","Emergency room visits (0Pe, 0Era)","rao@ohdsi.org","Accepted","3.4.0","All events of Emergency Room visits. This cohort is deemed validated as it represents data convention and did not need to go thru peer review process","#standard, #Visits",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","","","2021-09-23","2023-09-19",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"VisitOccurrence",0,0,1,0,0,0,0,0,0,,,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,, +25,"All cause mortality","All cause mortality","All cause mortality","rao@ohdsi.org","Pending peer review","3.4.0","Earliest observation of any death","#standard",1,"Gowtham A Rao","'0000-0002-4949-7236'","'OHDSI'","","","","","2021-09-23","2023-09-19",,"",,0,,,"ERA",0,"end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"Death",0,0,0,0,0,0,0,0,0,,,0,,,1,,,,,,,,,,,,,,,,,,,,,,,,, +27,"[P] Asthma without COPD","Asthma without COPD","Asthma without COPD","rao@ohdsi.org","Pending peer review","","Earliest of either asthma diagnosis or therapy for asthma with a history of another asthma therapy more than 180 days before. The person should not have a diagnosis or treatment for COPD in past","",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","317009","","2021-09-23","2023-09-19",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",0,1,"First",FALSE,"All","First",3,3,"ConditionOccurrence, DrugExposure, Observation",0,0,4,1,1,0,0,0,0,1,,0,1,,,1,1,,,,,,,,,,,,,,,,,,,,,,, +29,"[W] Autoimmune condition (FP)","Autoimmune condition (FP)","Autoimmune condition (FP)","rao@ohdsi.org","Withdrawn","","Withdrawn by contributor before peer review. No clinical description, evaluation or discussions found. May need to be revisited in future","",1,"","","","","","76685, 80809, 81893, 81931, 134442, 134618, 135215, 140168, 194992, 199856, 201254, 201606, 254443, 257628, 374919, 432295, 438688, 443394, 4137275, 4232076","","2021-09-23","2023-09-19",,"",,0,,,"ERA",0,"end of continuous observation",,,0,"First",FALSE,"All","First",21,2,"ConditionOccurrence, Observation",0,0,18,0,0,0,0,0,0,1,,0,1,,,,,,,,,,,,,,,,,,,,,,,,,,, +30,"[P] Tuberculosis with treatment using anti tubercular drug","Tuberculosis with treatment using anti tubercular drug","Tuberculosis","rao@ohdsi.org","Pending peer review","","All events of tuberculosis with at least 3 different drugs for tuberculosis at anytime on or after diagnosis","",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","253954, 434557","","2021-09-23","2023-09-25",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",365,1,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,2,1,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +31,"[P] Malignant neoplasm excluding non-melanoma skin cancer","Malignant neoplasm excluding non-melanoma skin cancer","Malignant neoplasm excluding non-melanoma skin cancer","rao@ohdsi.org","Pending peer review","","All events with a malignant neoplastic disease or history of malignant neoplastic disease","",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","137809, 443392","","2021-09-23","2023-09-19",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",2,2,"ConditionOccurrence, Observation",0,0,1,0,0,0,0,0,0,1,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,, +32,"[P] Obesity","Obesity","Obesity","rao@ohdsi.org","Pending peer review","","Persons with obesity diagnosis or a body weight measurement > 120 kg or 265 lbs","#Symptoms",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","433736","https://forums.ohdsi.org/t/17895","2021-09-23","2023-09-25",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",365,0,"All",FALSE,"All","All",5,3,"ConditionOccurrence, Measurement, Observation",0,0,3,0,0,0,0,0,0,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,, +33,"[P] Dementia","Dementia","Dementia","rao@ohdsi.org","Pending peer review","","Persons with the diagnosis of dementia, includes history of Dementia","",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","4182210","","2021-09-23","2023-09-25",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",365,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +34,"[P] Hypertensive disorder or hypertensive complications","Hypertensive disorder or hypertensive complications","Hypertensive disorder or hypertensive complications","rao@ohdsi.org","Pending peer review","","Hypertensive disorder diagnosis or complication of hypertension","",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","312648, 4028741","","2021-09-23","2023-09-19",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +35,"[W] Chronic kidney disease (FP)","Chronic kidney disease (FP)","Chronic kidney disease (FP)","rao@ohdsi.org","Withdrawn","","Withdrawn by contributor before peer review. No clinical description, evaluation or discussions found. May need to be revisited in future","",1,"","","","","","192359, 193782","","2021-09-23","2023-09-19",,"",,0,,,"ERA",0,"end of continuous observation",,,0,"First",TRUE,"First","First",1,1,"ConditionOccurrence",0,0,2,1,0,0,0,0,0,1,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,, +36,"[P] Human immunodeficiency virus (not HIV2) infection","Human immunodeficiency virus (not HIV2) infection","Human immunodeficiency virus (not HIV2) infection","rao@ohdsi.org","Pending peer review","","Earliest diagnosis of HIV (not HIV2) with another diagnosis in future or a treatment for HIV","",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","439727","","2021-09-23","2023-09-19",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",0,0,"First",TRUE,"All","All",1,1,"ConditionOccurrence",0,0,3,1,0,0,0,0,0,1,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,, +37,"[P] Hepatitis C infection, carrier status or antibody positivity","Hepatitis C infection, carrier status or antibody positivity","Hepatitis C infection, carrier status or antibody positivity","rao@ohdsi.org","Pending peer review","","Earliest diagnosis of Hepatitis C","",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","197494, 198964","","2021-09-23","2023-09-19",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +38,"[P] Heart disease","Heart disease","Heart disease","rao@ohdsi.org","Pending peer review","","Earliest of any Heart disease or arteriosclerosis of coronary artery bypass graft","",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","313217, 44784217","","2021-09-23","2023-09-19",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +39,"[W] End stage renal disease (FP)","End stage renal disease (FP)","End stage renal disease (FP)","rao@ohdsi.org","Withdrawn","","Withdrawn by contributor before peer review. No clinical description, evaluation or discussions found. May need to be revisited in future","",1,"","","","","","193782","","2021-09-23","2023-09-19",,"",,0,,,"ERA",0,"end of continuous observation",,,0,"All",TRUE,"First","First",2,2,"ConditionOccurrence, Observation",0,0,2,1,0,0,0,0,0,1,,0,1,,,,,,,,,,,,,,,,,,,,,,,,,,, +40,"[P] Diabetes Mellitus Type 2 or history of diabetes","Diabetes Mellitus Type 2 or history of diabetes","Diabetes Mellitus Type 2 or history of diabetes","rao@ohdsi.org","Pending peer review","","Earliest of any Type 2 Diabetes Mellitus or History of Diabetes","",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","201820, 201826","","2021-09-23","2023-09-19",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",2,2,"ConditionOccurrence, Observation",0,0,2,0,0,0,0,0,0,1,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,, +41,"[W] Chronic kidney disease broad (FP)","Chronic kidney disease broad (FP)","Chronic kidney disease broad (FP)","rao@ohdsi.org","Withdrawn","","Withdrawn by contributor before peer review. No clinical description, evaluation or discussions found. May need to be revisited in future","",1,"","","","","","192359, 193782","","2021-09-23","2023-09-19",,"",,0,,,"ERA",0,"end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,, +42,"[W] End stage renal disease broad (FP)","End stage renal disease broad (FP)","End stage renal disease broad (FP)","rao@ohdsi.org","Withdrawn","","Withdrawn by contributor before peer review. No clinical description, evaluation or discussions found. May need to be revisited in future","",1,"","","","","","193782","","2021-09-23","2023-09-19",,"",,0,,,"ERA",0,"end of continuous observation",,,0,"All",FALSE,"All","First",2,2,"ConditionOccurrence, Observation",0,0,1,0,0,0,0,0,0,1,,0,1,,,,,,,,,,,,,,,,,,,,,,,,,,, +43,"[P] Respiratory or pulmonary tuberculosis","Respiratory or pulmonary tuberculosis","Respiratory or pulmonary tuberculosis","rao@ohdsi.org","Pending peer review","","Earliest occurrence of respiratory or pulmonary tuberculosis","",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","253954, 434557","","2021-09-23","2023-09-25",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",365,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +44,"[P][R] COVID-19 ","COVID-19","COVID-19","rao@ohdsi.org","Pending peer review","","all events of COVID-19. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","37311061","","2021-09-24","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +45,"[W] COVID-19 diagnosis with SARS-Cov-2 test (-3d to 3d)","COVID-19 diagnosis with SARS-Cov-2 test (-3d to 3d)","COVID-19 diagnosis with SARS-Cov-2 test (-3d to 3d)","rao@ohdsi.org","Withdrawn","","Withdrawn by contributor before peer review","",1,"","","","","","439676, 37311061","","2021-09-24","2023-09-19",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",0,1,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,2,1,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +46,"[W] COVID-19 diagnosis and SARS-CoV-2 test (1pos) within 3d","COVID-19 diagnosis and SARS-CoV-2 test (1pos) within 3d","COVID-19 diagnosis and SARS-CoV-2 test (1pos) within 3d","rao@ohdsi.org","Withdrawn","","Withdrawn by contributor before peer review","",1,"","","","","","439676, 37311061","","2021-09-24","2023-09-19",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",2,2,"ConditionOccurrence, Measurement",0,0,2,1,0,0,0,0,0,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +47,"[W] COVID-19 diagnosis and SARS-CoV-2 test (1pos) (0neg) within 3d","COVID-19 diagnosis and SARS-CoV-2 test (1pos) (0neg) within 3d","COVID-19 diagnosis and SARS-CoV-2 test (1pos) (0neg) within 3d","rao@ohdsi.org","Withdrawn","","Withdrawn by contributor before peer review","",1,"","","","","","439676, 37311061","","2021-09-24","2023-09-19",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",2,2,"ConditionOccurrence, Measurement",0,0,2,1,0,0,0,0,0,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +48,"[W] COVID-19 diagnosis and SARS-CoV-2 test (0pos upto 3d, 1neg within 3d)","COVID-19 diagnosis and SARS-CoV-2 test (0pos upto 3d, 1neg within 3d)","COVID-19 diagnosis and SARS-CoV-2 test (0pos upto 3d, 1neg within 3d)","rao@ohdsi.org","Withdrawn","","Withdrawn by contributor before peer review","",1,"","","","","","439676, 37311061","","2021-09-24","2023-09-19",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",0,0,"All",TRUE,"All","All",1,1,"ConditionOccurrence",0,0,2,1,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +51,"[W] SARS-CoV-2 test positive result","SARS-CoV-2 test positive result","SARS-CoV-2 test positive result","rao@ohdsi.org","Withdrawn","","Withdrawn by contributor before peer review","",1,"","","","","","","","2021-09-24","2023-09-19",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"Measurement",0,0,1,0,0,0,0,0,0,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +52,"[W] SARS-CoV-2 test negative result","SARS-CoV-2 test negative result","SARS-CoV-2 test negative result","rao@ohdsi.org","Withdrawn","","Withdrawn by contributor before peer review","",1,"","","","","","","","2021-09-24","2023-09-19",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"Measurement",0,0,1,0,0,0,0,0,0,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +53,"[W] SARS-CoV-2 test positive or negative result - keep persons with positive","SARS-CoV-2 test positive or negative result - keep persons with positive","SARS-CoV-2 test positive or negative result - keep persons with positive","rao@ohdsi.org","Withdrawn","","Withdrawn by contributor before peer review","",1,"","","","","","","","2021-09-24","2023-09-19",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",0,1,"First",FALSE,"All","First",2,1,"Measurement",0,0,1,1,0,0,0,0,0,,1,0,,,,,,,,,,,,,,,,,,,,,,,,,,,, +54,"[P] Febrile seizure","Febrile seizure","Febrile seizure","rao@ohdsi.org","Pending peer review","","All events of Febrile seizures","#Symptoms",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","377091, 4196708","https://forums.ohdsi.org/t/17895","2021-09-24","2023-09-25",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",14,1,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,2,1,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +56,"[P] SARS-CoV-2 test (1pos) or COVID-19 diagnosis with (0 neg -3d to 3d)","SARS-CoV-2 test (1pos) or COVID-19 diagnosis with (0 neg -3d to 3d)","SARS-CoV-2 test (1pos) or COVID-19 diagnosis with (0 neg -3d to 3d)","rao@ohdsi.org","Pending peer review","","All events of Covid Diagnosis without a negative test result or a SARS-Cov-2 test positive test","",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","439676, 37311061","","2021-09-30","2023-09-19",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",2,2,"ConditionOccurrence, Measurement",0,0,2,1,0,0,0,0,0,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +57,"[P][R] Bleeding ","Bleeding","Bleeding","rao@ohdsi.org","Pending peer review","","all events of Bleeding. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","192671, 437312","https://forums.ohdsi.org/t/17895","2021-09-30","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +59,"[W] COVID-19 diagnosis with no SARS-CoV-2 test","COVID-19 diagnosis with no SARS-CoV-2 test","COVID-19 diagnosis with no SARS-CoV-2 test","rao@ohdsi.org","","","","",1,"","","","","","439676, 37311061","","2021-10-05","2023-09-19",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",0,1,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,2,1,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +60,"[W] SARS-CoV-2 test positive and negative result","SARS-CoV-2 test positive and negative result","SARS-CoV-2 test positive and negative result","rao@ohdsi.org","Withdrawn","","Withdrawn by contributor before peer review","",1,"","","","","","","","2021-10-05","2023-09-19",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",0,2,"All",FALSE,"All","All",1,1,"Measurement",0,0,1,1,0,0,0,0,0,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +61,"[P] Bradycardia or heart block with inpatient admission","Bradycardia or heart block with inpatient admission","Bradycardia or heart block with inpatient admission","rao@ohdsi.org","Pending peer review","","All events of Bradycardia or heart block or first occurrence of pace maker limited to inpatient visit","",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","317302, 320425","","2021-10-05","2023-09-25",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",30,0,"All",TRUE,"All","All",3,3,"ConditionOccurrence, DeviceExposure, ProcedureOccurrence",0,0,3,1,0,0,0,1,0,1,,1,,,,,,1,1,1,,,,,,,,,,,,,,,,,,,, +62,"[P][R] Seizure related finding ","Seizure related finding","Seizure related finding","rao@ohdsi.org","Pending peer review","","all events of Seizure related finding. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","377091, 4196708","https://forums.ohdsi.org/t/17895","2021-10-05","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +63,"Transverse myelitis or symptoms indexed on symptoms or diagnosis (1Ps, 0Era, 365W)","Transverse myelitis or symptoms indexed on symptoms or diagnosis (1Ps, 0Era, 365W)","Transverse myelitis or symptoms indexed on symptoms or diagnosis (1Ps, 0Era, 365W)","rao@ohdsi.org","Accepted","3.7.0","events with a diagnosis of transverse myelitis indexed on diagnosis of transverse myelitis, related spinal disease or symptoms of transverse myelitis, followed by a diagnosis of transverse myelitis within 30 days. Events have a 365 days washout period. The events persist for 1 day. Symptoms of Transverse Myelitis included asthenia, muscle weakness, myelitis, paresthesia","#Accepted, #Level2",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","Evan Minty","","79908, 139803, 443904","https://forums.ohdsi.org/t/17769","2021-10-05","2023-09-19",,"",,0,,,"ERA",0,"fixed duration relative to initial event","StartDate",1,1,"All",FALSE,"All","All",2,1,"ConditionOccurrence",0,0,2,1,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +64,"[P] Composite Flu-like symptoms fever, cough, malaise, fatigue, dyspnea, myalgia","Composite Flu-like symptoms fever, cough, malaise, fatigue, dyspnea, myalgia","Composite Flu-like symptoms fever, cough, malaise, fatigue, dyspnea, myalgia","rao@ohdsi.org","Pending peer review","","All events of flue like symptoms or signs","#Symptoms, #Signs",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","254761, 312437, 437663, 439926, 442752, 4041664, 4178904, 4272240, 43530714","https://forums.ohdsi.org/t/17895","2021-10-05","2023-09-25",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",14,0,"All",FALSE,"All","All",11,3,"ConditionOccurrence, Measurement, Observation",0,0,7,0,0,0,0,0,0,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,, +65,"[W] Acute pancreatitis with inpatient admission","Acute pancreatitis with inpatient admission","Acute pancreatitis with inpatient admission","rao@ohdsi.org","Withdrawn","","Withdrawn and replaced by 205","",1,"","","","","","199074","","2021-10-05","2023-09-19",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",0,0,"All",TRUE,"All","All",1,1,"ConditionOccurrence",0,0,2,1,0,0,0,1,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +66,"[W] Acute renal failure with inpatient admission","Acute renal failure with inpatient admission","Acute renal failure with inpatient admission","rao@ohdsi.org","Withdrawn","","Withdrawn by contributor before peer review","",1,"","","","","","197320","","2021-10-05","2023-09-19",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",0,0,"All",TRUE,"All","All",1,1,"ConditionOccurrence",0,0,2,1,0,0,0,1,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +67,"[W] Hepatic failure with inpatient admission","Hepatic failure with inpatient admission","Hepatic failure with inpatient admission","rao@ohdsi.org","Withdrawn","","Withdrawn by contributor before peer review","",1,"","","","","","4245975","","2021-10-05","2023-09-19",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",0,0,"All",TRUE,"All","All",1,1,"ConditionOccurrence",0,0,2,1,0,0,0,1,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +68,"[W] Heart failure with inpatient admission","Heart failure with inpatient admission","Heart failure with inpatient admission","rao@ohdsi.org","Withdrawn","","Withdrawn by contributor before peer review","",1,"","","","","","316139, 319835","","2021-10-05","2023-09-19",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",0,0,"All",TRUE,"All","All",1,1,"ConditionOccurrence",0,0,2,1,0,0,0,1,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +69,"[W] Angioedema with inpatient admission","Angioedema with inpatient admission","Angioedema with inpatient admission","rao@ohdsi.org","Withdrawn","","Withdrawn by contributor before peer review","",1,"","","","","","432791","","2021-10-05","2023-09-19",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",0,0,"All",TRUE,"All","All",1,1,"ConditionOccurrence",0,0,2,1,0,0,0,1,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +70,"[P] Stroke (ischemic or hemorrhagic) with inpatient admission","Stroke (ischemic or hemorrhagic) with inpatient admission","Stroke (ischemic or hemorrhagic) with inpatient admission","rao@ohdsi.org","Pending peer review","","all events of ischemic or hemorrhagic stroke in an inpatient or ER visit","",1,"","","","","","443454","","2021-10-05","2023-09-19",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",0,0,"All",TRUE,"All","All",1,1,"ConditionOccurrence",0,0,2,1,0,0,0,1,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +71,"[P] Acute myocardial infarction with inpatient admission","Acute myocardial infarction with inpatient admission","Acute myocardial infarction with inpatient admission","rao@ohdsi.org","Pending peer review","","all events of acute myocardial infarction in an inpatient or ER visit","",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","314666, 4329847","https://forums.ohdsi.org/t/15900","2021-10-05","2023-09-25",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",30,0,"All",TRUE,"All","All",1,1,"ConditionOccurrence",0,0,2,1,0,0,0,1,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +72,"[P] Influenza diagnosis or positive test result","Influenza diagnosis or positive test result","Influenza diagnosis or positive test result","rao@ohdsi.org","Pending peer review","","all events of influenza diagnosis, or positive influenza test result","",1,"","","","","","4183609, 4266367","","2021-10-05","2023-09-19",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",4,3,"ConditionOccurrence, Measurement, Observation",0,0,3,0,0,0,0,0,0,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,, +74,"[P] Hemorrhagic stroke (intracerebral bleeding) with inpatient admission","Hemorrhagic stroke (intracerebral bleeding) with inpatient admission","Hemorrhagic stroke (intracerebral bleeding) with inpatient admission","rao@ohdsi.org","Pending peer review","","all events of hemorrhagic stroke while inpatient or ER setting.","",1,"Unknown","","","","","376713, 439847","","2021-10-05","2023-09-19",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",0,0,"All",TRUE,"All","All",1,1,"ConditionOccurrence",0,0,2,1,0,0,0,1,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +75,"[P] Ischemic stroke with inpatient admission","Ischemic stroke with inpatient admission","Ischemic stroke with inpatient admission","rao@ohdsi.org","Pending peer review","","all events of ischemic stroke while inpatient or ER setting.","",1,"","","","","","443454","","2021-10-05","2023-09-19",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",0,0,"All",TRUE,"All","All",1,1,"ConditionOccurrence",0,0,2,1,0,0,0,1,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +76,"[P] Transient ischemic attack with inpatient admission","Transient ischemic attack with inpatient admission","Transient ischemic attack with inpatient admission","rao@ohdsi.org","Pending peer review","","all events of transient ischemic attack while in inpatient or ER setting","",1,"","","","","","373503","","2021-10-05","2023-09-19",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",0,0,"All",TRUE,"All","All",1,1,"ConditionOccurrence",0,0,2,1,0,0,0,1,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +77,"[P] Gastrointestinal bleeding with inpatient admission","Gastrointestinal bleeding with inpatient admission","Gastrointestinal bleeding with inpatient admission","rao@ohdsi.org","Pending peer review","","all events of gastrointestinal hemorrhage in inpatient or ER setting","",1,"","","","","","192671","","2021-10-05","2023-09-19",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",0,0,"All",TRUE,"All","All",1,1,"ConditionOccurrence",0,0,2,1,0,0,0,1,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +78,"[P] Cardiac arrhythmia with inpatient admission","Cardiac arrhythmia with inpatient admission","Cardiac arrhythmia with inpatient admission","rao@ohdsi.org","Pending peer review","","all events of cardiac arrhythmia or treatments for cardiac arrhythmia in inpatient or ER setting","",1,"","","","","","313217, 44784217","","2021-10-05","2023-09-19",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",0,1,"All",FALSE,"All","All",4,4,"ConditionOccurrence, DeviceExposure, DrugExposure, ProcedureOccurrence",0,0,4,1,0,0,0,1,0,1,,1,,,,1,,1,1,,,,,,,,,,,,,,,,,,,,, +79,"[P] Dialysis with inpatient admission","Dialysis with inpatient admission","Dialysis with inpatient admission","rao@ohdsi.org","Pending peer review","","all events of dialysis in inpatient setting","",1,"","","","","","438624, 4027133","","2021-10-05","2023-09-19",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",0,0,"All",TRUE,"All","All",3,3,"ConditionOccurrence, Observation, ProcedureOccurrence",0,0,2,1,0,0,0,1,0,1,,1,1,,,,,,1,,,,,,,,,,,,,,,,,,,,, +80,"[P] Extracorporeal Membrane Oxygenation with inpatient admission","Extracorporeal Membrane Oxygenation with inpatient admission","Extracorporeal Membrane Oxygenation with inpatient admission","rao@ohdsi.org","Pending peer review","","all events of Extracorporeal Membrane Oxygenation in inpatient setting","",1,"","","","","","","","2021-10-05","2023-09-19",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",0,0,"All",TRUE,"All","All",1,1,"ProcedureOccurrence",0,0,2,1,0,0,0,1,0,,,1,,,,,,,1,,,,,,,,,,,,,,,,,,,,, +81,"[P] Cesarean section","Cesarean section","Cesarean section","rao@ohdsi.org","Pending peer review","","all events of Cesarean section","",1,"","","","","","","","2021-10-05","2023-09-19",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ProcedureOccurrence",0,0,1,0,0,0,0,0,0,,,1,,,,,,,1,,,,,,,,,,,,,,,,,,,,, +82,"[P] Intensive services during hospitalization","Intensive services during hospitalization","Intensive services during hospitalization","rao@ohdsi.org","Pending peer review","","all events of intensive care service in an inpatient setting","",1,"","","","","","40481547","","2021-10-05","2023-09-19",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",0,0,"All",TRUE,"All","All",5,3,"Measurement, Observation, ProcedureOccurrence",0,0,4,1,0,0,0,1,0,,1,1,1,,,,,,1,,,,,,,,,,,,,,,,,,,,, +84,"[P] SARS-CoV-2 test (1pos) or COVID-19 diagnosis with (1pos or 0 neg 0d to 3d)","SARS-CoV-2 test (1pos) or COVID-19 diagnosis with (1pos or 0 neg 0d to 3d)","SARS-CoV-2 test (1pos) or COVID-19 diagnosis with (1pos or 0 neg 0d to 3d)","rao@ohdsi.org","Pending peer review","","all events of positive SAR-CoV-2 test result or Covid-19 diagnosis without a negative test result on or within 3 days of diagnosis","",1,"","","","","","439676, 37311061","","2021-10-09","2023-09-19",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",2,2,"ConditionOccurrence, Measurement",0,0,2,1,0,0,0,0,0,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +86,"[W] SARS-CoV-2 test positive or negative result","SARS-CoV-2 test positive or negative result","SARS-CoV-2 test positive or negative result","rao@ohdsi.org","Withdrawn","","Withdrawn by contributor before peer review","",1,"","","","","","","","2021-10-11","2023-09-19",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",0,0,"First",FALSE,"All","First",2,1,"Measurement",0,0,1,0,0,0,0,0,0,,1,0,,,,,,,,,,,,,,,,,,,,,,,,,,,, +87,"[W] SARS-CoV-2 test","SARS-CoV-2 test","SARS-CoV-2 test","rao@ohdsi.org","Withdrawn","","Withdrawn by contributor before peer review","",1,"","","","","","","","2021-10-21","2023-09-19",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"Measurement",0,0,1,0,0,0,0,0,0,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +95,"[P] Delirium","Delirium","Delirium","rao@ohdsi.org","Pending peer review","","first occurrence of Delirium","#Symptoms",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","373995","https://forums.ohdsi.org/t/17895","2022-02-04","2023-09-25",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",14,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +100,"[P][R] Alzheimer's disease","Alzheimer's disease","Alzheimer's disease","ryan@ohdsi.org","Pending peer review","","all events of Alzheimer's disease. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","378419","","2022-02-06","2023-09-25",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +119,"Systemic lupus erythematosus indexed on signs, symptoms, treatment, or diagnosis (FP)","Systemic lupus erythematosus indexed on signs, symptoms, treatment, or diagnosis (FP)","Systemic lupus erythematosus indexed on signs, symptoms, treatment, or diagnosis (FP)","rao@ohdsi.org","Accepted","3.10.0","first signs and symptoms suggestive of Systemic lupus erythematosus (SLE) or first treatment suggestive of SLE with SLE diagnosis with 90 days","#PhenotypePhebruary, #2023, #SystemicLupusErythematosus",1,"Joel Swerdel, Daniel Prieto-Alhambra","","","","","138525, 194133","https://forums.ohdsi.org/t/18223","2022-02-10","2023-09-19",,"",,0,,,"ERA",0,"end of continuous observation",,,0,"First",FALSE,"All","First",2,2,"ConditionOccurrence, DrugExposure",0,0,3,1,0,0,0,0,0,1,,0,,,,1,,,,1,,,,,,,,,,,,,,,,,,,, +123,"[P] Suicide attempt or self inflicted injury","Suicide attempt or self inflicted injury","Suicide attempt or self inflicted injury","rao@ohdsi.org","Pending","","Suicide or self inflicted events","#Submitted",1,"Azza A Shoaibi","'0000-0002-4949-7236'","'OHDSI'","","","444362","","2022-02-11","2023-09-25",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",30,0,"All",FALSE,"All","All",2,2,"ConditionOccurrence, Observation",0,0,1,0,0,0,0,0,0,1,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,, +134,"[P] Attention Deficit Hyperactivity Disorder indexed on diagnosis or treatment","Attention Deficit Hyperactivity Disorder indexed on diagnosis or treatment","Attention Deficit Hyperactivity Disorder indexed on diagnosis or treatment","ryan@ohdsi.org","Pending peer review","","First occurrence of Attention-deficit hyperactivity disorder (ADHD) condition or related procedures, indexed on the earliest occurrence of ADHD condition, procedure or treatment (limited to drug exposure followed by a related condition or procedure), with 365d prior observation, exit at end of observation","#PhenotypePhebruary",1,"Patrick B. Ryan","","","","","438409, 4047120","https://forums.ohdsi.org/t/15901","2022-02-13","2023-09-19",,"",,0,,,"ERA",0,"end of continuous observation",,,1,"First",FALSE,"All","First",3,3,"ConditionOccurrence, DrugExposure, ProcedureOccurrence",0,0,2,1,0,0,0,0,0,1,,0,,,,1,,,1,,,,,,,,,,,,,,,,,,,,, +142,"[P] ST elevated Myocardial infarction or Acute MI with ST elevation","ST elevated Myocardial infarction or Acute MI with ST elevation","Earliest of ST elevated Myocardial infarction or Acute MI with ST elevation","rao@ohdsi.org","Pending","","Earliest of ST elevated Myocardial infarction or Acute Myocardial Infarction with ST elevation","#PhenotypePhebruary, #2022",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","314666, 4296653, 4329847","https://forums.ohdsi.org/t/15900","2022-02-15","2023-09-25",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",30,0,"All",FALSE,"All","All",2,1,"ConditionOccurrence",0,0,3,1,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +189,"[P][R] Right upper quadrant pain ","Right upper quadrant pain","Right upper quadrant pain","rao@ohdsi.org","Pending peer review","","all events of Right upper quadrant pain. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","198263","https://forums.ohdsi.org/t/17895","2022-06-29","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +190,"[P][R] Swollen abdomen ","Swollen abdomen","Swollen abdomen","rao@ohdsi.org","Pending peer review","","all events of Swollen abdomen. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","442597, 4152351","https://forums.ohdsi.org/t/17895","2022-06-29","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +191,"[P] Fatigue, Asthenia, Malaise, Lethargy, Anorexia","Fatigue, Asthenia, Malaise, Lethargy, Anorexia","Fatigue, Asthenia, Malaise, Lethargy, Anorexia","rao@ohdsi.org","Pending peer review","","events with a diagnosis of Fatigue, Asthenia, Malaise, Lethargy, Anorexia but not senile, cancer or stroke related asthenia","#Symptoms",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","439926, 4272240","https://forums.ohdsi.org/t/17895","2022-06-29","2023-09-25",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",14,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +192,"[P] Skin, Nasal or oral mucosal bleeding events often seen during thrombocytopenia","Skin, Nasal or oral mucosal bleeding events often seen during thrombocytopenia","Skin, Nasal or oral mucosal bleeding events often seen during thrombocytopenia","rao@ohdsi.org","Pending peer review","","all events of Skin, Nasal or oral mucosal bleeding events such as epistaxis. Does not include gastrointestinal bleeding. Limited to bleeding common during thrombocytopenia","#Symptoms",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","4096682",,"2022-06-29","2023-09-25",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",14,0,"All",FALSE,"All","All",3,3,"ConditionOccurrence, Observation, ProcedureOccurrence",0,0,1,0,0,0,0,0,0,1,,1,1,,,,,,1,,,,,,,,,,,,,,,,,,,,, +193,"[P] Jaundice or Itching","Jaundice or Itching","Jaundice or Itching","rao@ohdsi.org","Pending peer review","","events of jaundice or itching","#Symptoms",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","137977, 435656","https://forums.ohdsi.org/t/17895","2022-06-29","2023-09-25",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",14,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +194,"[P] Encephalopathy or its presentations","Encephalopathy or its presentations","Encephalopathy or its presentations","rao@ohdsi.org","Pending peer review","","events Encephalopathy or its presentations","#Symptoms",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","436222","https://forums.ohdsi.org/t/17895","2022-06-29","2023-09-25",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",14,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +195,"[P] Primary or malignant urothelial bladder cancer","Primary or malignant urothelial bladder cancer","Primary or malignant urothelial bladder cancer","rao@ohdsi.org","Pending peer review","","all events of Primary or malignant urothelial bladder cancer","",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","196360, 197508","","2022-06-30","2023-09-19",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +196,"[P] Rheumatoid arthritis or complications","Rheumatoid arthritis or complications","Rheumatoid arthritis or complications","rao@ohdsi.org","Pending peer review","","All events of rheumatoid arthritis or complications","#Disease",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","80809","","2022-06-30","2023-09-19",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",2,2,"ConditionOccurrence, Observation",0,0,1,0,0,0,0,0,0,1,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,, +197,"[P] Coronary Artery Disease from vessel disease to ischemic injury","Coronary Artery Disease from vessel disease to ischemic injury","Coronary Artery Disease from vessel disease to ischemic injury","rao@ohdsi.org","Pending peer review","","all occurrence of coronary artery disease","",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","318443, 764123","","2022-06-30","2023-09-19",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",99999,0,"All",FALSE,"All","All",2,2,"ConditionOccurrence, Observation",0,0,1,0,0,0,0,0,0,1,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,, +198,"[P] Crohns disease or its complication","Crohns disease or its complication","Crohns disease or its complication","rao@ohdsi.org","Pending peer review","","All events of crohns disease or complications","#Disease",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","201606","","2022-06-30","2023-09-25",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",365,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +199,"[P] Major Depressive Disorder","Major Depressive Disorder","Major Depressive Disorder","rao@ohdsi.org","Pending peer review","","All events of major depressive disorder","#Disease",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","440383","","2022-06-30","2023-09-25",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",365,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +200,"[P] Psoriasis of skin","Psoriasis of skin","Psoriasis of skin","rao@ohdsi.org","Pending peer review","","All events of psoriasis of skin","#Disease",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","140168","","2022-06-30","2023-09-25",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",1095,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +201,"[P] Ulcerative colitis or complications","Ulcerative colitis or complications","Ulcerative colitis or complications","rao@ohdsi.org","Pending peer review","","All events of Ulcerative colitis or complications","#Disease",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","81893","","2022-06-30","2023-09-25",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",730,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,7,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +207,"[P] Acquired Pure Red Cell Aplasia","Acquired Pure Red Cell Aplasia","Acquired Pure Red Cell Aplasia","rao@ohdsi.org","Pending peer review","","earliest of acquired pure red cell aplasia indexed on anemia, with no congenital or genetic anemia or constitutional aplasia, and no erroneous measurements such as normal hemoglobin or hematocrit. Persons should not have constitutional aplasia as it represents congenital form of aplasia and should not have bone marrow transplantation","#DME",1,"Azza Shoaibi","'0000-0002-6976-2594'","'OHDSI'","","","26942, 138723, 4144746","https://forums.ohdsi.org/t/17854","2022-11-10","2024-09-11",,"",,0,,,"ERA",0,"end of continuous observation",,,6,"All",FALSE,"All","First",4,2,"ConditionOccurrence, Measurement",0,0,8,1,0,0,0,0,0,1,1,0,,,,,,,,,,,,,,,,,,,,,,,,,,,, +208,"[P] Febrile Neutropenia or Neutropenic Fever","Febrile Neutropenia or Neutropenic Fever","Febrile Neutropenia or Neutropenic Fever","rao@ohdsi.org","Pending peer review","","All events of febrile neutropenia, indexed on the diagnosis of febrile neutropenia or a fever (diagnosis or measurement) cooccurring with neutropenia (diagnosis or measurement) within 1 day , or a diagnosis of clinically significant infection cooccurring with neutropenia (diagnosis or measurement) within 1 day. Restricted to events overlapping with in an inpatient or emergency room visit and excluding events with a normal neutrophil count (ANC) on index.","#DME",1,"'Gowtham A. Rao', 'Azza Shoaibi'","'0000-0002-4949-7236', '0000-0002-6976-2594'","'OHDSI'","","","257011, 437663, 4170143, 4250734","https://forums.ohdsi.org/t/17876","2022-11-10","2023-09-19",,"",,0,,,"ERA",30,"fixed duration relative to initial event","EndDate",3,2,"All",TRUE,"All","All",8,3,"ConditionOccurrence, Measurement, Observation",0,0,7,1,0,0,0,1,0,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,, +209,"[P] Hemolytic Anemia Extra corpuscular ex hgpathy, memb defect, g6pd","Hemolytic Anemia Extra corpuscular ex hgpathy, memb defect, g6pd","Hemolytic Anemia Extra corpuscular ex hgpathy, memb defect, g6pd","rao@ohdsi.org","Pending peer review","","all events of hemolytic anemia, indexed on anemia or hemolysis, without congenital or hereditary causes of hemolytic anemia of membrane, enzyme or RBC structure","",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","435503, 439777, 441269, 4250490","https://forums.ohdsi.org/t/17856","2022-11-11","2023-09-19",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",0,9,"All",FALSE,"All","All",5,2,"ConditionOccurrence, Measurement",0,0,12,1,0,0,0,0,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +210,"[P] Hemolytic Anemia, without Extra corpuscular ex hgpathy, memb defect","Hemolytic Anemia, without Extra corpuscular ex hgpathy, memb defect","Hemolytic Anemia Extra corpuscular ex hgpathy, memb defect","rao@ohdsi.org","Pending peer review","","all events of hemolytic anemia, indexed on anemia or hemolysis, without congenital or hereditary causes of hemolytic anemia of membrane, or RBC structure. Persons with enzyme disorder (e.g. G-6-PD deficiency) are not excluded","#DME",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","435503, 439777, 441269, 4250490","https://forums.ohdsi.org/t/17856","2022-11-11","2024-10-02",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",0,7,"All",FALSE,"All","All",5,2,"ConditionOccurrence, Measurement",0,0,11,1,0,0,0,0,0,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +211,"[P] Pancytopenia, Acquired","Pancytopenia, Acquired","Pancytopenia, Acquired","rao@ohdsi.org","Pending peer review","","All events of Pancytopenia, indexed on diagnosis or lab results. Excluded are patients with severe congenital blood disorders that may cause pancytopenia any time prior to 7 days post index. Exist cohort at 60 days post end date. Repeated events will be combined into events eras if they are within 365 days of each other.","#DME",1,"'Gowtham A. Rao', 'Azza Shoaibi'","'0000-0002-4949-7236', '0000-0002-6976-2594'","'OHDSI'","","","432881","","2022-11-11","2024-09-11",,"",,0,,,"ERA",365,"fixed duration relative to initial event","EndDate",60,3,"All",FALSE,"All","All",2,2,"ConditionOccurrence, Measurement",0,0,12,1,0,0,0,0,0,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +213,"[D] Acquired Neutropenia or unspecified leukopenia (21Pe, 365Era)","Acquired Neutropenia or unspecified leukopenia (21Pe, 365Era)","Neutropenia or unspecified leukopenia","rao@ohdsi.org","Accepted","3.11.0","All events of neutropenia indexed on diagnosis or lab results, with no congenital or genetic neutropenia all days pre to 7 days post index. Also excluded, events with normal neutrophil count or a diagnosis of Neutrophilia on index. patients exit 21 days post end date or with the occurrence of a normal neutrophil count. Reoccurring events for the same patients will be combined into event eras if they are within 365 days of each other.","#PhenotypePhebruary, #2023, #Neutropenia, #DME",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","Anna Ostropolets","","435224","https://forums.ohdsi.org/t/17409","2022-11-11","2024-09-11",,"",,0,,,"ERA",365,"fixed duration relative to initial event","EndDate",21,3,"All",FALSE,"All","All",3,2,"ConditionOccurrence, Measurement",0,0,4,1,0,0,0,0,0,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +214,"[P] Acquired Isolated Neutropenia or unspecified leukopenia","Acquired Isolated Neutropenia or unspecified leukopenia","Acquired Isolated Neutropenia or unspecified leukopenia","rao@ohdsi.org","Pending peer review","","all events of neutropenia indexed on diagnosis or lab results with no congenital or genetic neutropenia, and no other cell lines reduced at the same time","",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","435224","https://forums.ohdsi.org/t/17409","2022-11-11","2023-09-19",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",0,9,"All",FALSE,"All","All",3,2,"ConditionOccurrence, Measurement",0,0,10,1,0,0,0,0,0,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +215,"[P] Isolated Immune Thrombocytopenia","Isolated Immune Thrombocytopenia","Isolated Immune Thrombocytopenia","rao@ohdsi.org","Pending peer review","","events of Immune Thrombocytopenia (ITP) with no evidence of congenital or genetic thrombocytopenia, and no simultaneous neutropenia, pancytopenia, bone marrow involvement, anemia.","#DME",1,"'Gowtham A. Rao', 'Azza Shoaibi'","'0000-0002-4949-7236', '0000-0002-6976-2594'","'OHDSI'","","","433749, 4103532","","2022-11-11","2023-09-19",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",0,8,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,9,1,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +216,"[P] Isolated Immune Thrombocytopenia in absence of common thrombocytopenia causes","Isolated Immune Thrombocytopenia in absence of common thrombocytopenia causes","Isolated Immune Thrombocytopenia in absence of common thrombocytopenia causes","rao@ohdsi.org","Pending peer review","","events of Immune Thrombocytopenia (ITP) with no evidence of congenital or genetic thrombocytopenia, and no simultaneous neutropenia, pancytopenia, bone marrow involvement, anemia. Persons exit after 180 days or when they have normal platelet count. Also no evidence of common causes of thrombocytopenia including hypersplenism, antiphospholipid syndrome, paroxysmal noctural hemoglobinuria, hemolytic uremic syndrome, thrombotic microangiopathy, major autoimmune disorders, chronic liver disease, pregnancy HELLP, tumors of hematopoietic cells or nutritional deficiency","#DME",1,"'Gowtham A. Rao', 'Azza Shoaibi'","'0000-0002-4949-7236', '0000-0002-6976-2594'","'OHDSI'","","","433749, 4103532","","2022-11-11","2024-09-11",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",180,20,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,20,1,0,0,0,0,1,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +217,"[W] Thrombotic microangiopathy (TMA) or Microangiopathic hemolytic anemia (MAHA)","Thrombotic microangiopathy (TMA) or Microangiopathic hemolytic anemia (MAHA)","Thrombotic microangiopathy (TMA) or Microangiopathic hemolytic anemia (MAHA)","rao@ohdsi.org","Pending peer review","","Earliest events of Immune Thrombotic microangiopathy or microangiopathic hemolytic anemia indexed on the diagnosis or its treatment or investigation. Events with congenital or genetic thrombocytopenia all time prior to 7 days post index are excluded. Also excluded are patients with Platelet count > 150. cohort exit is 7 days post end date or an occurrence of a normal platelet measure .","#DME",1,"'Gowtham A. Rao', 'Azza Shoaibi'","'0000-0002-4949-7236', '0000-0002-6976-2594'","'OHDSI'","","","313800, 4119134","","2022-11-11","2023-10-16",,"","same as 741",0,,,"ERA",0,"fixed duration relative to initial event","EndDate",7,2,"All",FALSE,"All","First",4,4,"ConditionOccurrence, DrugExposure, Measurement, ProcedureOccurrence",0,0,5,1,0,0,0,0,0,1,1,0,,,,1,,,1,,,,,,,,,,,,,,,,,,,,, +218,"[P] Rhabdomyolysis","Rhabdomyolysis","Rhabdomyolysis","rao@ohdsi.org","Pending peer review","","All events of rhabdomyolysis, indexed on a diagnosis or an observation of of Rhabdomyolysis or Myoglobinuria or a diagnosis of Muscle, ligament and fascia disorders co-occurring with a measurement of creatine kinase that is 5 times above the normal range- within 7 days. With no such events in the last 180 days washout period. Restricted to events that overlap with an inpatient visit. Events are excluded if they had recent trauma such as burn, drowning, hypothermia, hyperthermia, hyperpyrexia, crush syndrome, sepsis, march myoglobinuria, exertional rhabdomyolysis or alcohol intoxication, in the last 14 days including index. cohort exit 0 days post end date.","#DME",1,"'Gowtham A. Rao', 'Azza Shoaibi'","'0000-0002-4949-7236', '0000-0002-6976-2594'","'OHDSI'","","","137967, 4345578","","2022-11-11","2024-09-11",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",3,13,"All",FALSE,"All","All",3,2,"ConditionOccurrence, Observation",0,0,14,1,0,0,0,1,1,1,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,, +219,"[P] Sudden Cardiac arrest or cardiac death","Sudden Cardiac arrest or cardiac death","Sudden Cardiac arrest or cardiac death","rao@ohdsi.org","Pending peer review","","Earliest event of Sudden Cardiac arrest or Cardiac death, indexed on diagnosis or observation of cardiac arrest or cardiac death or a procedures of resuscitation. Restricting to events overlapping an inpatient or ER visit. Cohort exist is 1 day post cohort end date.","#DME",1,"'Gowtham A. Rao', 'Azza Shoaibi'","'0000-0002-4949-7236', '0000-0002-6976-2594'","'OHDSI'","","","321042","","2022-11-11","2024-09-11",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",1,1,"All",FALSE,"All","First",3,3,"ConditionOccurrence, Observation, ProcedureOccurrence",0,0,2,1,0,0,0,1,0,1,,0,1,,,,,,1,,,,,,,,,,,,,,,,,,,,, +220,"[P] Angioedema","Angioedema","Angioedema","rao@ohdsi.org","Pending peer review","","all events of angioedema, with no recent cardiac edema, cellulitis, erysipelas, dermatitis or eczema, lymphedema or insect bites","",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","139900","","2022-11-11","2023-09-25",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",30,7,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,8,1,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +221,"[P] Anaphylaxis Non Environmental exposure related","Anaphylaxis Non Environmental exposure related","Anaphylaxis Non Environmental exposure related","rao@ohdsi.org","Pending peer review","","all events of anaphylaxis that is not due to environmental etiology and no food, substance, insect bite or sting, poisoning as an explanation for anaphylaxis","",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","441202","https://forums.ohdsi.org/t/17835","2022-11-11","2023-09-25",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",30,6,"All",FALSE,"All","All",2,2,"ConditionOccurrence, Observation",0,0,7,1,0,0,0,0,0,1,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,, +222,"[P] Stevens-Johnson syndrome, toxic epidermal necrolysis spectrum","Stevens-Johnson syndrome, toxic epidermal necrolysis spectrum","Stevens-Johnson syndrome, toxic epidermal necrolysis spectrum","rao@ohdsi.org","Pending peer review","","Earliest event of Stevens-Johnson syndrome, Toxic epidermal necrolysis spectrum, indexed on diagnosis of Stevens-Johnson syndrome, Toxic epidermal necrolysis spectrum. Restricting to events overlapping an inpatient or ER visit. Cohort exist is 1 day post cohort end date.","#DME",1,"'Gowtham A. Rao', 'Azza Shoaibi'","'0000-0002-4949-7236', '0000-0002-6976-2594'","'OHDSI'","","","141651","","2022-11-11","2024-09-11",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",1,1,"All",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,2,1,0,0,0,1,0,1,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,, +223,"[P] Posterior reversible encephalopathy syndrome PRES","Posterior reversible encephalopathy syndrome PRES","Posterior reversible encephalopathy syndrome PRES","rao@ohdsi.org","Pending peer review","","all events of posterior reversible encephalopathy syndrome with no hypertensive encephalopathy or eclampsia","",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","42872891","","2022-11-12","2023-09-19",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",0,2,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,3,1,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +224,"[P] Long QT Syndrome or QT prolonged (Acquired)","Long QT Syndrome or QT prolonged (Acquired)","Long QT Syndrome or QT prolonged (Acquired)","rao@ohdsi.org","Pending peer review","","all events of Long QT or QT prolonged. Exclude persons with congenital QT syndrome","",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","314664","","2022-11-12","2023-09-19",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",7,2,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,2,1,0,0,0,0,1,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +225,"[P] Drug-induced Lupus","Drug-induced Lupus","Drug-induced Lupus","rao@ohdsi.org","Pending peer review","","all events of drug induced lupus with no Systemic Lupus Erythematosus","",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","4063581, 4198217","","2022-11-12","2023-09-19",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",0,1,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,2,1,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +226,"[P][R] Drug reaction with eosinophilia and systemic symptoms ","Drug reaction with eosinophilia and systemic symptoms","Drug reaction with eosinophilia and systemic symptoms","rao@ohdsi.org","Pending peer review","","all events of Drug reaction with eosinophilia and systemic symptoms. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","45765791","","2022-11-12","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +227,"[P] Severe Cutaneous Adverse Reaction SCAR (SJS+TEN+DRESS+EM)","Severe Cutaneous Adverse Reaction SCAR (SJS+TEN+DRESS+EM)","Severe Cutaneous Adverse Reaction SCAR (SJS+TEN+DRESS+EM)","rao@ohdsi.org","Pending peer review","","all events of Drug Rash With Eosinophilia and Systemic Symptoms (DRESS), Erythema Multiforme, Stevens-Johnson Syndrome or Toxic-Epidermal necrolysis","",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","132702, 141651, 45765791","","2022-11-12","2023-09-19",,"",,0,,,"ERA",180,"fixed duration relative to initial event","EndDate",3,0,"All",FALSE,"All","All",3,1,"ConditionOccurrence",0,0,3,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +228,"[P] Severe Cutaneous Adverse Reaction SCAR (SJS+TEN+DRESS)","Severe Cutaneous Adverse Reaction SCAR (SJS+TEN+DRESS)","Severe Cutaneous Adverse Reaction SCAR (SJS+TEN+DRESS)","rao@ohdsi.org","Pending peer review","","all events of Drug Rash With Eosinophilia and Systemic Symptoms (DRESS), Stevens-Johnson Syndrome or Toxic-Epidermal necrolysis","",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","141651, 45765791","","2022-11-12","2023-09-19",,"",,0,,,"ERA",180,"fixed duration relative to initial event","EndDate",3,0,"All",FALSE,"All","All",2,1,"ConditionOccurrence",0,0,3,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +229,"[P] Progressive multifocal leukoencephalopathy","Progressive multifocal leukoencephalopathy","Progressive multifocal leukoencephalopathy","rao@ohdsi.org","Pending peer review","","Earliest occurrence of progressive multifocal leukoencephalopathy, indexed on diagnosis of multifocal leukoencephalopathy. Cohort exist at the end of observation period","#DME",1,"'Gowtham A. Rao', 'Azza Shoaibi'","'0000-0002-4949-7236', '0000-0002-6976-2594'","'OHDSI'","","","433957","","2022-11-12","2024-09-11",,"",,0,,,"ERA",0,"end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,, +230,"[P] Autoimmune hepatitis","Autoimmune hepatitis","Autoimmune hepatitis","rao@ohdsi.org","Pending peer review","","all events of autoimmune hepatitis with no chronic liver diseases that may have similar presentation up to 365days prior such as viral hepatitis, drug induced liver injury, alcoholic liver disease, and no systemic lupus erythematosus in past 365 days","",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","200762","","2022-11-12","2023-09-19",,"",,0,,,"ERA",365,"fixed duration relative to initial event","EndDate",365,2,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,3,1,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +231,"[P][R] Erythema multiforme ","Erythema multiforme","Erythema multiforme","rao@ohdsi.org","Pending peer review","","all events of Erythema multiforme. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","132702","","2022-11-12","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +232,"[P] Paresthesia","Paresthesia","Paresthesia","rao@ohdsi.org","Pending peer review","","all events of paresthesia","#Symptoms",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","4090425","https://forums.ohdsi.org/t/17895","2022-11-12","2023-09-25",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",90,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +233,"[P] Hemorrhagic stroke","Hemorrhagic stroke","Hemorrhagic stroke","rao@ohdsi.org","Pending peer review","","all events of hemorrhagic stroke during an inpatient or ER visit","",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","376713, 439847","","2022-11-12","2023-09-19",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",90,1,"All",TRUE,"All","All",1,1,"ConditionOccurrence",0,0,2,1,0,0,0,1,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +234,"Appendicitis (1Pe, 180Era)","Appendicitis (1Pe, 180Era)","Appendicitis (1Pe, 180Era)","rao@ohdsi.org","Accepted","3.11.0","events of appendicitis with an inpatient or ER visit with no events in 365 days clean window","#PhenotypePhebruary, #2023",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","Azza Shoaibi","","440448, 441604","https://forums.ohdsi.org/t/18188","2022-11-12","2023-09-19",,"",,0,,,"ERA",180,"fixed duration relative to initial event","EndDate",1,0,"All",TRUE,"All","All",1,1,"ConditionOccurrence",0,0,2,1,0,0,0,1,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +235,"[P] Guillain Barre syndrome inpatient","Guillain Barre syndrome inpatient","Guillain Barre syndrome inpatient","rao@ohdsi.org","Pending peer review","","earliest event of Guillain Barre Syndrome during inpatient or ER stay","",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","374925","","2022-11-12","2023-09-25",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",365,0,"All",TRUE,"All","All",1,1,"ConditionOccurrence",0,0,2,1,0,0,0,1,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +236,"[P] Idiopathic Peripheral Neuropathy","Idiopathic Peripheral Neuropathy","Idiopathic Peripheral Neuropathy","rao@ohdsi.org","Pending peer review","","all events of idiopathic peripheral neuropathy","",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","375806, 4175154","","2022-11-12","2023-09-25",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",730,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +237,"[P] Kawasaki disease","Kawasaki disease","Kawasaki disease","rao@ohdsi.org","Pending peer review","","events of Kawasaki's disease","",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","314381","","2022-11-12","2023-09-25",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",730,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +238,"[P][R] Optic neuritis ","Optic neuritis","Optic neuritis","rao@ohdsi.org","Pending peer review","","all events of Optic neuritis. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","374954","","2022-11-12","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +239,"[P] Narcolepsy events","Narcolepsy events","Narcolepsy events","rao@ohdsi.org","Pending peer review","","All events of Narcolepsy (includes cataplexy with narcolepsy) with no such events in prior clean window period (365 days). Persons should not be diagnosed with hypersomnia. Persons exit the cohort on end_date + 90 days as persons are assumed to have the condition for at least 90 days","#AESI",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","436100","https://forums.ohdsi.org/t/17784","2022-11-12","2023-09-21",,"",,0,,,"ERA",365,"fixed duration relative to initial event","EndDate",90,1,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,2,1,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +240,"[P] Muscle weakness or monoplegia","Muscle weakness or monoplegia","Muscle weakness or monoplegia","rao@ohdsi.org","Pending peer review","","events of muscle weakness or monoplegia with no events in prior 365 days clean window","#Symptoms",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","79908","","2022-11-12","2023-09-25",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",30,0,"All",FALSE,"All","All",2,2,"ConditionOccurrence, Observation",0,0,1,0,0,0,0,0,0,1,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,, +241,"[P][R] Urticaria ","Urticaria","Urticaria","rao@ohdsi.org","Pending peer review","","all events of Urticaria. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","139900","https://forums.ohdsi.org/t/17895","2022-11-12","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +243,"[P] Tinnitus","Tinnitus","Tinnitus","rao@ohdsi.org","Pending peer review","","events of tinnitus","#Symptoms",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","377575","https://forums.ohdsi.org/t/17895","2022-11-12","2023-09-25",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",180,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +244,"[P] Dizziness or giddiness including motion sickness and vertigo","Dizziness or giddiness including motion sickness and vertigo","Dizziness or giddiness including motion sickness and vertigo","rao@ohdsi.org","Pending peer review","","events of dizziness","#Symptoms",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","433316, 4223938","https://forums.ohdsi.org/t/17895","2022-11-12","2023-09-25",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",90,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +245,"[P] Hepatic Thrombosis","Hepatic Thrombosis","Hepatic Thrombosis","rao@ohdsi.org","Pending peer review","","first event of hepatic thrombosis","",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","196715","","2022-11-12","2023-09-19",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",0,0,"First",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,0,,,,,,,,1,,,,,,,,,,,,,,,,,,,, +246,"[P] Portal vein thrombosis","Portal vein thrombosis","Portal vein thrombosis","rao@ohdsi.org","Pending peer review","","first event of portal vein thrombosis","",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","199837","","2022-11-12","2023-09-19",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",0,0,"First",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,0,,,,,,,,1,,,,,,,,,,,,,,,,,,,, +247,"[P] Deep Vein Thrombosis DVT","Deep Vein Thrombosis DVT","Deep Vein Thrombosis DVT","rao@ohdsi.org","Pending peer review","","first event of non obstetric Deep Vein Thrombosis","",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","4133004, 43531681","https://forums.ohdsi.org/t/17769","2022-11-12","2023-09-19",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",0,0,"First",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,0,,,,,,,,1,,,,,,,,,,,,,,,,,,,, +248,"[P] Disseminated intravascular coagulation DIC in inpatient visit","Disseminated intravascular coagulation DIC in inpatient visit","Disseminated intravascular coagulation DIC in inpatient visit","rao@ohdsi.org","Pending peer review","","events of Disseminated Intravascular Coagulation in an inpatient or ER setting with no events in prior 365 day window","",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","436093","","2022-11-12","2023-09-25",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",30,0,"All",TRUE,"All","All",1,1,"ConditionOccurrence",0,0,2,1,0,0,0,1,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +249,"[P] Ischemic (Non-hemorrhagic) Stroke In Inpatient","Ischemic (Non-hemorrhagic) Stroke In Inpatient","Ischemic (Non-hemorrhagic) Stroke In Inpatient","rao@ohdsi.org","Pending peer review","","events of cerebral infarction while in an inpatient or ER setting","",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","443454","","2022-11-12","2023-09-25",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",365,0,"All",TRUE,"All","All",1,1,"ConditionOccurrence",0,0,2,1,0,0,0,1,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +251,"[P] Acute pancreatitis","Acute pancreatitis","Acute pancreatitis","rao@ohdsi.org","Pending peer review","","events of acute pancreatitis in an inpatient or emergency setting and no history of chronic pancreatitis or hereditary or congenital pancreatitis","",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","4192640, 199074","https://forums.ohdsi.org/t/17848","2022-11-15","2023-09-25",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",90,3,"All",FALSE,"All","All",2,1,"VisitOccurrence",0,0,7,1,0,0,0,0,0,,,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,, +253,"[P] Drug Induced Acute pancreatitis","Drug Induced Acute pancreatitis","Drug Induced Acute pancreatitis","rao@ohdsi.org","Pending peer review","","events of acute pancreatitis in an inpatient or emergency setting with no events in prior washout window of 365 days, and no history of chronic pancreatitis or hereditary or congenital pancreatitis. Events with other explanations for acute pancreatitis such as alcoholic pancreatitis, severe alcoholism, recent alcohol intoxication, cholangitis or cholecystitits, biliary tract disease, endoscopic retrograde cholangiopancreatography, intestinal ischemia or obstruction or not eligible","",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","4192640, 199074, 4340961","https://forums.ohdsi.org/t/17848","2022-11-15","2023-09-25",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",90,12,"All",FALSE,"All","All",2,1,"VisitOccurrence",0,0,16,1,0,0,0,0,0,,,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,, +254,"[P] Drug Resistant Epilepsy","Drug Resistant Epilepsy","Drug Resistant Epilepsy","rao@ohdsi.org","Pending peer review","","first occurrence of epilepsy in inpatient, of subsequent epilepsy in an outpatient setting after another outpatient epilepsy visit more than 30 days before, or anti-epileptic drug on or after a diagnosis of epilepsy. Limit to persons with at least two different anti epilepsy drug or diagnosis of intractable epilepsy on or after index date","",1,"Mathew Spotnitz","","","","","377091, 380378, 4029498","https://forums.ohdsi.org/t/17569","2022-11-17","2023-09-19",,"",,0,,,"ERA",0,"end of continuous observation",,,2,"First",FALSE,"All","First",3,2,"ConditionOccurrence, DrugExposure",0,0,4,1,1,0,0,0,0,1,,0,,,,1,,,,1,1,1,,,,,,,,,,,,,,,,,, +255,"[P] Alzheimer's disease (based on Imfeld, 2013)","Alzheimer's disease (based on Imfeld, 2013)","Alzheimer's disease (based on Imfeld, 2013)","rao@ohdsi.org","Pending peer review","","this is an approximation of algorithm published by Imfeld et.al 2013","",1,"","","","","","378419, 4182210","","2022-11-18","2023-09-19",,"",,0,,,"ERA",0,"end of continuous observation",,,3,"First",FALSE,"All","First",3,2,"ConditionOccurrence, DrugExposure",365,0,8,1,1,0,0,1,0,1,,0,,,,1,,,,1,1,,,,,,,,,,,,,,,,,,, +256,"[P] Facial Palsy lower motor neuron including Bells Palsy","Facial Palsy lower motor neuron including Bells Palsy","Facial Palsy lower motor neuron including Bells Palsy","rao@ohdsi.org","Pending peer review","","events of facial palsy with 183 days washout period. Remove persons with congenital facial palsy. Remove events with upper motor neuron disease suggestive of stroke","#AESI",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","374923, 4091559","https://forums.ohdsi.org/t/17788","2022-11-22","2023-09-21",,"",,0,,,"ERA",180,"fixed duration relative to initial event","EndDate",180,3,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,3,1,0,0,0,0,0,1,,1,,,,,,,,,,,1,,,,,,,,,,,,,,,,, +257,"[P] Emergency room visits or code","Emergency room visits or code","Emergency room visits or code","rao@ohdsi.org","Pending peer review","","All events of Emergency Room visits or code","#Visits",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","","","2022-11-22","2023-09-19",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",4,3,"Observation, ProcedureOccurrence, VisitOccurrence",0,0,3,1,0,0,0,1,0,,,1,1,1,,,,,1,,,,,,,,,,,,,,,,,,,,, +258,"[P] Anaphylaxis or Anaphylactic shock events","Anaphylaxis or Anaphylactic shock events","Anaphylaxis or Anaphylactic shock events","rao@ohdsi.org","Pending peer review","","all events of anaphylaxis or anaphylaxis shock due to serum with no events in prior clean window","",1,"Erica Voss","","","","","441202","https://forums.ohdsi.org/t/16033","2022-11-28","2023-09-19",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +259,"[P] Anaphylaxis all cause","Anaphylaxis all cause","Anaphylaxis all cause","rao@ohdsi.org","Pending peer review","","all events of anaphylaxis","",1,"Gowtham A. Rao, Andrea Noel","'0000-0002-4949-7236'","'OHDSI'","","","441202","https://forums.ohdsi.org/t/18193","2022-11-28","2023-09-25",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",14,0,"All",FALSE,"All","All",2,2,"ConditionOccurrence, Observation",0,0,1,0,0,0,0,0,0,1,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,, +260,"[P] ST elevated myocardial infarction with inpatient admission","ST elevated myocardial infarction with inpatient admission","ST elevated myocardial infarction with inpatient admission","rao@ohdsi.org","Pending peer review","","all events of ST segment acute myocardial infarction in an inpatient or ER visit","",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","314666, 4296653, 4329847","https://forums.ohdsi.org/t/15900","2022-11-29","2023-09-25",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",30,0,"All",TRUE,"All","All",2,1,"ConditionOccurrence",0,0,4,1,0,0,0,1,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +261,"[P] Non ST elevated myocardial infarction with inpatient admission","Non ST elevated myocardial infarction with inpatient admission","Non ST elevated myocardial infarction with inpatient admission","rao@ohdsi.org","Pending peer review","","all events of Non ST segment acute myocardial infarction in an inpatient or ER visit","",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","314666, 4329847","https://forums.ohdsi.org/t/15900","2022-11-29","2023-09-25",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",30,0,"All",TRUE,"All","All",2,1,"ConditionOccurrence",0,0,5,1,0,0,0,1,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +262,"[P] Unstable Angina with inpatient admission","Unstable Angina with inpatient admission","Unstable Angina with inpatient admission","rao@ohdsi.org","Pending peer review","","all events of Unstable Angina in an inpatient or ER visit","",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","315296","https://forums.ohdsi.org/t/15900","2022-11-29","2023-09-19",,"",,0,,,"ERA",180,"fixed duration relative to initial event","EndDate",7,0,"All",TRUE,"All","All",1,1,"ConditionOccurrence",0,0,6,1,0,0,0,1,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +263,"[P] Unstable Angina OR NSTEMI with inpatient admission","Unstable Angina OR NSTEMI with inpatient admission","Unstable Angina OR NSTEMI with inpatient admission","rao@ohdsi.org","Pending peer review","","all events of Unstable Angina or NSTEMI in an inpatient or ER visit","",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","314666, 4329847","https://forums.ohdsi.org/t/15900","2022-11-29","2023-09-19",,"",,0,,,"ERA",180,"fixed duration relative to initial event","EndDate",7,0,"All",TRUE,"All","All",1,1,"ConditionOccurrence",0,0,4,1,0,0,0,1,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +264,"[P] Acute Hepatic Failure in persons with liver disease","Acute Hepatic Failure in persons with liver disease","Acute Hepatic Failure in persons with liver disease","rao@ohdsi.org","Pending peer review","","Events of Hepatic Failure. Persons should have prior liver disease","",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","4245975","","2022-11-29","2023-09-19",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",0,1,"All",FALSE,"All","All",1,1,"ConditionOccurrence",365,0,23,1,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +265,"[P] Drug Induced Acute Hepatic Failure","Drug Induced Acute Hepatic Failure","Drug Induced Acute Hepatic Failure","rao@ohdsi.org","Pending peer review","","first occurrence of Hepatic Failure and no other liver problems in past","",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","4245975","","2022-11-29","2023-09-19",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",0,23,"All",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,23,1,0,0,0,0,0,1,,0,,,,,,,,1,,,,,,,,,,,,,,,,,,,, +267,"[P] Acute Kidney Injury AKI, in persons with chronic kidney disease","Acute Kidney Injury AKI, in persons with chronic kidney disease","Acute Kidney Injury AKI, in persons with chronic kidney disease","rao@ohdsi.org","Pending peer review","","all events of Acute Kidney Injury with washout period of 30 days. Persons should have chronic kidney disease that is is not ESKD, and should be not on chronic dialysis or had kidney transplant. Acute Kidney Injury (AKI) indexed on a diagnosis of Acute kidney injury or a Dialysis procedure at a medicare certified esrd facility for acute kidney injury without esrd, excluding events/patients with 1. a diagnosis of End-Stage Kidney Disease in the 365 days before AKI occurrence 2. patients receiving chronic dialysis defined as more than 3 recorded events of dialysis in 365 days before AKI occurrence 3. kidney Transplant any time prior applying a washout period of 30 days between observed events. patients exit the cohort 7 days post index","#DME",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","197320","","2022-11-29","2023-09-19",,"",,0,,,"ERA",7,"fixed duration relative to initial event","EndDate",7,4,"All",FALSE,"All","All",2,2,"ConditionOccurrence, ProcedureOccurrence",0,0,8,1,0,0,0,0,0,1,,1,,,,,,,1,,,,,,,,,,,,,,,,,,,,, +268,"[P] Acute Kidney Injury AKI, in persons with NO chronic kidney disease","Acute Kidney Injury AKI, in persons with NO chronic kidney disease","Acute Kidney Injury AKI, in persons with NO chronic kidney disease","rao@ohdsi.org","Pending peer review","","all events of Acute Kidney Injury with washout period of 30 days. Persons should have chronic kidney disease that is is not ESKD, and should be not on chronic dialysis or had kidney transplant. Acute Kidney Injury (AKI) indexed on a diagnosis of Acute kidney injury or a Dialysis procedure at a medicare certified esrd facility for acute kidney injury without esrd, excluding events/patients with 1. a diagnosis of End-Stage Kidney Disease in the 365 days before AKI occurrence 2. patients receiving chronic dialysis defined as more than 3 recorded events of dialysis in 365 days before AKI occurrence 3. kidney Transplant any time prior applying a washout period of 30 days between observed events. patients exit the cohort 7 days post index","",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","197320","","2022-11-29","2023-09-19",,"",,0,,,"ERA",7,"fixed duration relative to initial event","EndDate",7,4,"All",FALSE,"All","All",2,2,"ConditionOccurrence, ProcedureOccurrence",0,0,8,1,0,0,0,0,0,1,,1,,,,,,,1,,,,,,,,,,,,,,,,,,,,, +269,"[D] Acute Kidney Injury AKI","Acute Kidney Injury AKI","Acute Kidney Injury AKI","rao@ohdsi.org","Accepted","3.8.0","This accepted cohort was Deprecated because the rule to exclude no chronic dialysis was incorrect. This definition was replaced by 362. Acute Kidney Injury (AKI) indexed on a diagnosis of Acute kidney injury or a Dialysis procedure at a medicare certified esrd facility for acute kidney injury without esrd, excluding events/patients with 1. a diagnosis of End-Stage Kidney Disease in the 365 days before AKI occurrence 2. patients receiving chronic dialysis defined as more than 3 recorded events of dialysis in 365 days before AKI occurrence 3. kidney Transplant any time prior applying a washout period of 30 days between observed events. patients exit the cohort 7 days post index","#PhenotypePhebruary, #2022",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","197320","https://forums.ohdsi.org/t/16067","2022-11-29","2023-09-19",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",0,4,"All",FALSE,"All","All",2,2,"ConditionOccurrence, ProcedureOccurrence",0,0,7,1,0,0,0,0,1,1,,1,,,,,,,1,,,,,,,,,,,,,,,,,,,,, +270,"[P] Hemolytic Anemia","Hemolytic Anemia","Hemolytic Anemia","rao@ohdsi.org","Pending peer review","","all events of hemolytic anemia, indexed on anemia or hemolysis","",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","435503, 439777, 441269","https://forums.ohdsi.org/t/17856","2022-11-30","2023-09-19",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",0,2,"All",FALSE,"All","All",4,2,"ConditionOccurrence, Measurement",0,0,11,1,0,0,0,0,0,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +271,"[P] Hemolytic Anemia Intra corpuscular","Hemolytic Anemia Intra corpuscular","Hemolytic Anemia Intra corpuscular","rao@ohdsi.org","Pending peer review","","all events of hemolytic anemia, indexed on anemia or hemolysis, without congenital or hereditary causes of hemolytic anemia of membrane, enzyme or RBC structure","",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","435503, 439777, 441269","https://forums.ohdsi.org/t/17856","2022-11-30","2023-09-19",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",99999,0,"All",TRUE,"All","All",4,2,"ConditionOccurrence, Measurement",0,0,6,1,0,0,0,0,0,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +273,"[P] Pathological Ventricular Tachycardia","Pathological Ventricular Tachycardia","Pathological Ventricular Tachycardia","rao@ohdsi.org","Pending peer review","","all events of ventricular tachycardia with hospitalization. note - the use of ventricular tachycardia is thought to imply pathological tachycardia vs. simple tachycardia","",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","437579, 4103295","","2022-12-06","2023-09-19",,"",,0,,,"ERA",7,"fixed duration relative to initial event","EndDate",1,1,"All",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,2,1,0,0,0,1,0,1,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,, +274,"[P] Cardiac arrest or Pathological Ventricular tachycardia","Cardiac arrest or Pathological Ventricular tachycardia","Cardiac arrest or Pathological Ventricular tachycardia","rao@ohdsi.org","Pending peer review","","Cardiac arrest or Pathological Ventricular tachycardia with inpatient stay","",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","321042, 437579, 4103295","","2022-12-06","2023-09-19",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",1,1,"All",FALSE,"All","First",4,3,"ConditionOccurrence, Observation, ProcedureOccurrence",0,0,3,1,0,0,0,1,0,1,,0,1,,,,,,1,,,,,,,,,,,,,,,,,,,,, +275,"[P] Polymorphic Ventricular Tachycardia or Torsades de Pointes","Polymorphic Ventricular Tachycardia or Torsades de Pointes","Polymorphic Ventricular Tachycardia or Torsades de Pointes","rao@ohdsi.org","Pending peer review","","Polymorphic Ventricular Tachycardia or Torsades de Pointes","#DME",1,"'Gowtham A. Rao', 'Azza Shoaibi'","'0000-0002-4949-7236', '0000-0002-6976-2594'","'OHDSI'","","","4088349, 4135823","","2022-12-06","2024-09-11",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",3,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,, +276,"[P] Sudden Vision Loss","Sudden Vision Loss","Sudden Vision Loss","rao@ohdsi.org","Pending peer review","","all events of Vision Loss, indexed on diagnosis of Vision Loss. With 1. no such events in prior washout window of 365 days 2. and no history of other pathological eye disease such as glaucoma, infections and others in 365 days to 1 day prior index. cohort exits is 90 days after cohort end date.","#DME",1,"'Gowtham A. Rao', 'Azza Shoaibi'","'0000-0002-4949-7236', '0000-0002-6976-2594'","'OHDSI'","","","377556","","2022-12-08","2024-09-11",,"",,0,,,"ERA",0,"fixed duration relative to initial event","StartDate",90,2,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,2,1,0,0,0,0,1,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +277,"[P] Sudden Hearing Loss","Sudden Hearing Loss","Sudden Hearing Loss","rao@ohdsi.org","Pending peer review","","all events of Sudden Hearing Loss or hearing loss that is managed by corticosteroids, imaging of head or multiple hearing exams after among persons without congenital, middle or inner ear disease and no past hearing tests","#DME",1,"'Gowtham A. Rao', 'Azza Shoaibi'","'0000-0002-4949-7236', '0000-0002-6976-2594'","'OHDSI'","","","374053, 377889","","2022-12-08","2023-09-19",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",0,4,"All",FALSE,"All","All",3,2,"ConditionOccurrence, Observation",0,0,8,1,0,0,0,0,0,1,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,, +278,"[P] Pain or ache that is Non Chronic","Pain or ache that is Non Chronic","Pain or ache that is Non Chronic","rao@ohdsi.org","Pending peer review","","all events of non chronic non generalized or diffuse pain","#Symptoms, #Pain",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","138525, 194133","https://forums.ohdsi.org/t/17895","2023-01-04","2023-09-25",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",365,1,"All",FALSE,"All","All",2,2,"ConditionOccurrence, Observation",0,0,2,1,0,0,0,0,0,1,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,, +279,"[P] Low Back Pain or injury","Low Back Pain or injury","Low Back Pain or injury","rao@ohdsi.org","Pending peer review","","all events of low back pain","#Symptoms, #Pain",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","134736, 194133","https://forums.ohdsi.org/t/17895","2023-01-04","2023-09-25",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",180,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +280,"[P] Abdominal Pain or acute abdomen","Abdominal Pain or acute abdomen","Abdominal Pain or acute abdomen","rao@ohdsi.org","Pending peer review","","all events of abdominal pain","#Symptoms, #Pain",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","200219","https://forums.ohdsi.org/t/17895","2023-01-04","2023-09-25",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",14,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +281,"[P] Epigastric Pain","Epigastric Pain","Epigastric Pain","rao@ohdsi.org","Pending peer review","","all events of epigastric pain","#Symptoms, #Pain",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","197381, 4306292","https://forums.ohdsi.org/t/17895","2023-01-04","2023-09-25",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",14,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +282,"[P] Joint Pain","Joint Pain","Joint Pain","rao@ohdsi.org","Pending peer review","","all events of joint pain","#Symptoms, #Pain",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","78232, 80180","https://forums.ohdsi.org/t/17895","2023-01-04","2023-09-25",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",30,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +283,"[P] Prostatitis","Prostatitis","Prostatitis","rao@ohdsi.org","Pending","","All events of prostatits that is either a first occurrence of chronic prostatitis, or did not have an event of prostatitis in past 1 year, with no testicular lesions, bladder neoplasm or abdominal or inguinal hernia in prior 1 year. cohort end 180 days post cohort end date","#Submitted",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","194997","","2023-01-13","2023-09-19",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",0,5,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,6,1,0,1,0,0,0,1,,1,,,,,,,,,,,1,1,,,,,,,,,,,,,,,, +284,"[P] Myocarditis or Pericarditis","Myocarditis or Pericarditis","Myocarditis or Pericarditis","rao@ohdsi.org","Pending","","All events of Myocarditis or Pericarditis","#Submitted",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","320116, 4138837","","2023-01-14","2023-09-19",,"",,0,,,"ERA",90,"fixed duration relative to initial event","EndDate",30,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +285,"[P] Myocarditis or Pericarditis Not due to infections","Myocarditis or Pericarditis Not due to infections","Myocarditis or Pericarditis Not due to infections","rao@ohdsi.org","Pending","","All events of Myocarditis or Pericarditis without events that are due to Infectious Etiology","#Submitted",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","320116, 4138837","","2023-01-14","2023-09-19",,"",,0,,,"ERA",90,"fixed duration relative to initial event","EndDate",30,1,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,2,1,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +287,"[P] Transverse myelitis includes Myelitis Unspecified and neuromyelitis optica","Transverse myelitis includes Myelitis Unspecified and neuromyelitis optica","Transverse myelitis includes Myelitis Unspecified and neuromyelitis optica","rao@ohdsi.org","Pending","","events with a diagnosis of transverse myelitis indexed on diagnosis of transverse myelitis, OR related spinal disease or symptoms of transverse myelitis, followed by a diagnosis of transverse myelitis within 30 days OR events of myelitis unspecified with weakness or asthenia, neuromyelitis optica with weakness or asthenia. Symptoms of Transverse Myelitis included asthenia, muscle weakness, myelitis, paresthesia","#Sensitivity",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","Evan Minty","","79908, 138965, 139803, 380995, 443904","https://forums.ohdsi.org/t/17769","2023-01-17","2023-09-19",,"",,0,,,"ERA",365,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",4,1,"ConditionOccurrence",0,0,5,1,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +288,"[P] Type 2 Diabetes Mellitus indexed on diagnosis, treatment or lab results","Type 2 Diabetes Mellitus indexed on diagnosis, treatment or lab results","Type 2 Diabetes Mellitus indexed on diagnosis, treatment or lab results","rao@ohdsi.org","Pending","","Earliest event of Type 2 Diabetes Mellitus (DM), indexed on diagnosis or Blood glucose lowering drugs excluding insulin or high Hemoglobin A1c (limited to treatments or measurement that are followed with Type 2 DM diagnosis within 365 days) excluding persons with Type 1 DM or secondary diabetes mellitus in the all time prior including index date","#Disease",1,"Patrick Ryan, Jill Hardin","","","","","201820, 201826","https://forums.ohdsi.org/t/15764","2023-01-25","2023-09-20",,"",,0,,,"ERA",0,"end of continuous observation",,,3,"First",FALSE,"All","First",4,3,"ConditionOccurrence, DrugExposure, Measurement",0,0,5,1,0,0,0,0,0,1,1,0,,,,1,,,,,,,,,,,,,,,,,,,,,,,, +289,"[P] Presence Of Cardiac Arrhythmia","Presence Of Cardiac Arrhythmia","Presence Of Cardiac Arrhythmia","rao@ohdsi.org","Pending","","All events of Cardiac arrythmia or treatments for cardiac arrythmia","",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","313217, 44784217","","2023-01-26","2023-09-25",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",60,0,"All",FALSE,"All","All",4,4,"ConditionOccurrence, DeviceExposure, DrugExposure, ProcedureOccurrence",0,0,3,0,0,0,0,0,0,1,,1,,,,1,,1,1,,,,,,,,,,,,,,,,,,,,, +290,"[P] Thyroiditis wo other causes of hypothy, indexed on diagnosis or treatment","Thyroiditis wo other causes of hypothy, indexed on diagnosis or treatment","Thyroiditis wo other causes of hypothy, indexed on diagnosis or treatment","rao@ohdsi.org","Pending peer review","","All events of thyroiditis, indexed on an occurrence of Thyroiditis (including hypo and hyperthyroidism) condition or exposure to levothyroxine (limited to drug exposure that occurred within 365 days prior to an occurrence of Thyroiditis condition). Limited to events that had zero condition occurrence of Hypothyroidism other than Hashimoto's Disease (ie excluding alternative causes of hypothyroidism) all time prior and including index","#Disease",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","138384, 140673","","2023-01-26","2023-09-25",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",365,2,"All",FALSE,"All","All",2,2,"ConditionOccurrence, DrugExposure",0,0,3,1,0,0,0,0,0,1,,1,,,,1,,,,,,,,,,,,,,,,,,,,,,,, +291,"[P] Gynecomastia, indexed on diagnosis, procedure or symptoms","Gynecomastia, indexed on diagnosis, procedure or symptoms","Gynecomastia, indexed on diagnosis, procedure or symptoms","rao@ohdsi.org","Pending","","All events of Gynecomastia diagnosis, indexed on a diagnosis of Gynecomastia or a procedure of Mastectomy for gynecomastia or a presentation/symptoms of Gynecomastia (breast lump or pain). Events indexed on a procedures or symptoms are required to be followed by a diagnosis within a year","",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","78474, 80767, 137809","","2023-01-26","2023-09-25",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",365,1,"All",FALSE,"All","All",4,3,"ConditionOccurrence, Observation, ProcedureOccurrence",0,0,3,1,0,0,0,0,0,1,,1,1,,,,,,1,,,,,,,,,,,,,,,,,,,,, +292,"[P] Acute Hepatic Failure in persons without chronic hepatic failure","Acute Hepatic Failure in persons without chronic hepatic failure","Hepatic Failure","rao@ohdsi.org","Pending peer review","","all events of acute hepatic failure. no chronic hepatic failure","#Disease",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","4245975","","2023-01-26","2023-09-25",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",90,1,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,2,1,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +293,"[P] Acute Hepatic Injury or inpatient jaundice","Acute Hepatic Injury or inpatient jaundice","Acute Hepatic Injury with no chronic hepatic failure","rao@ohdsi.org","Pending","","All events of Acute Liver Injury, indexed on the diagnosis of Acute Liver Injury, with no chronic hepatic failure. Sequela of chronic liver disease maps to codes that historically were used for acute liver injury","",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","194990","","2023-01-26","2023-09-25",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",90,0,"All",FALSE,"All","All",2,1,"ConditionOccurrence",0,0,3,1,0,0,0,1,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +294,"[P] Acute Hepatic Injury with no pre-existing liver disease","Acute Hepatic Injury with no pre-existing liver disease","Acute Hepatic Injury with no pre-existing liver disease","rao@ohdsi.org","Pending","","Earliest event of Acute Liver Injury, indexed on the diagnosis of Acute Liver Injury. Patients are excluded if they have a diagnosis of chronic hepatic failure any time in the past or on the same day. Also excluded patients who have other prior liver disease such as viral hepatitis, Liver Cirrhosis, liver fibrosis, alcoholic and others anytime prior including index","",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","194990","","2023-01-26","2023-09-25",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",90,23,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,23,1,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +295,"[P] Acute Hepatic Failure in persons with no pre-existing liver disease","Acute Hepatic Failure in persons with no pre-existing liver disease","Acute Hepatic Failure in persons with no pre-existing liver disease","rao@ohdsi.org","Pending peer review","","Event of hepatic Failure, indexed on the diagnosis of Hepatic Failure. Patients are excluded if they have a diagnosis of chronic hepatic failure any time in the past or on the same day. Also excluded patients who have other prior liver disease such as viral hepatitis, Liver Cirrhosis, liver fibrosis, alcoholic and others anytime prior including index","#Submitted",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","4245975","","2023-01-26","2023-09-19",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",0,23,"All",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,23,1,0,0,0,0,0,1,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,, +296,"Transverse myelitis or symptoms indexed on symptoms or diagnosis (180Pe, 180Era)","Transverse myelitis or symptoms indexed on symptoms or diagnosis (180Pe, 180Era)","Transverse myelitis or symptoms indexed on symptoms or diagnosis (180Pe, 180Era)","rao@ohdsi.org","Accepted","3.9.0","events with a diagnosis of transverse myelitis indexed on diagnosis of transverse myelitis, related spinal disease or symptoms of transverse myelitis, followed by a diagnosis of transverse myelitis within 30 days. Symptoms of Transverse Myelitis included asthenia, muscle weakness, myelitis, paresthesia","#Accepted, #Level2",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","Evan Minty","","79908, 139803, 443904","https://forums.ohdsi.org/t/17769","2023-01-26","2023-09-19",,"",,0,,,"ERA",180,"fixed duration relative to initial event","EndDate",180,0,"All",FALSE,"All","All",2,1,"ConditionOccurrence",0,0,2,1,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +298,"[P] Urinary bleed events in persons without renal glomerular disease","Urinary bleed events in persons without renal glomerular disease","Urinary bleed events in persons without renal glomerular disease","rao@ohdsi.org","Pending peer review","","all events of urinary bleeds in persons with no recent kidney biopsy, no chronic kidney disease or recent renal glomerular disease","#Symptoms, #urinary",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","79864, 437038","","2023-02-02","2023-09-25",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",365,3,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,5,1,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +299,"[P] Acute gastrointestinal bleeding or perforation events","Acute gastrointestinal bleeding or perforation events","Acute gastrointestinal bleeding or perforation events","rao@ohdsi.org","Pending peer review","","all events of gastrointestinal bleed or perforation","#Symptoms",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","192671","","2023-02-02","2023-09-25",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",30,0,"All",FALSE,"All","All",2,2,"ConditionOccurrence, ProcedureOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,1,,,,,,,,,,,,,,,,,,,,, +300,"[P] Heavy menstrual bleeding (menorrhagia) events","Heavy menstrual bleeding (menorrhagia) events","Heavy menstrual bleeding (menorrhagia) events","rao@ohdsi.org","Pending peer review","","","#Symptoms",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","197607, 4302555","","2023-02-02","2023-09-25",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",90,3,"All",FALSE,"All","All",2,1,"ConditionOccurrence",0,0,4,1,0,1,0,0,0,1,,1,,,,,,,,,,,,,1,1,,,,,,,,,,,,,, +304,"Neurofibromatosis type 1 (FP)","Neurofibromatosis type 1 (FP)","Neurofibromatosis type 1 (FP)","rao@ohdsi.org","Accepted","3.12.0","","#PhenotypePhebruary, #2023, #Neurofibromatosis",1,"Maxim Moinat","","","","","377252","https://forums.ohdsi.org/t/18236","2023-02-07","2023-09-19",,"",,0,,,"ERA",0,"end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,, +305,"Neurofibromatosis type 1 without Type 2 (FP)","Neurofibromatosis type 1 without Type 2 (FP)","Neurofibromatosis type 1 without Type 2 (FP)","rao@ohdsi.org","Accepted","3.12.0","Persons with Neurofibromatosis without a diagnosis of NF2, vestibular schwannoma or hearing problems. Not all data sources capture NF subtype (e.g. when using ICD10), so to select NF1 we exclude diagnoses that give a suspicion of NF2 (affecting auditory system)","#PhenotypePhebruary, #2023, #Neurofibromatosis",1,"Maxim Moinat","","","","","376938","https://forums.ohdsi.org/t/18236","2023-02-07","2023-09-19",,"",,0,,,"ERA",0,"end of continuous observation",,,3,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,4,1,0,0,0,0,0,1,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,, +306,"Optical pathway glioma and neurofibromatosis (FP)","Optical pathway glioma and neurofibromatosis (FP)","Optical pathway glioma and neurofibromatosis (FP)","rao@ohdsi.org","Accepted","3.12.0","Persons with an optic nerve glioma and diagnosis of neurofibromatosis anytime in persons history. This would be the preferred code for an OPG","#PhenotypePhebruary, #2023, #Neurofibromatosis",1,"Maxim Moinat","","","","","4112970","https://forums.ohdsi.org/t/18236","2023-02-07","2023-09-19",,"",,0,,,"ERA",0,"end of continuous observation",,,1,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,2,1,0,0,0,0,0,1,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,, +307,"Optical pathway glioma or non mal neoplasm of optic nerve w nf","Optical pathway glioma or non mal neoplasm of optic nerve w nf","Optical pathway glioma or non malignant neoplasm of optic nerve w neurofibromatosis","rao@ohdsi.org","Accepted","3.12.0","Persons with an optic nerve glioma OR neoplasm of optic nerve, and a diagnosis of neurofibromatosis anytime in persons history","#PhenotypePhebruary, #2023, #Neurofibromatosis",1,"Maxim Moinat","","","","","4216000, 4246137","https://forums.ohdsi.org/t/18236","2023-02-07","2023-09-19",,"",,0,,,"ERA",0,"end of continuous observation",,,1,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,2,1,0,0,0,0,0,1,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,, +308,"Optical pathway glioma with MRI imaging and ophth visits NF","Optical pathway glioma with MRI imaging and ophth visits NF","Optical pathway glioma with MRI imaging and ophthalmology visits Neurofibromatosis","rao@ohdsi.org","Accepted","3.12.0","Persons with neurofibromatosis, that also had one MRI of the brain AND at least 3 ophthalmology visits within one year (anytime in persons history). In some centers, an OPG might be coded as general NF and needs to be inferred from follow-up care after diagnosis","#PhenotypePhebruary, #2023, #Neurofibromatosis",1,"Maxim Moinat","","","","","376938","https://forums.ohdsi.org/t/18236","2023-02-07","2023-09-19",,"",,0,,,"ERA",0,"end of continuous observation",,,2,"First",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,2,1,0,0,0,1,0,1,,0,,,,,,,,,,,,,,,1,,,,,,,,,,,,, +311,"[P] Parasomnia","Parasomnia","Parasomnia","rao@ohdsi.org","Pending peer review","","All events of Parasomnia that may be expected to persist for atleast 30 days with events collapse 1 day after","",1,"'Gowtham A. Rao', 'Azza Shoaibi'","'0000-0002-4949-7236', '0000-0002-6976-2594'","","","","440087","","2023-02-10","2023-09-23",,"",,0,,,"ERA",1,"fixed duration relative to initial event","EndDate",30,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +318,"[P] Acute Hepatic Failure in persons without chronic hepatic failure on same day","Acute Hepatic Failure in persons without chronic hepatic failure on same day","Acute Hepatic Failure in persons without chronic hepatic failure on same day","rao@ohdsi.org","Pending peer review","","all events of acute hepatic failure. If the persons also has chronic hepatic failure coded on the same day, they are excluded","#Disease",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","4245975","","2023-02-11","2023-09-19",,"",,0,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,1,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,2,1,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +324,"[P] Pain","Pain","Pain","rao@ohdsi.org","Pending peer review","","all events of pain","#Symptoms, #Pain",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","138525, 194133","https://forums.ohdsi.org/t/17895","2023-02-12","2023-09-25",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",30,1,"All",FALSE,"All","All",2,2,"ConditionOccurrence, Observation",0,0,1,1,0,0,0,0,0,1,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,, +325,"[P] Inpatient Hospitalization By Site of care or type of service","Inpatient Hospitalization By Site of care or type of service","Inpatient Hospitalization By Site of care or type of service","rao@ohdsi.org","Pending","","All events of Inpatient visit defined by site of care (visit domain) or type of service (procedure or observation codes) within any of the main visit categories","#Visits",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","","","2023-02-12","2023-09-19",,"",,0,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",4,3,"Observation, ProcedureOccurrence, VisitOccurrence",0,0,3,1,0,0,0,1,0,,,1,1,1,,,,,1,,,,,,,,,,,,,,,,,,,,, +327,"[P][R] Pharyngitis ","Pharyngitis","Pharyngitis","rao@ohdsi.org","Pending peer review","","all events of Pharyngitis. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","25297, 4226263","https://forums.ohdsi.org/t/17895","2023-02-12","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +328,"[P] Wheezing","Wheezing","Wheezing","rao@ohdsi.org","Pending peer review","","All events of wheezing","#Symptoms",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","314754","https://forums.ohdsi.org/t/17895","2023-02-12","2023-09-25",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",14,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +330,"[P][R] Abdominal bloating ","Abdominal bloating","Abdominal bloating","rao@ohdsi.org","Pending peer review","","all events of Abdominal bloating. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","4023572","https://forums.ohdsi.org/t/17895","2023-02-12","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +331,"[P] Encephalopathy","Encephalopathy","Encephalopathy","rao@ohdsi.org","Pending peer review","","events Encephalopathy","#Symptoms",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","372892, 43021132","https://forums.ohdsi.org/t/17895","2023-02-12","2023-09-25",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",30,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +332,"[P] Pain or ache that is Chronic","Pain or ache that is Chronic","Pain or ache that is Chronic","rao@ohdsi.org","Pending peer review","","all events of non chronic non generalized or diffuse pain","#Symptoms",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","138525, 194133","https://forums.ohdsi.org/t/17895","2023-02-12","2023-09-25",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",365,1,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,2,1,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +333,"[P] Alcohol Use Disorder","Alcohol Use Disorder","Alcohol Use Disorder","rao@ohdsi.org","Pending peer review","","all events of abdominal pain","#Symptoms, #Drug",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","435243, 36714559","https://forums.ohdsi.org/t/17895","2023-02-12","2023-09-25",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",365,0,"All",FALSE,"All","All",3,3,"ConditionOccurrence, Observation, ProcedureOccurrence",0,0,1,0,0,0,0,0,0,1,,1,1,,,,,,1,,,,,,,,,,,,,,,,,,,,, +334,"[P] Asthma","Asthma","Asthma","rao@ohdsi.org","Pending peer review","","All events of asthma diagnosis or therapy for asthma with a history of another asthma therapy more than 180 days before, or asthma diagnosis","",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","317009","","2023-02-12","2023-09-25",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",14,0,"All",FALSE,"All","All",3,3,"ConditionOccurrence, DrugExposure, Observation",0,0,2,1,1,0,0,0,0,1,,1,1,,,1,1,,,,,,,,,,,,,,,,,,,,,,, +335,"[P] Anxiety or Fear","Anxiety or Fear","Anxiety or Fear","rao@ohdsi.org","Pending peer review","","Events of Anxiety or Fear","",1,"","","","","","441542, 442077","","2023-02-12","2023-09-19",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +339,"[P][R] Low blood pressure ","Low blood pressure","Low blood pressure","rao@ohdsi.org","Pending peer review","","all events of Low blood pressure. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","317002","https://forums.ohdsi.org/t/17895","2023-03-14","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +340,"[P] Hives, Erythema, Eruption, Urticaria","Hives, Erythema, Eruption, Urticaria","Hives, Erythema, Eruption, Urticaria","rao@ohdsi.org","Pending peer review","","All events of Hives, Erythema, Eruption, Urticaria","#Symptoms",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","134438, 45766714","https://forums.ohdsi.org/t/17895","2023-03-14","2023-09-25",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",14,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +341,"[P] Loss of mentation including comma, syncope, altered consciousness","Loss of mentation including comma, syncope, altered consciousness","Loss of mentation including comma, syncope, altered consciousness","rao@ohdsi.org","Pending peer review","","All events of Disturbance of consciousness, loss of mentation including comma, syncope, altered consciousness","#Symptoms",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","376961, 4206148","https://forums.ohdsi.org/t/17895","2023-03-14","2023-09-25",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",30,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +342,"[P][R] Urinary incontinence","Urinary incontinence","Urinary incontinence","rao@ohdsi.org","Pending peer review","","all events of Urinary incontinence. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","197672","https://forums.ohdsi.org/t/17895","2023-03-14","2023-09-25",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +343,"[P] Fecal Incontinence","Fecal Incontinence","Fecal Incontinence","rao@ohdsi.org","Pending peer review","","All events of Fecal Incontinence","#Symptoms",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","197675, 4101350","https://forums.ohdsi.org/t/17895","2023-03-14","2023-09-25",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",30,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +344,"[P] Doctors office or clinic visit without other overlapping visits","Doctors office or clinic visit without other overlapping visits","Doctors office or clinic visit without other overlapping visits","rao@ohdsi.org","Pending peer review","","All events of Doctors office or clinic visit that does not overlap with inpatient, urgent care or emergency visit","#Visits",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","","","2023-03-14","2023-09-25",,"",,0,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,4,"All",FALSE,"All","All",1,1,"VisitOccurrence",0,0,6,1,0,0,0,0,0,,,1,,1,,,,,,,,,,,,,,1,,,,,,,,,,,, +346,"[P] Non urgent outpatient visit without overlapping inpatient or emergency visit","Non urgent outpatient visit without overlapping inpatient or emergency visit","Non urgent outpatient visit without overlapping inpatient or emergency visit","rao@ohdsi.org","Pending peer review","","All events of Doctors office or clinic visit that does not overlap with inpatient, urgent care or emergency visit. If a person has visits on consecutive days, they are collapsed into a spans of days","#Visits",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","","","2023-03-14","2023-10-22",,"",,0,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,4,"All",FALSE,"All","All",1,1,"VisitOccurrence",0,0,5,1,0,0,0,0,0,,,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,, +347,"[P] Ambulance utilization","Ambulance utilization","Ambulance utilization","rao@ohdsi.org","Pending peer review","","All events of Ambulance use","#Visits",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","","","2023-03-14","2023-09-25",,"",,0,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",4,4,"ConditionOccurrence, Observation, ProcedureOccurrence, VisitOccurrence",0,0,1,0,0,0,0,1,0,1,,1,1,1,,,,,1,,,,,,,,,,,,,,,,,,,,, +348,"[P][R] Blood in urine ","Blood in urine","Blood in urine","rao@ohdsi.org","Pending peer review","","all events of Blood in urine. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","79864, 437038","https://forums.ohdsi.org/t/17895","2023-03-15","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +349,"[P] Lower gastrointestinal bleeding events","Lower gastrointestinal bleeding events","Lower gastrointestinal bleeding events","rao@ohdsi.org","Pending peer review","","all events of lower gastrointestinal bleed","#Symptoms",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","197925, 4245614","","2023-03-15","2023-09-25",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",30,0,"All",FALSE,"All","All",2,2,"ConditionOccurrence, ProcedureOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,1,,,,,,,,,,,,,,,,,,,,, +350,"[P][R] Hemoptysis","Hemoptysis","Hemoptysis","rao@ohdsi.org","Pending peer review","","all events of Hemoptysis. Persons exit on cohort end date","#Referent, #Condition, #respiratory, #lung",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","261687","https://forums.ohdsi.org/t/17895","2023-03-15","2023-09-28",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +351,"[P] Nasal Polyp present","Nasal Polyp present","Nasal Polyp present","rao@ohdsi.org","Pending peer review","","all events of nasal polyp","#Symptoms",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","4209223, 4285898, 42537251","https://forums.ohdsi.org/t/17895","2023-03-15","2023-09-25",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",365,0,"All",FALSE,"All","All",2,1,"ConditionOccurrence",0,0,5,1,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +352,"[P][R] Inflamed tonsils ","Inflamed tonsils","Inflamed tonsils","rao@ohdsi.org","Pending peer review","","all events of Inflamed tonsils. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","24660, 4083666","https://forums.ohdsi.org/t/17895","2023-03-15","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +353,"[P][R] Conjunctivitis ","Conjunctivitis","Conjunctivitis","rao@ohdsi.org","Pending peer review","","all events of Conjunctivitis. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","379019","https://forums.ohdsi.org/t/17895","2023-03-15","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +354,"[P] Nasal Congestion or Rhinitis or Common Cold","Nasal Congestion or Rhinitis or Common Cold","Nasal Congestion or Rhinitis or Common Cold","rao@ohdsi.org","Pending peer review","","all events of Nasal Congestion or Rhinitis or Common Cold","#Symptoms",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","257007, 4320791","https://forums.ohdsi.org/t/17895","2023-03-15","2023-09-25",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",14,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +355,"[P] Laryngitis","Laryngitis","Laryngitis","rao@ohdsi.org","Pending peer review","","all events of Laryngitis","#Symptoms",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","24969, 260134","https://forums.ohdsi.org/t/17895","2023-03-15","2023-09-25",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",14,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +356,"[P] Epistaxis","Epistaxis","Epistaxis","rao@ohdsi.org","Pending peer review","","all events of Epistaxis","#Symptoms",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","4096682","https://forums.ohdsi.org/t/17895","2023-03-15","2023-09-25",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",14,0,"All",FALSE,"All","All",3,3,"ConditionOccurrence, Observation, ProcedureOccurrence",0,0,2,0,0,0,0,0,0,1,,1,1,,,,,,1,,,,,,,,,,,,,,,,,,,,, +357,"[P][R] Pulmonary edema ","Pulmonary edema","Pulmonary edema","rao@ohdsi.org","Pending peer review","","all events of Pulmonary edema. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","261600, 4078925","https://forums.ohdsi.org/t/17895","2023-03-15","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +358,"[P] Acute Respiratory Failure among persons with no chronic respiratory failure","Acute Respiratory Failure among persons with no chronic respiratory failure","Acute Respiratory Failure among persons with no chronic respiratory failure","rao@ohdsi.org","Pending peer review","","All events of Acute Respiratory Failure among persons with no evidence of chronic respiratory failure in past 365 days","#Symptoms",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","319049, 4256228","https://forums.ohdsi.org/t/17895","2023-03-15","2023-09-25",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",14,1,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,2,1,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +359,"[P] Acute Respiratory Failure","Acute Respiratory Failure","Acute Respiratory Failure","rao@ohdsi.org","Pending peer review","","All events of Acute Respiratory Failure","#Symptoms",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","319049, 4256228","https://forums.ohdsi.org/t/17895","2023-03-15","2023-09-25",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",30,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +360,"[P] Pleural Effusion","Pleural Effusion","Pleural Effusion","rao@ohdsi.org","Pending peer review","","All events of Pleural Effusion","#Symptoms",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","254061","https://forums.ohdsi.org/t/17895","2023-03-15","2023-09-25",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",30,0,"All",FALSE,"All","All",2,2,"ConditionOccurrence, Observation",0,0,1,0,0,0,0,0,0,1,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,, +361,"[P][R] Restless legs ","Restless legs","Restless legs","rao@ohdsi.org","Pending peer review","","all events of Restless legs. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","73754","https://forums.ohdsi.org/t/18236","2023-04-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +362,"Acute Kidney Injury AKI","Acute Kidney Injury AKI","Acute Kidney Injury AKI","rao@ohdsi.org","Accepted","3.8.0","Acute Kidney Injury (AKI) indexed on a diagnosis of Acute kidney injury or a Dialysis procedure at a medicare certified esrd facility for acute kidney injury without esrd, excluding events/patients with 1. a diagnosis of End-Stage Kidney Disease in the 365 days before AKI occurrence 2. patients receiving chronic dialysis defined as more than 3 recorded events of dialysis in 365 days before AKI occurrence 3. kidney Transplant any time prior applying a washout period of 30 days between observed events. patients exit the cohort 7 days post index","#PhenotypePhebruary, #2022, #DME",1,"Marcela V Rivera David Vizcaya","","","","","197320","https://forums.ohdsi.org/t/16067","2023-04-25","2023-09-19",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",0,4,"All",FALSE,"All","All",2,2,"ConditionOccurrence, ProcedureOccurrence",0,0,7,1,0,0,0,0,1,1,,1,,,,,,,1,,,,,,,,,,,,,,,,,,,,, +363,"[P][R] Joint stiffness ","Joint stiffness","Joint stiffness","rao@ohdsi.org","Pending peer review","","all events of Joint stiffness. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","72404, 72711","https://forums.ohdsi.org/t/17895","2023-05-30","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +364,"[P][R] Sleep disorder ","Sleep disorder","Sleep disorder","rao@ohdsi.org","Pending peer review","","all events of Sleep disorder. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","435524, 442588","https://forums.ohdsi.org/t/17895","2023-05-30","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +365,"[P] Dysuria","Dysuria","Dysuria","rao@ohdsi.org","Pending peer review","","all events of Dysuria","#Symptoms",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","197684, 4021780","https://forums.ohdsi.org/t/17895","2023-05-30","2023-09-25",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",14,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,3,1,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +366,"[P] Streptococcal throat infection","Streptococcal throat infection","Streptococcal throat infection","rao@ohdsi.org","Pending peer review","","All events of Streptococcal throat infection","#respiratory",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","25297, 28060, 4226263","","2023-05-31","2023-09-25",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",14,0,"All",FALSE,"All","All",2,1,"ConditionOccurrence",0,0,3,1,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +367,"[P] Allergic Rhinitis","Allergic Rhinitis","Allergic Rhinitis","rao@ohdsi.org","Pending peer review","","All events of Allergic rhinitis","#respiratory",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","257007, 4320791","","2023-05-31","2023-09-25",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",90,0,"All",FALSE,"All","All",2,1,"ConditionOccurrence",0,0,4,1,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +368,"[P][R] Sinusitis ","Sinusitis","Sinusitis","rao@ohdsi.org","Pending peer review","","all events of Sinusitis. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","260123, 4283893","https://forums.ohdsi.org/t/17895","2023-05-31","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +369,"[P][R] Allergic condition ","Allergic condition","Allergic condition","rao@ohdsi.org","Pending peer review","","all events of Allergic condition. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","257007, 43021227","https://forums.ohdsi.org/t/17895","2023-05-31","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +370,"[P] Allergic disorder","Allergic disorder","Allergic disorder","rao@ohdsi.org","Pending peer review","","All events of Allergic Disorder","#symptoms",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","257007, 43021227","https://forums.ohdsi.org/t/17895","2023-05-31","2023-09-25",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",30,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +371,"[P] Claudication Pain","Claudication Pain","Claudication Pain","rao@ohdsi.org","Pending peer review","","all events of claudication pain","#Symptoms",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","195834, 317309, 442774","https://forums.ohdsi.org/t/17895","2023-05-31","2023-09-25",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",365,0,"All",FALSE,"All","All",2,1,"ConditionOccurrence",0,0,3,1,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +372,"[P] Otitis media","Otitis media","Otitis media","rao@ohdsi.org","Pending peer review","","All events of Otitis media","#respiratory",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","372328","","2023-05-31","2023-09-25",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",30,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,3,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +373,"[P] Iron deficiency Anemia","Iron deficiency Anemia","Iron deficiency Anemia","rao@ohdsi.org","Pending peer review","","all events of iron deficiency anemia","",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","439777","https://forums.ohdsi.org/t/17856","2023-05-31","2023-09-25",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",365,2,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,3,1,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +374,"[P][R] Drug dependence ","Drug dependence","Drug dependence","rao@ohdsi.org","Pending peer review","","all events of Drug dependence. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","437264, 440069","","2023-05-31","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +375,"[P] Gall stone disorder","Gall stone disorder","Gall stone disorder","rao@ohdsi.org","Pending peer review","","all events of Gall stone","",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","444367, 4145627","","2023-05-31","2023-09-25",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",730,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +376,"[P][R] Bleeding skin ","Bleeding skin","Bleeding skin","rao@ohdsi.org","Pending peer review","","all events of Bleeding skin. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","441259, 4177600",,"2023-05-31","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +377,"[P][R] Petechiae ","Petechiae","Petechiae","rao@ohdsi.org","Pending peer review","","all events of Petechiae. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","4155911",,"2023-05-31","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +378,"[P][R] Purpuric disorder ","Purpuric disorder","Purpuric disorder","rao@ohdsi.org","Pending peer review","","all events of Purpuric disorder. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","441259, 4307580",,"2023-05-31","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +379,"[P] Ecchymosis","Ecchymosis","Ecchymosis","rao@ohdsi.org","Pending peer review","","all events of Ecchymosis anywhere","#Symptoms",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","438252, 4118793",,"2023-05-31","2023-09-25",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",30,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +380,"[P][R] Jaundice ","Jaundice","Jaundice","rao@ohdsi.org","Pending peer review","","all events of Jaundice. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","137977, 435656","https://forums.ohdsi.org/t/17895","2023-05-31","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +381,"[P] Skin Itching","Skin Itching","Skin Itching","rao@ohdsi.org","Pending peer review","","events of skin itching","#Symptoms",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","133834, 133835, 135618, 4169287","https://forums.ohdsi.org/t/17895","2023-05-31","2023-09-25",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",14,0,"All",FALSE,"All","All",2,1,"ConditionOccurrence",0,0,2,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +382,"[P] Prurititc Rash","Prurititc Rash","Prurititc Rash","rao@ohdsi.org","Pending peer review","","events of pruritic rash","#Symptoms",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","135618, 4169287","https://forums.ohdsi.org/t/17895","2023-05-31","2023-09-25",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",14,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,3,1,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +383,"[P] Eczematous Atopic Dermatitis and non hyperkeratotic dermatosis","Eczematous Atopic Dermatitis and non hyperkeratotic dermatosis","Eczematous Atopic Dermatitis and non hyperkeratotic dermatosis","rao@ohdsi.org","Pending peer review","","","#skin",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","133834, 133835, 45766714","","2023-05-31","2023-09-25",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",30,0,"All",FALSE,"All","All",2,1,"ConditionOccurrence",0,0,5,1,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +384,"[P][R] Contact dermatitis ","Contact dermatitis","Contact dermatitis","rao@ohdsi.org","Pending peer review","","all events of Contact dermatitis. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","134438","","2023-05-31","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +385,"[P][R] Intertrigo ","Intertrigo","Intertrigo","rao@ohdsi.org","Pending peer review","","all events of Intertrigo. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","4242574","","2023-05-31","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +386,"[P][R] Seborrheic dermatitis ","Seborrheic dermatitis","Seborrheic dermatitis","rao@ohdsi.org","Pending peer review","","all events of Seborrheic dermatitis. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","137053","","2023-05-31","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +387,"[P][R] Photodermatitis ","Photodermatitis","Photodermatitis","rao@ohdsi.org","Pending peer review","","all events of Photodermatitis. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","4203600, 4239682, 4331304","","2023-05-31","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +388,"[P][R] Peripheral neuritis ","Peripheral neuritis","Peripheral neuritis","rao@ohdsi.org","Pending peer review","","all events of Peripheral neuritis. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","4027396","","2023-05-31","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +389,"[P] Peripheral Neuropathy or Neuritits","Peripheral Neuropathy or Neuritits","Peripheral Neuropathy or Neuritits","rao@ohdsi.org","Pending peer review","","first occurrence of peripheral neuritis or neuropathy","",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","4027396, 4117779","","2023-05-31","2023-09-25",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",730,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +391,"[P] Hearing Loss","Hearing Loss","Hearing Loss","rao@ohdsi.org","Pending peer review","","all events of Hearing Loss","#Symptoms",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","377889","","2023-05-31","2023-09-25",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",365,0,"All",FALSE,"All","All",2,2,"ConditionOccurrence, Observation",0,0,1,0,0,0,0,0,0,1,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,, +392,"[P] Otalgia or Otitis","Otalgia or Otitis","Otalgia or Otitis","rao@ohdsi.org","Pending peer review","","All events of Otitis or Otalgia","#symptoms",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","372328, 4183452","https://forums.ohdsi.org/t/17895","2023-05-31","2023-09-25",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",30,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +393,"[P] Low Back Pain or Injury","Low Back Pain or Injury","Low Back Pain or Injury","rao@ohdsi.org","Pending peer review","","all events of low back pain or injury","#Symptoms, #Pain",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","312998, 4020345","https://forums.ohdsi.org/t/17895","2023-05-31","2023-09-25",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",180,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +394,"[P] Gastroesophageal reflux disease","Gastroesophageal reflux disease","Gastroesophageal reflux disease","rao@ohdsi.org","Pending peer review","","all events of Gastroesophageal reflux disease","",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","23325, 318800, 4091509","https://forums.ohdsi.org/t/17895","2023-05-31","2023-09-25",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",180,0,"All",FALSE,"All","All",2,1,"ConditionOccurrence",0,0,4,1,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +395,"[P] Dysmenorrhea","Dysmenorrhea","Dysmenorrhea","rao@ohdsi.org","Pending peer review","","all events of Dysmenorrhea","",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","443431","https://forums.ohdsi.org/t/17895","2023-05-31","2023-09-25",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",180,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +396,"[P][R] Osteoarthritis ","Osteoarthritis","Osteoarthritis","rao@ohdsi.org","Pending peer review","","all events of Osteoarthritis. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","80180, 4079750","","2023-05-31","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +397,"[P][R] Hyperplasia of prostate ","Hyperplasia of prostate","Hyperplasia of prostate","rao@ohdsi.org","Pending peer review","","all events of Hyperplasia of prostate. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","197032, 443211","","2023-05-31","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +398,"[P] Bladder Outflow Obstruction","Bladder Outflow Obstruction","Bladder Outflow Obstruction","rao@ohdsi.org","Pending peer review","","All events of Bladder Outflow Obstruction","#Symptoms",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","194406, 443211","","2023-05-31","2023-09-25",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",30,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,, +399,"[P][R] Urolithiasis ","Urolithiasis","Urolithiasis","rao@ohdsi.org","Pending peer review","","all events of Urolithiasis. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","201620, 4319447","","2023-05-31","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +400,"[P][R] Malignant tumor of prostate ","Malignant tumor of prostate","Malignant tumor of prostate","rao@ohdsi.org","Pending peer review","","all events of Malignant tumor of prostate. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","200962, 4163261","","2023-05-31","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +401,"[P] Uterine Fibroids or benign uterine tumors","Uterine Fibroids or benign uterine tumors","Uterine Fibroids or benign uterine tumors","rao@ohdsi.org","Pending peer review","","Uterine Fibroids","",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","197236, 201817","","2023-05-31","2023-09-25",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",1095,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +402,"[P] Ventilatory assist for respiratory findings with Acute Respiratory Failure","Ventilatory assist for respiratory findings with Acute Respiratory Failure","Ventilatory assist for respiratory findings with Acute Respiratory Failure","rao@ohdsi.org","Pending peer review","","all events of acute respiratory symptoms commonly seen in acute respiratory failure with procedures for ventilatory assist among persons with respiratory failure","#CriticalCare",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","255573, 4027553","https://forums.ohdsi.org/t/17895","2023-05-31","2023-09-25",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",14,0,"First",TRUE,"First","First",1,1,"ConditionOccurrence",0,0,3,1,0,0,0,0,0,1,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,, +403,"[P] Acute Respiratory Failure in inpatient or Emergency room","Acute Respiratory Failure in inpatient or Emergency room","Acute Respiratory Failure in inpatient or Emergency room","rao@ohdsi.org","Pending peer review","","all events of Acute Respiratory Failure in inpatient or Emergency room","#Symptoms",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","319049","https://forums.ohdsi.org/t/17895","2023-05-31","2023-09-25",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",14,1,"All",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,2,1,0,0,0,1,0,1,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,, +404,"[P] Ventricular Tachycardia, in an Inpatient or Emergency room setting","Ventricular Tachycardia, in an Inpatient or Emergency room setting","Ventricular Tachycardia, in an Inpatient or Emergency room setting","rao@ohdsi.org","Pending peer review","","Ventricular tachycardia with inpatient stay","",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","437579, 4103295","","2023-05-31","2023-09-25",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",7,1,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,2,1,0,0,0,1,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +405,"[P] Atrial Fibrillation or Flutter","Atrial Fibrillation or Flutter","Atrial Fibrillation or Flutter","rao@ohdsi.org","Pending peer review","","All events of Atrial Fibrillation or Flutter","",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","313217","","2023-05-31","2023-09-25",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",30,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +406,"[P][R] Intellectual disability ","Intellectual disability","Intellectual disability","rao@ohdsi.org","Pending peer review","","all events of Intellectual disability. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","40277917","","2023-05-31","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +407,"[P][R] Hemorrhoids ","Hemorrhoids","Hemorrhoids","rao@ohdsi.org","Pending peer review","","all events of Hemorrhoids. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","195562","","2023-05-31","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +410,"[P] Acute Urinary tract infections UTI","Acute Urinary tract infections UTI","Acute Urinary tract infections UTI","rao@ohdsi.org","Pending peer review","","","#Symptoms",1,"Stephen H. Fortin","","","","","81902","","2023-06-01","2023-09-19",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,, +411,"[P] Sepsis or Septic Shock","Sepsis or Septic Shock","Sepsis or Septic Shock","rao@ohdsi.org","Pending peer review","","All events of Sepsis or Septic Shock","",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","132797","","2023-06-01","2023-09-25",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",30,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +412,"Transverse myelitis indexed on diagnosis (1Ps, 0Era, 365W)","Transverse myelitis indexed on diagnosis (1Ps, 0Era, 365W)","Transverse myelitis indexed on diagnosis (1Ps, 0Era, 365W)","rao@ohdsi.org","Accepted","3.7.0","events with a diagnosis of transverse myelitis indexed on diagnosis of transverse myelitis. Events have a 365 days washout period. The events persist for 1 day. Symptoms of Transverse Myelitis included asthenia, muscle weakness, myelitis, paresthesia","#Accepted, #Level2",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","Evan Minty","","139803, 443904","https://forums.ohdsi.org/t/17769","2023-06-02","2023-09-19",,"",,0,,,"ERA",0,"fixed duration relative to initial event","StartDate",1,1,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,1,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +414,"[P] Acute Skin Eruption symptoms","Acute Skin Eruption symptoms","Acute Skin Eruption symptoms","rao@ohdsi.org","Pending peer review","","All events of certain skin eruption symptoms","#Symptoms",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","134438, 45766714","https://forums.ohdsi.org/t/17895","2023-06-02","2023-09-25",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",14,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +415,"[P][R] Erythema of skin ","Erythema of skin","Erythema of skin","rao@ohdsi.org","Pending peer review","","all events of Erythema of skin. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","4300442, 40481101","https://forums.ohdsi.org/t/17895","2023-06-02","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +416,"[P] Skin Rash","Skin Rash","Skin Rash","rao@ohdsi.org","Pending peer review","","All events of Skin Erythema","#Symptoms",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","135618","https://forums.ohdsi.org/t/17895","2023-06-02","2023-09-25",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",14,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +417,"[P] Acute gastrointestinal bleeding events","Acute gastrointestinal bleeding events","Acute gastrointestinal bleeding events","rao@ohdsi.org","Pending peer review","","all events of gastrointestinal bleed","#Symptoms",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","192671","","2023-06-02","2023-09-25",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",30,0,"All",FALSE,"All","All",2,2,"ConditionOccurrence, ProcedureOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,1,,,,,,,,,,,,,,,,,,,,, +444,"[P][R] Neck pain","Neck pain","Neck pain","rao@ohdsi.org","Pending peer review","","all events of Neck pain. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","24134","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +445,"[P][R] Hypoglycemia","Hypoglycemia","Hypoglycemia","rao@ohdsi.org","Pending peer review","","all events of Hypoglycemia. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","24609","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +446,"[P][R] Eosinophilic esophagitis","Eosinophilic esophagitis","Eosinophilic esophagitis","rao@ohdsi.org","Pending peer review","","all events of Eosinophilic esophagitis. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","27918","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +447,"[P][R] Esophagitis","Esophagitis","Esophagitis","rao@ohdsi.org","Pending peer review","","all events of Esophagitis. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","30437, 30753","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +448,"[P][R] Dysphagia","Dysphagia","Dysphagia","rao@ohdsi.org","Pending peer review","","all events of Dysphagia. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","31317","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +449,"[P][R] Nausea","Nausea","Nausea","rao@ohdsi.org","Pending peer review","","all events of Nausea. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","27674, 31967","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +450,"[P][R] Constipation","Constipation","Constipation","rao@ohdsi.org","Pending peer review","","all events of Constipation. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","75860","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +451,"[P][R] Myasthenia gravis","Myasthenia gravis","Myasthenia gravis","rao@ohdsi.org","Pending peer review","","all events of Myasthenia gravis. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","76685","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +452,"[P][R] Joint pain","Joint pain","Joint pain","rao@ohdsi.org","Pending peer review","","all events of Joint pain. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","77074, 78232","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +453,"[P][R] Osteoarthritis","Osteoarthritis","Osteoarthritis","rao@ohdsi.org","Pending peer review","","all events of Osteoarthritis. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","80180, 4079750","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +454,"[P][R] Dermatomyositis","Dermatomyositis","Dermatomyositis","rao@ohdsi.org","Pending peer review","","all events of Dermatomyositis. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","80182","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +455,"[P][R] Fetal growth restriction","Fetal growth restriction","Fetal growth restriction","rao@ohdsi.org","Pending peer review","","all events of Fetal growth restriction. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","74469, 80204, 4145947","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +456,"[P][R] Osteoporosis","Osteoporosis","Osteoporosis","rao@ohdsi.org","Pending peer review","","all events of Osteoporosis. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","80502","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +457,"[P][R] Rheumatoid arthritis","Rheumatoid arthritis","Rheumatoid arthritis","rao@ohdsi.org","Pending peer review","","all events of Rheumatoid arthritis. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","80809","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +458,"[P][R] Ulcerative colitis","Ulcerative colitis","Ulcerative colitis","rao@ohdsi.org","Pending peer review","","all events of Ulcerative colitis. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","81893","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +459,"[P][R] Urinary tract infectious disease","Urinary tract infectious disease","Urinary tract infectious disease","rao@ohdsi.org","Pending peer review","","all events of Urinary tract infectious disease. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","81902","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +460,"[P][R] Psoriasis with arthropathy","Psoriasis with arthropathy","Psoriasis with arthropathy","rao@ohdsi.org","Pending peer review","","all events of Psoriasis with arthropathy. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","81931","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +461,"[P][R] Erythema multiforme","Erythema multiforme","Erythema multiforme","rao@ohdsi.org","Pending peer review","","all events of Erythema multiforme. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","132702","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +462,"[P][R] Lichen planus","Lichen planus","Lichen planus","rao@ohdsi.org","Pending peer review","","all events of Lichen planus. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","132703","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +463,"[P][R] Sepsis","Sepsis","Sepsis","rao@ohdsi.org","Pending peer review","","all events of Sepsis. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","132797","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +464,"[P][R] Myelofibrosis","Myelofibrosis","Myelofibrosis","rao@ohdsi.org","Pending peer review","","all events of Myelofibrosis. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","133169","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +465,"[P][R] Thyroiditis","Thyroiditis","Thyroiditis","rao@ohdsi.org","Pending peer review","","all events of Thyroiditis. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","133444, 4281109","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +466,"[P][R] Atopic dermatitis","Atopic dermatitis","Atopic dermatitis","rao@ohdsi.org","Pending peer review","","all events of Atopic dermatitis. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","133834","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +467,"[P][R] Systemic sclerosis","Systemic sclerosis","Systemic sclerosis","rao@ohdsi.org","Pending peer review","","all events of Systemic sclerosis. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","134442","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +468,"[P][R] Pityriasis rubra pilaris","Pityriasis rubra pilaris","Pityriasis rubra pilaris","rao@ohdsi.org","Pending peer review","","all events of Pityriasis rubra pilaris. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","136774","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +469,"[P][R] Jaundice","Jaundice","Jaundice","rao@ohdsi.org","Pending peer review","","all events of Jaundice. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","137977, 435656","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +470,"[P][R] Chronic lymphoid leukemia, disease","Chronic lymphoid leukemia, disease","Chronic lymphoid leukemia, disease","rao@ohdsi.org","Pending peer review","","all events of Chronic lymphoid leukemia, disease. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","138379","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +471,"[P][R] Vitiligo","Vitiligo","Vitiligo","rao@ohdsi.org","Pending peer review","","all events of Vitiligo. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","138502","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +472,"[P][R] Myelodysplastic syndrome (clinical)","Myelodysplastic syndrome (clinical)","Myelodysplastic syndrome (clinical)","rao@ohdsi.org","Pending peer review","","all events of Myelodysplastic syndrome (clinical). Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","138994","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +473,"[P][R] Acute transverse myelitis","Acute transverse myelitis","Acute transverse myelitis","rao@ohdsi.org","Pending peer review","","all events of Acute transverse myelitis. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","139803","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +474,"[P][R] Pemphigoid","Pemphigoid","Pemphigoid","rao@ohdsi.org","Pending peer review","","all events of Pemphigoid. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","139899","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +475,"[P][R] Psoriasis","Psoriasis","Psoriasis","rao@ohdsi.org","Pending peer review","","all events of Psoriasis. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","140168","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +476,"[P][R] Acute myeloid leukemia, disease","Acute myeloid leukemia, disease","Acute myeloid leukemia, disease","rao@ohdsi.org","Pending peer review","","all events of Acute myeloid leukemia, disease. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","140352","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +477,"[P][R] Hypothyroidism","Hypothyroidism","Hypothyroidism","rao@ohdsi.org","Pending peer review","","all events of Hypothyroidism. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","138384, 140673","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +478,"[P][R] Malignant melanoma of skin","Malignant melanoma of skin","Malignant melanoma of skin","rao@ohdsi.org","Pending peer review","","all events of Malignant melanoma of skin. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","141232","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +479,"[P][R] Chilblains","Chilblains","Chilblains","rao@ohdsi.org","Pending peer review","","all events of Chilblains. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","141456","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +480,"[P][R] Alopecia areata","Alopecia areata","Alopecia areata","rao@ohdsi.org","Pending peer review","","all events of Alopecia areata. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","141933","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +481,"[P][R] Renal failure syndrome","Renal failure syndrome","Renal failure syndrome","rao@ohdsi.org","Pending peer review","","all events of Renal failure syndrome. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","192359, 193782","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +482,"[P][R] Gastrointestinal hemorrhage","Gastrointestinal hemorrhage","Gastrointestinal hemorrhage","rao@ohdsi.org","Pending peer review","","all events of Gastrointestinal hemorrhage. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","192671","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +483,"[P][R] Biliary cirrhosis","Biliary cirrhosis","Biliary cirrhosis","rao@ohdsi.org","Pending peer review","","all events of Biliary cirrhosis. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","192675","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +484,"[P][R] End-stage renal disease","End-stage renal disease","End-stage renal disease","rao@ohdsi.org","Pending peer review","","all events of End-stage renal disease. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","193782","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +485,"[P][R] Low back pain","Low back pain","Low back pain","rao@ohdsi.org","Pending peer review","","all events of Low back pain. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","194133","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +486,"[P][R] Premature rupture of membranes","Premature rupture of membranes","Premature rupture of membranes","rao@ohdsi.org","Pending peer review","","all events of Premature rupture of membranes. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","194702, 200160","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +487,"[P][R] Celiac disease","Celiac disease","Celiac disease","rao@ohdsi.org","Pending peer review","","all events of Celiac disease. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","194992","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +488,"[P][R] Diarrhea","Diarrhea","Diarrhea","rao@ohdsi.org","Pending peer review","","all events of Diarrhea. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","196523","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +489,"[P][R] Acute renal failure syndrome","Acute renal failure syndrome","Acute renal failure syndrome","rao@ohdsi.org","Pending peer review","","all events of Acute renal failure syndrome. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","197320","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +490,"[P] Viral hepatitis C","Viral hepatitis C","Viral hepatitis C","rao@ohdsi.org","Pending peer review","","all events of Viral hepatitis C. Persons exit on cohort end date","#Referent, #Condition",1,"'Gowtham A. Rao', 'Azza Shoaibi'","'0000-0002-4949-7236', '0000-0002-6976-2594'","'OHDSI'","","","197494","","2023-06-25","2025-03-28",,"",,0,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +491,"[P][R] Malignant tumor of urinary bladder","Malignant tumor of urinary bladder","Malignant tumor of urinary bladder","rao@ohdsi.org","Pending peer review","","all events of Malignant tumor of urinary bladder. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","196360, 197508","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +492,"[P][R] Cardiogenic shock","Cardiogenic shock","Cardiogenic shock","rao@ohdsi.org","Pending peer review","","all events of Cardiogenic shock. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","198571","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +493,"[P][R] Malignant tumor of cervix","Malignant tumor of cervix","Malignant tumor of cervix","rao@ohdsi.org","Pending peer review","","all events of Malignant tumor of cervix. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","196359, 198984","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +494,"[P][R] Primary malignant neoplasm of kidney","Primary malignant neoplasm of kidney","Primary malignant neoplasm of kidney","rao@ohdsi.org","Pending peer review","","all events of Primary malignant neoplasm of kidney. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","198985","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +495,"[P][R] Acute pancreatitis","Acute pancreatitis","Acute pancreatitis","rao@ohdsi.org","Pending peer review","","all events of Acute pancreatitis. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","199074","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +496,"[P][R] Abdominal pain","Abdominal pain","Abdominal pain","rao@ohdsi.org","Pending peer review","","all events of Abdominal pain. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","200219","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +497,"[P][R] Autoimmune hepatitis","Autoimmune hepatitis","Autoimmune hepatitis","rao@ohdsi.org","Pending peer review","","all events of Autoimmune hepatitis. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","200762","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +498,"[P][R] Toxic shock syndrome","Toxic shock syndrome","Toxic shock syndrome","rao@ohdsi.org","Pending peer review","","all events of Toxic shock syndrome. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","201214","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +499,"[P][R] Type 1 diabetes mellitus","Type 1 diabetes mellitus","Type 1 diabetes mellitus","rao@ohdsi.org","Pending peer review","","all events of Type 1 diabetes mellitus. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","201254","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +500,"[P][R] Gastritis","Gastritis","Gastritis","rao@ohdsi.org","Pending peer review","","all events of Gastritis. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","201340","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +501,"[P][R] Crohn's disease","Crohn's disease","Crohn's disease","rao@ohdsi.org","Pending peer review","","all events of Crohn's disease. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","201606","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +502,"[P][R] Kidney stone","Kidney stone","Kidney stone","rao@ohdsi.org","Pending peer review","","all events of Kidney stone. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","201620","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +503,"[P][R] Type 2 diabetes mellitus","Type 2 diabetes mellitus","Type 2 diabetes mellitus","rao@ohdsi.org","Pending peer review","","all events of Type 2 diabetes mellitus. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","201826","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +504,"[P][R] Sjögren's syndrome","Sjögren's syndrome","Sjögren's syndrome","rao@ohdsi.org","Pending peer review","","all events of Sjögren's syndrome. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","254443","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +505,"[P][R] Cough","Cough","Cough","rao@ohdsi.org","Pending peer review","","all events of Cough. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","254761","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +506,"[P][R] Chronic obstructive lung disease","Chronic obstructive lung disease","Chronic obstructive lung disease","rao@ohdsi.org","Pending peer review","","all events of Chronic obstructive lung disease. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","255573","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +507,"[P][R] Pneumonia","Pneumonia","Pneumonia","rao@ohdsi.org","Pending peer review","","all events of Pneumonia. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","255848","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +508,"[P][R] Allergic rhinitis","Allergic rhinitis","Allergic rhinitis","rao@ohdsi.org","Pending peer review","","all events of Allergic rhinitis. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","257007","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +509,"[P][R] Systemic lupus erythematosus","Systemic lupus erythematosus","Systemic lupus erythematosus","rao@ohdsi.org","Pending peer review","","all events of Systemic lupus erythematosus. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","257628","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +510,"[P][R] Acute myocardial infarction","Acute myocardial infarction","Acute myocardial infarction","rao@ohdsi.org","Pending peer review","","all events of Acute myocardial infarction. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","312327, 444406","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +511,"[P][R] Dyspnea","Dyspnea","Dyspnea","rao@ohdsi.org","Pending peer review","","all events of Dyspnea. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","312437","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +512,"[P][R] Thromboangiitis obliterans","Thromboangiitis obliterans","Thromboangiitis obliterans","rao@ohdsi.org","Pending peer review","","all events of Thromboangiitis obliterans. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","312939","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +513,"[P][R] Atrial fibrillation","Atrial fibrillation","Atrial fibrillation","rao@ohdsi.org","Pending peer review","","all events of Atrial fibrillation. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","313217","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +514,"[P][R] Granulomatosis with polyangiitis","Granulomatosis with polyangiitis","Granulomatosis with polyangiitis","rao@ohdsi.org","Pending peer review","","all events of Granulomatosis with polyangiitis. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","313223","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +515,"[P][R] Sleep apnea","Sleep apnea","Sleep apnea","rao@ohdsi.org","Pending peer review","","all events of Sleep apnea. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","313459, 442588","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +516,"[P][R] Thrombotic microangiopathy","Thrombotic microangiopathy","Thrombotic microangiopathy","rao@ohdsi.org","Pending peer review","","all events of Thrombotic microangiopathy. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","313800","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +517,"[P][R] Acute febrile mucocutaneous lymph node syndrome","Acute febrile mucocutaneous lymph node syndrome","Acute febrile mucocutaneous lymph node syndrome","rao@ohdsi.org","Pending peer review","","all events of Acute febrile mucocutaneous lymph node syndrome. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","314381","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +518,"[P][R] Myocarditis","Myocarditis","Myocarditis","rao@ohdsi.org","Pending peer review","","all events of Myocarditis. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","314383","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +519,"[P][R] Heart failure","Heart failure","Heart failure","rao@ohdsi.org","Pending peer review","","all events of Heart failure. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","316139, 319835","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +520,"[P][R] Hypertensive disorder","Hypertensive disorder","Hypertensive disorder","rao@ohdsi.org","Pending peer review","","all events of Hypertensive disorder. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","312648, 316866, 4028741","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +521,"[P][R] Asthma","Asthma","Asthma","rao@ohdsi.org","Pending peer review","","all events of Asthma. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","317009","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +522,"[P][R] Coronary arteriosclerosis","Coronary arteriosclerosis","Coronary arteriosclerosis","rao@ohdsi.org","Pending peer review","","all events of Coronary arteriosclerosis. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","317576, 764123","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +523,"[P][R] Arteriosclerotic vascular disease","Arteriosclerotic vascular disease","Arteriosclerotic vascular disease","rao@ohdsi.org","Pending peer review","","all events of Arteriosclerotic vascular disease. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","318443, 764123","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +524,"[P][R] Migraine","Migraine","Migraine","rao@ohdsi.org","Pending peer review","","all events of Migraine. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","318736","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +525,"[P][R] Gastroesophageal reflux disease","Gastroesophageal reflux disease","Gastroesophageal reflux disease","rao@ohdsi.org","Pending peer review","","all events of Gastroesophageal reflux disease. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","318800","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +526,"[P][R] Orthostatic hypotension","Orthostatic hypotension","Orthostatic hypotension","rao@ohdsi.org","Pending peer review","","all events of Orthostatic hypotension. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","319041","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +527,"[P][R] Acute respiratory failure","Acute respiratory failure","Acute respiratory failure","rao@ohdsi.org","Pending peer review","","all events of Acute respiratory failure. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","319049","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +528,"[P][R] Polyarteritis nodosa","Polyarteritis nodosa","Polyarteritis nodosa","rao@ohdsi.org","Pending peer review","","all events of Polyarteritis nodosa. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","320749","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +529,"[P][R] Cardiac arrest","Cardiac arrest","Cardiac arrest","rao@ohdsi.org","Pending peer review","","all events of Cardiac arrest. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","321042","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +530,"[P][R] Peripheral vascular disease","Peripheral vascular disease","Peripheral vascular disease","rao@ohdsi.org","Pending peer review","","all events of Peripheral vascular disease. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","321052","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +531,"[P][R] Angina pectoris","Angina pectoris","Angina pectoris","rao@ohdsi.org","Pending peer review","","all events of Angina pectoris. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","321318","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +532,"[P][R] Heart disease","Heart disease","Heart disease","rao@ohdsi.org","Pending peer review","","all events of Heart disease. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","313217, 321588, 44784217","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +533,"[P][R] Otitis media","Otitis media","Otitis media","rao@ohdsi.org","Pending peer review","","all events of Otitis media. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","372328","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +534,"[P][R] Transient cerebral ischemia","Transient cerebral ischemia","Transient cerebral ischemia","rao@ohdsi.org","Pending peer review","","all events of Transient cerebral ischemia. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","373503","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +535,"[P][R] Acute disseminated encephalomyelitis","Acute disseminated encephalomyelitis","Acute disseminated encephalomyelitis","rao@ohdsi.org","Pending peer review","","all events of Acute disseminated encephalomyelitis. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","374021","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +536,"[P][R] Age related macular degeneration","Age related macular degeneration","Age related macular degeneration","rao@ohdsi.org","Pending peer review","","all events of Age related macular degeneration. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","374028, 376966","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +537,"[P][R] Sensorineural hearing loss","Sensorineural hearing loss","Sensorineural hearing loss","rao@ohdsi.org","Pending peer review","","all events of Sensorineural hearing loss. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","374366, 4110815","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +538,"[P][R] Paralytic syndrome","Paralytic syndrome","Paralytic syndrome","rao@ohdsi.org","Pending peer review","","all events of Paralytic syndrome. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","374377, 4134120","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +539,"[P][R] Multiple sclerosis","Multiple sclerosis","Multiple sclerosis","rao@ohdsi.org","Pending peer review","","all events of Multiple sclerosis. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","374919","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +540,"[P][R] Optic neuritis","Optic neuritis","Optic neuritis","rao@ohdsi.org","Pending peer review","","all events of Optic neuritis. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","374954","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +541,"[P][R] Idiopathic peripheral neuropathy","Idiopathic peripheral neuropathy","Idiopathic peripheral neuropathy","rao@ohdsi.org","Pending peer review","","all events of Idiopathic peripheral neuropathy. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","375806","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +542,"[P][R] Cerebral hemorrhage","Cerebral hemorrhage","Cerebral hemorrhage","rao@ohdsi.org","Pending peer review","","all events of Cerebral hemorrhage. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","376713","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +543,"[P][R] Seizure","Seizure","Seizure","rao@ohdsi.org","Pending peer review","","all events of Seizure. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","377091","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +544,"[P][R] Encephalitis","Encephalitis","Encephalitis","rao@ohdsi.org","Pending peer review","","all events of Encephalitis. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","378143, 380941","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +545,"[P][R] Headache","Headache","Headache","rao@ohdsi.org","Pending peer review","","all events of Headache. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","378253","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +546,"[P][R] Retinal detachment","Retinal detachment","Retinal detachment","rao@ohdsi.org","Pending peer review","","all events of Retinal detachment. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","378414","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +547,"[P][R] Retinal disorder","Retinal disorder","Retinal disorder","rao@ohdsi.org","Pending peer review","","all events of Retinal disorder. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","376966, 378416, 4116208","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +549,"[P][R] Epilepsy","Epilepsy","Epilepsy","rao@ohdsi.org","Pending peer review","","all events of Epilepsy. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","380378","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +550,"[P][R] Chronic inflammatory demyelinating polyradiculoneuropathy","Chronic inflammatory demyelinating polyradiculoneuropathy","Chronic inflammatory demyelinating polyradiculoneuropathy","rao@ohdsi.org","Pending peer review","","all events of Chronic inflammatory demyelinating polyradiculoneuropathy. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","381009","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +551,"[P][R] Microcephaly","Microcephaly","Microcephaly","rao@ohdsi.org","Pending peer review","","all events of Microcephaly. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","381114,606878","","2023-06-25","2023-09-22",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"Observation",0,0,1,0,0,0,0,0,0,,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,, +552,"[P][R] Parkinson's disease","Parkinson's disease","Parkinson's disease","rao@ohdsi.org","Pending peer review","","all events of Parkinson's disease. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","381270","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +553,"[P][R] Cerebrovascular accident","Cerebrovascular accident","Cerebrovascular accident","rao@ohdsi.org","Pending peer review","","all events of Cerebrovascular accident. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","381316","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +554,"[P][R] Cerebrovascular disease","Cerebrovascular disease","Cerebrovascular disease","rao@ohdsi.org","Pending peer review","","all events of Cerebrovascular disease. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","381591, 4288310","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +555,"[P][R] Blood coagulation disorder","Blood coagulation disorder","Blood coagulation disorder","rao@ohdsi.org","Pending peer review","","all events of Blood coagulation disorder. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","432585","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +556,"[P][R] Amyloidosis","Amyloidosis","Amyloidosis","rao@ohdsi.org","Pending peer review","","all events of Amyloidosis. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","432595","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +557,"[P][R] Angioedema","Angioedema","Angioedema","rao@ohdsi.org","Pending peer review","","all events of Angioedema. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","432791","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +558,"[P][R] Hyperlipidemia","Hyperlipidemia","Hyperlipidemia","rao@ohdsi.org","Pending peer review","","all events of Hyperlipidemia. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","432867","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +559,"[P][R] Thrombocytopenic disorder","Thrombocytopenic disorder","Thrombocytopenic disorder","rao@ohdsi.org","Pending peer review","","all events of Thrombocytopenic disorder. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","432870","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +560,"[P][R] Pancytopenia","Pancytopenia","Pancytopenia","rao@ohdsi.org","Pending peer review","","all events of Pancytopenia. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","432881","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +561,"[P][R] Myasthenic syndrome due to another disorder","Myasthenic syndrome due to another disorder","Myasthenic syndrome due to another disorder","rao@ohdsi.org","Pending peer review","","all events of Myasthenic syndrome due to another disorder. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","432893","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +562,"[P][R] Edema","Edema","Edema","rao@ohdsi.org","Pending peer review","","all events of Edema. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","433595","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +563,"[P][R] Obesity","Obesity","Obesity","rao@ohdsi.org","Pending peer review","","all events of Obesity. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","433736","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +564,"[P][R] Hidradenitis","Hidradenitis","Hidradenitis","rao@ohdsi.org","Pending peer review","","all events of Hidradenitis. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","434119","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +565,"[P][R] Tuberculosis","Tuberculosis","Tuberculosis","rao@ohdsi.org","Pending peer review","","all events of Tuberculosis. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","253954, 434557","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +566,"[P][R] Kaposi's sarcoma (clinical)","Kaposi's sarcoma (clinical)","Kaposi's sarcoma (clinical)","rao@ohdsi.org","Pending peer review","","all events of Kaposi's sarcoma (clinical). Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","434584","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +567,"[P][R] B-cell lymphoma (clinical)","B-cell lymphoma (clinical)","B-cell lymphoma (clinical)","rao@ohdsi.org","Pending peer review","","all events of B-cell lymphoma (clinical). Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","434592, 4300704","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +568,"[P][R] Hyperkalemia","Hyperkalemia","Hyperkalemia","rao@ohdsi.org","Pending peer review","","all events of Hyperkalemia. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","434610","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +569,"[P][R] Systemic inflammatory response syndrome","Systemic inflammatory response syndrome","Systemic inflammatory response syndrome","rao@ohdsi.org","Pending peer review","","all events of Systemic inflammatory response syndrome. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","434821","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +570,"[P][R] Leukopenia","Leukopenia","Leukopenia","rao@ohdsi.org","Pending peer review","","all events of Leukopenia. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","432881, 435224","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +571,"[P] Schizophrenia","Schizophrenia","Schizophrenia","rao@ohdsi.org","Pending peer review","","all events of Schizophrenia. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","435783","","2023-06-25","2025-03-29",,"",,0,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +572,"[P][R] Psychotic disorder","Psychotic disorder","Psychotic disorder","rao@ohdsi.org","Pending peer review","","all events of Psychotic disorder. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","435783, 436073","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +573,"[P] Chronic pain","Chronic pain","Chronic pain","rao@ohdsi.org","Pending peer review","","all events of Chronic pain. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","436096","","2023-06-25","2025-03-28",,"",,0,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +574,"[P][R] Narcolepsy","Narcolepsy","Narcolepsy","rao@ohdsi.org","Pending peer review","","all events of Narcolepsy. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","436100","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +575,"[P][R] Behcet's syndrome","Behcet's syndrome","Behcet's syndrome","rao@ohdsi.org","Pending peer review","","all events of Behcet's syndrome. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","436642","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +576,"[P] Bipolar disorder","Bipolar disorder","Bipolar disorder","rao@ohdsi.org","Pending peer review","","all events of Bipolar disorder. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","436665","","2023-06-25","2025-03-29",,"",,0,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +577,"[P][R] Posttraumatic stress disorder","Posttraumatic stress disorder","Posttraumatic stress disorder","rao@ohdsi.org","Pending peer review","","all events of Posttraumatic stress disorder. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","436676","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +578,"[P][R] Insomnia","Insomnia","Insomnia","rao@ohdsi.org","Pending peer review","","all events of Insomnia. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","436962","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +579,"[P][R] Ankylosing spondylitis","Ankylosing spondylitis","Ankylosing spondylitis","rao@ohdsi.org","Pending peer review","","all events of Ankylosing spondylitis. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","437082","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +580,"[P][R] Respiratory syncytial virus infection","Respiratory syncytial virus infection","Respiratory syncytial virus infection","rao@ohdsi.org","Pending peer review","","all events of Respiratory syncytial virus infection. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","254058, 437222","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +581,"[P][R] Multiple myeloma","Multiple myeloma","Multiple myeloma","rao@ohdsi.org","Pending peer review","","all events of Multiple myeloma. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","437233","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +582,"[P][R] Bleeding","Bleeding","Bleeding","rao@ohdsi.org","Pending peer review","","all events of Bleeding. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","192671, 437312","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +583,"[P][R] Glaucoma","Glaucoma","Glaucoma","rao@ohdsi.org","Pending peer review","","all events of Glaucoma. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","435262, 437541","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +584,"[P][R] Fever","Fever","Fever","rao@ohdsi.org","Pending peer review","","all events of Fever. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","437663","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +585,"[P][R] Hypokalemia","Hypokalemia","Hypokalemia","rao@ohdsi.org","Pending peer review","","all events of Hypokalemia. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","437833","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +586,"[P][R] Opioid dependence","Opioid dependence","Opioid dependence","rao@ohdsi.org","Pending peer review","","all events of Opioid dependence. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","438120","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +587,"[P][R] Opioid abuse","Opioid abuse","Opioid abuse","rao@ohdsi.org","Pending peer review","","all events of Opioid abuse. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","438130","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +588,"[P][R] Attention deficit hyperactivity disorder","Attention deficit hyperactivity disorder","Attention deficit hyperactivity disorder","rao@ohdsi.org","Pending peer review","","all events of Attention deficit hyperactivity disorder. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","438409","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +589,"[P][R] Pre-eclampsia","Pre-eclampsia","Pre-eclampsia","rao@ohdsi.org","Pending peer review","","all events of Pre-eclampsia. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","439393","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +590,"[P][R] Human immunodeficiency virus infection","Human immunodeficiency virus infection","Human immunodeficiency virus infection","rao@ohdsi.org","Pending peer review","","all events of Human immunodeficiency virus infection. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","439727","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +591,"[P][R] Autism spectrum disorder","Autism spectrum disorder","Autism spectrum disorder","rao@ohdsi.org","Pending peer review","","all events of Autism spectrum disorder. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","439776, 439780","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +592,"[P][R] Anemia","Anemia","Anemia","rao@ohdsi.org","Pending peer review","","all events of Anemia. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","439777","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +593,"[P][R] Paralysis","Paralysis","Paralysis","rao@ohdsi.org","Pending peer review","","all events of Paralysis. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","374923, 440377","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +594,"[P][R] Depressive disorder","Depressive disorder","Depressive disorder","rao@ohdsi.org","Pending peer review","","all events of Depressive disorder. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","440383","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +595,"[P][R] Pulmonary embolism","Pulmonary embolism","Pulmonary embolism","rao@ohdsi.org","Pending peer review","","all events of Pulmonary embolism. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","440417, 43530605","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +596,"[P][R] Gout","Gout","Gout","rao@ohdsi.org","Pending peer review","","all events of Gout. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","440674","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +597,"[P][R] Takayasu's disease","Takayasu's disease","Takayasu's disease","rao@ohdsi.org","Pending peer review","","all events of Takayasu's disease. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","440740","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +598,"[P][R] Methicillin resistant Staphylococcus aureus infection","Methicillin resistant Staphylococcus aureus infection","Methicillin resistant Staphylococcus aureus infection","rao@ohdsi.org","Pending peer review","","all events of Methicillin resistant Staphylococcus aureus infection. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","440940","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +599,"[P][R] Anaphylaxis","Anaphylaxis","Anaphylaxis","rao@ohdsi.org","Pending peer review","","all events of Anaphylaxis. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","441202","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +600,"[P][R] Open-angle glaucoma","Open-angle glaucoma","Open-angle glaucoma","rao@ohdsi.org","Pending peer review","","all events of Open-angle glaucoma. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","435262, 441284","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +601,"[P][R] Vomiting","Vomiting","Vomiting","rao@ohdsi.org","Pending peer review","","all events of Vomiting. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","27674, 441408","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +602,"[P][R] Anxiety","Anxiety","Anxiety","rao@ohdsi.org","Pending peer review","","all events of Anxiety. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","441542, 442077","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +603,"[P][R] Human papilloma virus infection","Human papilloma virus infection","Human papilloma virus infection","rao@ohdsi.org","Pending peer review","","all events of Human papilloma virus infection. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","140641, 441788","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +604,"[P][R] Cranial nerve disorder","Cranial nerve disorder","Cranial nerve disorder","rao@ohdsi.org","Pending peer review","","all events of Cranial nerve disorder. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","374923, 441848","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +605,"[P][R] Muscle pain","Muscle pain","Muscle pain","rao@ohdsi.org","Pending peer review","","all events of Muscle pain. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","442752","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +606,"[P][R] Stillbirth","Stillbirth","Stillbirth","rao@ohdsi.org","Pending peer review","","all events of Stillbirth. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","443213, 4014454","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +607,"[P][R] Malignant tumor of stomach","Malignant tumor of stomach","Malignant tumor of stomach","rao@ohdsi.org","Pending peer review","","all events of Malignant tumor of stomach. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","196044, 443387","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +608,"[P][R] Malignant neoplastic disease","Malignant neoplastic disease","Malignant neoplastic disease","rao@ohdsi.org","Pending peer review","","all events of Malignant neoplastic disease. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","137809, 443392","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +609,"[P][R] Cerebral infarction","Cerebral infarction","Cerebral infarction","rao@ohdsi.org","Pending peer review","","all events of Cerebral infarction. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","443454","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +610,"[P][R] Eclampsia","Eclampsia","Eclampsia","rao@ohdsi.org","Pending peer review","","all events of Eclampsia. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","443700, 4116344","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +611,"[P][R] Diabetic ketoacidosis","Diabetic ketoacidosis","Diabetic ketoacidosis","rao@ohdsi.org","Pending peer review","","all events of Diabetic ketoacidosis. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","443727, 4009303","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +612,"[P][R] Acute tubular necrosis","Acute tubular necrosis","Acute tubular necrosis","rao@ohdsi.org","Pending peer review","","all events of Acute tubular necrosis. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","444044","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +613,"[P][R] Tachycardia","Tachycardia","Tachycardia","rao@ohdsi.org","Pending peer review","","all events of Tachycardia. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","313217, 444070","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +614,"[P][R] Venous thrombosis","Venous thrombosis","Venous thrombosis","rao@ohdsi.org","Pending peer review","","all events of Venous thrombosis. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","444247, 43531681","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +615,"[P][R] Herpes simplex","Herpes simplex","Herpes simplex","rao@ohdsi.org","Pending peer review","","all events of Herpes simplex. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","440021, 444429","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +616,"[P][R] Acute arthritis","Acute arthritis","Acute arthritis","rao@ohdsi.org","Pending peer review","","all events of Acute arthritis. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","433000, 4000634","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +617,"[P][R] Monoclonal gammopathy (clinical)","Monoclonal gammopathy (clinical)","Monoclonal gammopathy (clinical)","rao@ohdsi.org","Pending peer review","","all events of Monoclonal gammopathy (clinical). Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","4002359","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +618,"[P][R] Pulmonary arterial hypertension","Pulmonary arterial hypertension","Pulmonary arterial hypertension","rao@ohdsi.org","Pending peer review","","all events of Pulmonary arterial hypertension. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","4013643, 44783618","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +619,"[P][R] Gestational diabetes mellitus","Gestational diabetes mellitus","Gestational diabetes mellitus","rao@ohdsi.org","Pending peer review","","all events of Gestational diabetes mellitus. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","4024659","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +620,"[P][R] Uveitis","Uveitis","Uveitis","rao@ohdsi.org","Pending peer review","","all events of Uveitis. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","434926, 4028363","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +621,"[P][R] Renal impairment","Renal impairment","Renal impairment","rao@ohdsi.org","Pending peer review","","all events of Renal impairment. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","193782, 4030518","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +622,"[P][R] Non-Hodgkin's lymphoma (clinical)","Non-Hodgkin's lymphoma (clinical)","Non-Hodgkin's lymphoma (clinical)","rao@ohdsi.org","Pending peer review","","all events of Non-Hodgkin's lymphoma (clinical). Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","4038838, 4300704","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +623,"[P][R] Motor neuropathy with multiple conduction block","Motor neuropathy with multiple conduction block","Motor neuropathy with multiple conduction block","rao@ohdsi.org","Pending peer review","","all events of Motor neuropathy with multiple conduction block. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","4046338","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +624,"[P][R] Primary sclerosing cholangitis","Primary sclerosing cholangitis","Primary sclerosing cholangitis","rao@ohdsi.org","Pending peer review","","all events of Primary sclerosing cholangitis. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","4058821","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +625,"[P][R] Pustular psoriasis","Pustular psoriasis","Pustular psoriasis","rao@ohdsi.org","Pending peer review","","all events of Pustular psoriasis. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","4063434, 4100184","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +626,"[P][R] Cirrhosis of liver","Cirrhosis of liver","Cirrhosis of liver","rao@ohdsi.org","Pending peer review","","all events of Cirrhosis of liver. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","194692, 4064161","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +627,"[P][R] Miscarriage","Miscarriage","Miscarriage","rao@ohdsi.org","Pending peer review","","all events of Miscarriage. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","76482, 4067106","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +628,"[P][R] Fisher's syndrome","Fisher's syndrome","Fisher's syndrome","rao@ohdsi.org","Pending peer review","","all events of Fisher's syndrome. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","4070552","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +629,"[P][R] Inflammatory bowel disease","Inflammatory bowel disease","Inflammatory bowel disease","rao@ohdsi.org","Pending peer review","","all events of Inflammatory bowel disease. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","195585, 4074815","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +630,"[P][R] Facial palsy","Facial palsy","Facial palsy","rao@ohdsi.org","Pending peer review","","all events of Facial palsy. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","374923, 4091559","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +631,"[P][R] Livebirth","Livebirth","Livebirth","rao@ohdsi.org","Pending peer review","","all events of Livebirth. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","4014295, 4092289","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +632,"[P][R] Antiphospholipid syndrome","Antiphospholipid syndrome","Antiphospholipid syndrome","rao@ohdsi.org","Pending peer review","","all events of Antiphospholipid syndrome. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","4098292","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +633,"[P][R] Waldenström macroglobulinemia","Waldenström macroglobulinemia","Waldenström macroglobulinemia","rao@ohdsi.org","Pending peer review","","all events of Waldenström macroglobulinemia. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","4098597","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +634,"[P][R] Immunoglobulin A vasculitis","Immunoglobulin A vasculitis","Immunoglobulin A vasculitis","rao@ohdsi.org","Pending peer review","","all events of Immunoglobulin A vasculitis. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","4101602","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +635,"[P][R] Ventricular tachycardia","Ventricular tachycardia","Ventricular tachycardia","rao@ohdsi.org","Pending peer review","","all events of Ventricular tachycardia. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","437579, 4103295","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +636,"[P][R] Malignant tumor of breast","Malignant tumor of breast","Malignant tumor of breast","rao@ohdsi.org","Pending peer review","","all events of Malignant tumor of breast. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","137809, 4112853","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +637,"[P][R] Peripheral ischemia","Peripheral ischemia","Peripheral ischemia","rao@ohdsi.org","Pending peer review","","all events of Peripheral ischemia. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","4124836, 4291464","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +638,"[P][R] Neoplasm of thyroid gland","Neoplasm of thyroid gland","Neoplasm of thyroid gland","rao@ohdsi.org","Pending peer review","","all events of Neoplasm of thyroid gland. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","133424, 4131909","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +639,"[P][R] Deep venous thrombosis","Deep venous thrombosis","Deep venous thrombosis","rao@ohdsi.org","Pending peer review","","all events of Deep venous thrombosis. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","4133004, 43531681","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +640,"[P][R] Vasculitis","Vasculitis","Vasculitis","rao@ohdsi.org","Pending peer review","","all events of Vasculitis. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","199856, 4137275","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +641,"[P][R] Pericarditis","Pericarditis","Pericarditis","rao@ohdsi.org","Pending peer review","","all events of Pericarditis. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","320116, 4138837","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +642,"[P][R] Immune reconstitution syndrome","Immune reconstitution syndrome","Immune reconstitution syndrome","rao@ohdsi.org","Pending peer review","","all events of Immune reconstitution syndrome. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","4139034","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +643,"[P][R] Follicular non-Hodgkin's lymphoma","Follicular non-Hodgkin's lymphoma","Follicular non-Hodgkin's lymphoma","rao@ohdsi.org","Pending peer review","","all events of Follicular non-Hodgkin's lymphoma. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","4147411","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +644,"[P][R] Malignant tumor of prostate","Malignant tumor of prostate","Malignant tumor of prostate","rao@ohdsi.org","Pending peer review","","all events of Malignant tumor of prostate. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","200962, 4163261","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +645,"[P][R] Guillain-Barré syndrome","Guillain-Barré syndrome","Guillain-Barré syndrome","rao@ohdsi.org","Pending peer review","","all events of Guillain-Barré syndrome. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","4164770","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +646,"[P][R] Bradycardia","Bradycardia","Bradycardia","rao@ohdsi.org","Pending peer review","","all events of Bradycardia. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","4169095","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +647,"[P][R] Retinopathy due to diabetes mellitus","Retinopathy due to diabetes mellitus","Retinopathy due to diabetes mellitus","rao@ohdsi.org","Pending peer review","","all events of Retinopathy due to diabetes mellitus. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","376683, 4174977","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +648,"[P][R] Malignant tumor of colon","Malignant tumor of colon","Malignant tumor of colon","rao@ohdsi.org","Pending peer review","","all events of Malignant tumor of colon. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","197500, 4180790","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +649,"[P][R] Malignant tumor of esophagus","Malignant tumor of esophagus","Malignant tumor of esophagus","rao@ohdsi.org","Pending peer review","","all events of Malignant tumor of esophagus. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","26638, 4181343","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +650,"[P][R] Malignant tumor of ovary","Malignant tumor of ovary","Malignant tumor of ovary","rao@ohdsi.org","Pending peer review","","all events of Malignant tumor of ovary. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","200051, 4181351","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +651,"[P][R] Dementia","Dementia","Dementia","rao@ohdsi.org","Pending peer review","","all events of Dementia. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","4182210","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +652,"[P][R] Vasculitis of the skin","Vasculitis of the skin","Vasculitis of the skin","rao@ohdsi.org","Pending peer review","","all events of Vasculitis of the skin. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","4182711","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +653,"[P][R] Loss of sense of smell","Loss of sense of smell","Loss of sense of smell","rao@ohdsi.org","Pending peer review","","all events of Loss of sense of smell. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","4185711","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +654,"[P][R] Ischemic heart disease","Ischemic heart disease","Ischemic heart disease","rao@ohdsi.org","Pending peer review","","all events of Ischemic heart disease. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","321318, 4185932","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +655,"[P][R] Aseptic meningitis","Aseptic meningitis","Aseptic meningitis","rao@ohdsi.org","Pending peer review","","all events of Aseptic meningitis. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","434869, 4201096","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +656,"[P][R] Fatigue","Fatigue","Fatigue","rao@ohdsi.org","Pending peer review","","all events of Fatigue. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","437113, 4223659","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +657,"[P][R] Paresthesia","Paresthesia","Paresthesia","rao@ohdsi.org","Pending peer review","","all events of Paresthesia. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","4236484","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +658,"[P][R] Hepatic failure","Hepatic failure","Hepatic failure","rao@ohdsi.org","Pending peer review","","all events of Hepatic failure. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","4245975","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +659,"[P][R] Malignant neoplasm of liver","Malignant neoplasm of liver","Malignant neoplasm of liver","rao@ohdsi.org","Pending peer review","","all events of Malignant neoplasm of liver. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","198700, 4246127","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +660,"[P][R] Juvenile rheumatoid arthritis","Juvenile rheumatoid arthritis","Juvenile rheumatoid arthritis","rao@ohdsi.org","Pending peer review","","all events of Juvenile rheumatoid arthritis. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","72714, 4253901","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +661,"[P][R] Respiratory failure","Respiratory failure","Respiratory failure","rao@ohdsi.org","Pending peer review","","all events of Respiratory failure. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","319049, 4256228","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +662,"[P][R] Diverticulitis of large intestine","Diverticulitis of large intestine","Diverticulitis of large intestine","rao@ohdsi.org","Pending peer review","","all events of Diverticulitis of large intestine. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","77025, 4260535","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +663,"[P][R] Influenza","Influenza","Influenza","rao@ohdsi.org","Pending peer review","","all events of Influenza. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","4183609, 4266367","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +664,"[P][R] Malaise","Malaise","Malaise","rao@ohdsi.org","Pending peer review","","all events of Malaise. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","439926, 4272240","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +665,"[P][R] Suicidal thoughts","Suicidal thoughts","Suicidal thoughts","rao@ohdsi.org","Pending peer review","","all events of Suicidal thoughts. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","4273391","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +666,"[P][R] Type B viral hepatitis","Type B viral hepatitis","Type B viral hepatitis","rao@ohdsi.org","Pending peer review","","all events of Type B viral hepatitis. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","439674, 4281232","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +667,"[P][R] Guttate psoriasis","Guttate psoriasis","Guttate psoriasis","rao@ohdsi.org","Pending peer review","","all events of Guttate psoriasis. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","4284492","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +668,"[P][R] SLE glomerulonephritis syndrome","SLE glomerulonephritis syndrome","SLE glomerulonephritis syndrome","rao@ohdsi.org","Pending peer review","","all events of SLE glomerulonephritis syndrome. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","4285717","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +669,"[P][R] Schizoaffective disorder","Schizoaffective disorder","Schizoaffective disorder","rao@ohdsi.org","Pending peer review","","all events of Schizoaffective disorder. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","4286201","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +670,"[P][R] Temporal arteritis","Temporal arteritis","Temporal arteritis","rao@ohdsi.org","Pending peer review","","all events of Temporal arteritis. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","4290976, 4343935","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +671,"[P][R] Pregnant","Pregnant","Pregnant","rao@ohdsi.org","Pending peer review","","all events of Pregnant. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","4299535","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +672,"[P][R] Sense of smell impaired","Sense of smell impaired","Sense of smell impaired","rao@ohdsi.org","Pending peer review","","all events of Sense of smell impaired. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","4307095","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +673,"[P][R] Primary malignant neoplasm of respiratory tract","Primary malignant neoplasm of respiratory tract","Primary malignant neoplasm of respiratory tract","rao@ohdsi.org","Pending peer review","","all events of Primary malignant neoplasm of respiratory tract. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","4311499","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +674,"[P][R] Degeneration of retina","Degeneration of retina","Degeneration of retina","rao@ohdsi.org","Pending peer review","","all events of Degeneration of retina. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","376966, 4318985","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +675,"[P][R] Pulmonary hypertension","Pulmonary hypertension","Pulmonary hypertension","rao@ohdsi.org","Pending peer review","","all events of Pulmonary hypertension. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","4322024, 4339214","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +676,"[P][R] Necrosis of artery","Necrosis of artery","Necrosis of artery","rao@ohdsi.org","Pending peer review","","all events of Necrosis of artery. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","4344489,320749,319047","","2023-06-25","2023-09-22",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +677,"[P][R] Preterm labor with preterm delivery","Preterm labor with preterm delivery","Preterm labor with preterm delivery","rao@ohdsi.org","Pending peer review","","all events of Preterm labor with preterm delivery. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","36712702, 45757176","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +678,"[P][R] COVID-19","COVID-19","COVID-19","rao@ohdsi.org","Pending peer review","","all events of COVID-19. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","37311061","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +679,"[P][R] Takotsubo cardiomyopathy","Takotsubo cardiomyopathy","Takotsubo cardiomyopathy","rao@ohdsi.org","Pending peer review","","all events of Takotsubo cardiomyopathy. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","40479589","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +680,"[P][R] Mantle cell lymphoma","Mantle cell lymphoma","Mantle cell lymphoma","rao@ohdsi.org","Pending peer review","","all events of Mantle cell lymphoma. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","40481901","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +681,"[P][R] Malignant neoplasm of anorectum","Malignant neoplasm of anorectum","Malignant neoplasm of anorectum","rao@ohdsi.org","Pending peer review","","all events of Malignant neoplasm of anorectum. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","74582, 40481902","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +682,"[P][R] Marginal zone lymphoma","Marginal zone lymphoma","Marginal zone lymphoma","rao@ohdsi.org","Pending peer review","","all events of Marginal zone lymphoma. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","40490918","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +683,"[P][R] Antineutrophil cytoplasmic antibody positive vasculitis","Antineutrophil cytoplasmic antibody positive vasculitis","Antineutrophil cytoplasmic antibody positive vasculitis","rao@ohdsi.org","Pending peer review","","all events of Antineutrophil cytoplasmic antibody positive vasculitis. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","313223, 42535714","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +684,"[P][R] Sensory disorder of smell and/or taste","Sensory disorder of smell and/or taste","Sensory disorder of smell and/or taste","rao@ohdsi.org","Pending peer review","","all events of Sensory disorder of smell and/or taste. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","43530714","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +685,"[P][R] Cardiac arrhythmia","Cardiac arrhythmia","Cardiac arrhythmia","rao@ohdsi.org","Pending peer review","","all events of Cardiac arrhythmia. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","313217, 44784217","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +686,"[P][R] Fracture of bone of hip region","Fracture of bone of hip region","Fracture of bone of hip region","rao@ohdsi.org","Pending peer review","","all events of Fracture of bone of hip region. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","434500, 45763653","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +687,"[P][R] Chronic kidney disease","Chronic kidney disease","Chronic kidney disease","rao@ohdsi.org","Pending peer review","","all events of Chronic kidney disease. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","193782, 46271022","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +688,"[P][R] Death","Death","Death","rao@ohdsi.org","Pending peer review","","all events of Suicide. Persons exit on cohort end date","#Referent, #Observation",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","440925","","2023-06-25","2023-09-20",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"Observation",0,0,1,0,0,0,0,0,0,,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,, +689,"[P][R] Newborn death","Newborn death","Newborn death","rao@ohdsi.org","Pending peer review","","all events of Newborn death. Persons exit on cohort end date","#Referent, #Observation",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","4079843","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"Observation",0,0,1,0,0,0,0,0,0,,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,, +690,"[P][R] Suicide","Suicide","Suicide","rao@ohdsi.org","Pending peer review","","all events of Death. Persons exit on cohort end date","#Referent, #Observation",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","4306655","","2023-06-25","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"Observation",0,0,1,0,0,0,0,0,0,,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,, +691,"Transverse myelitis or symptoms indexed on symptoms or diagnosis","Transverse myelitis or symptoms indexed on symptoms or diagnosis","Transverse myelitis or symptoms indexed on symptoms or diagnosis","rao@ohdsi.org","Accepted","3.9.0","events with a diagnosis of transverse myelitis indexed on diagnosis of transverse myelitis, related spinal disease or symptoms of transverse myelitis, followed by a diagnosis of transverse myelitis within 30 days. Symptoms of Transverse Myelitis included asthenia, muscle weakness, myelitis, paresthesia","#Accepted, #Level2",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","Evan Minty","","79908, 139803, 443904","","2023-06-26","2023-09-19",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",2,1,"ConditionOccurrence",0,0,2,1,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +692,"Transverse myelitis indexed on diagnosis","Transverse myelitis indexed on diagnosis","Transverse myelitis indexed on diagnosis","rao@ohdsi.org","Accepted","3.7.0","events with a diagnosis of transverse myelitis indexed on diagnosis of transverse myelitis. Events have a 365 days washout period. The events persist for 1 day. Symptoms of Transverse Myelitis included asthenia, muscle weakness, myelitis, paresthesia","#Accepted, #Level2",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","Evan Minty","","139803, 443904","","2023-06-26","2023-09-19",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +693,"Acquired Neutropenia or unspecified leukopenia","Acquired Neutropenia or unspecified leukopenia","Acquired Neutropenia or unspecified leukopenia","rao@ohdsi.org","Accepted","3.11.0","all events of neutropenia indexed on diagnosis or lab results with no congenital or genetic neutropenia","#PhenotypePhebruary, #2023, #Neutropenia",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","Anna Ostropolets","","435224","","2023-06-26","2023-09-19",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",0,3,"All",FALSE,"All","All",3,2,"ConditionOccurrence, Measurement",0,0,4,1,0,0,0,0,0,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +694,"Appendicitis during Inpatient visit","Appendicitis during Inpatient visit","Appendicitis during Inpatient visit","rao@ohdsi.org","Accepted","3.11.0","events of appendicitis with an inpatient or ER visit with no events in 365 days clean window","#PhenotypePhebruary, #2023",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","Azza Shoaibi","","440448, 441604","","2023-06-26","2023-09-19",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",0,0,"All",TRUE,"All","All",1,1,"ConditionOccurrence",0,0,2,1,0,0,0,1,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +695,"[P][R] Optic nerve glioma","Optic nerve glioma","Optic nerve glioma","rao@ohdsi.org","Pending peer review","","all events of Optic nerve glioma. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","4112970","","2023-06-26","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +696,"[P][R] Neurofibromatosis type 2","Neurofibromatosis type 2","Neurofibromatosis type 2","rao@ohdsi.org","Pending peer review","","all events of Neurofibromatosis type 2. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","380975","","2023-06-26","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +697,"[P][R] Neurofibromatosis type 1","Neurofibromatosis type 1","Neurofibromatosis type 1","rao@ohdsi.org","Pending peer review","","all events of Neurofibromatosis type 1. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","377252","","2023-06-26","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +698,"[P][R] Neurofibromatosis syndrome","Neurofibromatosis syndrome","Neurofibromatosis syndrome","rao@ohdsi.org","Pending peer review","","all events of Neurofibromatosis syndrome. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","376938","","2023-06-26","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +699,"[P][R] Major Depressive Disorder","Major Depressive Disorder","Major Depressive Disorder","rao@ohdsi.org","Pending peer review","","all events of Major Depressive Disorder. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","4152280, 4282096","","2023-06-26","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +701,"[P][R] Ascites","Ascites","Ascites","rao@ohdsi.org","Pending peer review","","all events of Ascites. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","200528","https://forums.ohdsi.org/t/17895","2023-07-09","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +702,"[P] Alanine aminotransferase (ALT) elevated","Alanine aminotransferase (ALT) elevated","Alanine aminotransferase (ALT) elevated","rao@ohdsi.org","Pending peer review","","All events of Alanine aminotransferase (ALT) elevated","",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","4146380","","2023-07-11","2023-09-25",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",30,0,"All",FALSE,"All","All",1,1,"Measurement",0,0,1,0,0,0,0,0,0,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +703,"[P] Aspartate aminotransferase (AST) elevated","Aspartate aminotransferase (AST) elevated","Aspartate aminotransferase (AST) elevated","rao@ohdsi.org","Pending peer review","","All events of Aspartate aminotransferase (ALT) elevated","",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","4263457","","2023-07-11","2023-09-25",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",30,0,"All",FALSE,"All","All",1,1,"Measurement",0,0,1,0,0,0,0,0,0,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +705,"[P] Total Bilirubin elevated","Total Bilirubin elevated","Total Bilirubin elevated","rao@ohdsi.org","Pending peer review","","Total Bilirubin elevated","",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","4230543","","2023-07-11","2023-09-25",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",30,0,"All",FALSE,"All","All",2,1,"Measurement",0,0,1,0,0,0,0,0,0,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +706,"[P] Prothrombin time (PT) elevated","Prothrombin time (PT) elevated","Prothrombin time (PT) elevated","rao@ohdsi.org","Pending peer review","","Prothrombin time (PT) elevated","",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","4055672","","2023-07-11","2023-09-25",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",30,0,"All",FALSE,"All","All",1,1,"Measurement",0,0,1,0,0,0,0,0,0,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +707,"Inpatient Hospitalization (0Pe, 1Era)","Inpatient Hospitalization (0Pe, 1Era)","Inpatient Hospitalization (0Pe, 1Era)","rao@ohdsi.org","Accepted","3.4.0","All events of Inpatient visit. This cohort is deemed validated as it represents data convention and did not need to go thru peer review process","#standard, #Visits",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","","","2023-07-12","2023-09-19",,"23",,0,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"VisitOccurrence",0,0,1,0,0,0,0,0,0,,,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,, +708,"[P] International normalized ratio (INR) elevated","International normalized ratio (INR) elevated","International normalized ratio (INR)","rao@ohdsi.org","Pending peer review","","International normalized ratio (INR)","",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","4306239","","2023-07-14","2023-09-25",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",30,0,"All",FALSE,"All","All",1,1,"Measurement",0,0,1,0,0,0,0,0,0,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +709,"[P][R] Chronic liver disease","Chronic liver disease","Chronic liver disease","rao@ohdsi.org","Pending peer review","","all events of Chronic liver disease. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","4212540","","2023-07-14","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +710,"[P] Cirrhosis of liver or its sequela","Cirrhosis of liver or its sequela","Cirrhosis of liver or its sequela","rao@ohdsi.org","Pending peer review","","earliest event of Cirrhosis of liver or its sequela. Persons exit on end of observation period","#Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","4064161","","2023-07-19","2025-03-28",,"",,0,,,"ERA",0,"end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,, +711,"[P][R] Transplanted liver present","Transplanted liver present","Transplanted liver present","rao@ohdsi.org","Pending peer review","","all events of Transplanted liver present. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","42537742","","2023-07-19","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +712,"[P] Viral hepatitis including history of","Viral hepatitis including history of","Viral hepatitis including history of","rao@ohdsi.org","Pending peer review","","All events of Viral hepatitis including history of","",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","4291005","","2023-07-19","2023-09-25",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",730,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +713,"[P] Alcoholic hepatitis or alcohol liver disorder","Alcoholic hepatitis or alcohol liver disorder","Alcoholic hepatitis or alcohol liver disorder","rao@ohdsi.org","Pending peer review","","all events of Alcoholic hepatitis or alcohol liver disorder","",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","4340383","","2023-07-19","2023-09-25",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",365,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +714,"[P][R] Endometriosis (clinical)","Endometriosis (clinical)","Endometriosis (clinical)","rao@ohdsi.org","Pending peer review","","all events of Endometriosis (clinical). Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","433527","","2023-07-19","2023-09-19",,"",,1,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +715,"[P] Hepatic fibrosis","Hepatic fibrosis","Hepatic fibrosis","rao@ohdsi.org","Pending peer review","","all events of Hepatic Fibrosis. Persons exit on cohort end date","#Referent, #Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","4064161,4267417","","2023-07-19","2023-09-25",,"",,0,,,"ERA",0,"end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,, +716,"[P] Acute Hepatic Injury","Acute Hepatic Injury","Acute Hepatic Injury","rao@ohdsi.org","Pending","","Acute Hepatic Injury","",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","194990","","2023-07-20","2023-09-25",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",180,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +717,"[P] Portal hypertension or esophageal varices","Portal hypertension or esophageal varices","Portal vein thrombosis","rao@ohdsi.org","Pending peer review","","all event of portal hypertension or esophageal varices","",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","192680","","2023-07-20","2023-09-25",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",180,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +719,"[P] Acute Hepatic Injury or jaundice while inpatient with no cooccurring certain liver disease","Acute Hepatic Injury or jaundice while inpatient with no cooccurring certain liver disease","","rao@ohdsi.org","","","","",1,"","","","","","","","2023-07-24","2023-09-19",,"",,0,,,"ERA",90,"fixed duration relative to initial event","EndDate",1,3,"All",FALSE,"All","All",2,1,"ConditionOccurrence",0,0,6,1,0,0,0,1,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +720,"[P] Aplastic Anemia","Aplastic Anemia","Aplastic Anemia","rao@ohdsi.org","Pending peer review","","all events of aplastic anemia","#DME",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","137829","","2023-07-26","2024-09-11",,"",,0,,,"ERA",0,"end of continuous observation",,,2,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,4,1,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,1,,,,,,,,,,, +721,"[P] Sudden New Onset Blindness","Sudden New Onset Blindness","Sudden New Onset Blindness","rao@ohdsi.org","Pending peer review","","all events of Sudden New Onset Blindness","",1,"Gowtham A. Rao, Azza Shoaibi","'0000-0002-4949-7236','0000-0002-6976-2594'","'OHDSI'","","","377556","","2023-07-27","2023-09-19",,"",,0,,,"ERA",90,"fixed duration relative to initial event","EndDate",0,2,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,2,1,0,0,0,0,1,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +722,"[P] Endometriosis indexed on procedure with two or more diagnosis among females 15 to 49","Endometriosis indexed on procedure with two or more diagnosis among females 15 to 49","Endometriosis","rao@ohdsi.org","Pending peer review","","An occurrence of procedure expected to be performed for persons with endometriosis with a diagnosis of endometriosis within 30 days of the procedure. Should have two more diagnosis in the future. Should be female. Should be between 15 to 49 years. A person is expected to be in the phenotype for the rest of their life (i.e. the disease never ends)","",1,"'Molle McKillop', 'Noémie Elhadad'","","'OHDSI'","","","433527","","2023-08-22","2023-09-19",,"",,0,,,"ERA",0,"end of continuous observation",,,3,"All",FALSE,"All","First",1,1,"ProcedureOccurrence",0,0,2,1,1,1,0,0,0,,,0,,,,,,,1,,1,,,,,1,,,,,,,,,,,,,, +723,"[P] First Acute Hepatic Failure with no known severe liver disease","First Acute Hepatic Failure with no known severe liver disease","Earliest event of Acute Hepatic Failure","rao@ohdsi.org","Pending peer review","","This definition, is modeling acute hepatic failure, assuming that acute hepatic failure by definition is severe liver injury with hepatic coma in the absence of known liver disease. This definition include hepatic coma that is potentially due to viral hepatis or alcohol use.","#Disease, #DME",1,"Azza Shoaibi","'0000-0002-6976-2594'","'OHDSI'","","","4245975","","2023-08-22","2024-09-11",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",90,3,"All",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,23,1,0,0,0,0,0,1,,0,,,,,,,,1,,,,,,,,,,,,,,,,,,,, +724,"[P] First Acute Hepatic Failure with no known liver disease","First Acute Hepatic Failure with no known liver disease","Earliest event of Acute Hepatic Failure, NO viral hepatitis or alcoholic hepatic failure","rao@ohdsi.org","Pending peer review","","This definition, is modeling acute hepatic failure, assuming that acute hepatic failure by definition is severe liver injury with hepatic coma in the absence of known liver disease. This definition excludes persons with viral hepatis or alcohol use.","#Disease, #DME",1,"Azza Shoaibi","'0000-0002-6976-2594'","'OHDSI'","","","4245975","","2023-08-22","2024-09-11",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",90,6,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,25,1,0,0,0,0,0,1,,0,,,,,,,,1,,,,,,,,,,,,,,,,,,,, +725,"[P] All events of Acute Kidney Injury (AKI), with a washout period of 30 days","All events of Acute Kidney Injury (AKI), with a washout period of 30 days","All events of Acute Kidney Injury (AKI)","rao@ohdsi.org","Pending peer review","","All events of Acute Kidney Injury (AKI) indexed on a diagnosis of Acute kidney injury or a Dialysis procedure at a medicare certified esrd facility for acute kidney injury without esrd,. Applying a washout period of 30 days between observed events excluding events/patients with 1. a diagnosis of End-Stage Kidney Disease in the 365 days before AKI occurrence 2. patients receiving chronic dialysis defined as more than 3 recorded events of dialysis in 365 days before AKI occurrence 3. kidney Transplant any time prior . patients exit the cohort 7 days post index..","#Disease, #DME",1,"'Gowtham A. Rao', 'Azza Shoaibi'","'0000-0002-4949-7236', '0000-0002-6976-2594'","'OHDSI'","","","197320","","2023-08-22","2024-09-11",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",7,4,"All",FALSE,"All","All",2,2,"ConditionOccurrence, ProcedureOccurrence",0,0,7,1,0,0,0,0,1,1,,1,,,,,,,1,,,,,,,,,,,,,,,,,,,,, +726,"[P] All events of Anaphylaxis, Mini-Sentinel","All events of Anaphylaxis, Mini-Sentinel","All events of Anaphylaxis, Mini-Sentinel","rao@ohdsi.org","Pending peer review","","All events of anaphylaxis in inpatient setting, or anaphylaxis in outpatient along with symptoms or treatment for anaphylaxis","#Disease, #DME, #replication",1,"Azza Shoaibi","'0000-0002-6976-2594'","'OHDSI'","","","441202","","2023-08-22","2024-09-26",,,,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",1,7,"All",FALSE,"All","All",4,2,"ConditionOccurrence, Observation",0,0,18,1,0,0,0,1,1,1,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,, +727,"[P] All events of Angioedema, with a washout period of 180 days","All events of Angioedema, with a washout period of 180 days","Angioedema","rao@ohdsi.org","Pending peer review","","All events of angioedema, indexed on a diagnosis of angioedema or urticaria followed by a diagnosis of angioedema within 3 days. With no diagnosis of angioedema in the last 180 days of washout period. Events are excluded if they have recent cardiac edema, cellulitis, erysipelas, dermatitis or eczema, lymphedema or insect bites 7 days before to and including index date. Cohort exist is 1 day post cohort end date","#Disease, #DME",1,"Azza Shoaibi","'0000-0002-6976-2594'","'OHDSI'","","","139900","","2023-08-22","2024-09-11",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",1,8,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,8,1,0,0,0,0,1,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +728,"[P] Autoimmune hemolytic anemia events not including evans syndrome","Autoimmune hemolytic anemia events not including evans syndrome","Autoimmune hemolytic anemia","rao@ohdsi.org","Pending peer review","","All events of Autoimmune hemolytic anemia events not including evans syndrome","#Disease, #DME",1,"'Gowtham A. Rao', 'Azza Shoaibi'","'0000-0002-4949-7236', '0000-0002-6976-2594'","'OHDSI'","","","441269","","2023-08-23","2024-10-02",,"738",,0,,,"ERA",90,"fixed duration relative to initial event","StartDate",1,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +729,"[P] Autoimmune hepatitis, with a washout period of 365 days","Autoimmune hepatitis, with a washout period of 365 days","All events of Autoimmune hepatitis, with a washout period of 365 days","rao@ohdsi.org","Pending peer review","","all events of autoimmune hepatitis, indexed on diagnosis of autoimmune hepatitis, excluding event occurring in prior 365days washout period. Also excluded are events that have chronic liver diseases that may have similar presentation such as viral hepatitis, drug induced liver injury, alcoholic liver disease, and no systemic lupus erythematosus in past 365 and including index. Cohort exist is 1 day post end date.","#DME",1,"Azza Shoaibi","'0000-0002-6976-2594'","'OHDSI'","","","200762","","2023-08-23","2024-09-11",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",1,3,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,3,1,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +730,"[P] Acute pancreatitis, indexed on visit with NO chronic or hereditary pancreatitis","Acute pancreatitis, indexed on visit with NO chronic or hereditary pancreatitis","All events Acute pancreatitis, indexed on visit with NO chronic or hereditary pancreatitis","rao@ohdsi.org","Pending peer review","","all events of acute pancreatitis, indexed on an inpatient or emergency or an out patient visit (restricted to overlapping with an Emergency room procedures) with a diagnosis of Acute pancreatitis. With 1. no such events in prior washout window of 365 days 2. and no history of chronic pancreatitis any time prior or hereditary pancreatitis any time pre or post index. Cohort exit is 7 days post index.","#DME",1,"Azza Shoaibi","'0000-0002-6976-2594'","'OHDSI'","","","4192640, 199074","https://forums.ohdsi.org/t/17848","2023-08-23","2024-10-02",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",7,4,"All",FALSE,"All","All",2,1,"VisitOccurrence",0,0,7,1,0,0,0,0,1,,,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,, +731,"[P] Sudden Hearing Loss, No congenital anomaly or middle or inner ear conditions","Sudden Hearing Loss, No congenital anomaly or middle or inner ear conditions","All events of Sudden Hearing Loss, No congenital anomaly or middle or inner ear conditions","rao@ohdsi.org","Pending peer review","","all events of sudden Hearing Loss, indexed on diagnosis of sudden hearing loss or a diagnosis or observation of any hearing loss that co-occurred with treatments or investigations within 1 day before to 21 days after index. Events much had 1. No hearing loss diagnosis or observation events in prior washout window of 365 days 2. No congenital anomaly of hearing any time 2. No history of middle or inner ear related diseases any time prior to 7 days before index. 3. Has not had audiometry 365 days before to 30 days prior index. exist cohort 30 days post end date.","#DME",1,"'Gowtham A. Rao', 'Azza Shoaibi'","'0000-0002-4949-7236', '0000-0002-6976-2594'","'OHDSI'","","","374053, 377889","","2023-08-23","2024-09-11",,"",,0,,,"ERA",0,"fixed duration relative to initial event","StartDate",30,5,"All",FALSE,"All","All",3,2,"ConditionOccurrence, Observation",0,0,8,1,0,0,0,0,1,1,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,, +732,"[P] Severe Cutaneous Adverse Reaction (SCAR = SJS+TEN+DRESS) with clean window","Severe Cutaneous Adverse Reaction (SCAR = SJS+TEN+DRESS) with clean window","All events of Severe Cutaneous Adverse Reaction (SCAR = SJS+TEN+DRESS)","rao@ohdsi.org","Pending peer review","","All events of Severe Cutaneous Adverse Reaction SCAR, indexed on the diagnosis for Drug Rash With Eosinophilia, or Systemic Symptoms (DRESS) or Erythema Multiforme or Stevens-Johnson Syndrome or Toxic-Epidermal necrolysis. Excluding events in prior 365 days washout period. cohort exist 3 days post end date.","#DME",1,"'Gowtham A. Rao', 'Azza Shoaibi'","'0000-0002-4949-7236', '0000-0002-6976-2594'","'OHDSI'","","","141651, 45765791","","2023-08-23","2024-09-11",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",3,1,"All",FALSE,"All","All",3,1,"ConditionOccurrence",0,0,3,1,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +733,"[P] Drug Rash with Eosinophilia and Systemic Symptoms (DRESS) with clean window","Drug Rash with Eosinophilia and Systemic Symptoms (DRESS) with clean window","All events Drug Rash with Eosinophilia and Systemic Symptoms (DRESS)","rao@ohdsi.org","Pending peer review","","all events of Drug Rash With Eosinophilia and Systemic Symptoms (DRESS), index on diagnosis of (DRESS), excluding DRESS events in the last 365 day washout period. Cohort exist is 1 day after end date.","#DME",1,"'Gowtham A. Rao', 'Azza Shoaibi'","'0000-0002-4949-7236', '0000-0002-6976-2594'","'OHDSI'","","","45765791","","2023-08-23","2024-09-11",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",1,1,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,1,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +734,"[P] Drug Rash with Eosinophilia and Systemic Symptoms (DRESS)","Drug Rash with Eosinophilia and Systemic Symptoms (DRESS)","All events Drug Rash with Eosinophilia and Systemic Symptoms (DRESS)","rao@ohdsi.org","Pending peer review","","all events of Drug Rash With Eosinophilia and Systemic Symptoms (DRESS), index on diagnosis of (DRESS)","#DME",1,"'Gowtham A. Rao', 'Azza Shoaibi'","'0000-0002-4949-7236', '0000-0002-6976-2594'","'OHDSI'","","","45765791","","2023-08-23","2023-10-03",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",1,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +735,"[P] Acute Liver Injury indexed on diagnosis or symptoms with no chronic hepatic failure","Acute Liver Injury indexed on diagnosis or symptoms with no chronic hepatic failure","All events of Acute Liver Injury","rao@ohdsi.org","Pending","","All events of Acute Liver Injury, indexed on the diagnosis of Acute Liver Injury, excluding events of Acute Liver Injury in prior 365 washout period. Excluding events with chronic hepatic failure on the same index date. patients exist cohort 90 days post end date.","#DME",1,"'Gowtham A. Rao', 'Azza Shoaibi'","'0000-0002-4949-7236', '0000-0002-6976-2594'","'OHDSI'","","","194990","","2023-08-23","2024-09-11",,"",,0,,,"ERA",90,"fixed duration relative to initial event","EndDate",1,1,"All",FALSE,"All","All",2,1,"ConditionOccurrence",0,0,4,1,0,0,0,1,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +736,"[P] Acute Liver Injury NO viral, alcoholic, chronic hepatic failure","Acute Liver Injury NO viral, alcoholic, chronic hepatic failure","All events of Acute Liver Injury, NO viral hepatitis or alcoholic hepatic failure","rao@ohdsi.org","Pending","","All events of Acute Liver Injury, indexed on the diagnosis of Acute Liver Injury, excluding events of Acute Liver Injury in prior 365 washout period. Excluding events with chronic hepatic failure on the same index date. patients exist cohort 90 days post end date.","#DME",1,"'Gowtham A. Rao', 'Azza Shoaibi'","'0000-0002-4949-7236', '0000-0002-6976-2594'","'OHDSI'","","","194990","","2023-08-23","2024-09-11",,"",,0,,,"ERA",90,"fixed duration relative to initial event","EndDate",1,5,"All",FALSE,"All","All",2,1,"ConditionOccurrence",0,0,9,1,0,0,0,1,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +737,"[P] Neutropenic Fever, Inpatient or ER, indexed on fever or Infection, 90 days era","Neutropenic Fever, Inpatient or ER, indexed on fever or Infection, 90 days era","Neutropenic Fever, Inpatient or ER, indexed on fever or Infection, 90 days era","rao@ohdsi.org","Pending peer review","","All events of febrile neutropenia, indexed on the diagnosis of febrile neutropenia or a fever (diagnosis or measurement) cooccurring with neutropenia (diagnosis or measurement) within 1 day , or a diagnosis of clinically significant infection cooccurring with neutropenia (diagnosis or measurement) within 1 day. Restricted to events overlapping with in an inpatient or emergency room visit and excluding events with a normal neutrophil count (ANC) on index. Cohort exit is 3 days after end date. Recurrent events will be combined into event eras if they are within 90 days of each other.","#DME",1,"'Gowtham A. Rao', 'Azza Shoaibi'","'0000-0002-4949-7236', '0000-0002-6976-2594'","'OHDSI'","","","257011, 437663, 4170143, 4250734","https://forums.ohdsi.org/t/17876","2023-08-23","2024-09-11",,"",,0,,,"ERA",90,"fixed duration relative to initial event","EndDate",3,2,"All",TRUE,"All","All",8,3,"ConditionOccurrence, Measurement, Observation",0,0,7,1,0,0,0,1,0,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,, +738,"[D] Autoimmune hemolytic anemia","Autoimmune hemolytic anemia","Autoimmune hemolytic anemia","rao@ohdsi.org","Deprecated","","All events of Autoimmune hemolytic anemia events not including evans syndrome","#Disease, #DME",1,"'Gowtham A. Rao', 'Azza Shoaibi'","'0000-0002-4949-7236', '0000-0002-6976-2594'","'OHDSI'","","","441269","","2023-08-23","2024-10-02",,"","duplicated of 728",0,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +739,"[P] All events of Isolated Immune Thrombocytopenia (ITP), with a washout period of 365 days","All events of Isolated Immune Thrombocytopenia (ITP), with a washout period of 365 days","Isolated Immune Thrombocytopenia (ITP), with a washout period of 365 days","rao@ohdsi.org","Pending peer review","","all events of Immune Thrombocytopenia (ITP), excluding such events in prior 365 days as washout period, also excluded are 1. events with a diagnosis of congenital or genetic thrombocytopenia all time prior to 7 days post index, 2. Events with a platelet count of >100 or a diagnosis of thrombocytosis on day of index 3. Events with co-occurring neutropenia, pancytopenia, bone marrow involvement, anemia 7 days within index. Persons exit after 180 days or when a normal platelet count measure is observed.","#DME",1,"'Gowtham A. Rao', 'Azza Shoaibi'","'0000-0002-4949-7236', '0000-0002-6976-2594'","'OHDSI'","","","433749, 4103532","","2023-08-23","2024-09-11",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",180,9,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,9,1,0,0,0,0,1,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +740,"[W] Earliest event of Pulmonary arterial hypertension (PAH)","Earliest event of Pulmonary arterial hypertension (PAH)","Pulmonary arterial hypertension (PAH)","rao@ohdsi.org","Pending peer review","","Earliest occurrence of Pulmonary Arterial Hypertension (PAH) indexed on occurrence of PAH condition requiring right heart catheterization or echocardiogram 30 days before or 30 days after diagnosis/index. Cohort exit is the end of continuous observation.","",1,"'Joel Swerdel'","","'OHDSI'","","","4013643","","2023-08-23","2024-09-11",,"","duplicate of 747",0,,,"ERA",0,"end of continuous observation",,,0,"First",TRUE,"First","First",1,1,"ConditionOccurrence",0,0,3,1,0,0,0,0,0,1,,0,,,,,,,,1,,,,,,,,,,,,,,,,,,,, +741,"[P] Earliest event of Thrombotic microangiopathy (TMA) or Microangiopathic hemolytic anemia (MAHA)","Earliest event of Thrombotic microangiopathy (TMA) or Microangiopathic hemolytic anemia (MAHA)","Earliest event of Thrombotic microangiopathy (TMA) or Microangiopathic hemolytic anemia (MAHA)","rao@ohdsi.org","Pending peer review","","Earliest events of Immune Thrombotic microangiopathy or microangiopathic hemolytic anemia indexed on the diagnosis or its treatment or investigation. Events with congenital or genetic thrombocytopenia all time prior to 7 days post index are excluded. Also excluded are patients with Platelet count > 150. cohort exit is 7 days post end date or an occurrence of a normal platelet measure .","#DME",1,"'Gowtham A. Rao', 'Azza Shoaibi'","'0000-0002-4949-7236', '0000-0002-6976-2594'","'OHDSI'","","","313800, 4119134","","2023-08-23","2024-09-11",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",7,2,"All",FALSE,"All","First",4,4,"ConditionOccurrence, DrugExposure, Measurement, ProcedureOccurrence",0,0,4,1,0,0,0,0,0,1,1,0,,,,1,,,1,,,,,,,,,,,,,,,,,,,,, +742,"[P] Parasomnia or Sleep dysfunction with arousal disturbance","Parasomnia or Sleep dysfunction with arousal disturbance","Parasomnia or Sleep dysfunction with arousal disturbance","rao@ohdsi.org","Pending peer review","","All events of Parasomnia or Sleep dysfunction with arousal disturbance with events collapse 1 day after","",1,"'Gowtham A. Rao', 'Azza Shoaibi'","'0000-0002-4949-7236', '0000-0002-6976-2594'","'OHDSI'","","","254761","https://forums.ohdsi.org/t/17895","2023-09-08","2023-09-21",,"",,0,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +743,"[P] Diabetic ketoacidosis IP-ER (SNOMED concept)","Diabetic ketoacidosis IP-ER (SNOMED concept)","Diabetic ketoacidosis identified during the inpatient or emergency room SNOMED concept","rao@ohdsi.org","Pending peer review","","All condition occurrences of DKA during an ER or IP visit, with 30-day event persistence (SNOMED code only)","",1,"'James Weaver', 'Chris Knoll'","'0000-0003-0755-5191',''","'OHDSI'","","","196523","https://forums.ohdsi.org/t/17895","2023-09-08","2023-09-20",,"",,0,,,"ERA",0,"fixed duration relative to initial event","StartDate",30,0,"All",TRUE,"All","All",1,1,"ConditionOccurrence",0,0,2,1,0,0,0,1,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +744,"[P] Pulmonary Hypertension","Pulmonary Hypertension","Pulmonary Hypertension","rao@ohdsi.org","Pending peer review","","First occurrence of Pulmonary Hypertension","",1,"'Joel N. Swerdel'","'0000-0001-9491-2737'","'OHDSI'","","","312437, 4041664","https://forums.ohdsi.org/t/17895","2023-09-14","2023-09-20",,"",,0,,,"ERA",0,"end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,, +745,"[W] Inflammatory Bowel Disease","Inflammatory Bowel Disease","Inflammatory Bowel Disease","rao@ohdsi.org","Pending peer review","","First occurrence of Inflammatory Bowel Disease","",1,"'Joel N. Swerdel'","'0000-0001-9491-2737'","'OHDSI'","","","4074815, 81893, 201606",,"2023-09-14","2023-10-13",,"","duplicate of 775",0,,,"ERA",0,"end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,, +746,"[P] Chronic Thromboembolic Pulmonary Hypertension","Chronic Thromboembolic Pulmonary Hypertension","Chronic Thromboembolic Pulmonary Hypertension","rao@ohdsi.org","Pending peer review","","First occurrence of Chronic Thromboembolic Pulmonary Hypertension","",1,"'Joel N. Swerdel'","'0000-0001-9491-2737'","'OHDSI'","","","378253","https://forums.ohdsi.org/t/17895","2023-09-14","2023-09-20",,"",,0,,,"ERA",0,"end of continuous observation",,,0,"First",TRUE,"All","All",1,1,"ConditionOccurrence",0,0,3,1,0,0,0,0,0,1,,0,,,,,,,,1,,,,,,,,,,,,,,,,,,,, +747,"[P] Pulmonary Arterial Hypertension","Pulmonary Arterial Hypertension","Pulmonary Arterial Hypertension","rao@ohdsi.org","Pending peer review","","First occurrence of Pulmonary Arterial Hypertension","#DME",1,"'Joel N. Swerdel'","'0000-0001-9491-2737'","'OHDSI'","","","43530714","https://forums.ohdsi.org/t/17895","2023-09-14","2024-10-02",,"",,0,,,"ERA",0,"end of continuous observation",,,0,"First",TRUE,"All","All",1,1,"ConditionOccurrence",0,0,3,1,0,0,0,0,0,1,,0,,,,,,,,1,,,,,,,,,,,,,,,,,,,, +748,"[P] Psoriatic arthritis","Psoriatic arthritis","Psoriatic arthritis","rao@ohdsi.org","Pending peer review","","First occurrence of Psoriatic arthritis","",1,"'Joel N. Swerdel'","'0000-0001-9491-2737'","'OHDSI'","","","25297, 4226263","https://forums.ohdsi.org/t/17895","2023-09-14","2023-09-20",,"",,0,,,"ERA",0,"end of continuous observation",,,0,"First",FALSE,"All","First",2,1,"ConditionOccurrence",0,0,3,1,0,0,0,0,0,1,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,, +749,"[P] Plaque Psoriasis","Plaque Psoriasis","Plaque Psoriasis","rao@ohdsi.org","Pending peer review","","First occurrence of Plaque Psoriasis","",1,"'Joel N. Swerdel'","'0000-0001-9491-2737'","'OHDSI'","","","27674, 4101344","https://forums.ohdsi.org/t/17895","2023-09-15","2023-09-20",,"",,0,,,"ERA",0,"end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,, +750,"[P] Pulmonary hypertension associated with left heart disease (WHO Group 2)","Pulmonary hypertension associated with left heart disease (WHO Group 2)","Pulmonary hypertension associated with left heart disease (WHO Group 2)","rao@ohdsi.org","Pending peer review","","First occurrence of Pulmonary hypertension associated with left heart disease (WHO Group 2)","",1,"'Joel N. Swerdel'","'0000-0001-9491-2737'","'OHDSI'","","","4322024",,"2023-09-15","2023-10-05",,"",,0,,,"ERA",0,"end of continuous observation",,,2,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,3,1,0,0,0,0,0,1,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,, +752,"[P] Firearm Accidents (FA)","Firearm Accidents (FA)","Firearm Accidents (FA)","rao@ohdsi.org","Pending peer review","","Firearm accident with an emergency room or inpatient visit on index","",1,"'Jill Hardin'","'0000-0003-2682-2187'","'OHDSI'","","","",,"2023-09-15","2023-10-05",,"","updates to earliest event on Jill Hardin's request",0,,,"ERA",0,"fixed duration relative to initial event","EndDate",0,1,"All",FALSE,"All","First",3,3,"ConditionOccurrence, Observation, ProcedureOccurrence",0,0,2,1,0,0,0,1,0,1,,0,1,,,,,,1,,,,,,,,,,,,,,,,,,,,, +753,"[P] Motor Vehicle Accidents (MVA)","Motor Vehicle Accidents (MVA)","Motor Vehicle Accidents (MVA)","rao@ohdsi.org","Pending peer review","","All events of motor vehicle accidents with an emergency room or inpatient visit on index","",1,"'Jill Hardin'","'0000-0003-2682-2187'","'OHDSI'","","","442752, 4150129","https://forums.ohdsi.org/t/17895","2023-09-15","2023-09-20",,"",,0,,,"ERA",180,"fixed duration relative to initial event","StartDate",0,1,"All",FALSE,"All","All",2,2,"ConditionOccurrence, Observation",0,0,2,1,0,0,0,1,0,1,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,, +754,"[P] Down Syndrome","Down Syndrome","Down Syndrome","rao@ohdsi.org","Pending peer review","","Condition occurrence of Down Syndrome, starting between 0 days before and 0 days after cohort entry start date and ending between 0 days before and 0 days after cohort entry start date. Having at least 1 additional condition occurrence of ‘Down syndrome’, starting between 1 days after and 365 days after cohort entry start date having no condition eras of ‘Condition_Era Pregnancy Codes’, starting between 0 days before and 0 days after ‘Down syndrome’ start date and ending between 0 days after and 0 days after ‘Down syndrome’ start date","",1,"'Jill Hardin'","'0000-0003-2682-2187'","'OHDSI'","","","37016200","","2023-09-15","2023-10-05",,"","removed pregnancy logic as it is not generalizable. Discussed with Jill Hardin",0,,,"ERA",0,"end of continuous observation",,,1,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,2,1,0,0,0,0,0,1,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,, +755,"[P] Non-infectious uveitis and iridocyclitis","Non-infectious uveitis and iridocyclitis","Non-infectious uveitis and iridocyclitis","rao@ohdsi.org","Pending peer review","","Earliest diagnosis of non-infectious uveitis or iridocyclitis, indexed on the first ever event. This event must either be followed by a second event in the 31 to 365 days in the future or the event must occur at the time of an ophthalmology visit.","",1,"'James Weaver', 'Eria Voss Stanoch'","'0000-0003-0755-5191', '0000-0002-0651-0613'","","","","","","2023-09-15","2023-10-06",,"",,0,,,"ERA",0,"end of continuous observation",,,0,"First",FALSE,"All","First",2,1,"ConditionOccurrence",0,0,1,1,0,0,0,1,0,1,,0,,,,,,,,1,,,,,,,,,,1,,,,,,,,,, +756,"[P] Cystic Fibrosis","Cystic Fibrosis","Cystic Fibrosis","rao@ohdsi.org","Pending peer review","","1 code of cystic fibrosis and a second code within 1 to 365 days post index","",1,"'Jill Hardin'","'0000-0003-2682-2187'","'OHDSI'","","","441267","","2023-09-15","2023-10-05",,"",,0,,,"ERA",0,"end of continuous observation",,,1,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,1,0,0,0,0,0,1,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,, +757,"[P] Concomitant TNF - alpha Inhibitors and IL23 Inhibitors - GE 30D overlap","Concomitant TNF - alpha Inhibitors and IL23 Inhibitors - GE 30D overlap","Concomitant TNF - alpha Inhibitors and IL12_23 Inhibitors - GE 30D overlap","rao@ohdsi.org","Pending peer review","","Concomitant TNF - alpha Inhibitors and IL12_23 Inhibitors - GE 30D overlap","#epi1073",1,"'Joel Swerdel','Eva-maria Didden'","'0000-0001-9491-2737','0000-0001-7401-8877'","'OHDSI'","","","703578","","2023-09-15","2023-09-20",,"",,0,,,"ERA",0,"end of continuous observation",,,0,"First",FALSE,"All","First",2,1,"DrugEra",0,0,2,1,0,0,0,0,0,,,0,,,,,,,,,,,,,,,,,,,1,,,,,,,,, +759,"[P] Concomitant TNF - alpha Inhibitors and IL12_23 Inhibitors - GE 30D overlap","Concomitant TNF - alpha Inhibitors and IL12 23 Inhibitors - GE 30D overlap","Concomitant TNF - alpha Inhibitors and IL23 Inhibitors - GE 30D overlap","rao@ohdsi.org","Pending peer review","","Concomitant TNF - alpha Inhibitors and IL23 Inhibitors - GE 30D overlap","#epi1073",1,"'Joel Swerdel','Eva-maria Didden'","'0000-0001-9491-2737','0000-0001-7401-8877'","'OHDSI'","","","255848, 4318404","","2023-09-16","2023-09-20",,"",,0,,,"ERA",0,"end of continuous observation",,,0,"First",FALSE,"All","First",2,1,"DrugEra",0,0,3,1,0,0,0,0,0,,,0,,,,,,,,,,,,,,,,,,,1,,,,,,,,, +760,"[P] Concomitant IL 23 Inhibitors and IL12_23 Inhibitors - GE 30D overlap","Concomitant IL 23 Inhibitors and IL12 23 Inhibitors - GE 30D overlap","Concomitant IL 23 Inhibitors and IL12_23 Inhibitors - GE 30D overlap","rao@ohdsi.org","Pending peer review","","Concomitant IL 23 Inhibitors and IL12_23 Inhibitors - GE 30D overlap","#epi1073",1,"'Joel Swerdel','Eva-maria Didden'","'0000-0001-9491-2737','0000-0001-7401-8877'","'OHDSI'","","","256451, 260139","https://forums.ohdsi.org/t/17895","2023-09-16","2023-09-20",,"",,0,,,"ERA",0,"end of continuous observation",,,0,"First",FALSE,"All","First",2,1,"DrugEra",0,0,3,1,0,0,0,0,0,,,0,,,,,,,,,,,,,,,,,,,1,,,,,,,,, +761,"[P] Pulmonary arterial hypertension with Prior Left Heart or Vice Versa","Pulmonary arterial hypertension with Prior Left Heart or Vice Versa","Pulmonary arterial hypertension with Prior Left Heart or Vice Versa","rao@ohdsi.org","Pending peer review","","Index date of either PAH or left heart disease whichever comes last","#epi1073",1,"'Joel Swerdel','Eva-maria Didden'","'0000-0001-9491-2737','0000-0001-7401-8877'","","","","319049","","2023-09-16","2023-09-20",,"",,0,,,"ERA",0,"end of continuous observation",,,0,"First",FALSE,"All","All",2,1,"ConditionOccurrence",0,0,4,1,0,0,0,0,0,1,,0,,,,,,,,1,,,,,,,,,,,,,,,,,,,, +762,"[P] Endothelin receptor antagonists","Endothelin receptor antagonists","Endothelin receptor antagonists","rao@ohdsi.org","Pending peer review","","First exposure of Endothelin receptor antagonists","#epi1073",1,"'Joel Swerdel','Eva-maria Didden'","'0000-0001-9491-2737','0000-0001-7401-8877'","","","","","","2023-09-16","2023-10-09",,"","joel reporte he made an error in cohort. used condition domain for drug",0,,,"ERA",0,"end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"DrugExposure",0,0,1,0,0,0,0,0,0,,,0,,,,1,,,,,,,,,,,,,,,,,,,,,,,, +763,"[P] Phosphodiesterase 5 inhibitors and guanylate cyclase stimulators","Phosphodiesterase 5 inhibitors and guanylate cyclase stimulators","Phosphodiesterase 5 inhibitors and guanylate cyclase stimulators","rao@ohdsi.org","Pending peer review","","First exposure of Phosphodiesterase 5 inhibitors and guanylate cyclase stimulators","#epi1073",1,"'Joel Swerdel','Eva-maria Didden'","'0000-0001-9491-2737','0000-0001-7401-8877'","'OHDSI'","","","","","2023-09-16","2023-09-20",,"",,0,,,"ERA",0,"end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"DrugExposure",0,0,1,0,0,0,0,0,0,,,0,,,,1,,,,,,,,,,,,,,,,,,,,,,,, +764,"[P] Prostacyclin analogues and prostacyclin receptor agonists","Prostacyclin analogues and prostacyclin receptor agonists","Prostacyclin analogues and prostacyclin receptor agonists","rao@ohdsi.org","Pending peer review","","First exposure of Prostacyclin analogues and prostacyclin receptor agonists","#epi1073",1,"'Joel Swerdel','Eva-maria Didden'","'0000-0001-9491-2737','0000-0001-7401-8877'","'OHDSI'","","","","","2023-09-16","2023-09-20",,"",,0,,,"ERA",0,"end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"DrugExposure",0,0,1,0,0,0,0,0,0,,,0,,,,1,,,,,,,,,,,,,,,,,,,,,,,, +765,"[P] Earliest event of Left Heart Failure","Earliest event of Left Heart Failure","Left Heart Failure","rao@ohdsi.org","Pending peer review","","First occurrence of Left Heart Failure","#epi1073",1,"'Joel Swerdel','Eva-maria Didden'","'0000-0001-9491-2737','0000-0001-7401-8877'","'OHDSI'","","","","","2023-09-16","2023-09-20",,"",,0,,,"ERA",0,"end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,, +766,"[P] Earliest event of Right Heart Failure","Earliest event of Right Heart Failure","Right Heart Failure","rao@ohdsi.org","Pending peer review","","First occurrence of Right Heart Failure","#epi1073",1,"'Joel Swerdel','Eva-maria Didden'","'0000-0001-9491-2737','0000-0001-7401-8877'","'OHDSI'","","","255573, 317009","","2023-09-16","2023-09-20",,"",,0,,,"ERA",0,"end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,, +767,"[P] Earliest event of Sarcoidosis","Earliest event of Sarcoidosis","Sarcoidosis","rao@ohdsi.org","Pending peer review","","First occurrence of Sarcoidosis","#epi1073",1,"'Joel Swerdel','Eva-maria Didden'","'0000-0001-9491-2737','0000-0001-7401-8877'","'OHDSI'","","","317009","","2023-09-16","2023-09-20",,"",,0,,,"ERA",0,"end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,, +768,"[P] Earliest event of Sickle Cell Anemia","Earliest event of Sickle Cell Anemia","Sickle Cell Anemia","rao@ohdsi.org","Pending peer review","","First occurrence of Sickle Cell Anemia","#epi1073",1,"'Joel Swerdel','Eva-maria Didden'","'0000-0001-9491-2737','0000-0001-7401-8877'","'OHDSI'","","","4213628","","2023-09-16","2023-10-19",,"",,0,,,"ERA",0,"end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,, +769,"[P] Scleroderma, first occurrence","Scleroderma, first occurrence","Scleroderma","rao@ohdsi.org","Pending peer review","","First occurrence of Scleroderma","#epi1073",1,"'Joel Swerdel','Eva-maria Didden'","'0000-0001-9491-2737','0000-0001-7401-8877'","","","","76685, 80809, 81893, 81931, 134442, 134618, 135215, 140168, 194992, 199856, 201254, 201606, 254443, 257628, 374919, 432295, 438688, 443394, 4137275, 4232076","","2023-09-16","2023-09-20",,"",,0,,,"ERA",0,"end of continuous observation",,,0,"First",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,, +770,"[P] Essential Hypertension, first occurrence","Essential Hypertension, first occurrence","Essential Hypertension","rao@ohdsi.org","Pending peer review","","First occurrence of Essential Hypertension","#epi1073",1,"'Joel Swerdel','Eva-maria Didden'","'0000-0001-9491-2737','0000-0001-7401-8877'","'OHDSI'","","","253954, 434557","","2023-09-16","2023-09-20",,"",,0,,,"ERA",0,"end of continuous observation",,,0,"First",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,, +771,"[W] Pulmonary Hypertension (Group 2 Left heart disease, encompassing)","Pulmonary Hypertension (Group 2 Left heart disease, encompassing)","Pulmonary hypertension associated with left heart disease (WHO Group 2)","rao@ohdsi.org","Pending peer review","","First occurrence of Pulmonary hypertension associated with left heart disease (WHO Group 2)","#epi1073",1,"'Joel Swerdel','Eva-maria Didden'","'0000-0001-9491-2737','0000-0001-7401-8877'","'OHDSI'","","","137809, 443392","","2023-09-16","2023-10-09",,"","duplicate of 750",0,,,"ERA",0,"end of continuous observation",,,3,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,5,1,0,0,1,0,0,1,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,, +772,"[W] Pulmonary Hypertension (Group 3 Chronic lung disease, encompassing)","Pulmonary Hypertension (Group 3 Chronic lung disease, encompassing)","Pulmonary hypertension associated with lung diseases and/or hypoxia (WHO Group 3)","rao@ohdsi.org","Pending peer review","","First occurrence of Pulmonary hypertension associated with lung diseases and/or hypoxia (WHO Group 3)","#epi1073",1,"'Joel Swerdel','Eva-maria Didden'","'0000-0001-9491-2737','0000-0001-7401-8877'","'OHDSI'","","","433736","https://forums.ohdsi.org/t/17895","2023-09-16","2023-10-09",,"","replaced by 751. removed prefix and santized.",0,,,"ERA",0,"end of continuous observation",,,3,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,3,1,0,0,1,0,0,1,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,, +773,"[P] Congenital Heart Disease","Congenital Heart Disease","Congenital Heart Disease","rao@ohdsi.org","Pending peer review","","First occurrence of Congenital Heart Disease","#epi1073",1,"'Joel Swerdel','Eva-maria Didden'","'0000-0001-9491-2737','0000-0001-7401-8877'","'OHDSI'","","","4182210","","2023-09-16","2023-09-20",,"",,0,,,"ERA",0,"end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,, +774,"[P] Portal Hypertension, first occurrence","Portal Hypertension, first occurrence","Portal Hypertension","rao@ohdsi.org","Pending peer review","","First occurrence of Portal Hypertension","#epi1073",1,"'Joel Swerdel','Eva-maria Didden'","'0000-0001-9491-2737','0000-0001-7401-8877'","'OHDSI'","","","312648, 4028741","","2023-09-16","2023-09-20",,"",,0,,,"ERA",0,"end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,0,,,,,,,,1,,,,,,,,,,,,,,,,,,,, +775,"[P] First Inflammatory Bowel Disease","First Inflammatory Bowel Disease","Inflammatory Bowel Disease","rao@ohdsi.org","Pending peer review","","First occurrence of Inflammatory Bowel Disease","",1,"'Joel N. Swerdel'","'0000-0001-9491-2737'","'OHDSI'","","","4074815, 81893, 201606",,"2023-09-16","2023-10-03",,"",,0,,,"ERA",0,"end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,, +776,"[P] Antisynthetase syndrome","Antisynthetase syndrome","Antisynthetase syndrome","rao@ohdsi.org","Pending peer review","","First occurrence of Antisynthetase syndrome","#epi1073",1,"'Joel Swerdel','Eva-maria Didden'","'0000-0001-9491-2737','0000-0001-7401-8877'","'OHDSI'","","","439727","","2023-09-16","2023-09-20",,"",,0,,,"ERA",0,"end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,, +777,"[P] Mixed connective tissue disease","Mixed connective tissue disease","Mixed connective tissue disease","rao@ohdsi.org","Pending peer review","","Mixed connective tissue disease","#epi1073",1,"'Joel Swerdel','Eva-maria Didden'","'0000-0001-9491-2737','0000-0001-7401-8877'","'OHDSI'","","","197494, 198964","","2023-09-16","2023-09-20",,"",,0,,,"ERA",0,"end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,, +778,"[P] Undifferentiated connective tissue disease","Undifferentiated connective tissue disease","Undifferentiated connective tissue disease","rao@ohdsi.org","Pending peer review","","First occurrence of Undifferentiated connective tissue disease","#epi1073",1,"'Joel Swerdel','Eva-maria Didden'","'0000-0001-9491-2737','0000-0001-7401-8877'","'OHDSI'","","","313217, 44784217","","2023-09-16","2023-09-20",,"",,0,,,"ERA",0,"end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,, +779,"[P] Overlap syndrome","Overlap syndrome","Overlap syndrome","rao@ohdsi.org","Pending peer review","","First occurrence of Overlap syndrome","#epi1073",1,"'Joel Swerdel','Eva-maria Didden'","'0000-0001-9491-2737','0000-0001-7401-8877'","","","","193782","","2023-09-16","2023-09-20",,"",,0,,,"ERA",0,"end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,, +780,"[P] Raynaud’s disease or Raynaud's phenomenon","Raynaud’s disease or Raynaud's phenomenon","Raynaud’s disease or Raynaud’s phenomenon","rao@ohdsi.org","Pending peer review","","First occurrence of Raynaud’s disease or Raynaud’s phenomenon","#epi1073",1,"'Joel Swerdel','Eva-maria Didden'","'0000-0001-9491-2737','0000-0001-7401-8877'","'OHDSI'","","","201820, 201826","","2023-09-16","2023-09-20",,"",,0,,,"ERA",0,"end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,, +781,"[P] Antiphospholipid syndrome","Antiphospholipid syndrome","Antiphospholipid syndrome","rao@ohdsi.org","Pending peer review","","First occurrence of Antiphospholipid syndrome","#epi1073",1,"'Joel Swerdel','Eva-maria Didden'","'0000-0001-9491-2737','0000-0001-7401-8877'","","","","192359, 193782","","2023-09-16","2023-09-20",,"",,0,,,"ERA",0,"end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,, +782,"[P] CTEPH Prevalent (with Echo or RHC) with 2nd dx code 31-365 days after first dx","CTEPH Prevalent (with Echo or RHC) with 2nd dx code 31-365 days after first dx","Chronic Thromboembolic Pulmonary Hypertension","rao@ohdsi.org","Pending peer review","","First occurrence of Chronic Thromboembolic Pulmonary Hypertension","#epi1073",1,"'Joel Swerdel','Eva-maria Didden'","'0000-0001-9491-2737','0000-0001-7401-8877'","","","","193782","","2023-09-16","2023-09-20",,"",,0,,,"ERA",0,"end of continuous observation",,,0,"First",TRUE,"All","All",1,1,"ConditionOccurrence",0,0,3,1,0,0,0,0,0,1,,0,,,,,,,,1,,,,,,,,,,,,,,,,,,,, +783,"[P] Pulmonary endarterectomy","Pulmonary endarterectomy","Pulmonary endarterectomy","rao@ohdsi.org","Pending peer review","","All occurrences of Pulmonary endarterectomy","#epi1073",1,"'Joel Swerdel','Eva-maria Didden'","'0000-0001-9491-2737','0000-0001-7401-8877'","'OHDSI'","","","253954, 434557","","2023-09-16","2023-09-20",,"",,0,,,"ERA",0,"fixed duration relative to initial event","StartDate",0,0,"All",FALSE,"All","All",1,1,"ProcedureOccurrence",0,0,1,0,0,0,0,0,0,,,1,,,,,,,1,,,,,,,,,,,,,,,,,,,,, +784,"[P] Balloon Pulmonary Angioplasty","Balloon Pulmonary Angioplasty","Balloon Pulmonary Angioplasty","rao@ohdsi.org","Pending peer review","","All occurrences of Balloon Pulmonary Angioplasty","#epi1073",1,"'Joel Swerdel','Eva-maria Didden'","'0000-0001-9491-2737','0000-0001-7401-8877'","'OHDSI'","","","4138754","","2023-09-16","2023-10-04",,"",,0,,,"ERA",0,"fixed duration relative to initial event","StartDate",0,0,"All",FALSE,"All","All",1,1,"ProcedureOccurrence",0,0,1,0,0,0,0,0,0,,,1,,,,,,,1,,,,,,,,,,,,,,,,,,,,, +785,"[P] Skin Burns","Skin Burns","Skin Burns","rao@ohdsi.org","Pending peer review","","1 code of Skin Burns and a drug or procedure treatment within 1 to 180 days post index","",1,"'Jill Hardin'","'0000-0003-2682-2187'","","","","439676, 37311061","","2023-09-16","2023-09-20",,"",,0,,,"ERA",0,"fixed duration relative to initial event","StartDate",0,1,"All",FALSE,"All","All",3,3,"ConditionOccurrence, Observation, ProcedureOccurrence",0,0,2,1,0,0,0,0,0,1,,1,1,,,,,,1,,,,,,,,,,,,,,,,,,,,, +788,"[P] Breast cancer","Breast cancer","Breast cancer","rao@ohdsi.org","Pending peer review","","","",1,"'Asieh Golozar'","'0000-0002-4243-155X'","","","","439676, 37311061","","2023-09-16","2023-10-05",,"",,0,,,"ERA",0,"end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",365,0,1,0,0,0,0,0,0,1,,0,,,,,,,,1,,,,,,,,,,,,,,,,,,,, +789,"[P] Glioblastoma multiforme (GBM)","Glioblastoma multiforme (GBM)","Glioblastoma multiforme (GBM)","rao@ohdsi.org","Pending peer review","","","",1,"'Asieh Golozar', 'Vlad Korsik'","'0000-0002-4243-155X'","","","","","","2023-09-16","2023-09-20",,"",,0,,,"ERA",0,"end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",365,0,1,0,0,0,0,0,0,1,,0,,,,,,,,1,,,,,,,,,,,,,,,,,,,, +790,"[P] Colorectal Cancer","Colorectal Cancer","Colorectal Cancer","rao@ohdsi.org","Pending peer review","","","",1,"'Asieh Golozar', 'Peter Prinsen'","'0000-0002-4243-155X'","","","","","","2023-09-16","2023-09-20",,"",,0,,,"ERA",0,"end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",365,0,1,0,0,0,0,0,0,1,,0,,,,,,,,1,,,,,,,,,,,,,,,,,,,, +791,"[P] Multiple Myeloma","Multiple Myeloma","Multiple Myeloma","rao@ohdsi.org","Pending peer review","","","",1,"'Asieh Golozar'","'0000-0002-4243-155X'","","","","","","2023-09-16","2023-09-20",,"",,0,,,"ERA",0,"end of continuous observation",,,0,"First",FALSE,"All","First",2,2,"ConditionOccurrence, Observation",365,0,1,0,0,0,0,0,0,1,,0,1,,,,,,,1,,,,,,,,,,,,,,,,,,,, +792,"[P] Metastatic Hormone-Sensitive Prostate Cancer Synchronous","Metastatic Hormone-Sensitive Prostate Cancer Synchronous","Metastatic Hormone-Sensitive Prostate Cancer Synchronous","rao@ohdsi.org","Pending peer review","","","#Pioneer2",1,"'Asieh Golozar'","'0000-0002-4243-155X'","'OHDSI'","","","377091, 4196708","https://forums.ohdsi.org/t/17895","2023-09-16","2023-10-05",,"",,0,,,"ERA",0,"end of continuous observation",,,4,"First",FALSE,"All","First",3,2,"ConditionOccurrence, Measurement",183,183,6,1,1,1,0,0,0,1,1,0,,,,,,,,1,1,,1,,,1,,,,,,,,,,,,,, +793,"[P] Metastatic Hormone-Sensitive Prostate Cancer Metachronus","Metastatic Hormone-Sensitive Prostate Cancer Metachronus","Metastatic Hormone-Sensitive Prostate Cancer Metachronus","rao@ohdsi.org","Pending peer review","","","#Pioneer2",1,"'Asieh Golozar'","'0000-0002-4243-155X'","'OHDSI'","","","439676, 37311061","","2023-09-16","2023-10-05",,"",,0,,,"ERA",0,"end of continuous observation",,,7,"First",FALSE,"All","First",3,2,"ConditionOccurrence, Measurement",183,0,8,1,1,1,0,0,0,1,1,0,,,,,,,,1,1,,1,,,1,,,,,,,,,,,,,, +794,"[P] Hemorrhage of digestive system","Hemorrhage of digestive system","Hemorrhage of digestive system","rao@ohdsi.org","Pending peer review","","all events of Hemorrhage of digestive system. Persons exit on cohort end date plus 14 days","",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","","","2023-09-17","2023-10-16",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",14,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +795,"[P] Antineoplastic drugs against colorectal cancer","Antineoplastic drugs against colorectal cancer","Antineoplastic drugs against colorectal cancer","rao@ohdsi.org","Pending peer review","","First exposure of drugs Antineoplastic drugs against colorectal cancer.","#ColorectalCancer, #Cancer",1,"Andreas Weinberger Rosen","0000-0001-9990-8155","","","","439676, 37311061","","2023-09-18","2023-09-20",,"",,0,,,"ERA",0,"end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"DrugExposure",0,0,1,0,0,0,0,0,0,,,0,,,,1,,,,,,,,,,,,,,,,,,,,,,,, +796,"[P] Potential curative surgery for colorectal cancer","Potential curative surgery for colorectal cancer","Potential curative surgery for colorectal cancer","rao@ohdsi.org","Pending peer review","","First event potential curative surgery for colorectal cancer.","#ColorectalCancer, #Cancer",1,"Andreas Weinberger Rosen","0000-0001-9990-8155","","","","","","2023-09-18","2023-09-20",,"",,0,,,"ERA",0,"end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ProcedureOccurrence",0,0,1,0,0,0,0,0,0,,,0,,,,,,,1,,,,,,,,,,,,,,,,,,,,, +797,"[P] Radiotherapy against colorectal cancer","Radiotherapy against colorectal cancer","Radiotherapy against colorectal cancer","rao@ohdsi.org","Pending peer review","","First exposure of radiotherapy, excluding procedures with that are probably not related to colorectal cancer.","#ColorectalCancer, #Cancer",1,"Andreas Weinberger Rosen","0000-0001-9990-8155","'OHDSI'","","","317302, 320425","","2023-09-18","2023-09-20",,"",,0,,,"ERA",0,"end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ProcedureOccurrence",0,0,1,0,0,0,0,0,0,,,0,,,,,,,1,,,,,,,,,,,,,,,,,,,,, +798,"[P] Primary adenocarcinoma of the colon or rectum","Primary adenocarcinoma of the colon or rectum","Primary adenocarcinoma of the colon or rectum","rao@ohdsi.org","Pending peer review","","First event of primary adenocarcinoma of the colon or rectum","#ColorectalCancer, #Cancer",1,"Andreas Weinberger Rosen","0000-0001-9990-8155","'OHDSI'","","","377091, 4196708","https://forums.ohdsi.org/t/17895","2023-09-18","2024-01-05",,"",,0,,,"ERA",0,"end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",365,0,1,0,0,0,0,0,0,1,,0,,,,,,,,1,,,,,,,,,,,,,,,,,,,, +802,"[P] Acute Respiratory Failure 2","Acute Respiratory Failure 2","Acute Respiratory Failure","rao@ohdsi.org","Pending peer review","","First event of acute respiratory failure","#ColorectalCancer, #Cancer",1,"Andreas Weinberger Rosen","0000-0001-9990-8155","'OHDSI'","Evan Minty","","79908, 139803, 443904","https://forums.ohdsi.org/t/17769","2023-09-18","2024-01-05",,"",,0,,,"ERA",0,"end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,, +803,"[P] Fascial dehiscence and evisceration","Fascial dehiscence and evisceration","Fascial dehiscence and evisceration","rao@ohdsi.org","Pending peer review","","First fascial dehiscence or evisceration","#ColorectalCancer, #Cancer",1,"Andreas Weinberger Rosen","0000-0001-9990-8155","'OHDSI'","","","254761, 312437, 437663, 439926, 442752, 4041664, 4178904, 4272240, 43530714","https://forums.ohdsi.org/t/17895","2023-09-18","2024-01-05",,"",,0,,,"ERA",0,"end of continuous observation",,,0,"First",FALSE,"All","First",2,2,"ConditionOccurrence, ProcedureOccurrence",0,0,1,0,0,0,0,0,0,1,,0,,,,,,,1,,,,,,,,,,,,,,,,,,,,, +804,"[P] Anastomotic leak or dehiscence","Anastomotic leak or dehiscence","Anastomotic leak or dehiscence","rao@ohdsi.org","Pending peer review","","First event of anastomotic leak or dehiscence of large or small intestine","#ColorectalCancer, #Cancer",1,"Andreas Weinberger Rosen","0000-0001-9990-8155","","","","199074","","2023-09-18","2024-01-05",,"",,0,,,"ERA",0,"end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,, +805,"[P] Intestinal obstruction (broad)","Intestinal obstruction (broad)","Intestinal obstruction","rao@ohdsi.org","Pending peer review","","First event Intestinal obstruction","#ColorectalCancer, #Cancer",1,"Andreas Weinberger Rosen","0000-0001-9990-8155","","","","197320","","2023-09-18","2024-01-05",,"",,0,,,"ERA",0,"end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,, +806,"[P] Intraabdominal abscess","Intraabdominal abscess","Intraabdominal abscess","rao@ohdsi.org","Pending peer review","","First event Intraabdominal abscess","#ColorectalCancer, #Cancer",1,"Andreas Weinberger Rosen","0000-0001-9990-8155","","","","4245975","","2023-09-18","2024-01-05",,"",,0,,,"ERA",0,"end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,, +807,"[P] Perioperative aspiration","Perioperative aspiration","Perioperative aspiration","rao@ohdsi.org","Pending peer review","","First event of Perioperative aspiration","#ColorectalCancer, #Cancer",1,"Andreas Weinberger Rosen","0000-0001-9990-8155","","","","316139, 319835","","2023-09-18","2024-01-05",,"",,0,,,"ERA",0,"end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,, +808,"[P] Postoperative hemorrhage","Postoperative hemorrhage","Postoperative hemorrhage","rao@ohdsi.org","Pending peer review","","First event postoperative hemorrhage","",1,"Andreas Weinberger Rosen","0000-0001-9990-8155","","","","4002836","","2023-09-18","2024-01-05",,"",,0,,,"ERA",0,"end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,, +809,"[P] Surgical wound infection (narrow)","Surgical wound infection (narrow)","Surgical wound infection (narrow)","rao@ohdsi.org","Pending peer review","","First event surgical wound infection","#ColorectalCancer, #Cancer",1,"Andreas Weinberger Rosen","0000-0001-9990-8155","","","","443454","","2023-09-18","2024-01-05",,"",,0,,,"ERA",0,"end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,, +810,"[P] Distant metastasis following colorectal cancer (wide)","Distant metastasis following colorectal cancer (wide)","Distant metastasis following colorectal cancer (wide)","rao@ohdsi.org","Pending peer review","","First event distant metastasis following colorectal cancer","#ColorectalCancer, #Cancer",1,"Andreas Weinberger Rosen","0000-0001-9990-8155","'OHDSI'","","","314666, 4329847","https://forums.ohdsi.org/t/15900","2023-09-18","2024-01-05",,"",,0,,,"ERA",0,"end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,, +811,"[P] Local recurrence after colorectal cancer","Local recurrence after colorectal cancer","Local recurrence after colorectal cancer","rao@ohdsi.org","Pending peer review","","First event local recurrence after colorectal cancer","#ColorectalCancer, #Cancer",1,"Andreas Weinberger Rosen","0000-0001-9990-8155","","","","4183609, 4266367","","2023-09-18","2024-01-05",,"",,0,,,"ERA",0,"end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,, +812,"[P] Primary adenocarcinoma of the colon or rectum, MSI-H or dMMR, no surgery or oncological treatment","Primary adenocarcinoma of the colon or rectum, MSI-H or dMMR, no surgery or oncological treatment","Primary adenocarcinoma of the colon or rectum, MSI-H or dMMR, no surgery or oncological treatment","rao@ohdsi.org","Pending peer review","","First event of primary adenocarcinoma of the colon or rectum with MSI-H or dMMR, no curative surgery or oncological treatment any time after","#ColorectalCancer, #Cancer",1,"Andreas Weinberger Rosen","0000-0001-9990-8155","","","","376713, 439847","","2023-09-18","2024-01-05",,"",,0,,,"ERA",0,"end of continuous observation",,,3,"First",FALSE,"All","First",1,1,"ConditionOccurrence",365,0,12,1,0,0,0,0,0,1,,0,,,,,,,,1,,,,,,,,,,,,,,,,,,,, +813,"[P] Primary adenocarcinoma of the colon or rectum treated with potentially curative surgery","Primary adenocarcinoma of the colon or rectum treated with potentially curative surgery","Primary adenocarcinoma of the colon or rectum treated with potentially curative surgery","rao@ohdsi.org","Pending peer review","","First event of Primary adenocarcinoma of the colon or rectum treated with curative surgery within 90 days of the operation","#ColorectalCancer, #Cancer",1,"Andreas Weinberger Rosen","0000-0001-9990-8155","","","","443454","","2023-09-18","2024-01-05",,"",,0,,,"ERA",0,"end of continuous observation",,,1,"First",FALSE,"All","First",1,1,"ProcedureOccurrence",365,0,2,1,0,0,0,0,0,,,0,,,,,,,1,,,,1,,,,,,,,,,,,,,,,, +814,"[P] Primary adenocarcinoma of the colon or rectum, no curative intended surgery and oncological treatment","Primary adenocarcinoma of the colon or rectum, no curative intended surgery and oncological treatment","Primary adenocarcinoma of the colon or rectum, no curative intended surgery and oncological treatment","rao@ohdsi.org","Pending peer review","","First event of Primary adenocarcinoma of the colon or rectum treated with no curative surgery but oncological treatment within 90 days of the operation","#ColorectalCancer, #Cancer",1,"Andreas Weinberger Rosen","0000-0001-9990-8155","","","","373503","","2023-09-18","2024-01-05",,"",,0,,,"ERA",0,"end of continuous observation",,,1,"First",FALSE,"All","First",2,2,"DrugExposure, ProcedureOccurrence",365,0,4,1,0,0,0,0,0,,,0,,,,1,,,1,,,,1,,,,,,,,,,,,,,,,, +817,"[P] Primary adenocarcinoma of the colon or rectum, no curative intended surgery and oncological treatment2","Primary adenocarcinoma of the colon or rectum, no curative intended surgery and oncological treatment2","Primary adenocarcinoma of the colon or rectum, no curative intended surgery and oncological treatment","rao@ohdsi.org","Pending peer review","","Primary adenocarcinoma of the colon or rectum, no curative intended surgery, and oncological treatment at any time after","#ColorectalCancer, #Cancer",1,"Andreas Weinberger Rosen","0000-0001-9990-8155","","","","192671","","2023-09-18","2024-01-05",,"",,0,,,"ERA",0,"end of continuous observation",,,3,"First",FALSE,"All","First",1,1,"ConditionOccurrence",365,0,4,1,0,0,0,0,0,1,,0,,,,,,,,1,,,,,,,,,,,,,,,,,,,, +818,"[P] Primary adenocarcinoma of the colon or rectum, MSI-L, MSI-indeterminate, MSS or pMMR","Primary adenocarcinoma of the colon or rectum, MSI-L, MSI-indeterminate, MSS or pMMR","Primary adenocarcinoma of the colon or rectum, MSI-L, MSI-indeterminate, MSS or pMMR","rao@ohdsi.org","Pending peer review","","First event of primary adenocarcinoma of the colon or rectum, with a molecular subtype of MSI-L, MSI-indeterminate, MSS or pMMR","#ColorectalCancer, #Cancer",1,"Andreas Weinberger Rosen","0000-0001-9990-8155","","","","313217, 44784217","","2023-09-18","2024-01-05",,"",,0,,,"ERA",0,"end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",365,0,11,1,0,0,0,0,0,1,,0,,,,,,,,1,,,,,,,,,,,,,,,,,,,, +819,"[P] Primary adenocarcinoma of the colon or rectum, MSI-L, MSI-indeterminate, MSS or pMMR, treated with curative intended surgery","Primary adenocarcinoma of the colon or rectum, MSI-L, MSI-indeterminate, MSS or pMMR, treated with curative intended surgery","Primary adenocarcinoma of the colon or rectum, MSI-L, MSI-indeterminate, MSS or pMMR, treated with curative intended surgery","rao@ohdsi.org","Pending peer review","","First event of Primary adenocarcinoma of the colon or rectum, MSI-L, MSI-indeterminate, MSS or pMMR, treated with curative intended surgery within 90 days of diagnosis","#ColorectalCancer, #Cancer",1,"Andreas Weinberger Rosen","0000-0001-9990-8155","","","","438624, 4027133","","2023-09-18","2024-01-05",,"",,0,,,"ERA",0,"end of continuous observation",,,1,"First",FALSE,"All","First",1,1,"ProcedureOccurrence",365,0,12,1,0,0,0,0,0,,,0,,,,,,,1,,,,1,,,,,,,,,,,,,,,,, +820,"[P] Primary adenocarcinoma of the colon or rectum, MSI-L, MSI-indeterminate, MSS or pMMR, oncological treatment, no curative surgery","Primary adenocarcinoma of the colon or rectum, MSI-L, MSI-indeterminate, MSS or pMMR, oncological treatment, no curative surgery","Primary adenocarcinoma of the colon or rectum, MSI-L, MSI-indeterminate, MSS or pMMR, oncological treatment, no curative surgery","rao@ohdsi.org","Pending peer review","","First event of Primary adenocarcinoma of the colon or rectum, MSI-L, MSI-indeterminate, MSS or pMMR, treated with oncological therapy, but no curative intended surgery","#ColorectalCancer, #Cancer",1,"Andreas Weinberger Rosen","0000-0001-9990-8155","","","","","","2023-09-18","2024-01-05",,"",,0,,,"ERA",0,"end of continuous observation",,,1,"First",FALSE,"All","First",2,2,"DrugExposure, ProcedureOccurrence",365,0,14,1,0,0,0,0,0,,,0,,,,1,,,1,,,,1,,,,,,,,,,,,,,,,, +821,"[P] Primary adenocarcinoma of the colon or rectum, MSI-L, MSI-indeterminate, MSS or pMMR, no surgery or oncological treatment","Primary adenocarcinoma of the colon or rectum, MSI-L, MSI-indeterminate, MSS or pMMR, no surgery or oncological treatment","Primary adenocarcinoma of the colon or rectum, MSI-L, MSI-indeterminate, MSS or pMMR, no surgery or oncological treatment","rao@ohdsi.org","Pending peer review","","First event of Primary adenocarcinoma of the colon or rectum with a MSI-L, MSI-indeterminate, MSS or pMMR subtype, and no surgery or oncological treatment anytime in the future.","#ColorectalCancer, #Cancer",1,"Andreas Weinberger Rosen","0000-0001-9990-8155","","","","","","2023-09-18","2024-01-05",,"",,0,,,"ERA",0,"end of continuous observation",,,3,"First",FALSE,"All","First",1,1,"ConditionOccurrence",365,0,14,1,0,0,0,0,0,1,,0,,,,,,,,1,,,,,,,,,,,,,,,,,,,, +822,"[P] Primary adenocarcinoma of colon or rectum, MSI-H or dMMR, surgical treatment","Primary adenocarcinoma of colon or rectum, MSI-H or dMMR, surgical treatment","Primary adenocarcinoma of colon or rectum, MSI-H or dMMR, surgical treatment","rao@ohdsi.org","Pending peer review","","First event of Primary adenocarcinoma of the colon or rectum with the MSI-H or dMMR molecular subtype, receiving potential curative surgery","#ColorectalCancer, #Cancer",1,"Andreas Weinberger Rosen","0000-0001-9990-8155","","","","40481547","","2023-09-18","2024-01-05",,"",,0,,,"ERA",0,"end of continuous observation",,,1,"First",FALSE,"All","First",1,1,"ProcedureOccurrence",365,0,10,1,0,0,0,0,0,,,0,,,,,,,1,,,,1,,,,,,,,,,,,,,,,, +823,"[P] Primary adenocarcinoma of colon or rectum, MSI-H or dMMR, oncological treatment no surgery","Primary adenocarcinoma of colon or rectum, MSI-H or dMMR, oncological treatment no surgery","Primary adenocarcinoma of colon or rectum, MSI-H or dMMR, oncological treatment no surgery","rao@ohdsi.org","Pending peer review","","First event primary adenocarcinoma of the colon or rectum, with MSI-H or dMMR molecular subtype, treated with oncological treatment no curative surgery","#ColorectalCancer, #Cancer",1,"Andreas Weinberger Rosen","0000-0001-9990-8155","","","","439676, 37311061","","2023-09-18","2024-01-05",,"",,0,,,"ERA",0,"end of continuous observation",,,1,"First",FALSE,"All","First",2,2,"DrugExposure, ProcedureOccurrence",365,0,12,1,0,0,0,0,0,,,0,,,,1,,,1,,,,1,,,,,,,,,,,,,,,,, +824,"[P] Primary adenocarcinoma of colon or rectum, MSI-H or dMMR","Primary adenocarcinoma of colon or rectum, MSI-H or dMMR","Primary adenocarcinoma of colon or rectum, MSI-H or dMMR","rao@ohdsi.org","Pending peer review","","First event Primary adenocarcinoma of the colon or rectum, with MSI-H or dMMR molecular subtype","#ColorectalCancer, #Cancer",1,"Andreas Weinberger Rosen","0000-0001-9990-8155","","","","","","2023-09-18","2024-01-05",,"",,0,,,"ERA",0,"end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",365,0,9,1,0,0,0,0,0,1,,0,,,,,,,,1,,,,,,,,,,,,,,,,,,,, +825,"[P] Primary adenocarcinoma of colon","Primary adenocarcinoma of colon","Primary adenocarcinoma of colon","rao@ohdsi.org","Pending peer review","","First event of primary adenocarcinoma of colon","#ColorectalCancer, #Cancer",1,"Andreas Weinberger Rosen","0000-0001-9990-8155","","","","","","2023-09-18","2024-01-05",,"",,0,,,"ERA",0,"end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",365,0,2,0,0,0,0,0,0,1,,0,,,,,,,,1,,,,,,,,,,,,,,,,,,,, +826,"[P] Primary adenocarcinoma of colon, no surgery or oncological treatment","Primary adenocarcinoma of colon, no surgery or oncological treatment","Primary adenocarcinoma of colon, no surgery or oncological treatment","rao@ohdsi.org","Pending peer review","","First event of primary adenocarcinoma of the colon, no curative surgery and no oncological treatment anytime after","#ColorectalCancer, #Cancer",1,"Andreas Weinberger Rosen","0000-0001-9990-8155","'OHDSI'","","","373995","https://forums.ohdsi.org/t/17895","2023-09-18","2024-01-05",,"",,0,,,"ERA",0,"end of continuous observation",,,3,"First",FALSE,"All","First",1,1,"ConditionOccurrence",365,0,4,1,0,0,0,0,0,1,,0,,,,,,,,1,,,,,,,,,,,,,,,,,,,, +827,"[P] Primary adenocarcinoma of colon surgical treatment","Primary adenocarcinoma of colon surgical treatment","Primary adenocarcinoma of colon surgical treatment","rao@ohdsi.org","Pending peer review","","First event of curative surgery for primary adenocarcinoma","#ColorectalCancer, #Cancer",1,"Andreas Weinberger Rosen","0000-0001-9990-8155","'OHDSI'","","","378419","","2023-09-18","2024-01-05",,"",,0,,,"ERA",0,"end of continuous observation",,,1,"First",FALSE,"All","First",1,1,"ProcedureOccurrence",365,0,2,1,0,0,0,0,0,,,0,,,,,,,1,,,,1,,,,,,,,,,,,,,,,, +828,"[P] Primary adenocarcinoma of colon oncological treatment, no surgery","Primary adenocarcinoma of colon oncological treatment, no surgery","Primary adenocarcinoma of colon oncological treatment, no surgery","rao@ohdsi.org","Pending peer review","","First event of oncological treatment after primary adenocarcinoma, with no curative surgery","#ColorectalCancer, #Cancer",1,"Andreas Weinberger Rosen","0000-0001-9990-8155","","","","138525, 194133","https://forums.ohdsi.org/t/18223","2023-09-18","2024-01-05",,"",,0,,,"ERA",0,"end of continuous observation",,,1,"First",FALSE,"All","First",2,2,"DrugExposure, ProcedureOccurrence",365,0,6,1,0,0,0,0,0,,,0,,,,1,,,1,,,,1,,,,,,,,,,,,,,,,, +829,"[P] Primary adenocarcinoma of colon, MSI-L, MSI-indeterminate, MSS or pMMR","Primary adenocarcinoma of colon, MSI-L, MSI-indeterminate, MSS or pMMR","Primary adenocarcinoma of colon, MSI-L, MSI-indeterminate, MSS or pMMR","rao@ohdsi.org","Pending peer review","","First event of primary adenocarcinoma of colon, with MSI-L or pMMR molecular subtype","#ColorectalCancer, #Cancer",1,"Andreas Weinberger Rosen","0000-0001-9990-8155","'OHDSI'","","","444362","","2023-09-18","2024-01-05",,"",,0,,,"ERA",0,"end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",365,0,11,1,0,0,0,0,0,1,,0,,,,,,,,1,,,,,,,,,,,,,,,,,,,, +830,"[P] Primary adenocarcinoma of colon, MSI-L, MSI-indeterminate, MSS or pMMR, surgically treated","Primary adenocarcinoma of colon, MSI-L, MSI-indeterminate, MSS or pMMR, surgically treated","Primary adenocarcinoma of colon, MSI-L, MSI-indeterminate, MSS or pMMR, surgically treated","rao@ohdsi.org","Pending peer review","","First event of potential curative surgery after a primary adenocarcinoma with MSI-L, MSS, pMMR molecular subtype","#ColorectalCancer, #Cancer",1,"Andreas Weinberger Rosen","0000-0001-9990-8155","","","","438409, 4047120","https://forums.ohdsi.org/t/15901","2023-09-18","2023-09-20",,"",,0,,,"ERA",0,"end of continuous observation",,,3,"First",FALSE,"All","First",1,1,"ProcedureOccurrence",365,0,12,1,0,0,0,0,0,,,0,,,,,,,1,,,,,,,,,,,,,,,,,,,,, +831,"[P] Primary adenocarcinoma of colon MSI-L, MSI-indeterminate, MSS or pMMR, oncological treatment, no surgery","Primary adenocarcinoma of colon MSI-L, MSI-indeterminate, MSS or pMMR, oncological treatment, no surgery","Primary adenocarcinoma of colon MSI-L, MSI-indeterminate, MSS or pMMR, oncological treatment, no surgery","rao@ohdsi.org","Pending peer review","","First event of oncological treatment of primary adenocarcinoma of colon with MSS, MSI-L or pMMR subtype","#ColorectalCancer, #Cancer",1,"Andreas Weinberger Rosen","0000-0001-9990-8155","'OHDSI'","","","314666, 4296653, 4329847","https://forums.ohdsi.org/t/15900","2023-09-18","2024-01-05",,"",,0,,,"ERA",0,"end of continuous observation",,,1,"First",FALSE,"All","First",2,2,"DrugExposure, ProcedureOccurrence",365,0,14,1,0,0,0,0,0,,,0,,,,1,,,1,,,,1,,,,,,,,,,,,,,,,, +832,"[P] Primary adenocarcinoma of colon MSI-L, MSI-indeterminate, MSS or pMMR, no surgery or oncological treatment","Primary adenocarcinoma of colon MSI-L, MSI-indeterminate, MSS or pMMR, no surgery or oncological treatment","Primary adenocarcinoma of colon MSI-L, MSI-indeterminate, MSS or pMMR, no surgery or oncological treatment","rao@ohdsi.org","Pending peer review","","First event of adenocarcinoma of colon with molecular subtype pMMR/MSI-L/MSS for patients not receiving surgery or oncological treatment","#ColorectalCancer, #Cancer",1,"Andreas Weinberger Rosen","0000-0001-9990-8155","'OHDSI'","","","198263","https://forums.ohdsi.org/t/17895","2023-09-18","2024-01-05",,"",,0,,,"ERA",0,"end of continuous observation",,,3,"First",FALSE,"All","First",1,1,"ConditionOccurrence",365,0,14,1,0,0,0,0,0,1,,0,,,,,,,,1,,,,,,,,,,,,,,,,,,,, +833,"[P] Primary adenocarcinoma of colon MSI-H or dMMR","Primary adenocarcinoma of colon MSI-H or dMMR","Primary adenocarcinoma of colon MSI-H or dMMR","rao@ohdsi.org","Pending peer review","","First event of a primary adenocarcinoma of colon with MSI-H / pMMR molecular profile","#ColorectalCancer, #Cancer",1,"Andreas Weinberger Rosen","0000-0001-9990-8155","'OHDSI'","","","442597, 4152351","https://forums.ohdsi.org/t/17895","2023-09-18","2024-01-05",,"",,0,,,"ERA",0,"end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",365,0,9,1,0,0,0,0,0,1,,0,,,,,,,,1,,,,,,,,,,,,,,,,,,,, +834,"[P] Primary adenocarcinoma of colon MSI-H or dMMR, surgical treatment","Primary adenocarcinoma of colon MSI-H or dMMR, surgical treatment","Primary adenocarcinoma of colon MSI-H or dMMR, surgical treatment","rao@ohdsi.org","Pending peer review","","First event of potentially curative surgery for adenocarcinoma of colon following diagnosis of MSI-H dMMR subtype","#ColorectalCancer, #Cancer",1,"Andreas Weinberger Rosen","0000-0001-9990-8155","'OHDSI'","","","439926, 4272240","https://forums.ohdsi.org/t/17895","2023-09-18","2024-01-05",,"",,0,,,"ERA",0,"end of continuous observation",,,1,"First",FALSE,"All","First",1,1,"ProcedureOccurrence",365,0,10,1,0,0,0,0,0,,,0,,,,,,,1,,,,1,,,,,,,,,,,,,,,,, +835,"[P] Primary adenocarcinoma of colon MSI-H or dMMR, oncological treatment, no surgery","Primary adenocarcinoma of colon MSI-H or dMMR, oncological treatment, no surgery","Primary adenocarcinoma of colon MSI-H or dMMR, oncological treatment, no surgery","rao@ohdsi.org","Pending peer review","","First event of oncological treatment for colorectal cancer following diagnosis of primary adenocarcinoma of colon with MSI-H or dMMR profile, no curative surgery","#ColorectalCancer, #Cancer",1,"Andreas Weinberger Rosen","0000-0001-9990-8155","'OHDSI'","","","4096682",,"2023-09-18","2024-01-05",,"",,0,,,"ERA",0,"end of continuous observation",,,1,"First",FALSE,"All","First",2,2,"DrugExposure, ProcedureOccurrence",365,0,12,1,0,0,0,0,0,,,0,,,,1,,,1,,,,1,,,,,,,,,,,,,,,,, +836,"[P] Primary adenocarcinoma of colon MSI-H or dMMR, no surgery or oncological treatment","Primary adenocarcinoma of colon MSI-H or dMMR, no surgery or oncological treatment","Primary adenocarcinoma of colon MSI-H or dMMR, no surgery or oncological treatment","rao@ohdsi.org","Pending peer review","","First event of primary adenocarcinoma of colon with MSI-H or dMMR profile, no curative surgery or oncological treatment at anytime past diagnosis","#ColorectalCancer, #Cancer",1,"Andreas Weinberger Rosen","0000-0001-9990-8155","'OHDSI'","","","137977, 435656","https://forums.ohdsi.org/t/17895","2023-09-18","2024-01-05",,"",,0,,,"ERA",0,"end of continuous observation",,,3,"First",FALSE,"All","First",1,1,"ConditionOccurrence",365,0,12,1,0,0,0,0,0,1,,0,,,,,,,,1,,,,,,,,,,,,,,,,,,,, +837,"[P] Primary adenocarcinoma of rectum","Primary adenocarcinoma of rectum","Primary adenocarcinoma of rectum","rao@ohdsi.org","Pending peer review","","First event of a primary adenocarcinoma of rectum","#ColorectalCancer, #Cancer",1,"Andreas Weinberger Rosen","0000-0001-9990-8155","'OHDSI'","","","436222","https://forums.ohdsi.org/t/17895","2023-09-18","2024-01-05",,"",,0,,,"ERA",0,"end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",365,0,1,0,0,0,0,0,0,1,,0,,,,,,,,1,,,,,,,,,,,,,,,,,,,, +838,"[P] Primary adenocarcinoma of rectum MSI-H or dMMR","Primary adenocarcinoma of rectum MSI-H or dMMR","Primary adenocarcinoma of rectum MSI-H or dMMR","rao@ohdsi.org","Pending peer review","","First event of a primary adenocarcinoma of rectum with MSI-H or dMMR molecular subtype","#ColorectalCancer, #Cancer",1,"Andreas Weinberger Rosen","0000-0001-9990-8155","'OHDSI'","","","196360, 197508","","2023-09-18","2024-01-05",,"",,0,,,"ERA",0,"end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",365,0,9,1,0,0,0,0,0,1,,0,,,,,,,,1,,,,,,,,,,,,,,,,,,,, +839,"[P] Primary adenocarcinoma of rectum, MSI-H or dMMR, no surgery or oncological treatment","Primary adenocarcinoma of rectum, MSI-H or dMMR, no surgery or oncological treatment","Primary adenocarcinoma of rectum, MSI-H or dMMR, no surgery or oncological treatment","rao@ohdsi.org","Pending peer review","","First event of a primary adenocarcinoma of rectum with MSI-H or dMMR molecular subtype, without any curative surgery or oncological treatment in the future","#ColorectalCancer, #Cancer",1,"Andreas Weinberger Rosen","0000-0001-9990-8155","'OHDSI'","","","80809","","2023-09-18","2024-01-05",,"",,0,,,"ERA",0,"end of continuous observation",,,1,"First",FALSE,"All","First",1,1,"ProcedureOccurrence",365,0,12,1,0,0,0,0,0,,,0,,,,,,,1,,,,1,,,,,,,,,,,,,,,,, +840,"[P] Primary adenocarcinoma of rectum MSI-H or dMMR, oncological treatment, no surgery","Primary adenocarcinoma of rectum MSI-H or dMMR, oncological treatment, no surgery","Primary adenocarcinoma of rectum MSI-H or dMMR, oncological treatment, no surgery","rao@ohdsi.org","Pending peer review","","First event of oncological treatment for patient with primary adenocarcinoma of rectum with MSI-H or dMMR molecular subtype, without any curative surgery","#ColorectalCancer, #Cancer",1,"Andreas Weinberger Rosen","0000-0001-9990-8155","'OHDSI'","","","318443, 764123","","2023-09-18","2024-01-05",,"",,0,,,"ERA",0,"end of continuous observation",,,1,"First",FALSE,"All","First",2,2,"DrugExposure, ProcedureOccurrence",365,0,12,1,0,0,0,0,0,,,0,,,,1,,,1,,,,1,,,,,,,,,,,,,,,,, +841,"[P] Primary adenocarcinoma of rectum, MSI-H or dMMR, surgical treatment","Primary adenocarcinoma of rectum, MSI-H or dMMR, surgical treatment","Primary adenocarcinoma of rectum, MSI-H or dMMR, surgical treatment","rao@ohdsi.org","Pending peer review","","First event of potentially curative surgery for patients diagnosed with primary adenocarcinoma of rectum with MSI-H / dMMR subtype","#ColorectalCancer, #Cancer",1,"Andreas Weinberger Rosen","0000-0001-9990-8155","'OHDSI'","","","201606","","2023-09-18","2024-01-05",,"",,0,,,"ERA",0,"end of continuous observation",,,1,"First",FALSE,"All","First",1,1,"ProcedureOccurrence",365,0,10,1,0,0,0,0,0,,,0,,,,,,,1,,,,1,,,,,,,,,,,,,,,,, +842,"[P] Primary adenocarcinoma of rectum, MSI-L, MSI-indeterminate, MSS or pMMR","Primary adenocarcinoma of rectum, MSI-L, MSI-indeterminate, MSS or pMMR","Primary adenocarcinoma of rectum, MSI-L, MSI-indeterminate, MSS or pMMR","rao@ohdsi.org","Pending peer review","","First event of primary adenocarcinoma of rectum, with MSI-L, MSI-indeterminate, MSS or pMMR subtype","#ColorectalCancer, #Cancer",1,"Andreas Weinberger Rosen","0000-0001-9990-8155","'OHDSI'","","","440383","","2023-09-18","2024-01-05",,"",,0,,,"ERA",0,"end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",365,0,11,1,0,0,0,0,0,1,,0,,,,,,,,1,,,,,,,,,,,,,,,,,,,, +843,"[P] Primary adenocarcinoma of rectum MSI-L, MSI-indeterminate, MSS or pMMR, oncological treatment, no surgery","Primary adenocarcinoma of rectum MSI-L, MSI-indeterminate, MSS or pMMR, oncological treatment, no surgery","Primary adenocarcinoma of rectum MSI-L, MSI-indeterminate, MSS or pMMR, oncological treatment, no surgery","rao@ohdsi.org","Pending peer review","","First event of oncology in patients diagnosed with primary adenocarcinoma of rectum with MSI-L, MSI-indeterminate, MSS or pMMR profile, with no subsequent potentially curative surgery","#ColorectalCancer, #Cancer",1,"Andreas Weinberger Rosen","0000-0001-9990-8155","'OHDSI'","","","140168","","2023-09-18","2024-01-05",,"",,0,,,"ERA",0,"end of continuous observation",,,1,"First",FALSE,"All","First",2,2,"DrugExposure, ProcedureOccurrence",365,0,14,1,0,0,0,0,0,,,0,,,,1,,,1,,,,1,,,,,,,,,,,,,,,,, +844,"[P] Primary adenocarcinoma of rectum MSI-L, MSI-indeterminate, MSS or pMMR, no surgery and no oncological treatment","Primary adenocarcinoma of rectum MSI-L, MSI-indeterminate, MSS or pMMR, no surgery and no oncological treatment","Primary adenocarcinoma of rectum MSI-L, MSI-indeterminate, MSS or pMMR, no surgery and no oncological treatment","rao@ohdsi.org","Pending peer review","","First event of primary adenocarcinoma of tectum with MSI-L / MSS / pMMR profile, no surgery or oncological treatment","#ColorectalCancer, #Cancer",1,"Andreas Weinberger Rosen","0000-0001-9990-8155","'OHDSI'","","","81893","","2023-09-18","2024-01-05",,"",,0,,,"ERA",0,"end of continuous observation",,,3,"First",FALSE,"All","First",1,1,"ConditionOccurrence",365,0,14,1,0,0,0,0,0,1,,0,,,,,,,,1,,,,,,,,,,,,,,,,,,,, +845,"[P] Primary adenocarcinoma of rectum MSI-L, MSI-indeterminate, MSS or pMMR, treated with potentially curative surgery","Primary adenocarcinoma of rectum MSI-L, MSI-indeterminate, MSS or pMMR, treated with potentially curative surgery","Primary adenocarcinoma of rectum MSI-L, MSI-indeterminate, MSS or pMMR, treated with potentially curative surgery","rao@ohdsi.org","Pending peer review","","First event of potentially curative surgery for primary adenocarcinoma of rectum with MSI-L / pMMR subtype","#ColorectalCancer, #Cancer",1,"Andreas Weinberger Rosen","0000-0001-9990-8155","'OHDSI'","","","26942, 138723, 4144746","https://forums.ohdsi.org/t/17854","2023-09-18","2024-01-05",,"",,0,,,"ERA",0,"end of continuous observation",,,1,"First",FALSE,"All","First",1,1,"ProcedureOccurrence",365,0,12,1,0,0,0,0,0,,,0,,,,,,,1,,,,1,,,,,,,,,,,,,,,,, +846,"[P] Primary adenocarcinoma of rectum oncological treatment, no surgery","Primary adenocarcinoma of rectum oncological treatment, no surgery","Primary adenocarcinoma of rectum oncological treatment, no surgery","rao@ohdsi.org","Pending peer review","","First event of oncological for patients with primary adenocarcinoma in rectum, with no subsequent potentially curative surgery","#ColorectalCancer, #Cancer",1,"Andreas Weinberger Rosen","0000-0001-9990-8155","'OHDSI'","","","257011, 437663, 4170143, 4250734","https://forums.ohdsi.org/t/17876","2023-09-18","2024-01-05",,"",,0,,,"ERA",0,"end of continuous observation",,,1,"First",FALSE,"All","First",2,2,"DrugExposure, ProcedureOccurrence",365,0,4,1,0,0,0,0,0,,,0,,,,1,,,1,,,,1,,,,,,,,,,,,,,,,, +847,"[P] Primary adenocarcinoma of rectum surgical treatment","Primary adenocarcinoma of rectum surgical treatment","Primary adenocarcinoma of rectum surgical treatment","rao@ohdsi.org","Pending peer review","","First event of potentially curative surgery following diagnosis of primary adenocarcinoma of rectum","#ColorectalCancer, #Cancer",1,"Andreas Weinberger Rosen","0000-0001-9990-8155","'OHDSI'","","","435503, 439777, 441269, 4250490","https://forums.ohdsi.org/t/17856","2023-09-18","2024-01-05",,"",,0,,,"ERA",0,"end of continuous observation",,,1,"First",FALSE,"All","First",1,1,"ProcedureOccurrence",365,0,2,1,0,0,0,0,0,,,0,,,,,,,1,,,,1,,,,,,,,,,,,,,,,, +848,"[P] Primary adenocarcinoma of rectum, no surgery or oncological treatment","Primary adenocarcinoma of rectum, no surgery or oncological treatment","Primary adenocarcinoma of rectum, no surgery or oncological treatment","rao@ohdsi.org","Pending peer review","","First event of primary adenocarcinoma of rectum, no future potentially curative surgery or oncological treatment","#ColorectalCancer, #Cancer",1,"Andreas Weinberger Rosen","0000-0001-9990-8155","'OHDSI'","","","435503, 439777, 441269, 4250490","https://forums.ohdsi.org/t/17856","2023-09-18","2024-01-05",,"",,0,,,"ERA",0,"end of continuous observation",,,3,"First",FALSE,"All","First",1,1,"ConditionOccurrence",365,0,4,1,0,0,0,0,0,1,,0,,,,,,,,1,,,,,,,,,,,,,,,,,,,, +850,"[W] Intestinal obstruction (broad 2)","Intestinal obstruction (broad 2)","Intestinal obstruction","rao@ohdsi.org","Pending peer review","","First event Intestinal obstruction","#ColorectalCancer, #Cancer",1,"Andreas Weinberger Rosen","0000-0001-9990-8155","'OHDSI'","","","432881","","2023-09-18","2023-10-16",,"","duplicated 805",0,,,"ERA",0,"end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,, +851,"[P] Intraabdominal obstruction (broad)","Intraabdominal obstruction (broad)","Intraabdominal obstruction","rao@ohdsi.org","Pending peer review","","First event Intraabdominal obstruction","#ColorectalCancer, #Cancer",1,"Andreas Weinberger Rosen","0000-0001-9990-8155","'OHDSI'","Anna Ostropolets","","435224","https://forums.ohdsi.org/t/17409","2023-09-18","2023-09-20",,"",,0,,,"ERA",0,"end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,, +852,"[P] Surgical wound infection (broad)","Surgical wound infection (broad)","Surgical wound infection (broad)","rao@ohdsi.org","Pending peer review","","First event surgical wound infection","#ColorectalCancer, #Cancer",1,"Andreas Weinberger Rosen","0000-0001-9990-8155","'OHDSI'","","","435224","https://forums.ohdsi.org/t/17409","2023-09-18","2024-01-05",,"",,0,,,"ERA",0,"end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,, +854,"[P] Distant metastasis following colorectal cancer (medium)","Distant metastasis following colorectal cancer (medium)","Distant metastasis following colorectal cancer (medium)","rao@ohdsi.org","Pending peer review","","First event distant metastasis following colorectal cancer","#ColorectalCancer, #Cancer",1,"Andreas Weinberger Rosen","0000-0001-9990-8155","'OHDSI'","","","433749, 4103532","","2023-09-18","2024-01-05",,"",,0,,,"ERA",0,"end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,, +855,"[P] Distant metastasis following colorectal cancer (narrow)","Distant metastasis following colorectal cancer (narrow)","Distant metastasis following colorectal cancer (narrow)","rao@ohdsi.org","Pending peer review","","First event distant metastasis following colorectal cancer","#ColorectalCancer, #Cancer",1,"Andreas Weinberger Rosen","0000-0001-9990-8155","'OHDSI'","","","433749, 4103532","","2023-09-18","2024-01-05",,"",,0,,,"ERA",0,"end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,, +856,"[P] Earliest event of Migraine, including history of migraine","Earliest event of Migraine, including history of migraine","Earliest event of Migraine, including history of migraine","rao@ohdsi.org","Pending peer review","","Earliest occurrence of Migraine indexed on occurrence of Migraine condition (or observation of history of migraine-in the one of the cohorts versions) or symptoms (Headache , Aura) or a use of antimigraine drug (or the 1st time). Patients entering the cohort with an antimigraine drugs or migraine symptoms are required to have a diagnosis or observation of Migraine or history of migraine within 60 days. Cohort exit is the end of continuous observation.","#ColorectalCancer, #Cancer",1,"Azza Shoaibi', 'Jill Hardin'","0000-0002-6976-2594'","'OHDSI'","","","313800, 4119134","","2023-09-18","2023-09-20",,"",,0,,,"ERA",0,"end of continuous observation",,,1,"All",FALSE,"All","First",4,3,"ConditionOccurrence, DrugExposure, Observation",0,0,3,1,0,0,0,0,0,1,,0,1,,,1,,,,,,,,,,,,,,,,,,,,,,,, +857,"[P] Earliest event of Migraine","Earliest event of Migraine","Earliest event of Migraine","rao@ohdsi.org","Pending peer review","","Earliest occurrence of Migraine indexed on occurrence of Migraine condition (or observation of history of migraine-in the one of the cohorts versions) or symptoms (Headache , Aura) or a use of antimigraine drug (or the 1st time). Patients entering the cohort with an antimigraine drugs or migraine symptoms are required to have a diagnosis or observation of Migraine or history of migraine within 60 days. Cohort exit is the end of continuous observation.","#JNJ, #Indication",1,"Azza Shoaibi', 'Jill Hardin'","0000-0002-6976-2594'","'OHDSI'","","","137967, 4345578","","2023-09-18","2023-10-04",,"",,0,,,"ERA",0,"end of continuous observation",,,0,"First",FALSE,"All","First",3,2,"ConditionOccurrence, DrugExposure",0,0,3,1,0,0,0,0,0,1,,0,,,,1,,,,1,,,,,,,,,,,,,,,,,,,, +858,"[P] Earliest event of Rheumatoid Arthritis","Earliest event of Rheumatoid Arthritis","Earliest event of Rheumatoid Arthritis","rao@ohdsi.org","Pending peer review","","Earliest occurrence of Rheumatoid Arthritis indexed on diagnosis (condition or observation) date, for the first time in history cohort exit is the end of continuous observation","#JNJ, #Indication",1,"Joel Swerdel'","0000-0002-6976-2594'","'OHDSI'","","","321042","","2023-09-18","2023-10-04",,"",,0,,,"ERA",0,"end of continuous observation",,,0,"First",FALSE,"All","First",2,2,"ConditionOccurrence, Observation",0,0,1,0,0,0,0,0,0,1,,0,1,,,,,,,1,,,,,,,,,,,,,,,,,,,, +859,"[P] Earliest event of Crohns disease","Earliest event of Crohns disease","Earliest event of Crohns disease","rao@ohdsi.org","Pending peer review","","Earliest occurrence of Crohns disease indexed on diagnosis date, for the first time in history cohort exit is the end of continuous observation","#Crohn",1,"Joel Swerdel'","0000-0002-6976-2594'","'OHDSI'","","","201606","","2023-09-18","2023-10-04",,"",,0,,,"ERA",0,"end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,0,,,,,,,,1,,,,,,,,,,,,,,,,,,,, +860,"[P] Earliest event of Ulcerative colitis","Earliest event of Ulcerative colitis","Earliest event of Ulcerative colitis","rao@ohdsi.org","Pending peer review","","Earliest occurrence of Ulcerative Colitis indexed on diagnosis date, for the first time in history cohort exit is the end of continuous observation","#UlcerativeColitis",1,"Joel Swerdel'","0000-0002-6976-2594'","'OHDSI'","","","441202","https://forums.ohdsi.org/t/17835","2023-09-18","2023-09-22",,"",,0,,,"ERA",0,"end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,0,,,,,,,,1,,,,,,,,,,,,,,,,,,,, +861,"[W] Earliest event of Urinary tract infections (UTI)","Earliest event of Urinary tract infections (UTI)","Earliest event of Urinary tract infections (UTI)","rao@ohdsi.org","Pending peer review","","Earliest event of diagnosis of urinary tract infections, cohort exist is end of observation period.","#ColorectalCancer, #Cancer",1,"Stephen Fortin","0000-0002-6976-2594'","'OHDSI'","","","141651","","2023-09-18","2023-11-29",,"","Cohort appears to model biologically implausible situation",0,,,"ERA",0,"end of continuous observation",,,0,"All",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,, +862,"[P] Earliest event of Alzheimer's disease derived from Imfeld, 2","Earliest event of Alzheimer's disease derived from Imfeld, 2","Earliest event of Alzheimer's disease derived from Imfeld, 2","rao@ohdsi.org","Pending peer review","","","#ColorectalCancer, #Cancer",1,"Azza Shoaibi'","0000-0002-6976-2594'","'OHDSI'","","","42872891","","2023-09-18","2023-09-20",,"",,0,,,"ERA",0,"end of continuous observation",,,0,"First",FALSE,"All","First",2,2,"ConditionOccurrence, DrugExposure",0,0,9,1,0,0,0,0,0,1,,0,,,,1,,,,,,,,,,,,,,,,,,,,,,,, +863,"[P] Cognitive impairment, incident","Cognitive impairment, incident","Cognitive impairment, incident","rao@ohdsi.org","Pending peer review","","Earliest occurrence of Crohns disease indexed on diagnosis date, for the first time in history , with 365 days prior observation time. cohort exit is the end of continuous observation","",1,"Azza Shoaibi', 'Dave Kern'","0000-0002-6976-2594'","'OHDSI'","","","4297400, 439795",,"2023-09-18","2023-10-04",,"",,0,,,"ERA",0,"end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,0,,,,,,,,1,,,,,,,,,,,,,,,,,,,, +864,"[P] Earliest event of Dementia","Earliest event of Dementia","Earliest event of Dementia","rao@ohdsi.org","Pending peer review","","Occurrences of dementia indexed on diagnosis or observation date with no required prior continuous enrollment subset to earliest observation where the patient was 18 years or older cohort exit is the end of continuous observation.","#Dementia",1,"Azza Shoaibi'","0000-0002-6976-2594'","'OHDSI'","","","4182210","","2023-09-18","2023-10-03",,"",,0,,,"ERA",0,"end of continuous observation",,,1,"All",FALSE,"All","First",2,2,"ConditionOccurrence, Observation",0,0,1,1,1,0,0,0,0,1,,0,1,,,,,,,,1,,,,,,,,,,,,,,,,,,, +865,"[P] Non-Emergent Major Non Cardiac Surgery among adults","Non-Emergent Major Non Cardiac Surgery among adults","Major Non Cardiac Surgery, adults, inpt stay, no ED","rao@ohdsi.org","Pending peer review","","","#Surgery",1,"Evan Minty'","0000-0003-4631-9992'","'OHDSI'","","","4301351",,"2023-09-19","2024-01-05",,"",,0,,,"ERA",0,"end of continuous observation",,,2,"First",FALSE,"All","First",35,1,"ProcedureOccurrence",0,0,37,1,1,0,0,1,0,,,0,,,,,,,1,,1,,,,,,,,,,,,,,,,,,, +866,"[P] Abdominal Aortic Aneurysm repair, adults, inpt stay, no ED","Abdominal Aortic Aneurysm repair, adults, inpt stay, no ED","Abdominal Aortic Aneurysm repair, adults, inpt stay, no ED","rao@ohdsi.org","Pending peer review","","","#Surgery",1,"Evan Minty', 'Brian Bucher'","0000-0003-4631-9992', '0000-0001-8376-9752'","'OHDSI'","","","4301351",,"2023-09-19","2024-01-05",,"",,0,,,"ERA",0,"end of continuous observation",,,4,"First",FALSE,"All","First",2,1,"ProcedureOccurrence",0,0,4,1,1,0,0,1,0,,,0,,,,,,,1,,1,,,,,,,,,,,1,,,,,,,, +867,"[P] Lower Extremity Bypass, adults, inpt stay, no ED","Lower Extremity Bypass, adults, inpt stay, no ED","Lower Extremity Bypass, adults, inpt stay, no ED","rao@ohdsi.org","Pending peer review","","","#surgery",1,"Evan Minty', 'Brian Bucher'","0000-0003-4631-9992', '0000-0001-8376-9752'","'OHDSI'","","","4301351",,"2023-09-19","2024-01-05",,"",,0,,,"ERA",0,"end of continuous observation",,,2,"First",FALSE,"All","First",2,1,"ProcedureOccurrence",0,0,3,1,1,0,0,1,0,,,0,,,,,,,1,,1,,,,,,,,,,,1,,,,,,,, +868,"[P] Carotid Endarterectomy, adults, inpt stay, no ED","Carotid Endarterectomy, adults, inpt stay, no ED","Carotid Endarterectomy, adults, inpt stay, no ED","rao@ohdsi.org","Pending peer review","","","#Surgery",1,"Evan Minty, Brian Bucher","0000-0003-4631-9992, 0000-0001-8376-9752","'OHDSI'","","","4301351",,"2023-09-19","2024-01-05",,"",,0,,,"ERA",0,"end of continuous observation",,,2,"First",FALSE,"All","First",2,1,"ProcedureOccurrence",0,0,3,1,1,0,0,1,0,,,0,,,,,,,1,,1,,,,,,,,,,,1,,,,,,,, +869,"[P] Lung Resection, adults, inpt stay, no ED","Lung Resection, adults, inpt stay, no ED","Lung Resection, adults, inpt stay, no ED","rao@ohdsi.org","Pending peer review","","","#Surgery",1,"Evan Minty', 'Brian Bucher'","0000-0003-4631-9992', '0000-0001-8376-9752'","'OHDSI'","","","4301351",,"2023-09-19","2024-01-05",,"",,0,,,"ERA",0,"end of continuous observation",,,2,"First",FALSE,"All","First",2,1,"ProcedureOccurrence",0,0,3,1,1,0,0,1,0,,,0,,,,,,,1,,1,,,,,,,,,,,1,,,,,,,, +870,"[P] Esophagectomy, adults, inpt stay, no ED","Esophagectomy, adults, inpt stay, no ED","Esophagectomy, adults, inpt stay, no ED","rao@ohdsi.org","Pending peer review","","","#Surgery",1,"Evan Minty', 'Brian Bucher'","0000-0003-4631-9992', '0000-0001-8376-9752'","'OHDSI'","","","132702","","2023-09-19","2024-01-05",,"",,0,,,"ERA",0,"end of continuous observation",,,2,"First",FALSE,"All","First",2,1,"ProcedureOccurrence",0,0,3,1,1,0,0,1,0,,,0,,,,,,,1,,1,,,,,,,,,,,1,,,,,,,, +871,"[P] Pancreatectomy, adults, inpt stay, no ED","Pancreatectomy, adults, inpt stay, no ED","Pancreatectomy, adults, inpt stay, no ED","rao@ohdsi.org","Pending peer review","","","#Surgery",1,"Evan Minty', 'Brian Bucher'","0000-0003-4631-9992', '0000-0001-8376-9752'","'OHDSI'","","","4301351",,"2023-09-19","2024-01-05",,"",,0,,,"ERA",0,"end of continuous observation",,,2,"First",FALSE,"All","First",2,1,"ProcedureOccurrence",0,0,3,1,1,0,0,1,0,,,0,,,,,,,1,,1,,,,,,,,,,,1,,,,,,,, +872,"[P] Colectomy, adults, inpt stay, no ED","Colectomy, adults, inpt stay, no ED","Colectomy, adults, inpt stay, no ED","rao@ohdsi.org","Pending peer review","","","#Surgery",1,"Evan Minty', 'Brian Bucher'","0000-0003-4631-9992', '0000-0001-8376-9752'","'OHDSI'","","","4301351",,"2023-09-19","2024-01-05",,"",,0,,,"ERA",0,"end of continuous observation",,,2,"First",FALSE,"All","First",2,1,"ProcedureOccurrence",0,0,3,1,1,0,0,1,0,,,0,,,,,,,1,,1,,,,,,,,,,,1,,,,,,,, +873,"[P] Cystectomy, adults, inpt stay, no ED","Cystectomy, adults, inpt stay, no ED","Cystectomy, adults, inpt stay, no ED","rao@ohdsi.org","Pending peer review","","","#Surgery",1,"Evan Minty', 'Brian Bucher'","0000-0003-4631-9992', '0000-0001-8376-9752'","'OHDSI'","","","4301351",,"2023-09-19","2024-01-05",,"",,0,,,"ERA",0,"end of continuous observation",,,2,"First",FALSE,"All","First",2,1,"ProcedureOccurrence",0,0,3,1,1,0,0,1,0,,,0,,,,,,,1,,1,,,,,,,,,,,1,,,,,,,, +874,"[P] Nephrectomy, adults, inpt stay, no ED","Nephrectomy, adults, inpt stay, no ED","Nephrectomy, adults, inpt stay, no ED","rao@ohdsi.org","Pending peer review","","","#Surgery",1,"Evan Minty, Brian Bucher","0000-0003-4631-9992, 0000-0001-8376-9752","'OHDSI'","","","4301351",,"2023-09-19","2024-01-05",,"",,0,,,"ERA",0,"end of continuous observation",,,2,"First",FALSE,"All","First",2,1,"ProcedureOccurrence",0,0,3,1,1,0,0,1,0,,,0,,,,,,,1,,1,,,,,,,,,,,1,,,,,,,, +875,"[P] Coronary Artery Bypass Graft, adults, inpt stay, no ED","Coronary Artery Bypass Graft, adults, inpt stay, no ED","Coronary Artery Bypass Graft, adults, inpt stay, no ED","rao@ohdsi.org","Pending peer review","","","#Surgery",1,"Evan Minty', 'Brian Bucher'","0000-0003-4631-9992', '0000-0001-8376-9752'","'OHDSI'","","","4301351",,"2023-09-19","2024-01-05",,"",,0,,,"ERA",0,"end of continuous observation",,,2,"First",FALSE,"All","First",2,1,"ProcedureOccurrence",0,0,3,1,1,0,0,1,0,,,0,,,,,,,1,,1,,,,,,,,,,,1,,,,,,,, +876,"[P] Cardiac Valve Surgery, adults, inpt stay, no ED","Cardiac Valve Surgery, adults, inpt stay, no ED","Cardiac Valve Surgery, adults, inpt stay, no ED","rao@ohdsi.org","Pending peer review","","","#Surgery",1,"Evan Minty', 'Brian Bucher'","0000-0003-4631-9992', '0000-0001-8376-9752'","'OHDSI'","","","4301351",,"2023-09-19","2024-01-05",,"",,0,,,"ERA",0,"end of continuous observation",,,2,"First",FALSE,"All","First",2,1,"ProcedureOccurrence",0,0,3,1,1,0,0,1,0,,,0,,,,,,,1,,1,,,,,,,,,,,1,,,,,,,, +877,"[P] Non-Emergent MNCS (age 18 or greater), post op Afib (parox)","Non-Emergent MNCS (age 18 or greater), post op Afib (parox)","Non-Emergent MNCS (age 18 or greater), post op Afib (parox)","rao@ohdsi.org","Pending peer review","","","#Surgery, #NonEmergent",1,"Evan Minty'","0000-0003-4631-9992'","'OHDSI'","","","374954","","2023-09-19","2023-10-05",,"",,0,,,"ERA",0,"end of continuous observation",,,4,"First",FALSE,"All","First",35,1,"ProcedureOccurrence",0,0,39,1,1,0,0,1,0,,,0,,,,,,,1,,1,,,,,,,,,,,,,,,,,,, +878,"[P] Major Non Cardiac Surgery, adults, inpt stay, no ED, post op new Afib","Major Non Cardiac Surgery, adults, inpt stay, no ED, post op new Afib","Major Non Cardiac Surgery, adults, inpt stay, no ED, post op new Afib","rao@ohdsi.org","Pending peer review","","","#Surgery",1,"Evan Minty'","0000-0003-4631-9992'","'OHDSI'","","","436100","https://forums.ohdsi.org/t/17784","2023-09-19","2024-01-05",,"",,0,,,"ERA",0,"end of continuous observation",,,4,"First",FALSE,"All","First",35,1,"ProcedureOccurrence",0,0,38,1,1,0,0,1,0,,,0,,,,,,,1,,1,,,,,,,,,,,,,,,,,,, +881,"[P] Acute myocardial infarction","Acute myocardial infarction","Acute myocardial infarction events","rao@ohdsi.org","Pending","","Acute myocardial infarction condition record during an inpatient or ER visit successive records with > 180 day gap are considered independent episodes","#usedInStudy, #LEGEND, #Hypertension, #legendHypertension, #Diabetes, #legendDiabetes",1,"'Marc Suchard','Martijn Schuemie','Harlan Krumholz','Seng Chan You','RuiJun Chun','Nicole Pratt','Christian Reich','Jon Duke','David Madigan','George Hripcsak','Patrick Ryan'","0000-0001-9818-479X', '0000-0002-0817-5361', '0000-0003-2046-127X','','','0000-0001-8730-8910', '','','','',''","'OHDSI'","","","139900","https://forums.ohdsi.org/t/17895","2023-09-20","2023-09-24",,"",,0,,,"ERA",180,"fixed duration relative to initial event","StartDate",7,0,"All",TRUE,"All","All",1,1,"ConditionOccurrence",0,0,2,1,0,0,0,1,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +882,"[P] Decreased libido","Decreased libido","Persons with decreased libido","rao@ohdsi.org","Pending","","The first condition record of decreased libido","#usedInStudy, #LEGEND, #Hypertension, #legendHypertension, #Symptoms",1,"'Marc Suchard','Martijn Schuemie','Harlan Krumholz','Seng Chan You','RuiJun Chun','Nicole Pratt','Christian Reich','Jon Duke','David Madigan','George Hripcsak','Patrick Ryan'","0000-0001-9818-479X', '0000-0002-0817-5361', '0000-0003-2046-127X','','','0000-0001-8730-8910', '','','','',''","'OHDSI'","","","377575","https://forums.ohdsi.org/t/17895","2023-09-20","2023-09-21",,"",,0,,,"ERA",0,"end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,0,,,,,,,,1,,,,,,,,,,,,,,,,,,,, +884,"[P] Diarrhea including enteritis","Diarrhea including enteritis","Diarrhea events","rao@ohdsi.org","Pending","","Diarrhea condition record of any type successive records with > 30 day gap are considered independent episodes","#usedInStudy, #LEGEND, #Hypertension, #legendHypertension",1,"'Marc Suchard','Martijn Schuemie','Harlan Krumholz','Seng Chan You','RuiJun Chun','Nicole Pratt','Christian Reich','Jon Duke','David Madigan','George Hripcsak','Patrick Ryan'","0000-0001-9818-479X', '0000-0002-0817-5361', '0000-0003-2046-127X','','','0000-0001-8730-8910', '','','','',''","'OHDSI'","","","196523",,"2023-09-20","2023-10-09",,"",,0,,,"ERA",30,"fixed duration relative to initial event","StartDate",1,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +888,"[P] Gastrointestinal bleeding","Gastrointestinal bleeding","Gastrointestinal bleeding events","rao@ohdsi.org","Pending","","Gastrointestinal hemorrhage condition record during an inpatient or ER visit successive records with > 30 day gap are considered independent episodes","#usedInStudy, #LEGEND, #Hypertension, #legendHypertension",1,"'Marc Suchard','Martijn Schuemie','Harlan Krumholz','Seng Chan You','RuiJun Chun','Nicole Pratt','Christian Reich','Jon Duke','David Madigan','George Hripcsak','Patrick Ryan'","0000-0001-9818-479X', '0000-0002-0817-5361', '0000-0003-2046-127X','','','0000-0001-8730-8910', '','','','',''","'OHDSI'","","","196715","","2023-09-20","2023-09-20",,"",,0,,,"ERA",30,"fixed duration relative to initial event","StartDate",7,0,"All",TRUE,"All","All",1,1,"ConditionOccurrence",0,0,2,1,0,0,0,1,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +889,"[P] Hyponatremia","Hyponatremia","Hyponatremia events","rao@ohdsi.org","Pending","","Hyponatremia condition record of any type successive records with > 90 day gap are considered independent episodes","#usedInStudy, #LEGEND, #Hypertension, #legendHypertension",1,"'Marc Suchard','Martijn Schuemie','Harlan Krumholz','Seng Chan You','RuiJun Chun','Nicole Pratt','Christian Reich','Jon Duke','David Madigan','George Hripcsak','Patrick Ryan'","0000-0001-9818-479X', '0000-0002-0817-5361', '0000-0003-2046-127X','','','0000-0001-8730-8910', '','','','',''","'OHDSI'","","","199837","","2023-09-20","2023-09-20",,"",,0,,,"ERA",90,"fixed duration relative to initial event","StartDate",1,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +890,"[P] Hypotension","Hypotension","Hypotension events","rao@ohdsi.org","Pending","","Hypotension condition record of any type successive records with > 90 day gap are considered independent episodes","#usedInStudy, #LEGEND, #Hypertension, #legendHypertension",1,"'Marc Suchard','Martijn Schuemie','Harlan Krumholz','Seng Chan You','RuiJun Chun','Nicole Pratt','Christian Reich','Jon Duke','David Madigan','George Hripcsak','Patrick Ryan'","0000-0001-9818-479X', '0000-0002-0817-5361', '0000-0003-2046-127X','','','0000-0001-8730-8910', '','','','',''","'OHDSI'","","","4133004, 43531681","https://forums.ohdsi.org/t/17769","2023-09-20","2023-09-20",,"",,0,,,"ERA",90,"fixed duration relative to initial event","StartDate",1,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +891,"[P] Nausea","Nausea","Nausea events","rao@ohdsi.org","Pending","","Nausea condition record of any type successive records with > 30 day gap are considered independent episodes","#usedInStudy, #LEGEND, #Hypertension, #legendHypertension",1,"'Marc Suchard','Martijn Schuemie','Harlan Krumholz','Seng Chan You','RuiJun Chun','Nicole Pratt','Christian Reich','Jon Duke','David Madigan','George Hripcsak','Patrick Ryan'","0000-0001-9818-479X', '0000-0002-0817-5361', '0000-0003-2046-127X','','','0000-0001-8730-8910', '','','','',''","'OHDSI'","","","436093","","2023-09-20","2023-09-20",,"",,0,,,"ERA",30,"fixed duration relative to initial event","StartDate",1,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +892,"[P] Stroke","Stroke","Stroke (ischemic or hemorrhagic) events","rao@ohdsi.org","Pending","","Stroke (ischemic or hemorrhagic) condition record during an inpatient or ER visit successive records with > 180 day gap are considered independent episodes","#usedInStudy, #LEGEND, #Hypertension, #legendHypertension",1,"'Marc Suchard','Martijn Schuemie','Harlan Krumholz','Seng Chan You','RuiJun Chun','Nicole Pratt','Christian Reich','Jon Duke','David Madigan','George Hripcsak','Patrick Ryan'","0000-0001-9818-479X', '0000-0002-0817-5361', '0000-0003-2046-127X','','','0000-0001-8730-8910', '','','','',''","'OHDSI'","","","443454","","2023-09-20","2023-09-20",,"",,0,,,"ERA",180,"fixed duration relative to initial event","StartDate",7,0,"All",TRUE,"All","All",1,1,"ConditionOccurrence",0,0,2,1,0,0,0,1,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +893,"[P] Vertigo","Vertigo","Persons with vertigo","rao@ohdsi.org","Pending","","The first condition record of vertigo","#usedInStudy, #LEGEND, #Hypertension, #legendHypertension",1,"'Marc Suchard','Martijn Schuemie','Harlan Krumholz','Seng Chan You','RuiJun Chun','Nicole Pratt','Christian Reich','Jon Duke','David Madigan','George Hripcsak','Patrick Ryan'","0000-0001-9818-479X', '0000-0002-0817-5361', '0000-0003-2046-127X','','','0000-0001-8730-8910', '','','','',''","'OHDSI'","","","4192640, 199074","https://forums.ohdsi.org/t/17848","2023-09-20","2023-09-20",,"",,0,,,"ERA",0,"end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,0,,,,,,,,1,,,,,,,,,,,,,,,,,,,, +894,"[P] Abdominal pain","Abdominal pain","Abdominal pain events","rao@ohdsi.org","Pending","","Abdominal pain condition record of any type successive records with > 90 day gap are considered independent episodes","#usedInStudy, #LEGEND, #Hypertension, #legendHypertension, #Symptoms",1,"'Marc Suchard','Martijn Schuemie','Harlan Krumholz','Seng Chan You','RuiJun Chun','Nicole Pratt','Christian Reich','Jon Duke','David Madigan','George Hripcsak','Patrick Ryan'","0000-0001-9818-479X', '0000-0002-0817-5361', '0000-0003-2046-127X','','','0000-0001-8730-8910', '','','','',''","'OHDSI'","","","4192640, 199074, 4340961","https://forums.ohdsi.org/t/17848","2023-09-20","2023-09-24",,"",,0,,,"ERA",90,"fixed duration relative to initial event","StartDate",1,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +895,"[P] Abnormal weight gain","Abnormal weight gain","Abnormal weight gain events","rao@ohdsi.org","Pending","","Abnormal weight gain record of any type successive records with > 90 day gap are considered independent episodes","#usedInStudy, #LEGEND, #Hypertension, #legendHypertension, #legendDiabetes, #Symptoms",1,"'Marc Suchard','Martijn Schuemie','Harlan Krumholz','Seng Chan You','RuiJun Chun','Nicole Pratt','Christian Reich','Jon Duke','David Madigan','George Hripcsak','Patrick Ryan'","0000-0001-9818-479X', '0000-0002-0817-5361', '0000-0003-2046-127X','','','0000-0001-8730-8910', '','','','',''","","","","377091, 380378, 4029498","https://forums.ohdsi.org/t/17569","2023-09-20","2023-09-24",,"",,0,,,"ERA",90,"fixed duration relative to initial event","StartDate",1,0,"All",FALSE,"All","All",1,1,"Observation",0,0,1,0,0,0,0,0,0,,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,, +896,"[P] Abnormal weight loss","Abnormal weight loss","Abnormal weight loss events","rao@ohdsi.org","Pending","","Abnormal weight loss observation record of any type successive records with > 90 day gap are considered independent episodes","#usedInStudy, #LEGEND, #Hypertension, #legendHypertension, #legendDiabetes",1,"'Marc Suchard','Martijn Schuemie','Harlan Krumholz','Seng Chan You','RuiJun Chun','Nicole Pratt','Christian Reich','Jon Duke','David Madigan','George Hripcsak','Patrick Ryan'","0000-0001-9818-479X', '0000-0002-0817-5361', '0000-0003-2046-127X','','','0000-0001-8730-8910', '','','','',''","","","","435928","","2023-09-20","2023-09-28",,"",,0,,,"ERA",90,"fixed duration relative to initial event","StartDate",1,0,"All",FALSE,"All","All",1,1,"Observation",0,0,1,0,0,0,0,0,0,,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,, +898,"[P] Acute renal failure","Acute renal failure","Acute renal failure events","rao@ohdsi.org","Pending","","Acute renal failure condition record during an inpatient or ER visit successive records with >30 day gap are considered independent episodes","#usedInStudy, #LEGEND, #Hypertension, #legendHypertension, #Diabetes, #legendDiabete",1,"'Marc Suchard','Martijn Schuemie','Harlan Krumholz','Seng Chan You','RuiJun Chun','Nicole Pratt','Christian Reich','Jon Duke','David Madigan','George Hripcsak','Patrick Ryan'","0000-0001-9818-479X', '0000-0002-0817-5361', '0000-0003-2046-127X','','','0000-0001-8730-8910', '','','','',''","'OHDSI'","","","374923, 4091559","https://forums.ohdsi.org/t/17788","2023-09-20","2023-09-24",,"",,0,,,"ERA",30,"fixed duration relative to initial event","StartDate",30,0,"All",TRUE,"All","All",1,1,"ConditionOccurrence",0,0,2,1,0,0,0,1,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +900,"[P] Anaphylactoid reaction","Anaphylactoid reaction","Anaphylactoid reaction events","rao@ohdsi.org","Pending","","Anaphylactoid reaction condition record during an inpatient or ER visit successive records with >7 day gap are considered independent episodes","#usedInStudy, #LEGEND, #Hypertension, #legendHypertension",1,"'Marc Suchard','Martijn Schuemie','Harlan Krumholz','Seng Chan You','RuiJun Chun','Nicole Pratt','Christian Reich','Jon Duke','David Madigan','George Hripcsak','Patrick Ryan'","0000-0001-9818-479X', '0000-0002-0817-5361', '0000-0003-2046-127X','','','0000-0001-8730-8910', '','','','',''","","","","441202","https://forums.ohdsi.org/t/16033","2023-09-20","2023-09-20",,"",,0,,,"ERA",7,"fixed duration relative to initial event","StartDate",7,0,"All",TRUE,"All","All",1,1,"ConditionOccurrence",0,0,3,1,0,0,0,1,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +901,"[P] Anemia","Anemia","Persons with anemia","rao@ohdsi.org","Pending","","The first condition record of anemia","#usedInStudy, #LEGEND, #Hypertension, #legendHypertension",1,"'Marc Suchard','Martijn Schuemie','Harlan Krumholz','Seng Chan You','RuiJun Chun','Nicole Pratt','Christian Reich','Jon Duke','David Madigan','George Hripcsak','Patrick Ryan'","0000-0001-9818-479X', '0000-0002-0817-5361', '0000-0003-2046-127X','','','0000-0001-8730-8910', '','','','',''","'OHDSI'","","","441202","https://forums.ohdsi.org/t/18193","2023-09-20","2023-09-20",,"",,0,,,"ERA",0,"end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,0,,,,,,,,1,,,,,,,,,,,,,,,,,,,, +917,"[P] Anxiety","Anxiety","Persons with anxiety","rao@ohdsi.org","Pending","","The first condition record of anxiety, which is followed by another anxiety condition record or a drug used to treat anxiety","#usedInStudy, #LEGEND, #Hypertension, #legendHypertension",1,"'Marc Suchard','Martijn Schuemie','Harlan Krumholz','Seng Chan You','RuiJun Chun','Nicole Pratt','Christian Reich','Jon Duke','David Madigan','George Hripcsak','Patrick Ryan'","0000-0001-9818-479X', '0000-0002-0817-5361', '0000-0003-2046-127X','','','0000-0001-8730-8910', '','','','',''","'OHDSI'","","","4245975","","2023-09-20","2023-09-20",,"",,0,,,"ERA",0,"end of continuous observation",,,0,"First",TRUE,"First","First",1,1,"ConditionOccurrence",0,0,4,1,0,0,0,0,0,1,,0,,,,,,,,1,,,,,,,,,,,,,,,,,,,, +918,"[P] Bradycardia","Bradycardia","Persons with bradycardia","rao@ohdsi.org","Pending","","The first condition record of bradycardia, which is followed by another bradycardia condition record","#usedInStudy, #LEGEND, #Hypertension, #legendHypertension",1,"'Marc Suchard','Martijn Schuemie','Harlan Krumholz','Seng Chan You','RuiJun Chun','Nicole Pratt','Christian Reich','Jon Duke','David Madigan','George Hripcsak','Patrick Ryan'","0000-0001-9818-479X', '0000-0002-0817-5361', '0000-0003-2046-127X','','','0000-0001-8730-8910', '','','','',''","'OHDSI'","","","4245975","","2023-09-20","2023-09-20",,"",,0,,,"ERA",0,"end of continuous observation",,,0,"First",TRUE,"First","First",1,1,"ConditionOccurrence",0,0,1,1,0,0,0,0,0,1,,0,,,,,,,,1,,,,,,,,,,,,,,,,,,,, +919,"[P] Cardiac arrhythmia","Cardiac arrhythmia","Person with cardiac arrhythmia","rao@ohdsi.org","Pending","","The first condition record of cardiac arrhythmia, which is followed by another cardiac arrhythmia condition record, at least two drug records for a drug used to treat arrhythmias, or a procedure to treat arrhythmias","#usedInStudy, #LEGEND, #Hypertension, #legendHypertension",1,"'Marc Suchard','Martijn Schuemie','Harlan Krumholz','Seng Chan You','RuiJun Chun','Nicole Pratt','Christian Reich','Jon Duke','David Madigan','George Hripcsak','Patrick Ryan'","0000-0001-9818-479X', '0000-0002-0817-5361', '0000-0003-2046-127X','','','0000-0001-8730-8910', '','','','',''","'OHDSI'","","","197320","","2023-09-20","2023-09-20",,"",,0,,,"ERA",0,"end of continuous observation",,,0,"First",TRUE,"First","First",1,1,"ConditionOccurrence",0,0,3,1,0,0,0,0,0,1,,0,,,,,,,,1,,,,,,,,,,,,,,,,,,,, +920,"[P] Cardiovascular disease","Cardiovascular disease","Total cardiovascular disease events (ischemic stroke, hemorrhagic stroke, heart failure, acute myocardial infarction or sudden cardiac death)","rao@ohdsi.org","Pending","","A condition record of ischemic stroke, hemorrhagic stroke, heart failure, acute myocardial infarction or sudden cardiac death during an inpatient or ER visit successive records with > 180 day gap are considered independent episodes","#usedInStudy, #LEGEND, #Hypertension, #legendHypertension",1,"'Marc Suchard','Martijn Schuemie','Harlan Krumholz','Seng Chan You','RuiJun Chun','Nicole Pratt','Christian Reich','Jon Duke','David Madigan','George Hripcsak','Patrick Ryan'","0000-0001-9818-479X', '0000-0002-0817-5361', '0000-0003-2046-127X','','','0000-0001-8730-8910', '','','','',''","'OHDSI'","","","197320","","2023-09-20","2023-09-20",,"",,0,,,"ERA",180,"fixed duration relative to initial event","StartDate",7,0,"All",TRUE,"All","All",5,1,"ConditionOccurrence",0,0,6,1,0,0,0,1,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +921,"[P] Cardiovascular-related mortality","Cardiovascular-related mortality","Cardiovascular-related mortality","rao@ohdsi.org","Pending","","Death record with at least 1 cardiovascular-related condition record (myocardial infarction, ischemic stroke, intracranial hemorrhage, sudden cardiac death, hospitalization for heart failure) in 30 days prior to death","#usedInStudy, #LEGEND, #Hypertension, #legendHypertension",1,"'Marc Suchard','Martijn Schuemie','Harlan Krumholz','Seng Chan You','RuiJun Chun','Nicole Pratt','Christian Reich','Jon Duke','David Madigan','George Hripcsak','Patrick Ryan'","0000-0001-9818-479X', '0000-0002-0817-5361', '0000-0003-2046-127X','','','0000-0001-8730-8910', '','','','',''","'OHDSI'","","","197320","https://forums.ohdsi.org/t/16067","2023-09-20","2023-09-20",,"",,0,,,"ERA",0,"end of continuous observation",,,0,"First",TRUE,"First","First",1,1,"Death",0,0,6,1,0,0,0,1,0,,,0,,,1,,,,,,,,,,,,,,,,,,,,,,,,, +922,"[P] Chest pain or angina","Chest pain or angina","Persons with chest pain or angina","rao@ohdsi.org","Pending","","The first condition record of chest pain or angina","#usedInStudy, #LEGEND, #Hypertension, #legendHypertension",1,"'Marc Suchard','Martijn Schuemie','Harlan Krumholz','Seng Chan You','RuiJun Chun','Nicole Pratt','Christian Reich','Jon Duke','David Madigan','George Hripcsak','Patrick Ryan'","0000-0001-9818-479X', '0000-0002-0817-5361', '0000-0003-2046-127X','','','0000-0001-8730-8910', '','','','',''","'OHDSI'","","","435503, 439777, 441269","https://forums.ohdsi.org/t/17856","2023-09-20","2023-09-20",,"",,0,,,"ERA",0,"end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,0,,,,,,,,1,,,,,,,,,,,,,,,,,,,, +923,"[P] Kidney disease","Kidney disease","Persons with chronic kidney disease","rao@ohdsi.org","Pending","","The first condition record of chronic kidney disease, which is followed by either another chronic kidney disease condition record or a dialysis procedure or observation","#usedInStudy, #LEGEND, #Hypertension, #legendHypertension",1,"'Marc Suchard','Martijn Schuemie','Harlan Krumholz','Seng Chan You','RuiJun Chun','Nicole Pratt','Christian Reich','Jon Duke','David Madigan','George Hripcsak','Patrick Ryan'","0000-0001-9818-479X', '0000-0002-0817-5361', '0000-0003-2046-127X','','','0000-0001-8730-8910', '','','','',''","'OHDSI'","","","435503, 439777, 441269","https://forums.ohdsi.org/t/17856","2023-09-20","2023-09-20",,"",,0,,,"ERA",0,"end of continuous observation",,,0,"First",TRUE,"First","First",1,1,"ConditionOccurrence",0,0,2,1,0,0,0,0,0,1,,0,,,,,,,,1,,,,,,,,,,,,,,,,,,,, +924,"[P] Coronary heart disease","Coronary heart disease","Coronary heart disease events (acute myocardial infarction or sudden cardiac death)","rao@ohdsi.org","Pending","","A condition record of acute myocardial infarction or sudden cardiac death during an inpatient or ER visit successive records with > 180 day gap are considered independent episodes","#usedInStudy, #LEGEND, #Hypertension, #legendHypertension",1,"'Marc Suchard','Martijn Schuemie','Harlan Krumholz','Seng Chan You','RuiJun Chun','Nicole Pratt','Christian Reich','Jon Duke','David Madigan','George Hripcsak','Patrick Ryan'","0000-0001-9818-479X', '0000-0002-0817-5361', '0000-0003-2046-127X','','','0000-0001-8730-8910', '','','','',''","'OHDSI'","","","437579, 4103295","","2023-09-20","2023-09-20",,"",,0,,,"ERA",180,"fixed duration relative to initial event","StartDate",7,0,"All",TRUE,"All","All",2,1,"ConditionOccurrence",0,0,3,1,0,0,0,1,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +925,"[P] Cough","Cough","Cough events","rao@ohdsi.org","Pending","","Cough condition record of any type successive records with > 90 day gap are considered independent episodes","#usedInStudy, #LEGEND, #Hypertension, #legendHypertension, #respiratory, #lung",1,"'Marc Suchard','Martijn Schuemie','Harlan Krumholz','Seng Chan You','RuiJun Chun','Nicole Pratt','Christian Reich','Jon Duke','David Madigan','George Hripcsak','Patrick Ryan'","0000-0001-9818-479X', '0000-0002-0817-5361', '0000-0003-2046-127X','','','0000-0001-8730-8910', '','','','',''","'OHDSI'","","","321042, 437579, 4103295","","2023-09-20","2023-09-28",,"",,0,,,"ERA",90,"fixed duration relative to initial event","StartDate",1,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +927,"[P] Dementia2","Dementia2","Persons with dementia","rao@ohdsi.org","Pending","","The first condition record of dementia","#usedInStudy, #LEGEND, #Hypertension, #legendHypertension",1,"'Marc Suchard','Martijn Schuemie','Harlan Krumholz','Seng Chan You','RuiJun Chun','Nicole Pratt','Christian Reich','Jon Duke','David Madigan','George Hripcsak','Patrick Ryan'","0000-0001-9818-479X', '0000-0002-0817-5361', '0000-0003-2046-127X','','','0000-0001-8730-8910', '','','','',''","'OHDSI'","","","4182210","","2023-09-20","2023-10-03",,"",,0,,,"ERA",0,"end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,0,,,,,,,,1,,,,,,,,,,,,,,,,,,,, +928,"[P] Depression2","Depression2","Persons with depression","rao@ohdsi.org","Pending","","The first condition record of depression, which is followed by another depression condition record, at least two drugs used to treat depression without another indication, or two psychotherapy procedures","#usedInStudy, #LEGEND, #Hypertension, #legendHypertension",1,"'Marc Suchard','Martijn Schuemie','Harlan Krumholz','Seng Chan You','RuiJun Chun','Nicole Pratt','Christian Reich','Jon Duke','David Madigan','George Hripcsak','Patrick Ryan'","0000-0001-9818-479X', '0000-0002-0817-5361', '0000-0003-2046-127X','','','0000-0001-8730-8910', '','','','',''","'OHDSI'","","","377556","","2023-09-20","2023-09-20",,"",,0,,,"ERA",0,"end of continuous observation",,,0,"First",TRUE,"First","First",1,1,"ConditionOccurrence",0,0,4,1,0,0,0,0,0,1,,0,,,,,,,,1,,,,,,,,,,,,,,,,,,,, +929,"[P] Edema events","Edema events","Edema events","rao@ohdsi.org","Pending","","Edema condition record of any type successive records with > 180 day gap are considered independent episodes","#usedInStudy, #LEGEND, #Hypertension, #legendHypertension, #Symptoms",1,"'Marc Suchard','Martijn Schuemie','Harlan Krumholz','Seng Chan You','RuiJun Chun','Nicole Pratt','Christian Reich','Jon Duke','David Madigan','George Hripcsak','Patrick Ryan'","0000-0001-9818-479X', '0000-0002-0817-5361', '0000-0003-2046-127X','','','0000-0001-8730-8910', '','','','',''","'OHDSI'","","","374053, 377889","","2023-09-20","2023-10-03",,"",,0,,,"ERA",180,"fixed duration relative to initial event","StartDate",1,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +930,"[P] End stage renal disease2","End stage renal disease2","Persons with end stage renal disease","rao@ohdsi.org","Pending","","The first condition record of end stage renal disease, which is followed by either another end stage renal disease condition record or a dialysis procedure or observation within 90 days","#usedInStudy, #LEGEND, #Hypertension, #legendHypertension",1,"'Marc Suchard','Martijn Schuemie','Harlan Krumholz','Seng Chan You','RuiJun Chun','Nicole Pratt','Christian Reich','Jon Duke','David Madigan','George Hripcsak','Patrick Ryan'","0000-0001-9818-479X', '0000-0002-0817-5361', '0000-0003-2046-127X','','','0000-0001-8730-8910', '','','','',''","'OHDSI'","","","138525, 194133","https://forums.ohdsi.org/t/17895","2023-09-20","2023-09-20",,"",,0,,,"ERA",0,"end of continuous observation",,,0,"All",TRUE,"First","First",1,1,"ConditionOccurrence",0,0,2,1,0,0,0,0,0,1,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,, +931,"[P] Fall2","Fall2","Fall events","rao@ohdsi.org","Pending","","Fall condition record of any type successive records with > 180 day gap are considered independent episodes","#usedInStudy, #LEGEND, #Hypertension, #legendHypertension",1,"'Marc Suchard','Martijn Schuemie','Harlan Krumholz','Seng Chan You','RuiJun Chun','Nicole Pratt','Christian Reich','Jon Duke','David Madigan','George Hripcsak','Patrick Ryan'","0000-0001-9818-479X', '0000-0002-0817-5361', '0000-0003-2046-127X','','','0000-0001-8730-8910', '','','','',''","'OHDSI'","","","134736, 194133","https://forums.ohdsi.org/t/17895","2023-09-20","2023-09-20",,"",,0,,,"ERA",180,"fixed duration relative to initial event","StartDate",1,0,"All",FALSE,"All","All",1,1,"Observation",0,0,1,0,0,0,0,0,0,,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,, +932,"[P] Gout2","Gout2","Persons with gout","rao@ohdsi.org","Pending","","The first condition record of gout","#usedInStudy, #LEGEND, #Hypertension, #legendHypertension",1,"'Marc Suchard','Martijn Schuemie','Harlan Krumholz','Seng Chan You','RuiJun Chun','Nicole Pratt','Christian Reich','Jon Duke','David Madigan','George Hripcsak','Patrick Ryan'","0000-0001-9818-479X', '0000-0002-0817-5361', '0000-0003-2046-127X','','','0000-0001-8730-8910', '','','','',''","'OHDSI'","","","200219","https://forums.ohdsi.org/t/17895","2023-09-20","2023-09-20",,"",,0,,,"ERA",0,"end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,0,,,,,,,,1,,,,,,,,,,,,,,,,,,,, +933,"[P] Headache2","Headache2","Headache events","rao@ohdsi.org","Pending","","Headache condition record of any type successive records with > 30 day gap are considered independent episodes","#usedInStudy, #LEGEND, #Hypertension, #legendHypertension, #Symptoms",1,"'Marc Suchard','Martijn Schuemie','Harlan Krumholz','Seng Chan You','RuiJun Chun','Nicole Pratt','Christian Reich','Jon Duke','David Madigan','George Hripcsak','Patrick Ryan'","0000-0001-9818-479X', '0000-0002-0817-5361', '0000-0003-2046-127X','','','0000-0001-8730-8910', '','','','',''","'OHDSI'","","","197381, 4306292","https://forums.ohdsi.org/t/17895","2023-09-20","2023-09-24",,"",,0,,,"ERA",30,"fixed duration relative to initial event","StartDate",1,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +934,"[P] Heart failure2","Heart failure2","Persons with heart failure","rao@ohdsi.org","Pending","","The first condition record of heart failure, which is followed by at least 1 heart failure condition record in the following year","#usedInStudy, #LEGEND, #Hypertension, #legendHypertension",1,"'Marc Suchard','Martijn Schuemie','Harlan Krumholz','Seng Chan You','RuiJun Chun','Nicole Pratt','Christian Reich','Jon Duke','David Madigan','George Hripcsak','Patrick Ryan'","0000-0001-9818-479X', '0000-0002-0817-5361', '0000-0003-2046-127X','','','0000-0001-8730-8910', '','','','',''","'OHDSI'","","","78232, 80180","https://forums.ohdsi.org/t/17895","2023-09-20","2023-09-20",,"",,0,,,"ERA",0,"fixed duration relative to initial event","StartDate",1,0,"All",TRUE,"First","First",1,1,"ConditionOccurrence",0,0,1,1,0,0,0,0,0,1,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,, +935,"[P] Hemorrhagic stroke2","Hemorrhagic stroke2","Hemorrhagic stroke (intracerebral bleeding) events","rao@ohdsi.org","Pending","","Intracranial, cerebral or subarachnoid hemorrhage condition record during an inpatient or ER visit successive records with > 180 day gap are considered independent episodes","#usedInStudy, #LEGEND, #Hypertension, #legendHypertension",1,"'Marc Suchard','Martijn Schuemie','Harlan Krumholz','Seng Chan You','RuiJun Chun','Nicole Pratt','Christian Reich','Jon Duke','David Madigan','George Hripcsak','Patrick Ryan'","0000-0001-9818-479X', '0000-0002-0817-5361', '0000-0003-2046-127X','','','0000-0001-8730-8910', '','','','',''","'OHDSI'","","","194997","","2023-09-20","2023-09-20",,"",,0,,,"ERA",180,"fixed duration relative to initial event","StartDate",7,0,"All",TRUE,"All","All",1,1,"ConditionOccurrence",0,0,2,1,0,0,0,1,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +936,"[P] Hepatic failure2","Hepatic failure2","Persons with hepatic failure","rao@ohdsi.org","Pending","","The first condition record of hepatic failure, necrosis, or coma","#usedInStudy, #LEGEND, #Hypertension, #legendHypertension",1,"'Marc Suchard','Martijn Schuemie','Harlan Krumholz','Seng Chan You','RuiJun Chun','Nicole Pratt','Christian Reich','Jon Duke','David Madigan','George Hripcsak','Patrick Ryan'","0000-0001-9818-479X', '0000-0002-0817-5361', '0000-0003-2046-127X','','','0000-0001-8730-8910', '','','','',''","'OHDSI'","","","320116, 4138837","","2023-09-20","2023-09-20",,"",,0,,,"ERA",0,"end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,, +938,"[P] Hospitalization with heart failure","Hospitalization with heart failure","Hospitalization with heart failure events","rao@ohdsi.org","Pending","","Inpatient or ER visits with heart failure condition record all qualifying inpatient visits occurring > 7 days apart are considered independent episodes","#usedInStudy, #LEGEND, #Hypertension, #legendHypertension",1,"'Marc Suchard','Martijn Schuemie','Harlan Krumholz','Seng Chan You','RuiJun Chun','Nicole Pratt','Christian Reich','Jon Duke','David Madigan','George Hripcsak','Patrick Ryan'","0000-0001-9818-479X', '0000-0002-0817-5361', '0000-0003-2046-127X','','','0000-0001-8730-8910', '','','','',''","'OHDSI'","Evan Minty","","79908, 138965, 139803, 380995, 443904","https://forums.ohdsi.org/t/17769","2023-09-20","2023-09-20",,"",,0,,,"ERA",7,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"VisitOccurrence",0,0,2,1,0,0,0,0,0,,,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,, +939,"[P] Hospitalization with preinfarction syndrome","Hospitalization with preinfarction syndrome","Hospitalization with preinfarction syndrome events","rao@ohdsi.org","Pending","","Inpatient or ER visits with preinfarction syndrome condition record all qualifying inpatient visits occurring > 7 days apart are considered independent episodes","#usedInStudy, #LEGEND, #Hypertension, #legendHypertension",1,"'Marc Suchard','Martijn Schuemie','Harlan Krumholz','Seng Chan You','RuiJun Chun','Nicole Pratt','Christian Reich','Jon Duke','David Madigan','George Hripcsak','Patrick Ryan'","0000-0001-9818-479X', '0000-0002-0817-5361', '0000-0003-2046-127X','','','0000-0001-8730-8910', '','','','',''","","","","201820, 201826","https://forums.ohdsi.org/t/15764","2023-09-20","2023-09-20",,"",,0,,,"ERA",7,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"VisitOccurrence",0,0,2,1,0,0,0,0,0,,,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,, +940,"[P] Hyperkalemia","Hyperkalemia","Hyperkalemia events","rao@ohdsi.org","Pending","","Condition record for hyperkalemia or potassium measurements > 5.6 mmol/L successive records with >90 day gap are considered independent episodes","#usedInStudy, #LEGEND, #Hypertension, #legendHypertension, #Diabetes, #legendDiabetes",1,"'Marc Suchard','Martijn Schuemie','Harlan Krumholz','Seng Chan You','RuiJun Chun','Nicole Pratt','Christian Reich','Jon Duke','David Madigan','George Hripcsak','Patrick Ryan'","0000-0001-9818-479X', '0000-0002-0817-5361', '0000-0003-2046-127X','','','0000-0001-8730-8910', '','','','',''","'OHDSI'","","","313217, 44784217","","2023-09-20","2023-09-24",,"",,0,,,"ERA",90,"fixed duration relative to initial event","StartDate",1,0,"All",FALSE,"All","All",2,2,"ConditionOccurrence, Measurement",0,0,2,0,0,0,0,0,0,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +941,"[P] Hypokalemia","Hypokalemia","Hypokalemia events","rao@ohdsi.org","Pending","","Hypokalemia condition record of any type successive records with > 90 day gap are considered independent episodes","#usedInStudy, #LEGEND, #Hypertension, #legendHypertension",1,"'Marc Suchard','Martijn Schuemie','Harlan Krumholz','Seng Chan You','RuiJun Chun','Nicole Pratt','Christian Reich','Jon Duke','David Madigan','George Hripcsak','Patrick Ryan'","0000-0001-9818-479X', '0000-0002-0817-5361', '0000-0003-2046-127X','','','0000-0001-8730-8910', '','','','',''","'OHDSI'","","","138384, 140673","","2023-09-20","2023-09-20",,"",,0,,,"ERA",90,"fixed duration relative to initial event","StartDate",1,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +942,"[P] Hypomagnesemia","Hypomagnesemia","Hypomagnesemia events","rao@ohdsi.org","Pending","","Hypomagnesemia condition record of any type successive records with > 90 day gap are considered independent episodes","#usedInStudy, #LEGEND, #Hypertension, #legendHypertension",1,"'Marc Suchard','Martijn Schuemie','Harlan Krumholz','Seng Chan You','RuiJun Chun','Nicole Pratt','Christian Reich','Jon Duke','David Madigan','George Hripcsak','Patrick Ryan'","0000-0001-9818-479X', '0000-0002-0817-5361', '0000-0003-2046-127X','','','0000-0001-8730-8910', '','','','',''","'OHDSI'","","","78474, 80767, 137809","","2023-09-20","2023-09-20",,"",,0,,,"ERA",90,"fixed duration relative to initial event","StartDate",1,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +943,"[P] Impotence","Impotence","Persons with impotence","rao@ohdsi.org","Pending","","The first condition record of impotence","#usedInStudy, #LEGEND, #Hypertension, #legendHypertension",1,"'Marc Suchard','Martijn Schuemie','Harlan Krumholz','Seng Chan You','RuiJun Chun','Nicole Pratt','Christian Reich','Jon Duke','David Madigan','George Hripcsak','Patrick Ryan'","0000-0001-9818-479X', '0000-0002-0817-5361', '0000-0003-2046-127X','','','0000-0001-8730-8910', '','','','',''","'OHDSI'","","","4245975","","2023-09-20","2023-09-20",,"",,0,,,"ERA",0,"end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,0,,,,,,,,1,,,,,,,,,,,,,,,,,,,, +944,"[P] Ischemic stroke","Ischemic stroke","Ischemic stroke events","rao@ohdsi.org","Pending","","Ischemic stroke condition record during an inpatient or ER visit successive records with > 180 day gap are considered independent episodes","#usedInStudy, #LEGEND, #Hypertension, #legendHypertension",1,"'Marc Suchard','Martijn Schuemie','Harlan Krumholz','Seng Chan You','RuiJun Chun','Nicole Pratt','Christian Reich','Jon Duke','David Madigan','George Hripcsak','Patrick Ryan'","0000-0001-9818-479X', '0000-0002-0817-5361', '0000-0003-2046-127X','','','0000-0001-8730-8910', '','','','',''","'OHDSI'","","","194990","","2023-09-20","2023-09-20",,"",,0,,,"ERA",180,"fixed duration relative to initial event","StartDate",7,0,"All",TRUE,"All","All",1,1,"ConditionOccurrence",0,0,2,1,0,0,0,1,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +945,"[P] Malignant neoplasm","Malignant neoplasm","Persons with a malignant neoplasm other than non-melanoma skin cancer","rao@ohdsi.org","Pending","","The first condition record of a malignant neoplasm, with at least 2 conditions records for one of 17 leading cancer (breast, prostate, lung, colorectal, bladder, ovary, uterus, thyroid, kidney, brain, pancreas, liver, multiple myeloma, leukemia, melanoma, myelodysplastic syndrome)","#usedInStudy, #LEGEND, #Hypertension, #legendHypertension",1,"'Marc Suchard','Martijn Schuemie','Harlan Krumholz','Seng Chan You','RuiJun Chun','Nicole Pratt','Christian Reich','Jon Duke','David Madigan','George Hripcsak','Patrick Ryan'","0000-0001-9818-479X', '0000-0002-0817-5361', '0000-0003-2046-127X','','','0000-0001-8730-8910', '','','','',''","'OHDSI'","","","194990","","2023-09-20","2023-09-20",,"",,0,,,"ERA",0,"end of continuous observation",,,0,"First",TRUE,"First","First",1,1,"ConditionOccurrence",0,0,18,1,0,0,0,0,0,1,,0,,,,,,,,1,,,,,,,,,,,,,,,,,,,, +946,"[P] Measured renal dysfunction","Measured renal dysfunction","Persons with measured renal dysfunction","rao@ohdsi.org","Pending","","The first creatinine measurement with value > 3 mg/dL","#usedInStudy, #LEGEND, #Hypertension, #legendHypertension",1,"'Marc Suchard','Martijn Schuemie','Harlan Krumholz','Seng Chan You','RuiJun Chun','Nicole Pratt','Christian Reich','Jon Duke','David Madigan','George Hripcsak','Patrick Ryan'","0000-0001-9818-479X', '0000-0002-0817-5361', '0000-0003-2046-127X','','','0000-0001-8730-8910', '','','','',''","'OHDSI'","","","4245975","","2023-09-20","2023-09-20",,"",,0,,,"ERA",0,"fixed duration relative to initial event","StartDate",1,0,"First",FALSE,"All","First",1,1,"Measurement",0,0,1,0,0,0,0,0,0,,1,0,,,,,,,,,,,,,,,,,,,,,,,,,,,, +947,"[P] Neutropenia or agranulocytosis","Neutropenia or agranulocytosis","Persons with neutropenia or agranulocytosis","rao@ohdsi.org","Pending","","The first condition record of neutropenia or agranulocytosis","#usedInStudy, #LEGEND, #Hypertension, #legendHypertension",1,"'Marc Suchard','Martijn Schuemie','Harlan Krumholz','Seng Chan You','RuiJun Chun','Nicole Pratt','Christian Reich','Jon Duke','David Madigan','George Hripcsak','Patrick Ryan'","0000-0001-9818-479X', '0000-0002-0817-5361', '0000-0003-2046-127X','','','0000-0001-8730-8910', '','','','',''","'OHDSI'","Evan Minty","","79908, 139803, 443904","https://forums.ohdsi.org/t/17769","2023-09-20","2023-09-20",,"",,0,,,"ERA",0,"end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,0,,,,,,,,1,,,,,,,,,,,,,,,,,,,, +948,"[P] Rash","Rash","Rash events","rao@ohdsi.org","Pending","","Rash condition record of any type successive records with > 90 day gap are considered independent episodes","#usedInStudy, #LEGEND, #Hypertension, #legendHypertension, #Symptoms",1,"'Marc Suchard','Martijn Schuemie','Harlan Krumholz','Seng Chan You','RuiJun Chun','Nicole Pratt','Christian Reich','Jon Duke','David Madigan','George Hripcsak','Patrick Ryan'","0000-0001-9818-479X', '0000-0002-0817-5361', '0000-0003-2046-127X','','','0000-0001-8730-8910', '','','','',''","'OHDSI'","","","79864, 437038","","2023-09-20","2023-09-24",,"",,0,,,"ERA",90,"fixed duration relative to initial event","StartDate",1,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +950,"[P] Rhabdomyolysis2","Rhabdomyolysis2","Rhabdomyolysis events","rao@ohdsi.org","Pending","","Rhabdomyolysis condition record or muscle disorder condition record with creatine measurement 5*ULN during an inpatient or ER visit successive records with >90 day gap are considered independent episodes","#usedInStudy, #LEGEND, #Hypertension, #legendHypertension",1,"'Marc Suchard','Martijn Schuemie','Harlan Krumholz','Seng Chan You','RuiJun Chun','Nicole Pratt','Christian Reich','Jon Duke','David Madigan','George Hripcsak','Patrick Ryan'","0000-0001-9818-479X', '0000-0002-0817-5361', '0000-0003-2046-127X','','','0000-0001-8730-8910', '','','','',''","'OHDSI'","","","192671","","2023-09-20","2023-09-20",,"",,0,,,"ERA",90,"fixed duration relative to initial event","StartDate",1,0,"All",TRUE,"All","All",2,1,"ConditionOccurrence",0,0,4,1,0,0,0,1,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +953,"[P] Sudden cardiac death in inpatient","Sudden cardiac death in inpatient","Sudden cardiac death events in inpatient","rao@ohdsi.org","Pending","","Sudden cardiac death condition record during an inpatient or ER visit successive records with > 180 day gap are considered independent episodes","#usedInStudy, #LEGEND, #Hypertension, #legendHypertension",1,"'Marc Suchard','Martijn Schuemie','Harlan Krumholz','Seng Chan You','RuiJun Chun','Nicole Pratt','Christian Reich','Jon Duke','David Madigan','George Hripcsak','Patrick Ryan'","0000-0001-9818-479X', '0000-0002-0817-5361', '0000-0003-2046-127X','','','0000-0001-8730-8910', '','','','',''","'OHDSI'","","","197607, 4302555","","2023-09-20","2023-09-24",,"",,0,,,"ERA",180,"fixed duration relative to initial event","StartDate",7,0,"All",TRUE,"All","All",1,1,"ConditionOccurrence",0,0,2,1,0,0,0,1,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +954,"[P] Syncope","Syncope","Syncope events","rao@ohdsi.org","Pending","","Syncope condition record of any type successive records with > 180 day gap are considered independent episodes","#usedInStudy, #LEGEND, #Hypertension, #legendHypertension",1,"'Marc Suchard','Martijn Schuemie','Harlan Krumholz','Seng Chan You','RuiJun Chun','Nicole Pratt','Christian Reich','Jon Duke','David Madigan','George Hripcsak','Patrick Ryan'","0000-0001-9818-479X', '0000-0002-0817-5361', '0000-0003-2046-127X','','','0000-0001-8730-8910', '','','','',''","","","","377252","https://forums.ohdsi.org/t/18236","2023-09-20","2023-09-20",,"",,0,,,"ERA",180,"fixed duration relative to initial event","StartDate",1,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +955,"[P] Thrombocytopenia","Thrombocytopenia","Persons with thrombocytopenia","rao@ohdsi.org","Pending","","The first condition record of thrombocytopenia","#usedInStudy, #LEGEND, #Hypertension, #legendHypertension",1,"'Marc Suchard','Martijn Schuemie','Harlan Krumholz','Seng Chan You','RuiJun Chun','Nicole Pratt','Christian Reich','Jon Duke','David Madigan','George Hripcsak','Patrick Ryan'","0000-0001-9818-479X', '0000-0002-0817-5361', '0000-0003-2046-127X','','','0000-0001-8730-8910', '','','','',''","","","","376938","https://forums.ohdsi.org/t/18236","2023-09-20","2023-09-20",,"",,0,,,"ERA",0,"end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,0,,,,,,,,1,,,,,,,,,,,,,,,,,,,, +956,"[P] Transient ischemic attack","Transient ischemic attack","Transient ischemic attack events","rao@ohdsi.org","Pending","","Transient ischemic attack condition record during an inpatient or ER visit successive records with > 30 day gap are considered independent episodes","#usedInStudy, #LEGEND, #Hypertension, #legendHypertension",1,"'Marc Suchard','Martijn Schuemie','Harlan Krumholz','Seng Chan You','RuiJun Chun','Nicole Pratt','Christian Reich','Jon Duke','David Madigan','George Hripcsak','Patrick Ryan'","0000-0001-9818-479X', '0000-0002-0817-5361', '0000-0003-2046-127X','','','0000-0001-8730-8910', '','','','',''","","","","4112970","https://forums.ohdsi.org/t/18236","2023-09-20","2023-09-20",,"",,0,,,"ERA",30,"fixed duration relative to initial event","StartDate",7,0,"All",TRUE,"All","All",1,1,"ConditionOccurrence",0,0,2,1,0,0,0,1,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +957,"[P] Type 2 diabetes mellitus","Type 2 diabetes mellitus","Persons with type 2 diabetes mellitus","rao@ohdsi.org","Pending","","The first condition record of Type 2 Diabetes Mellitus, which is followed by another Type 2 Diabetes Mellitus condition record, at least 2 drugs used to treat Type 2 diabetes, or at least 2 HbA1c measurements with value > 6.5%","#usedInStudy, #LEGEND, #Hypertension, #legendHypertension",1,"'Marc Suchard','Martijn Schuemie','Harlan Krumholz','Seng Chan You','RuiJun Chun','Nicole Pratt','Christian Reich','Jon Duke','David Madigan','George Hripcsak','Patrick Ryan'","0000-0001-9818-479X', '0000-0002-0817-5361', '0000-0003-2046-127X','','','0000-0001-8730-8910', '','','','',''","","","","4216000, 4246137","https://forums.ohdsi.org/t/18236","2023-09-20","2023-09-20",,"",,0,,,"ERA",0,"end of continuous observation",,,0,"First",TRUE,"First","First",1,1,"ConditionOccurrence",0,0,3,1,0,0,0,0,0,1,,0,,,,,,,,1,,,,,,,,,,,,,,,,,,,, +963,"[P] Vomiting","Vomiting","Vomiting events","rao@ohdsi.org","Pending","","Vomiting condition record of any type successive records with > 30 day gap are considered independent episodes","#usedInStudy, #LEGEND, #Hypertension, #legendHypertension",1,"'Marc Suchard','Martijn Schuemie','Harlan Krumholz','Seng Chan You','RuiJun Chun','Nicole Pratt','Christian Reich','Jon Duke','David Madigan','George Hripcsak','Patrick Ryan'","0000-0001-9818-479X', '0000-0002-0817-5361', '0000-0003-2046-127X','','','0000-0001-8730-8910', '','','','',''","'OHDSI'","","","25297, 4226263","https://forums.ohdsi.org/t/17895","2023-09-20","2023-09-20",,"",,0,,,"ERA",30,"fixed duration relative to initial event","StartDate",1,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +964,"[P] Chronic kidney disease","Chronic kidney disease","Persons with chronic kidney disease with 2+ diagnoses across 30d or 2+ dialysis","rao@ohdsi.org","Pending","","Persons with chronic kidney disease with 2+ diagnoses across 30d or 2+ dialysis","#usedInStudy, #LEGEND, #Hypertension, #legendHypertension",1,"'Marc Suchard','Martijn Schuemie','Harlan Krumholz','Seng Chan You','RuiJun Chun','Nicole Pratt','Christian Reich','Jon Duke','David Madigan','George Hripcsak','Patrick Ryan'","0000-0001-9818-479X', '0000-0002-0817-5361', '0000-0003-2046-127X','','','0000-0001-8730-8910', '','','','',''","'OHDSI'","","","314754","https://forums.ohdsi.org/t/17895","2023-09-20","2023-09-20",,"",,0,,,"ERA",0,"end of continuous observation",,,0,"First",TRUE,"First","First",1,1,"ConditionOccurrence",0,0,2,1,0,0,0,0,0,1,,0,,,,,,,,1,,,,,,,,,,,,,,,,,,,, +965,"[P] 3-point MACE","3-point MACE","","rao@ohdsi.org","Pending","","Condition record of acute myocardial infarction, hemorrhagic or ischemic stroke or sudden cardiac death during an inpatient or ER visit","#usedInStudy, #LEGEND, #Diabetes, #legendDiabetes",1,"Rohan Khera','Martijn Schuemie','Yuan Lu','Anna Ostropolets','RuiJun Chun','George Hripcsak','Patrick Ryan','Harlan Krumholz','Marc Suchard'","0000-0001-9467-6199', '0000-0002-0817-5361', '', '0000-0002-0847-6682', '', '','','0000-0003-2046-127X','0000-0001-9818-479X'","'OHDSI'","","","253506, 255848","https://forums.ohdsi.org/t/17895","2023-09-20","2023-09-20",,"",,0,,,"ERA",180,"fixed duration relative to initial event","StartDate",7,0,"All",TRUE,"All","All",4,1,"ConditionOccurrence",0,0,6,1,0,0,0,1,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +967,"[P] 4-point MACE","4-point MACE","","rao@ohdsi.org","Pending","","3-Point MACE $+$ inpatient or ER visit (hospitalization) with heart failure condition record","#usedInStudy, #LEGEND, #Diabetes, #legendDiabetes",1,"Rohan Khera','Martijn Schuemie','Yuan Lu','Anna Ostropolets','RuiJun Chun','George Hripcsak','Patrick Ryan','Harlan Krumholz','Marc Suchard'","0000-0001-9467-6199', '0000-0002-0817-5361', '', '0000-0002-0847-6682', '', '','','0000-0003-2046-127X','0000-0001-9818-479X'","'OHDSI'","","","4023572","https://forums.ohdsi.org/t/17895","2023-09-20","2023-09-20",,"",,0,,,"ERA",180,"fixed duration relative to initial event","StartDate",7,0,"All",TRUE,"All","All",5,1,"ConditionOccurrence",0,0,6,1,0,0,0,1,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +976,"[P] Glycemic control","Glycemic control","","rao@ohdsi.org","Pending","","First hemoglobin A1c measurement with value $\le$ 7\%","#usedInStudy, #LEGEND, #Diabetes, #legendDiabetes",1,"Rohan Khera','Martijn Schuemie','Yuan Lu','Anna Ostropolets','RuiJun Chun','George Hripcsak','Patrick Ryan','Harlan Krumholz','Marc Suchard'","0000-0001-9467-6199', '0000-0002-0817-5361', '', '0000-0002-0847-6682', '', '','','0000-0003-2046-127X','0000-0001-9818-479X'","'OHDSI'","","","317009","","2023-09-20","2023-09-24",,"",,0,,,"ERA",90,"fixed duration relative to initial event","StartDate",1,0,"All",FALSE,"All","All",2,1,"Measurement",0,0,1,0,0,0,0,0,0,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +979,"[P] Hospitalization with heart failure indexed on hospitalization","Hospitalization with heart failure indexed on hospitalization","","rao@ohdsi.org","Pending","","Inpatient or ER visit with heart failure condition record","#usedInStudy, #LEGEND, #Diabetes, #legendDiabetes",1,"Rohan Khera','Martijn Schuemie','Yuan Lu','Anna Ostropolets','RuiJun Chun','George Hripcsak','Patrick Ryan','Harlan Krumholz','Marc Suchard'","0000-0001-9467-6199', '0000-0002-0817-5361', '', '0000-0002-0847-6682', '', '','','0000-0003-2046-127X','0000-0001-9818-479X'","","","","441542, 442077","","2023-09-20","2023-09-24",,"",,0,,,"ERA",7,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"VisitOccurrence",0,0,2,1,0,0,0,0,0,,,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,, +980,"[P] Revascularization","Revascularization","Coronary Vessel Revascularization","rao@ohdsi.org","Pending","","Procedure record of percutaneous coronary intervention or coronary artery bypass grafting during an inpatient or ER visit","#usedInStudy, #LEGEND, #Diabetes, #legendDiabetes",1,"Rohan Khera','Martijn Schuemie','Yuan Lu','Anna Ostropolets','RuiJun Chun','George Hripcsak','Patrick Ryan','Harlan Krumholz','Marc Suchard'","0000-0001-9467-6199', '0000-0002-0817-5361', '', '0000-0002-0847-6682', '', '','','0000-0003-2046-127X','0000-0001-9818-479X'","'OHDSI'","","","4283892,4336464",,"2023-09-20","2023-10-04",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",1,1,"All",FALSE,"All","All",2,1,"ProcedureOccurrence",0,0,3,1,0,0,0,1,0,,,1,,,,,,,1,,,,,,,,,,,,,,,,,,,,, +982,"[P] Stroke (ischemic or hemorrhagic) in inpatient","Stroke (ischemic or hemorrhagic) in inpatient","Stroke (ischemic or hemorrhagic) in inpatient","rao@ohdsi.org","Pending","","Condition record of hemorrhagic or ischemic stroke during an inpatient or ER visit","#usedInStudy, #LEGEND, #Diabetes, #legendDiabetes",1,"Rohan Khera','Martijn Schuemie','Yuan Lu','Anna Ostropolets','RuiJun Chun','George Hripcsak','Patrick Ryan','Harlan Krumholz','Marc Suchard'","0000-0001-9467-6199', '0000-0002-0817-5361', '', '0000-0002-0847-6682', '', '','','0000-0003-2046-127X','0000-0001-9818-479X'","'OHDSI'","","","134438, 45766714","https://forums.ohdsi.org/t/17895","2023-09-20","2023-09-24",,"",,0,,,"ERA",180,"fixed duration relative to initial event","StartDate",7,0,"All",TRUE,"All","All",1,1,"ConditionOccurrence",0,0,2,1,0,0,0,1,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +986,"[P] Acute pancreatitis2","Acute pancreatitis2","","rao@ohdsi.org","Pending","","Condition record of acute pancreatitis during an inpatient or ER visit","#usedInStudy, #LEGEND, #Diabetes, #legendDiabetes",1,"Rohan Khera','Martijn Schuemie','Yuan Lu','Anna Ostropolets','RuiJun Chun','George Hripcsak','Patrick Ryan','Harlan Krumholz','Marc Suchard'","0000-0001-9467-6199', '0000-0002-0817-5361', '', '0000-0002-0847-6682', '', '','','0000-0003-2046-127X','0000-0001-9818-479X'","'OHDSI'","","","","","2023-09-20","2023-09-20",,"",,0,,,"ERA",30,"fixed duration relative to initial event","StartDate",7,0,"All",TRUE,"All","All",1,1,"ConditionOccurrence",0,0,2,1,0,0,0,1,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +989,"[P] Bladder cancer","Bladder cancer","Bladder Cancer","rao@ohdsi.org","Pending","","Malignant tumor of urinary bladder condition record of any type limited to earliest event per person","#usedInStudy, #LEGEND, #Diabetes, #legendDiabetes",1,"Rohan Khera','Martijn Schuemie','Yuan Lu','Anna Ostropolets','RuiJun Chun','George Hripcsak','Patrick Ryan','Harlan Krumholz','Marc Suchard'","0000-0001-9467-6199', '0000-0002-0817-5361', '', '0000-0002-0847-6682', '', '','','0000-0003-2046-127X','0000-0001-9818-479X'","'OHDSI'","","","","","2023-09-20","2023-10-05",,"",,0,,,"ERA",0,"end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,0,,,,,,,,1,,,,,,,,,,,,,,,,,,,, +990,"[P] Bone fracture","Bone fracture","Bone Fracture","rao@ohdsi.org","Pending","","Bone fracture condition record of any type successive records with > 90 day gap are considered independent episodes","#usedInStudy, #LEGEND, #Diabetes, #legendDiabetes",1,"Rohan Khera','Martijn Schuemie','Yuan Lu','Anna Ostropolets','RuiJun Chun','George Hripcsak','Patrick Ryan','Harlan Krumholz','Marc Suchard'","0000-0001-9467-6199', '0000-0002-0817-5361', '', '0000-0002-0847-6682', '', '','','0000-0003-2046-127X','0000-0001-9818-479X'","'OHDSI'","","","75053",,"2023-09-20","2023-10-04",,"",,0,,,"ERA",90,"fixed duration relative to initial event","EndDate",1,0,"All",FALSE,"All","All",2,2,"ConditionOccurrence, ProcedureOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,1,,,,,,,,,,,,,,,,,,,,, +991,"[P] Breast cancer Malignant tumor of breast","Breast cancer Malignant tumor of breast","Breast cancer Malignant tumor of breast","rao@ohdsi.org","Pending","","Malignant tumor of breast condition record of any type limited to earliest event per person","#usedInStudy, #LEGEND, #Diabetes, #legendDiabetes",1,"Rohan Khera','Martijn Schuemie','Yuan Lu','Anna Ostropolets','RuiJun Chun','George Hripcsak','Patrick Ryan','Harlan Krumholz','Marc Suchard'","0000-0001-9467-6199', '0000-0002-0817-5361', '', '0000-0002-0847-6682', '', '','','0000-0003-2046-127X','0000-0001-9818-479X'","'OHDSI'","","","197925, 4245614","","2023-09-20","2023-09-24",,"",,0,,,"ERA",0,"end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",365,0,1,0,0,0,0,0,0,1,,0,,,,,,,,1,,,,,,,,,,,,,,,,,,,, +992,"[P] Diabetic ketoacidosis with inpatient or ER visit","Diabetic ketoacidosis with inpatient or ER visit","","rao@ohdsi.org","Pending","","Diabetic ketoacidosis condition record during an inpatient or ER visit","#usedInStudy, #LEGEND, #Diabetes, #legendDiabetes",1,"Rohan Khera','Martijn Schuemie','Yuan Lu','Anna Ostropolets','RuiJun Chun','George Hripcsak','Patrick Ryan','Harlan Krumholz','Marc Suchard'","0000-0001-9467-6199', '0000-0002-0817-5361', '', '0000-0002-0847-6682', '', '','','0000-0003-2046-127X','0000-0001-9818-479X'","'OHDSI'","","","261687","https://forums.ohdsi.org/t/17895","2023-09-20","2023-09-24",,"",,0,,,"ERA",180,"fixed duration relative to initial event","StartDate",7,0,"All",TRUE,"All","All",1,1,"ConditionOccurrence",0,0,2,1,0,0,0,1,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +993,"[W] Diarrhea including enteritis","Diarrhea including enteritis","","rao@ohdsi.org","Pending","","Diarrhea condition record of any type successive records with > 30 day gap are considered independent episodes","#usedInStudy, #LEGEND, #Diabetes, #legendDiabetes",1,"Rohan Khera','Martijn Schuemie','Yuan Lu','Anna Ostropolets','RuiJun Chun','George Hripcsak','Patrick Ryan','Harlan Krumholz','Marc Suchard'","0000-0001-9467-6199', '0000-0002-0817-5361', '', '0000-0002-0847-6682', '', '','','0000-0003-2046-127X','0000-0001-9818-479X'","'OHDSI'","","","4209223, 4285898, 42537251","https://forums.ohdsi.org/t/17895","2023-09-20","2023-10-09",,"","duplicate 884",0,,,"ERA",30,"fixed duration relative to initial event","StartDate",1,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +994,"[P] Genitourinary infection","Genitourinary infection","Genitourinary infection","rao@ohdsi.org","Pending","","Condition record of any type of genital or urinary tract infection during an outpatient or ER vists","#usedInStudy, #LEGEND, #Diabetes, #legendDiabetes",1,"Rohan Khera','Martijn Schuemie','Yuan Lu','Anna Ostropolets','RuiJun Chun','George Hripcsak','Patrick Ryan','Harlan Krumholz','Marc Suchard'","0000-0001-9467-6199', '0000-0002-0817-5361', '', '0000-0002-0847-6682', '', '','','0000-0003-2046-127X','0000-0001-9818-479X'","'OHDSI'","","","24660, 4083666","https://forums.ohdsi.org/t/17895","2023-09-20","2023-09-25",,"",,0,,,"ERA",30,"fixed duration relative to initial event","StartDate",1,0,"All",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,, +996,"[P] Hypoglycemia","Hypoglycemia","Hypoglycemia","rao@ohdsi.org","Pending","","Hypoglycemia condition record of any type successive records with > 90 day gap are considered independent episodes","#usedInStudy, #LEGEND, #Diabetes, #legendDiabetes",1,"Rohan Khera','Martijn Schuemie','Yuan Lu','Anna Ostropolets','RuiJun Chun','George Hripcsak','Patrick Ryan','Harlan Krumholz','Marc Suchard'","0000-0001-9467-6199', '0000-0002-0817-5361', '', '0000-0002-0847-6682', '', '','','0000-0003-2046-127X','0000-0001-9818-479X'","'OHDSI'","","","257007, 4320791","https://forums.ohdsi.org/t/17895","2023-09-20","2023-09-24",,"",,0,,,"ERA",30,"fixed duration relative to initial event","StartDate",1,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +997,"[W] Hypotension or low blood pressure","Hypotension or low blood pressure","Hypotension","rao@ohdsi.org","Pending","","Hypotension condition record of any type successive records with > 90 day gap are considered independent episodes","#usedInStudy, #LEGEND, #Diabetes, #legendDiabetes",1,"Rohan Khera','Martijn Schuemie','Yuan Lu','Anna Ostropolets','RuiJun Chun','George Hripcsak','Patrick Ryan','Harlan Krumholz','Marc Suchard'","0000-0001-9467-6199', '0000-0002-0817-5361', '', '0000-0002-0847-6682', '', '','','0000-0003-2046-127X','0000-0001-9818-479X'","'OHDSI'","","","24969, 260134","https://forums.ohdsi.org/t/17895","2023-09-20","2023-10-09",,"","duplicates 890",0,,,"ERA",90,"fixed duration relative to initial event","StartDate",1,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +998,"[P] Joint pain3","Joint pain3","","rao@ohdsi.org","Pending","","Joint pain condition record of any type successive records with > 90 days gap are considered independent episodes","#usedInStudy, #LEGEND, #Diabetes, #legendDiabetes",1,"Rohan Khera','Martijn Schuemie','Yuan Lu','Anna Ostropolets','RuiJun Chun','George Hripcsak','Patrick Ryan','Harlan Krumholz','Marc Suchard'","0000-0001-9467-6199', '0000-0002-0817-5361', '', '0000-0002-0847-6682', '', '','','0000-0003-2046-127X','0000-0001-9818-479X'","'OHDSI'","","","4096682","https://forums.ohdsi.org/t/17895","2023-09-20","2023-09-20",,"",,0,,,"ERA",90,"fixed duration relative to initial event","StartDate",1,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +999,"[P] Lower extremity amputation3","Lower extremity amputation3","Lower extremity amputation","rao@ohdsi.org","Pending","","Procedure record of below knee lower extremity amputation during inpatient or outpatient visit","#usedInStudy, #LEGEND, #Diabetes, #legendDiabetes",1,"Rohan Khera','Martijn Schuemie','Yuan Lu','Anna Ostropolets','RuiJun Chun','George Hripcsak','Patrick Ryan','Harlan Krumholz','Marc Suchard'","0000-0001-9467-6199', '0000-0002-0817-5361', '', '0000-0002-0847-6682', '', '','','0000-0003-2046-127X','0000-0001-9818-479X'","'OHDSI'","","","261600, 4078925","https://forums.ohdsi.org/t/17895","2023-09-20","2023-09-24",,"",,0,,,"ERA",0,"fixed duration relative to initial event","StartDate",0,0,"All",TRUE,"All","All",1,1,"ProcedureOccurrence",0,0,1,1,0,0,0,0,0,,,1,,,,,,,1,,,,,,,,,,,,,,,,,,,,, +1000,"[P] Nausea3","Nausea3","","rao@ohdsi.org","Pending","","Nausea condition record of any type successive records with > 30 day gap are considered independent episodes","#usedInStudy, #LEGEND, #Diabetes, #legendDiabetes",1,"Rohan Khera','Martijn Schuemie','Yuan Lu','Anna Ostropolets','RuiJun Chun','George Hripcsak','Patrick Ryan','Harlan Krumholz','Marc Suchard'","0000-0001-9467-6199', '0000-0002-0817-5361', '', '0000-0002-0847-6682', '', '','','0000-0003-2046-127X','0000-0001-9818-479X'","'OHDSI'","","","319049, 4256228","https://forums.ohdsi.org/t/17895","2023-09-20","2023-09-20",,"",,0,,,"ERA",30,"fixed duration relative to initial event","StartDate",1,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1001,"[W] Peripheral edema","Peripheral edema","Peripheral edema","rao@ohdsi.org","Pending","","Edema condition record of any type successive records with > 180 day gap are considered independent episodes","#usedInStudy, #LEGEND, #Diabetes, #legendDiabetes",1,"Rohan Khera','Martijn Schuemie','Yuan Lu','Anna Ostropolets','RuiJun Chun','George Hripcsak','Patrick Ryan','Harlan Krumholz','Marc Suchard'","0000-0001-9467-6199', '0000-0002-0817-5361', '', '0000-0002-0847-6682', '', '','','0000-0003-2046-127X','0000-0001-9818-479X'","'OHDSI'","","","319049, 4256228","https://forums.ohdsi.org/t/17895","2023-09-20","2023-10-16",,"","unclear about the origins and also how does it differ from 929",0,,,"ERA",180,"fixed duration relative to initial event","StartDate",1,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1002,"[P] Photosensitivity","Photosensitivity","Photosensitivity","rao@ohdsi.org","Pending","","Condition record of drug-induced photosensitivity during any type of visit","#usedInStudy, #LEGEND, #Diabetes, #legendDiabetes",1,"Rohan Khera','Martijn Schuemie','Yuan Lu','Anna Ostropolets','RuiJun Chun','George Hripcsak','Patrick Ryan','Harlan Krumholz','Marc Suchard'","0000-0001-9467-6199', '0000-0002-0817-5361', '', '0000-0002-0847-6682', '', '','','0000-0003-2046-127X','0000-0001-9818-479X'","'OHDSI'","","","254061","https://forums.ohdsi.org/t/17895","2023-09-20","2023-09-24",,"",,0,,,"ERA",90,"fixed duration relative to initial event","StartDate",1,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1003,"[P] Renal cancer","Renal cancer","Renal Cancer","rao@ohdsi.org","Pending","","Primary malignant neoplasm of kidney condition record of any type limited to earliest event per person","#usedInStudy, #LEGEND, #Diabetes, #legendDiabetes",1,"Rohan Khera','Martijn Schuemie','Yuan Lu','Anna Ostropolets','RuiJun Chun','George Hripcsak','Patrick Ryan','Harlan Krumholz','Marc Suchard'","0000-0001-9467-6199', '0000-0002-0817-5361', '', '0000-0002-0847-6682', '', '','','0000-0003-2046-127X','0000-0001-9818-479X'","'OHDSI'","","","73754","https://forums.ohdsi.org/t/18236","2023-09-20","2023-09-24",,"",,0,,,"ERA",0,"end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",365,0,1,0,0,0,0,0,0,1,,0,,,,,,,,1,,,,,,,,,,,,,,,,,,,, +1004,"[P] Thyroid tumor","Thyroid tumor","Thyroid tumor","rao@ohdsi.org","Pending","","Neoplasm of thyroid gland condition record of any type limited to earliest event per person","#usedInStudy, #LEGEND, #Diabetes, #legendDiabetes",1,"Rohan Khera','Martijn Schuemie','Yuan Lu','Anna Ostropolets','RuiJun Chun','George Hripcsak','Patrick Ryan','Harlan Krumholz','Marc Suchard'","0000-0001-9467-6199', '0000-0002-0817-5361', '', '0000-0002-0847-6682', '', '','','0000-0003-2046-127X','0000-0001-9818-479X'","","","","4131909",,"2023-09-20","2023-10-05",,"",,0,,,"ERA",0,"end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,0,,,,,,,,1,,,,,,,,,,,,,,,,,,,, +1005,"[P] Venous thromboembolism","Venous thromboembolism","Venous thromboembolism","rao@ohdsi.org","Pending","","Venous thromboembolism condition record of any type successive records with > 180 day gap are considered independent episodes","#usedInStudy, #LEGEND, #Diabetes, #legendDiabetes",1,"Rohan Khera','Martijn Schuemie','Yuan Lu','Anna Ostropolets','RuiJun Chun','George Hripcsak','Patrick Ryan','Harlan Krumholz','Marc Suchard'","0000-0001-9467-6199', '0000-0002-0817-5361', '', '0000-0002-0847-6682', '', '','','0000-0003-2046-127X','0000-0001-9818-479X'","'OHDSI'","","","72404, 72711","https://forums.ohdsi.org/t/17895","2023-09-20","2023-09-24",,"",,0,,,"ERA",180,"fixed duration relative to initial event","StartDate",1,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1006,"[P] Vomiting symptoms","Vomiting symptoms","Vomiting","rao@ohdsi.org","Pending","","Vomiting condition record of any type successive records with > 30 day gap are considered independent episodes","#usedInStudy, #LEGEND, #Diabetes, #legendDiabetes, #Symptoms",1,"Rohan Khera','Martijn Schuemie','Yuan Lu','Anna Ostropolets','RuiJun Chun','George Hripcsak','Patrick Ryan','Harlan Krumholz','Marc Suchard'","0000-0001-9467-6199', '0000-0002-0817-5361', '', '0000-0002-0847-6682', '', '','','0000-0003-2046-127X','0000-0001-9818-479X'","'OHDSI'","","","435524, 442588","https://forums.ohdsi.org/t/17895","2023-09-20","2023-09-24",,"",,0,,,"ERA",30,"fixed duration relative to initial event","StartDate",1,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1007,"[P] Earliest event of Epilepsy","Earliest event of Epilepsy","Earliest event of Epilepsy","rao@ohdsi.org","Pending","","Earliest occurrence of Epilepsy indexed on diagnosis date cohort exit is the end of continuous observation.","#JnJ, #Indication",1,"Azza Shoaibi'","0000-0002-6976-2594'","'OHDSI'","","","197684, 4021780","https://forums.ohdsi.org/t/17895","2023-09-20","2023-09-20",,"",,0,,,"ERA",0,"end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1009,"[P] Earliest event of Treatment resistant depression (TRD)","Earliest event of Treatment resistant depression (TRD)","Earliest event of Treatment resistant depression (TRD)","rao@ohdsi.org","Pending","","Depression disorder patients indexed on prescription date of a first-line anti-depressant preceded by at least two prior first-line anti-depressants) or indexed on an antipsychotic preceded by a first-line anti-depressant or indexed on use of esketamine preceded by a first-line anti-depressant subset to the earliest entry with a depressive disorder diagnosis in the prior year and no history of mania, dementia, or psychosis requiring continuous enrollment for the year preceding the index date and the year preceding the depression diagnosis cohort exit is the end of continuous observation.","#JnJ, #Indication",1,"Azza Shoaibi'","0000-0002-6976-2594'","'OHDSI'","","","25297, 28060, 4226263","","2023-09-20","2023-10-04",,"",,0,,,"ERA",0,"end of continuous observation",,,3,"All",TRUE,"First","First",3,1,"DrugEra",0,0,7,1,0,0,0,0,0,,,0,,,,,,,,,,,,,,,,,,,1,,,,,,,,, +1010,"[P] Earliest event of Chronic Graft Versus Host Disease (GVHD)","Earliest event of Chronic Graft Versus Host Disease (GVHD)","Earliest event of Chronic Graft Versus Host Disease (GVHD)","rao@ohdsi.org","Pending","","Earliest occurrence of Chronic graft-versus-host disease indexed on diagnosis date of Chronic graft-versus-host disease or acute on Chronic graft-versus-host disease (for the first time in history) or unspecified raft-versus-host disease with a Hematopoietic Stem Cell Transplantation (HSCT) anytime prior to 180 days prior to index, cohort exit is the end of continuous observation","#JnJ, #Indication",1,"Jill Hardin","","'OHDSI'","","","257007, 4320791","","2023-09-20","2023-09-20",,"",,0,,,"ERA",0,"end of continuous observation",,,0,"All",FALSE,"All","First",3,1,"ConditionOccurrence",0,0,3,1,0,0,0,0,0,1,,0,,,,,,,,1,,,,,1,,,,,,,,,,,,,,, +1011,"[P] Earliest event of Marginal zone lymphoma","Earliest event of Marginal zone lymphoma","Earliest event of Marginal zone lymphoma","rao@ohdsi.org","Pending","","Earliest occurrence of Marginal zone lymphoma, indexed on diagnosis date, for the first time in history cohort exit is the end of continuous observation","#JnJ, #Indication",1,"Jill Hardin","","'OHDSI'","","","260123, 4283893","https://forums.ohdsi.org/t/17895","2023-09-20","2023-09-20",,"",,0,,,"ERA",0,"end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,0,,,,,,,,1,,,,,,,,,,,,,,,,,,,, +1012,"[P] Earliest event of Waldenstrom macroglobulinemia","Earliest event of Waldenstrom macroglobulinemia","Earliest event of Waldenstrom macroglobulinemia","rao@ohdsi.org","Pending","","Earliest occurrence of Waldenstrom macroglobulinemia indexed on diagnosis date, for the first time in history cohort exit is the end of continuous observation","#JnJ, #Indication",1,"'Jill Hardin'","","'OHDSI'","","","435502",,"2023-09-20","2023-10-04",,"",,0,,,"ERA",0,"end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,0,,,,,,,,1,,,,,,,,,,,,,,,,,,,, +1013,"[P] Earliest event of Ankylosing Spondylitis","Earliest event of Ankylosing Spondylitis","Earliest event of Ankylosing Spondylitis","rao@ohdsi.org","Pending","","Earliest occurrence of Ankylosing Spondylitis indexed on diagnosis date, for the first time in history cohort exit is the end of continuous observation","#JnJ, #Indication",1,"Joel Swerdel'","","'OHDSI'","","","257007, 43021227","https://forums.ohdsi.org/t/17895","2023-09-20","2023-09-20",,"",,0,,,"ERA",0,"end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,0,,,,,,,,1,,,,,,,,,,,,,,,,,,,, +1016,"[P] Earliest event of Polyarticular juvenile idiopathic arthritis (JIA)","Earliest event of Polyarticular juvenile idiopathic arthritis (JIA)","Earliest event of Polyarticular juvenile idiopathic arthritis (JIA)","rao@ohdsi.org","Pending","","First occurrence of Polyarticular juvenile idiopathic arthritis (JIA)) indexed on diagnosis date, for the first time in history. Requiring that events occurred on or after January of 2016 and limited to patients with age less or equal to 16 years old. cohort exit is the end of continuous observation.","#JnJ, #Indication",1,"Joel Swerdel'","0000-0002-6976-2594'","'OHDSI'","","","372328","","2023-09-20","2023-10-05",,"",,0,,,"ERA",0,"end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,1,0,0,0,0,1,,0,,,,,1,,,1,,,,,,,,,,,,,,,,,,,, +1017,"[P] Earliest event of Neonatal Thrombocytopenia (NT), less than 1 year old","Earliest event of Neonatal Thrombocytopenia (NT), less than 1 year old","Earliest event of Neonatal Thrombocytopenia (NT), less than 1 year old","rao@ohdsi.org","Pending","","Earliest occurrence of Neonatal Thrombocytopenia indexed on diagnosis date, for the first time in history limited to patients less than 1 years old, cohort exit is the end of continuous observation","#JnJ, #Indication",1,"Nathan Hal', 'Azza Shoaibi'","0000-0002-6976-2594'","'OHDSI'","","","439777","https://forums.ohdsi.org/t/17856","2023-09-20","2023-09-20",,"",,0,,,"ERA",0,"end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,1,0,0,0,0,1,,0,,,,,1,,,1,,,,,,,,,,,,,,,,,,,, +1018,"[P] Earliest event of Warm Autoimmune Hemolytic Anemia (wAIHA)","Earliest event of Warm Autoimmune Hemolytic Anemia (wAIHA)","Earliest event of Warm Autoimmune Hemolytic Anemia (wAIHA)","rao@ohdsi.org","Pending","","Earliest occurrence of Warm Autoimmune Hemolytic Anemia (wAIHA) indexed on diagnosis date, for the first time in history cohort exit is the end of continuous observation","#JnJ, #Indication",1,"'Jill Hardin'","","'OHDSI'","","","437264, 440069","","2023-09-20","2023-10-05",,"",,0,,,"ERA",0,"end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,0,,,,,,,,1,,,,,,,,,,,,,,,,,,,, +1019,"[P] All events of Hemolytic Disease Fetus and Newborn (HDFN), RhD type, with a pregnancy episode","All events of Hemolytic Disease Fetus and Newborn (HDFN), RhD type, with a pregnancy episode","All events of Hemolytic Disease Fetus and Newborn (HDFN), RhD type, with a pregnancy episode","rao@ohdsi.org","Pending","","All events of Hemolytic Disease Fetus and Newborn (HDFN) indexed on diagnosis date, requiring a pregnancy episode that started any time prior index and pregnancy ends between 14 days pre to all time post index patients exit the cohort 270 days post index or on events signaling pregnancy end. Reoccurrence events are collapsed if the next event starts within 90 days of end of prior event.","#JnJ, #Indication",1,"Joel Swerdel'","0000-0002-6976-2594'","'OHDSI'","","","444367, 4145627","","2023-09-20","2023-09-20",,"",,0,,,"ERA",90,"fixed duration relative to initial event","StartDate",270,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,3,1,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1020,"[P] Earliest event of Major depressive disorder, with NO occurrence of certain psychiatric disorder","Earliest event of Major depressive disorder, with NO occurrence of certain psychiatric disorder","Earliest event of Major depressive disorder, with NO occurrence of certain psychiatric disorder","rao@ohdsi.org","Pending","","Earliest occurrence of major depressive disorder indexed on diagnosis date requiring no occurrence anytime prior including day 0 of Bipolar disorder, Schizoaffective, Schizophrenia not including paraphrenia, Dementia or Psychotic disorder cohort exit is the end of continuous observation.","#JnJ, #Indication",1,"Dave Kern, Joel Swerdel","","'OHDSI'","","","441259, 4177600",,"2023-09-20","2023-09-20",,"",,0,,,"ERA",0,"end of continuous observation",,,0,"First",TRUE,"All","First",1,1,"ConditionOccurrence",0,0,6,1,0,0,0,0,0,1,,0,,,,,,,,1,,,,,,,,,,,,,,,,,,,, +1021,"[P] Earliest event of Myasthenia Gravis, inpatient, 2nd diagnosis or treatment, age gte 18","Earliest event of Myasthenia Gravis, inpatient, 2nd diagnosis or treatment, age gte 18","Earliest event of Myasthenia Gravis, inpatient, 2nd diagnosis or treatment, age gte 18","rao@ohdsi.org","Pending","","Earliest occurrence of myasthenia gravis (excluding congenital, juvenile, neonatal or genetic) indexed on diagnosis date requiring either a second diagnosis of myasthenia gravis within 365 days after the first diagnosis (index date) or a drug exposure to Pyridostigmine on or 60 days after the first diagnosis or that the first diagnosis occur in an inpatient setting cohort exit is the end of continuous observation. Limit to persons with age greater than or equal to 18 on entry.","#JnJ, #Indication",1,"Mitch Conover'","","'OHDSI'","","","4155911",,"2023-09-20","2023-09-20",,"",,0,,,"ERA",0,"end of continuous observation",,,1,"First",FALSE,"All","First",2,2,"ConditionOccurrence, DrugExposure",0,0,3,1,1,0,0,1,0,1,,0,,,,1,,,,,1,,,,,,,,,,,,,,,,,,, +1022,"[P] Earliest event of Depressive and Sleep Disorder","Earliest event of Depressive and Sleep Disorder","Earliest event of Depressive and Sleep Disorder","rao@ohdsi.org","Pending","","Earliest occurrence of either 1) a depressive disorder diagnosis that is preceded by a sleep disorder diagnosis in the prior year 2) a sleep disorder diagnosis that is preceded by a depressive disorder diagnosis in the prior year cohort exit is the end of continuous observation.","#JnJ, #Indication",1,"Joel Swerdel','Azza Shoaibi'","","'OHDSI'","","","441259, 4307580",,"2023-09-20","2023-09-20",,"",,0,,,"ERA",0,"end of continuous observation",,,0,"First",FALSE,"All","First",2,1,"ConditionOccurrence",0,0,3,1,0,0,0,0,0,1,,0,,,,,,,,1,,,,,,,,,,,,,,,,,,,, +1023,"[P] Earliest Event of Depressive Disorder with Suicidal Ideation or Attempt Prevalent","Earliest Event of Depressive Disorder with Suicidal Ideation or Attempt Prevalent","Earliest Event of Depressive Disorder with Suicidal Ideation or Attempt Prevalent","rao@ohdsi.org","Pending","","Earliest occurrence of either 1) a depressive disorder diagnosis that is preceded by a suicidal ideation diagnosis or suicide observation in the prior year, or 2) a suicide ideation diagnosis that is preceded by a depressive disorder diagnosis in the prior year, or 3) a suicide attempt observation that is preceded by a depressive disorder diagnosis in the prior year cohort exit is the end of continuous observation.","#JnJ, #Indication",1,"Joel Swerdel','Azza Shoaibi' ,'Pranav Bhimani'","","'OHDSI'","","","438252, 4118793",,"2023-09-20","2023-09-20",,"",,0,,,"ERA",0,"end of continuous observation",,,0,"First",FALSE,"All","First",3,2,"ConditionOccurrence, Observation",0,0,3,1,0,0,0,0,0,1,,0,1,,,,,,,1,,,,,,,,,,,,,,,,,,,, +1024,"[P] Earliest Event of Depressive Disorder with Anhedonia","Earliest Event of Depressive Disorder with Anhedonia","Earliest Event of Depressive Disorder with Anhedonia","rao@ohdsi.org","Pending","","Earliest occurrence of either 1) a depressive disorder diagnosis that is preceded by an Anhedonia diagnosis in the prior year or 2) an anhedonia diagnosis that is preceded by a depressive disorder diagnosis in the prior year cohort exit is the end of continuous observation.","#JnJ, #Indication",1,"Joel Swerdel', 'Pranav Bhimani'","","'OHDSI'","","","137977, 435656","https://forums.ohdsi.org/t/17895","2023-09-20","2023-09-20",,"",,0,,,"ERA",0,"end of continuous observation",,,0,"First",FALSE,"All","First",2,1,"ConditionOccurrence",0,0,3,1,0,0,0,0,0,1,,0,,,,,,,,1,,,,,,,,,,,,,,,,,,,, +1025,"[P] First event of Attention-deficit hyperactivity (ADHD) disorder or procedure","First event of Attention-deficit hyperactivity (ADHD) disorder or procedure","First event of Attention-deficit hyperactivity (ADHD) disorder or procedure","rao@ohdsi.org","Pending","","First occurrence of Attention-deficit hyperactivity disorder (ADHD) condition or related procedures, indexed on the earliest occurrence of ADHD condition, procedure or treatment (limited to drug exposure followed by a related condition or procedure), with 365d prior observation, exit at end of observation","#JnJ, #Indication",1,"Jamie Weaves', 'Mitch Connover'","","'OHDSI'","","","40480225,4047120",,"2023-09-20","2023-10-04",,"",,0,,,"ERA",0,"end of continuous observation",,,0,"First",FALSE,"All","First",3,3,"ConditionOccurrence, DrugExposure, ProcedureOccurrence",0,0,2,1,0,0,0,0,0,1,,0,,,,1,,,1,,,,,,,,,,,,,,,,,,,,, +1026,"[P] Earliest Event of Multiple Sclerosis","Earliest Event of Multiple Sclerosis","Earliest Event of Multiple Sclerosis","rao@ohdsi.org","Pending","","Earliest occurrence of multiple sclerosis indexed on diagnosis date for the first time in persons history cohort exit is the end of continuous observation.","#JnJ, #Indication",1,"Joel Swerdel'","","'OHDSI'","","","135618, 4169287","https://forums.ohdsi.org/t/17895","2023-09-20","2023-09-20",,"",,0,,,"ERA",0,"end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,0,,,,,,,,1,,,,,,,,,,,,,,,,,,,, +1027,"[P] Earliest event of Chronic Leukocytic Leukemia","Earliest event of Chronic Leukocytic Leukemia","Earliest event of Chronic Leukocytic Leukemia","rao@ohdsi.org","Pending","","Earliest event of Chronic Leukocytic Leukemia (not including Hairy cell, prolymphocytic leukemia, T cell, reticuloendotheliosis) for the first time in persons history, exit cohort at the end of continuous observation period.","#JnJ, #Indication",1,"Jill Hardin'","","'OHDSI'","","","133834, 133835, 45766714","","2023-09-20","2023-09-20",,"",,0,,,"ERA",0,"end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,0,,,,,,,,1,,,,,,,,,,,,,,,,,,,, +1028,"[P] Earliest event of Urothelial carcinoma","Earliest event of Urothelial carcinoma","Earliest event of Urothelial carcinoma","rao@ohdsi.org","Pending","","Earliest event of Urothelial Carcinoma indexed on diagnosis Indexed on Primary or malignant urothelial bladder cancer diagnosis cohort exit is the end of continuous observation.","#JnJ, #Indication",1,"Jill Hardin'","","'OHDSI'","","","134438","","2023-09-20","2023-09-20",,"",,0,,,"ERA",0,"end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1029,"[P] Earliest event of Mantle Cell Lymphoma","Earliest event of Mantle Cell Lymphoma","Earliest event of Mantle Cell Lymphoma","rao@ohdsi.org","Pending","","Earliest event of Urothelial Carcinoma indexed on diagnosis Indexed on Primary or malignant urothelial bladder cancer diagnosis cohort exit is the end of continuous observation.","#JnJ, #Indication",1,"Jill Hardin'","","'OHDSI'","","","4242574","","2023-09-20","2023-09-20",,"",,0,,,"ERA",0,"end of continuous observation",,,0,"First",FALSE,"All","First",2,1,"ConditionOccurrence",0,0,2,0,0,0,0,0,0,1,,0,,,,,,,,,,,,,1,,,,,,,,,,,,,,, +1030,"[P] Earliest event of Prostate cancer, among adult males","Earliest event of Prostate cancer, among adult males","Earliest event of Prostate cancer, among adult males","rao@ohdsi.org","Pending","","Earliest event of Prostate cancer restricting age greater than or equal to 18 and males indexed on prostate cancer diagnosis cohort exit is the end of continuous observation.","#JnJ, #Indication",1,"Rupa Makadia","","'OHDSI'","","","137053","","2023-09-20","2023-09-20",,"",,0,,,"ERA",0,"end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,1,1,0,0,0,1,,0,,,,,1,,,,,,,1,,,,,,,,,,,,,,,, +1031,"[P] Earliest event of Coronary artery disease (CAD)","Earliest event of Coronary artery disease (CAD)","Earliest event of Coronary artery disease (CAD)","rao@ohdsi.org","Pending","","Earliest event of Coronary Artery Disease for the first time in the persons history Indexed on coronary artery disease diagnosis (condition or observation) cohort exit is the end of continuous observation.","#JnJ, #Indication",1,"Joel Swerdel'","","'OHDSI'","","","4203600, 4239682, 4331304","","2023-09-20","2023-09-20",,"",,0,,,"ERA",0,"end of continuous observation",,,0,"First",FALSE,"All","First",2,2,"ConditionOccurrence, Observation",0,0,1,0,0,0,0,0,0,1,,0,1,,,,,,,1,,,,,,,,,,,,,,,,,,,, +1032,"[P] Earliest event of Type 2 Diabetes Mellitus (DM), with no type 1 or secondary DM","Earliest event of Type 2 Diabetes Mellitus (DM), with no type 1 or secondary DM","Earliest event of Type 2 Diabetes Mellitus (DM), with no type 1 or secondary DM","rao@ohdsi.org","Pending","","Earliest event of Type 2 Diabetes Mellitus (DM), indexed on diagnosis or Blood glucose lowering drugs excluding insulin or high Hemoglobin A1c (limited to treatments or measurement that are followed with Type 2 DM diagnosis within 365 days) excluding persons with Type 1 DM or secondary diabetes mellitus in the all time prior including index date","#JnJ, #Indication",1,"Patrick Ryan,","","'OHDSI'","","","4027396","","2023-09-20","2023-09-20",,"",,0,,,"ERA",0,"end of continuous observation",,,3,"First",FALSE,"All","First",4,3,"ConditionOccurrence, DrugExposure, Measurement",0,0,5,1,0,0,0,0,0,1,1,0,,,,1,,,,,,,,,,,,,,,,,,,,,,,, +1033,"[P] Earliest event of Human Immunodeficiency Virus I (HIV), with treatment, lab or 2nd diagnosis","Earliest event of Human Immunodeficiency Virus I (HIV), with treatment, lab or 2nd diagnosis","Earliest event of Human Immunodeficiency Virus I (HIV), with treatment, lab or 2nd diagnosis","rao@ohdsi.org","Pending","","Earliest event of Human Immunodeficiency Virus I (HIV), with HIV drugs or laboratory results any time after index date or second diagnosis post index cohort exit is the end of continuous observation","#JnJ, #Indication",1,"Rupa Makadia, Jamie Calusardo","","'OHDSI'","","","4027396, 4117779","","2023-09-20","2023-10-04",,"",,0,,,"ERA",0,"end of continuous observation",,,0,"All",TRUE,"First","First",1,1,"ConditionOccurrence",0,0,3,1,0,0,0,0,0,1,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1034,"[P] All events of Respiratory syncytial virus infection, with 30 days washout","All events of Respiratory syncytial virus infection, with 30 days washout","All events of Respiratory syncytial virus infection, with 30 days washout","rao@ohdsi.org","Pending","","All events of Respiratory syncytial virus infection, with no such events in prior 30 days (washout). Persons exit the cohort at the start date + 30 day.","#JnJ, #Indication",1,"Nathan Hall, Rupa Makadia","","'OHDSI'","","","377889","","2023-09-20","2023-09-20",,"",,0,,,"ERA",0,"fixed duration relative to initial event","StartDate",30,1,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,1,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1035,"[P] New users of Thiazide diuretics","New users of Thiazide diuretics","New users of Thiazide diuretics","rao@ohdsi.org","Pending peer review","","New users of Thiazide diuretics","#HowOften, #Target, #Study, #Symposium",1,"'Patrick Ryan'","","'Johnson and Johnson', 'OHDSI'","","","",,"2023-09-21","2023-09-21",,"",,0,,,"ERA",0,"end of continuous drug exposure",,,0,"First",FALSE,"All","First",1,1,"DrugExposure",365,0,1,0,0,0,0,0,0,,,0,,,,1,,,,1,,,,,,,,,,,,,0,90,0,,,,, +1036,"[P] New users of Beta blockers","New users of Beta blockers","New users of Beta blockers","rao@ohdsi.org","Pending peer review","","New users of Beta blockers","#HowOften, #Target, #Study, #Symposium",1,"'Patrick Ryan'","","'Johnson and Johnson', 'OHDSI'","","","",,"2023-09-21","2023-09-21",,"",,0,,,"ERA",0,"end of continuous drug exposure",,,0,"First",FALSE,"All","First",1,1,"DrugExposure",365,0,1,0,0,0,0,0,0,,,0,,,,1,,,,1,,,,,,,,,,,,,2,90,0,,,,, +1037,"[P] New users of SGLT2 inhibitor","New users of SGLT2 inhibitor","New users of SGLT2 inhibitor","rao@ohdsi.org","Pending peer review","","New users of SGLT2 inhibitor","#HowOften, #Target, #Study, #Symposium",1,"'Patrick Ryan'","","'Johnson and Johnson', 'OHDSI'","","","",,"2023-09-21","2023-09-21",,"",,0,,,"ERA",0,"end of continuous drug exposure",,,0,"First",FALSE,"All","First",1,1,"DrugExposure",365,0,1,0,0,0,0,0,0,,,0,,,,1,,,,1,,,,,,,,,,,,,3,90,0,,,,, +1038,"[P] New users of GLP-1 receptor antagonists","New users of GLP-1 receptor antagonists","New users of GLP-1 receptor antagonists","rao@ohdsi.org","Pending peer review","","New users of GLP-1 receptor antagonists","#HowOften, #Target, #Study, #Symposium",1,"'Patrick Ryan'","","'Johnson and Johnson', 'OHDSI'","","","",,"2023-09-21","2023-09-21",,"",,0,,,"ERA",0,"end of continuous drug exposure",,,0,"First",FALSE,"All","First",1,1,"DrugExposure",365,0,1,0,0,0,0,0,0,,,0,,,,1,,,,1,,,,,,,,,,,,,4,90,0,,,,, +1039,"[P] New users of DPP-4 inhibitors","New users of DPP-4 inhibitors","New users of DPP-4 inhibitors","rao@ohdsi.org","Pending peer review","","New users of DPP-4 inhibitors","#HowOften, #Target, #Study, #Symposium",1,"'Patrick Ryan'","","'Johnson and Johnson', 'OHDSI'","","","",,"2023-09-21","2023-09-21",,"",,0,,,"ERA",0,"end of continuous drug exposure",,,0,"First",FALSE,"All","First",1,1,"DrugExposure",365,0,1,0,0,0,0,0,0,,,0,,,,1,,,,1,,,,,,,,,,,,,5,90,0,,,,, +1040,"[P] New users of Tumor Necrosis Factor alpha (TNFa) inhibitors","New users of Tumor Necrosis Factor alpha (TNFa) inhibitors","New users of Tumor Necrosis Factor alpha (TNFa) inhibitors","rao@ohdsi.org","Pending peer review","","New users of Tumor Necrosis Factor alpha (TNFa) inhibitors","#HowOften, #Target, #Study, #Symposium",1,"'Patrick Ryan'","","'Johnson and Johnson', 'OHDSI'","","","",,"2023-09-21","2023-09-21",,"",,0,,,"ERA",0,"end of continuous drug exposure",,,0,"First",FALSE,"All","First",1,1,"DrugExposure",365,0,1,0,0,0,0,0,0,,,0,,,,1,,,,1,,,,,,,,,,,,,6,90,0,,,,, +1041,"[P] New users of JAK inhibitors","New users of JAK inhibitors","New users of JAK inhibitors","rao@ohdsi.org","Pending peer review","","New users of JAK inhibitors","#HowOften, #Target, #Study, #Symposium",1,"'Patrick Ryan'","","'Johnson and Johnson', 'OHDSI'","","","",,"2023-09-21","2023-09-21",,"",,0,,,"ERA",0,"end of continuous drug exposure",,,0,"First",FALSE,"All","First",1,1,"DrugExposure",365,0,1,0,0,0,0,0,0,,,0,,,,1,,,,1,,,,,,,,,,,,,7,90,0,,,,, +1042,"[P] New users of IL-23 inhibitors","New users of IL-23 inhibitors","New users of IL-23 inhibitors","rao@ohdsi.org","Pending peer review","","New users of IL-23 inhibitors","#HowOften, #Target, #Study, #Symposium",1,"'Patrick Ryan'","","'Johnson and Johnson', 'OHDSI'","","","",,"2023-09-21","2023-10-03",,"",,0,,,"ERA",0,"end of continuous drug exposure",,,0,"First",FALSE,"All","First",1,1,"DrugExposure",365,0,1,0,0,0,0,0,0,,,0,,,,1,,,,1,,,,,,,,,,,,,8,90,0,,,,, +1043,"[P] New users of Fluoroquinolone systemic","New users of Fluoroquinolone systemic","New users of Fluoroquinolone systemic","rao@ohdsi.org","Pending peer review","","New users of Fluoroquinolone systemic","#HowOften, #Target, #Study, #Symposium",1,"'Patrick Ryan'","","'Johnson and Johnson', 'OHDSI'","","","",,"2023-09-21","2023-09-21",,"",,0,,,"ERA",0,"end of continuous drug exposure",,,0,"First",FALSE,"All","First",1,1,"DrugExposure",365,0,1,0,0,0,0,0,0,,,0,,,,1,,,,1,,,,,,,,,,,,,9,30,0,,,,, +1044,"[P] New users of Cephalosporin systemetic","New users of Cephalosporin systemetic","New users of Cephalosporin systemetic","rao@ohdsi.org","Pending peer review","","New users of Cephalosporin systemetic","#HowOften, #Target, #Study, #Symposium",1,"'Patrick Ryan'","","'Johnson and Johnson', 'OHDSI'","","","",,"2023-09-21","2023-09-21",,"",,0,,,"ERA",0,"end of continuous drug exposure",,,0,"First",FALSE,"All","First",1,1,"DrugExposure",365,0,1,0,0,0,0,0,0,,,0,,,,1,,,,1,,,,,,,,,,,,,10,30,0,,,,, +1045,"[P] New users of Trimethoprim systemetic","New users of Trimethoprim systemetic","New users of Trimethoprim systemetic","rao@ohdsi.org","Pending peer review","","New users of Trimethoprim systemetic","#HowOften, #Target, #Study, #Symposium",1,"'Patrick Ryan'","","'Johnson and Johnson', 'OHDSI'","","","",,"2023-09-21","2023-09-21",,"",,0,,,"ERA",0,"end of continuous drug exposure",,,0,"First",FALSE,"All","First",1,1,"DrugExposure",365,0,1,0,0,0,0,0,0,,,0,,,,1,,,,1,,,,,,,,,,,,,11,30,0,,,,, +1046,"[P] New users of Thiazide diuretics nested in essential hypertension","New users of Thiazide diuretics nested in essential hypertension","New users of Thiazide diuretics nested in essential hypertension","rao@ohdsi.org","Pending peer review","","New users of Thiazide diuretics nested in essential hypertension","#HowOften, #Target, #Study, #Symposium",1,"'Patrick Ryan'","","'Johnson and Johnson', 'OHDSI'","","","",,"2023-09-21","2023-09-21",,"",,0,,,"ERA",0,"end of continuous drug exposure",,,1,"First",FALSE,"All","First",1,1,"DrugExposure",365,0,2,1,0,0,0,0,0,,,0,,,,1,,,,1,,,,,,,,,,,,,0,90,0,,,,, +1047,"[P] New users of dihydropyridine calcium channel blockers nested in essential hypertension","New users of dihydropyridine calcium channel blockers nested in essential hypertension","New users of dihydropyridine calcium channel blockers nested in essential hypertension","rao@ohdsi.org","Pending peer review","","New users of dihydropyridine calcium channel blockers nested in essential hypertension","#HowOften, #Target, #Study, #Symposium",1,"'Patrick Ryan'","","'Johnson and Johnson', 'OHDSI'","","","",,"2023-09-21","2023-09-21",,"",,0,,,"ERA",0,"end of continuous drug exposure",,,1,"First",FALSE,"All","First",1,1,"DrugExposure",365,0,2,1,0,0,0,0,0,,,0,,,,1,,,,1,,,,,,,,,,,,,1,90,0,,,,, +1048,"[P] New users of dihydropyridine calcium channel blockers","New users of dihydropyridine calcium channel blockers","New users of dihydropyridine calcium channel blockers","rao@ohdsi.org","Pending peer review","","New users of dihydropyridine calcium channel blockers","#HowOften, #Target, #Study, #Symposium",1,"'Patrick Ryan'","","'Johnson and Johnson', 'OHDSI'","","","",,"2023-09-21","2023-09-21",,"",,0,,,"ERA",0,"end of continuous drug exposure",,,0,"First",FALSE,"All","First",1,1,"DrugExposure",365,0,1,0,0,0,0,0,0,,,0,,,,1,,,,1,,,,,,,,,,,,,1,90,0,,,,, +1049,"[P] New users of Beta blockers nested in essential hypertension","New users of Beta blockers nested in essential hypertension","New users of Beta blockers nested in essential hypertension","rao@ohdsi.org","Pending peer review","","New users of Beta blockers nested in essential hypertension","#HowOften, #Target, #Study, #Symposium",1,"'Patrick Ryan'","","'Johnson and Johnson', 'OHDSI'","","","",,"2023-09-21","2023-09-21",,"",,0,,,"ERA",0,"end of continuous drug exposure",,,1,"First",FALSE,"All","First",1,1,"DrugExposure",365,0,2,1,0,0,0,0,0,,,0,,,,1,,,,1,,,,,,,,,,,,,2,90,0,,,,, +1050,"[P] New users of Beta blockers nested in Left Heart Failure","New users of Beta blockers nested in Left Heart Failure","New users of Beta blockers nested in Left Heart Failure","rao@ohdsi.org","Pending peer review","","New users of Beta blockers nested in Left Heart Failure","#HowOften, #Target, #Study, #Symposium",1,"'Patrick Ryan'","","'Johnson and Johnson', 'OHDSI'","","","",,"2023-09-21","2023-09-21",,"",,0,,,"ERA",0,"end of continuous drug exposure",,,1,"First",FALSE,"All","First",1,1,"DrugExposure",365,0,2,1,0,0,0,0,0,,,0,,,,1,,,,1,,,,,,,,,,,,,2,90,0,,,,, +1051,"[P] New users of SGLT2 inhibitor nested in Left Heart Failure","New users of SGLT2 inhibitor nested in Left Heart Failure","New users of SGLT2 inhibitor nested in Left Heart Failure","rao@ohdsi.org","Pending peer review","","New users of SGLT2 inhibitor nested in Left Heart Failure","#HowOften, #Target, #Study, #Symposium",1,"'Patrick Ryan'","","'Johnson and Johnson', 'OHDSI'","","","",,"2023-09-21","2023-09-21",,"",,0,,,"ERA",0,"end of continuous drug exposure",,,1,"First",FALSE,"All","First",1,1,"DrugExposure",365,0,2,1,0,0,0,0,0,,,0,,,,1,,,,1,,,,,,,,,,,,,3,90,0,,,,, +1052,"[P] New users of Beta blockers nested in Acute Myocardial Infarction","New users of Beta blockers nested in Acute Myocardial Infarction","New users of Beta blockers nested in Acute Myocardial Infarction","rao@ohdsi.org","Pending peer review","","New users of Beta blockers nested in Acute Myocardial Infarction","#HowOften, #Target, #Study, #Symposium",1,"'Patrick Ryan'","","'Johnson and Johnson', 'OHDSI'","","","",,"2023-09-21","2023-09-21",,"",,0,,,"ERA",0,"end of continuous drug exposure",,,1,"First",FALSE,"All","First",1,1,"DrugExposure",365,0,3,1,0,0,0,1,0,,,0,,,,1,,,,1,,,,,,,,,,,,,2,90,0,,,,, +1053,"[P] New users of GLP-1 receptor antagonists nested in Type 2 diabetes mellitus","New users of GLP-1 receptor antagonists nested in Type 2 diabetes mellitus","New users of GLP-1 receptor antagonists nested in Type 2 diabetes mellitus","rao@ohdsi.org","Pending peer review","","New users of GLP-1 receptor antagonists nested in Type 2 diabetes mellitus","#HowOften, #Target, #Study, #Symposium",1,"'Patrick Ryan'","","'Johnson and Johnson', 'OHDSI'","","","",,"2023-09-21","2023-09-21",,"",,0,,,"ERA",0,"end of continuous drug exposure",,,1,"First",FALSE,"All","First",1,1,"DrugExposure",365,0,4,1,0,0,0,0,0,,,0,,,,1,,,,1,,,,,,,,,,,,,4,90,0,,,,, +1054,"[P] New users of SGLT2 inhibitor nested in Type 2 diabetes mellitus","New users of SGLT2 inhibitor nested in Type 2 diabetes mellitus","New users of SGLT2 inhibitor nested in Type 2 diabetes mellitus","rao@ohdsi.org","Pending peer review","","New users of SGLT2 inhibitor nested in Type 2 diabetes mellitus","#HowOften, #Target, #Study, #Symposium",1,"'Patrick Ryan'","","'Johnson and Johnson', 'OHDSI'","","","",,"2023-09-21","2023-09-21",,"",,0,,,"ERA",0,"end of continuous drug exposure",,,1,"First",FALSE,"All","First",1,1,"DrugExposure",365,0,4,1,0,0,0,0,0,,,0,,,,1,,,,1,,,,,,,,,,,,,3,90,0,,,,, +1055,"[P] New users of DPP-4 inhibitors nested in Type 2 diabetes mellitus","New users of DPP-4 inhibitors nested in Type 2 diabetes mellitus","New users of DPP-4 inhibitors nested in Type 2 diabetes mellitus","rao@ohdsi.org","Pending peer review","","New users of DPP-4 inhibitors nested in Type 2 diabetes mellitus","#HowOften, #Target, #Study, #Symposium",1,"'Patrick Ryan'","","'Johnson and Johnson', 'OHDSI'","","","",,"2023-09-21","2023-09-21",,"",,0,,,"ERA",0,"end of continuous drug exposure",,,1,"First",FALSE,"All","First",1,1,"DrugExposure",365,0,4,1,0,0,0,0,0,,,0,,,,1,,,,1,,,,,,,,,,,,,5,90,0,,,,, +1056,"[P] New users of GLP-1 receptor antagonists nested in obesity","New users of GLP-1 receptor antagonists nested in obesity","New users of GLP-1 receptor antagonists nested in obesity","rao@ohdsi.org","Pending peer review","","New users of GLP-1 receptor antagonists nested in obesity","#HowOften, #Target, #Study, #Symposium",1,"'Patrick Ryan'","","'Johnson and Johnson', 'OHDSI'","","","",,"2023-09-21","2023-09-21",,"",,0,,,"ERA",0,"end of continuous drug exposure",,,1,"First",FALSE,"All","First",1,1,"DrugExposure",365,0,4,1,0,0,0,0,0,,,0,,,,1,,,,1,,,,,,,,,,,,,4,90,0,,,,, +1057,"[P] New users of IL-23 inhibitors nested in Plaque psoriasis","New users of IL-23 inhibitors nested in Plaque psoriasis","New users of IL-23 inhibitors nested in Plaque psoriasis","rao@ohdsi.org","Pending peer review","","New users of IL-23 inhibitors nested in Plaque psoriasis","#HowOften, #Target, #Study, #Symposium",1,"'Patrick Ryan'","","'Johnson and Johnson', 'OHDSI'","","","",,"2023-09-21","2023-10-03",,"",,0,,,"ERA",0,"end of continuous drug exposure",,,1,"First",FALSE,"All","First",1,1,"DrugExposure",365,0,2,1,0,0,0,0,0,,,0,,,,1,,,,1,,,,,,,,,,,,,8,90,0,,,,, +1058,"[P] New users of Tumor Necrosis Factor alpha (TNFa) inhibitors nested in Plaque psoriasis","New users of Tumor Necrosis Factor alpha (TNFa) inhibitors nested in Plaque psoriasis","New users of Tumor Necrosis Factor alpha (TNFa) inhibitors nested in Plaque psoriasis","rao@ohdsi.org","Pending peer review","","New users of Tumor Necrosis Factor alpha (TNFa) inhibitors nested in Plaque psoriasis","#HowOften, #Target, #Study, #Symposium",1,"'Patrick Ryan'","","'Johnson and Johnson', 'OHDSI'","","","",,"2023-09-21","2023-09-21",,"",,0,,,"ERA",0,"end of continuous drug exposure",,,1,"First",FALSE,"All","First",1,1,"DrugExposure",365,0,2,1,0,0,0,0,0,,,0,,,,1,,,,1,,,,,,,,,,,,,6,90,0,,,,, +1059,"[P] New users of Tumor Necrosis Factor alpha (TNFa) inhibitors nested in Psoriatic Arthritis","New users of Tumor Necrosis Factor alpha (TNFa) inhibitors nested in Psoriatic Arthritis","New users of Tumor Necrosis Factor alpha (TNFa) inhibitors nested in Psoriatic Arthritis","rao@ohdsi.org","Pending peer review","","New users of Tumor Necrosis Factor alpha (TNFa) inhibitors nested in Psoriatic Arthritis","#HowOften, #Target, #Study, #Symposium",1,"'Patrick Ryan'","","'Johnson and Johnson', 'OHDSI'","","","",,"2023-09-21","2023-09-21",,"",,0,,,"ERA",0,"end of continuous drug exposure",,,1,"First",FALSE,"All","First",1,1,"DrugExposure",365,0,4,1,0,0,0,0,0,,,0,,,,1,,,,1,,,,,,,,,,,,,6,90,0,,,,, +1060,"[P] New users of Fluoroquinolone systemic nested in Urinary Tract Infection","New users of Fluoroquinolone systemic nested in Urinary Tract Infection","New users of Fluoroquinolone systemic nested in Urinary Tract Infection","rao@ohdsi.org","Pending peer review","","New users of Fluoroquinolone systemic nested in Urinary Tract Infection","#HowOften, #Target, #Study, #Symposium",1,"'Patrick Ryan'","","'Johnson and Johnson', 'OHDSI'","","","",,"2023-09-21","2023-09-21",,"",,0,,,"ERA",0,"end of continuous drug exposure",,,1,"First",FALSE,"All","First",1,1,"DrugExposure",365,0,2,1,0,0,0,0,0,,,0,,,,1,,,,1,,,,,,,,,,,,,9,30,0,,,,, +1061,"[P] New users of Cephalosporin systemetic nested in Urinary Tract Infection","New users of Cephalosporin systemetic nested in Urinary Tract Infection","New users of Cephalosporin systemetic nested in Urinary Tract Infection","rao@ohdsi.org","Pending peer review","","New users of Cephalosporin systemetic nested in Urinary Tract Infection","#HowOften, #Target, #Study, #Symposium",1,"'Patrick Ryan'","","'Johnson and Johnson', 'OHDSI'","","","",,"2023-09-21","2023-09-21",,"",,0,,,"ERA",0,"end of continuous drug exposure",,,1,"First",FALSE,"All","First",1,1,"DrugExposure",365,0,2,1,0,0,0,0,0,,,0,,,,1,,,,1,,,,,,,,,,,,,10,30,0,,,,, +1062,"[P] New users of Trimethoprim systemetic nested in Urinary Tract Infection","New users of Trimethoprim systemetic nested in Urinary Tract Infection","New users of Trimethoprim systemetic nested in Urinary Tract Infection","rao@ohdsi.org","Pending peer review","","New users of Trimethoprim systemetic nested in Urinary Tract Infection","#HowOften, #Target, #Study, #Symposium",1,"'Patrick Ryan'","","'Johnson and Johnson', 'OHDSI'","","","",,"2023-09-21","2023-09-21",,"",,0,,,"ERA",0,"end of continuous drug exposure",,,1,"First",FALSE,"All","First",1,1,"DrugExposure",365,0,2,1,0,0,0,0,0,,,0,,,,1,,,,1,,,,,,,,,,,,,11,30,0,,,,, +1063,"[P] New users of Fluoroquinolone systemic nested in Acute Typical Pneumonia","New users of Fluoroquinolone systemic nested in Acute Typical Pneumonia","New users of Fluoroquinolone systemic nested in Acute Typical Pneumonia","rao@ohdsi.org","Pending peer review","","New users of Fluoroquinolone systemic nested in Acute Typical Pneumonia","#HowOften, #Target, #Study, #Symposium",1,"'Patrick Ryan'","","'Johnson and Johnson', 'OHDSI'","","","",,"2023-09-21","2023-09-21",,"",,0,,,"ERA",0,"end of continuous drug exposure",,,1,"First",FALSE,"All","First",1,1,"DrugExposure",365,0,3,1,0,0,0,0,0,,,0,,,,1,,,,1,,,,,,,,,,,,,9,30,0,,,,, +1064,"[P] New users of Cephalosporin systemetic nested in Acute Typical Pneumonia","New users of Cephalosporin systemetic nested in Acute Typical Pneumonia","New users of Cephalosporin systemetic nested in Acute Typical Pneumonia","rao@ohdsi.org","Pending peer review","","New users of Cephalosporin systemetic nested in Acute Typical Pneumonia","#HowOften, #Target, #Study, #Symposium",1,"'Patrick Ryan'","","'Johnson and Johnson', 'OHDSI'","","","",,"2023-09-21","2023-09-21",,"",,0,,,"ERA",0,"end of continuous drug exposure",,,1,"First",FALSE,"All","First",1,1,"DrugExposure",365,0,3,1,0,0,0,0,0,,,0,,,,1,,,,1,,,,,,,,,,,,,10,30,0,,,,, +1065,"[P] New users of Trimethoprim systemetic nested in Acute Typical Pneumonia","New users of Trimethoprim systemetic nested in Acute Typical Pneumonia","New users of Trimethoprim systemetic nested in Acute Typical Pneumonia","rao@ohdsi.org","Pending peer review","","New users of Trimethoprim systemetic nested in Acute Typical Pneumonia","#HowOften, #Target, #Study, #Symposium",1,"'Patrick Ryan'","","'Johnson and Johnson', 'OHDSI'","","","",,"2023-09-21","2023-09-21",,"",,0,,,"ERA",0,"end of continuous drug exposure",,,1,"First",FALSE,"All","First",1,1,"DrugExposure",365,0,3,1,0,0,0,0,0,,,0,,,,1,,,,1,,,,,,,,,,,,,11,30,0,,,,, +1066,"[P] New users of Tumor Necrosis Factor alpha (TNFa) inhibitors nested in Rheumatoid arthritis","New users of Tumor Necrosis Factor alpha (TNFa) inhibitors nested in Rheumatoid arthritis","New users of Tumor Necrosis Factor alpha (TNFa) inhibitors nested in Rheumatoid arthritis","rao@ohdsi.org","Pending peer review","","New users of Tumor Necrosis Factor alpha (TNFa) inhibitors nested in Rheumatoid arthritis","#HowOften, #Target, #Study, #Symposium",1,"'Patrick Ryan'","","'Johnson and Johnson', 'OHDSI'","","","",,"2023-09-21","2023-09-21",,"",,0,,,"ERA",0,"end of continuous drug exposure",,,1,"First",FALSE,"All","First",1,1,"DrugExposure",365,0,2,1,0,0,0,0,0,,,0,,,,1,,,,1,,,,,,,,,,,,,6,90,0,,,,, +1067,"[P] New users of JAK inhibitors nested in Ulcerative colitis","New users of JAK inhibitors nested in Ulcerative colitis","New users of JAK inhibitors nested in Ulcerative colitis","rao@ohdsi.org","Pending peer review","","New users of JAK inhibitors nested in Ulcerative colitis","#HowOften, #Target, #Study, #Symposium",1,"'Patrick Ryan'","","'Johnson and Johnson', 'OHDSI'","","","",,"2023-09-21","2023-09-21",,"",,0,,,"ERA",0,"end of continuous drug exposure",,,1,"First",FALSE,"All","First",1,1,"DrugExposure",365,0,2,1,0,0,0,0,0,,,0,,,,1,,,,1,,,,,,,,,,,,,7,90,0,,,,, +1068,"[P] New users of Tumor Necrosis Factor alpha (TNFa) inhibitors nested in Ulcerative colitis","New users of Tumor Necrosis Factor alpha (TNFa) inhibitors nested in Ulcerative colitis","New users of Tumor Necrosis Factor alpha (TNFa) inhibitors nested in Ulcerative colitis","rao@ohdsi.org","Pending peer review","","New users of Tumor Necrosis Factor alpha (TNFa) inhibitors nested in Ulcerative colitis","#HowOften, #Target, #Study, #Symposium",1,"'Patrick Ryan'","","'Johnson and Johnson', 'OHDSI'","","","",,"2023-09-21","2023-09-21",,"",,0,,,"ERA",0,"end of continuous drug exposure",,,1,"First",FALSE,"All","First",1,1,"DrugExposure",365,0,2,1,0,0,0,0,0,,,0,,,,1,,,,1,,,,,,,,,,,,,6,90,0,,,,, +1069,"[P] New users of Tumor Necrosis Factor alpha (TNFa) inhibitors nested in Crohns disease","New users of Tumor Necrosis Factor alpha (TNFa) inhibitors nested in Crohns disease","New users of Tumor Necrosis Factor alpha (TNFa) inhibitors nested in Crohns disease","rao@ohdsi.org","Pending peer review","","New users of Tumor Necrosis Factor alpha (TNFa) inhibitors nested in Crohns disease","#HowOften, #Target, #Study, #Symposium",1,"'Patrick Ryan'","","'Johnson and Johnson', 'OHDSI'","","","",,"2023-09-21","2023-09-21",,"",,0,,,"ERA",0,"end of continuous drug exposure",,,1,"First",FALSE,"All","First",1,1,"DrugExposure",365,0,2,1,0,0,0,0,0,,,0,,,,1,,,,1,,,,,,,,,,,,,6,90,0,,,,, +1070,"[P] New users of JAK inhibitors nested in Rheumatoid arthritis","New users of JAK inhibitors nested in Rheumatoid arthritis","New users of JAK inhibitors nested in Rheumatoid arthritis","rao@ohdsi.org","Pending peer review","","New users of JAK inhibitors nested in Rheumatoid arthritis","#HowOften, #Target, #Study, #Symposium",1,"'Patrick Ryan'","","'Johnson and Johnson', 'OHDSI'","","","",,"2023-09-21","2023-09-21",,"",,0,,,"ERA",0,"end of continuous drug exposure",,,1,"First",FALSE,"All","First",1,1,"DrugExposure",365,0,2,1,0,0,0,0,0,,,0,,,,1,,,,1,,,,,,,,,,,,,7,90,0,,,,, +1071,"[P] persons at risk at start of year 2012-2022 with 365d prior observation","persons at risk at start of year 2012-2022 with 365d prior observation","persons at risk at start of year 2012-2022 with 365d prior observation","rao@ohdsi.org","Pending peer review","","persons at risk at start of year 2012-2022 with 365d prior observation","#Target, #Study, #Symposium, #baseCohort",1,"'Patrick Ryan'","","'Johnson and Johnson', 'OHDSI'","","","",,"2023-09-21","2023-10-02",,"",,0,,,"ERA",0,"fixed duration relative to initial event","StartDate",1,0,"All",TRUE,"All","All",11,1,"ObservationPeriod",365,0,0,1,1,1,1,0,0,,,1,,,,,,,,,,,,,,,,,,,,,,,,1,1,1,, +1072,"[P] CMV Anterior Uveitis","CMV Anterior Uveitis","Cytomegalovirus CMV Anterior Uveitis","rao@ohdsi.org","Pending peer review","",,"#Opthalmology, #OhdsiWorkGroup",1,"'Edward Lee','Kiana Tavakoli','Rupesh Agrawal','Karen Armbrust','Kareem Moussa','Jessica Shantha','Edmund Tsui','Brian Toy'","'','0000-0002-9612-5697','','','','','','','',''","'Roski Eye Institute, Keck School of Medicine, USC','Shiley Eye Institute, University of California San Diego','National Healthcare Group Eye Institute, Tan Tock Seng Hospital, Singapore', 'Minneapolis VA Health Care System, University of Minnesota','UC Davis','UCSF','UCLA Stein Eye Institute, David Geffen School of Medicine at UCLA','Roski Eye Institute, Keck School of Medicine, USC'","","","436100",,"2023-09-21","2023-10-18",,"",,0,,,"ERA",0,"end of continuous observation",,,6,"First",FALSE,"All","First",5,3,"ConditionOccurrence, Measurement, Observation",0,0,11,1,0,0,0,0,0,1,1,0,1,,,,,,,,,,,,,,,,,,,,,,,,,,, +1073,"[P] Serious Infection, opportunistic infections and other infections of interest event","Serious Infection, opportunistic infections and other infections of interest event","Serious Infection, opportunistic infections and other infections of interest event","rao@ohdsi.org","Pending peer review","","Incidence of Serious Infection, opportunistic infections and other infections of interest event.","#Infection",1,"Joel Swerdel'","0000-0002-6976-2594'","'OHDSI'","","","81893",,"2023-09-22","2023-09-22",,"",,0,,,"ERA",90,"fixed duration relative to initial event","StartDate",30,0,"All",FALSE,"All","All",3,1,"ConditionOccurrence",0,0,4,1,0,0,0,1,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1074,"[P] Serious Infection","Serious Infection","Serious Infection","rao@ohdsi.org","Pending peer review","","Incidence of Serious Infection.","#Infection",1,"Joel Swerdel'","0000-0002-6976-2594'","'OHDSI'","","","81893",,"2023-09-22","2023-09-22",,"",,0,,,"ERA",90,"fixed duration relative to initial event","StartDate",30,0,"All",TRUE,"All","All",1,1,"ConditionOccurrence",0,0,2,1,0,0,0,1,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1075,"[P] FDA AESI Narcolepsy","FDA AESI Narcolepsy","Narcolepsy","rao@ohdsi.org","Pending peer review","","Narcolepsy","#AESI, ,#FDA, #Study, #Symposium, #Covid19SubjectsAesiIncidenceRate",1,"'Azza Shoaibi','Gowtham Rao','Rupa Makadia', 'Patrick Ryan'","'0000-0002-6976-2594', '0000-0002-4949-7236','',''","'Johnson and Johnson', 'OHDSI'","","","",,"2023-09-22","2023-09-22",,"",,0,,,"ERA",0,"fixed duration relative to initial event","StartDate",1,1,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,1,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1076,"[P] FDA AESI Anaphylaxis","FDA AESI Anaphylaxis","Anaphylaxis","rao@ohdsi.org","Pending peer review","","Anaphylaxis","#AESI, ,#FDA, #Study, #Symposium, #Covid19, #Covid19SubjectsAesiIncidenceRate",1,"'Azza Shoaibi','Gowtham Rao','Rupa Makadia', 'Patrick Ryan'","'0000-0002-6976-2594', '0000-0002-4949-7236','',''","'Johnson and Johnson', 'OHDSI'","","","",,"2023-09-22","2023-09-22",,"",,0,,,"ERA",0,"fixed duration relative to initial event","StartDate",1,1,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,1,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1077,"[P] FDA AESI Anaphylaxis v2","FDA AESI Anaphylaxis v2","Anaphylaxis v2","rao@ohdsi.org","Pending peer review","","Anaphylaxis v2","#AESI, ,#FDA, #Study, #Symposium, #Covid19, #Covid19SubjectsAesiIncidenceRate",1,"'Azza Shoaibi','Gowtham Rao','Rupa Makadia', 'Patrick Ryan'","'0000-0002-6976-2594', '0000-0002-4949-7236','',''","'Johnson and Johnson', 'OHDSI'","","","",,"2023-09-22","2023-10-09",,"",,0,,,"ERA",0,"fixed duration relative to initial event","StartDate",1,1,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,2,1,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1078,"[P] FDA AESI Bells Palsy","FDA AESI Bells Palsy","Bells Palsy","rao@ohdsi.org","Pending peer review","","Bells Palsy","#AESI, ,#FDA, #Study, #Symposium, #Covid19, #Covid19SubjectsAesiIncidenceRate",1,"'Azza Shoaibi','Gowtham Rao','Rupa Makadia', 'Patrick Ryan'","'0000-0002-6976-2594', '0000-0002-4949-7236','',''","'Johnson and Johnson', 'OHDSI'","","","",,"2023-09-22","2023-09-22",,"",,0,,,"ERA",0,"fixed duration relative to initial event","StartDate",1,1,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,1,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1079,"[P] FDA AESI Encephalomyelitis","FDA AESI Encephalomyelitis","Encephalomyelitis","rao@ohdsi.org","Pending peer review","","Encephalomyelitis","#AESI, ,#FDA, #Study, #Symposium, #Covid19, #Covid19SubjectsAesiIncidenceRate",1,"'Azza Shoaibi','Gowtham Rao','Rupa Makadia', 'Patrick Ryan'","'0000-0002-6976-2594', '0000-0002-4949-7236','',''","'Johnson and Johnson', 'OHDSI'","","","",,"2023-09-22","2023-09-22",,"",,0,,,"ERA",0,"fixed duration relative to initial event","StartDate",1,1,"All",TRUE,"All","All",1,1,"ConditionOccurrence",0,0,2,1,0,0,0,1,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1080,"[P] FDA AESI Guillain Barre Syndrome","FDA AESI Guillain Barre Syndrome","Guillain Barre Syndrome","rao@ohdsi.org","Pending peer review","","Guillain Barre Syndrome","#AESI, ,#FDA, #Study, #Symposium, #Covid19, #Covid19SubjectsAesiIncidenceRate",1,"'Azza Shoaibi','Gowtham Rao','Rupa Makadia', 'Patrick Ryan'","'0000-0002-6976-2594', '0000-0002-4949-7236','',''","'Johnson and Johnson', 'OHDSI'","","","",,"2023-09-22","2023-09-22",,"",,0,,,"ERA",0,"fixed duration relative to initial event","StartDate",1,1,"All",TRUE,"All","All",1,1,"ConditionOccurrence",0,0,2,1,0,0,0,1,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1081,"[P] FDA AESI Acute Myocardial Infarction or its complications","FDA AESI Acute Myocardial Infarction or its complications","Acute Myocardial Infarction including its complications","rao@ohdsi.org","Pending peer review","","Acute Myocardial Infarction","#AESI, ,#FDA, #Study, #Symposium, #Covid19, #Covid19SubjectsAesiIncidenceRate",1,"'Azza Shoaibi','Gowtham Rao','Rupa Makadia', 'Patrick Ryan'","'0000-0002-6976-2594', '0000-0002-4949-7236','',''","'Johnson and Johnson', 'OHDSI'","","","",,"2023-09-22","2023-09-25",,"",,0,,,"ERA",0,"fixed duration relative to initial event","StartDate",1,1,"All",TRUE,"All","All",1,1,"ConditionOccurrence",0,0,2,1,0,0,0,1,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1082,"[P] FDA AESI Myocarditis Pericarditis","FDA AESI Myocarditis Pericarditis","Myocarditis Pericarditis","rao@ohdsi.org","Pending peer review","","Myocarditis Pericarditis","#AESI, ,#FDA, #Study, #Symposium, #Covid19, #Covid19SubjectsAesiIncidenceRate",1,"'Azza Shoaibi','Gowtham Rao','Rupa Makadia', 'Patrick Ryan'","'0000-0002-6976-2594', '0000-0002-4949-7236','',''","'Johnson and Johnson', 'OHDSI'","","","",,"2023-09-22","2023-09-22",,"",,0,,,"ERA",0,"fixed duration relative to initial event","StartDate",1,1,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,1,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1083,"[P] FDA AESI Immune Thrombocytopenia (ITP)","FDA AESI Immune Thrombocytopenia (ITP)","Immune Thrombocytopenia (ITP)","rao@ohdsi.org","Pending peer review","","Immune Thrombocytopenia (ITP)","#AESI, ,#FDA, #Study, #Symposium, #Covid19, #Covid19SubjectsAesiIncidenceRate",1,"'Azza Shoaibi','Gowtham Rao','Rupa Makadia', 'Patrick Ryan'","'0000-0002-6976-2594', '0000-0002-4949-7236','',''","'Johnson and Johnson', 'OHDSI'","","","",,"2023-09-22","2023-09-22",,"",,0,,,"ERA",0,"fixed duration relative to initial event","StartDate",1,1,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,1,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1084,"[P] FDA AESI Disseminated Intravascular Coagulation","FDA AESI Disseminated Intravascular Coagulation","Disseminated Intravascular Coagulation","rao@ohdsi.org","Pending peer review","","Disseminated Intravascular Coagulation","#AESI, ,#FDA, #Study, #Symposium, #Covid19, #Covid19SubjectsAesiIncidenceRate",1,"'Azza Shoaibi','Gowtham Rao','Rupa Makadia', 'Patrick Ryan'","'0000-0002-6976-2594', '0000-0002-4949-7236','',''","'Johnson and Johnson', 'OHDSI'","","","",,"2023-09-22","2023-09-22",,"",,0,,,"ERA",0,"fixed duration relative to initial event","StartDate",1,1,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,2,1,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1085,"[P] FDA AESI Appendicitis","FDA AESI Appendicitis","Appendicitis","rao@ohdsi.org","Pending peer review","","Appendicitis","#AESI, ,#FDA, #Study, #Symposium, #Covid19, #Covid19SubjectsAesiIncidenceRate",1,"'Azza Shoaibi','Gowtham Rao','Rupa Makadia', 'Patrick Ryan'","'0000-0002-6976-2594', '0000-0002-4949-7236','',''","'Johnson and Johnson', 'OHDSI'","","","",,"2023-09-22","2023-09-22",,"",,0,,,"ERA",0,"fixed duration relative to initial event","StartDate",1,1,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,2,1,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1086,"[P] FDA AESI Transverse Myelitis","FDA AESI Transverse Myelitis","Transverse Myelitis","rao@ohdsi.org","Pending peer review","","Transverse Myelitis","#AESI, ,#FDA, #Study, #Symposium, #Covid19, #Covid19SubjectsAesiIncidenceRate",1,"'Azza Shoaibi','Gowtham Rao','Rupa Makadia', 'Patrick Ryan'","'0000-0002-6976-2594', '0000-0002-4949-7236','',''","'Johnson and Johnson', 'OHDSI'","","","",,"2023-09-22","2023-09-22",,"",,0,,,"ERA",0,"fixed duration relative to initial event","StartDate",1,1,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,1,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1087,"[P] FDA AESI Hemorrhagic Stroke","FDA AESI Hemorrhagic Stroke","Hemorrhagic Stroke","rao@ohdsi.org","Pending peer review","","Hemorrhagic Stroke","#AESI, ,#FDA, #Study, #Symposium, #Covid19, #Covid19SubjectsAesiIncidenceRate",1,"'Azza Shoaibi','Gowtham Rao','Rupa Makadia', 'Patrick Ryan'","'0000-0002-6976-2594', '0000-0002-4949-7236','',''","'Johnson and Johnson', 'OHDSI'","","","",,"2023-09-22","2023-09-22",,"",,0,,,"ERA",0,"fixed duration relative to initial event","StartDate",1,1,"All",TRUE,"All","All",1,1,"ConditionOccurrence",0,0,2,1,0,0,0,1,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1088,"[P] FDA AESI Deep Vein Thrombosis (DVT)","FDA AESI Deep Vein Thrombosis (DVT)","Deep Vein Thrombosis (DVT)","rao@ohdsi.org","Pending peer review","","Deep Vein Thrombosis (DVT)","#AESI, ,#FDA, #Study, #Symposium, #Covid19, #Covid19SubjectsAesiIncidenceRate",1,"'Azza Shoaibi','Gowtham Rao','Rupa Makadia', 'Patrick Ryan'","'0000-0002-6976-2594', '0000-0002-4949-7236','',''","'Johnson and Johnson', 'OHDSI'","","","",,"2023-09-22","2023-09-22",,"",,0,,,"ERA",0,"fixed duration relative to initial event","StartDate",1,1,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,1,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1089,"[P] FDA AESI Non-hemorrhagic Stroke","FDA AESI Non-hemorrhagic Stroke","Non-hemorrhagic Stroke","rao@ohdsi.org","Pending peer review","","Non-hemorrhagic Stroke","#AESI, ,#FDA, #Study, #Symposium, #Covid19, #Covid19SubjectsAesiIncidenceRate",1,"'Azza Shoaibi','Gowtham Rao','Rupa Makadia', 'Patrick Ryan'","'0000-0002-6976-2594', '0000-0002-4949-7236','',''","'Johnson and Johnson', 'OHDSI'","","","",,"2023-09-22","2023-09-22",,"",,0,,,"ERA",0,"fixed duration relative to initial event","StartDate",1,1,"All",TRUE,"All","All",1,1,"ConditionOccurrence",0,0,2,1,0,0,0,1,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1090,"[P] FDA AESI Pulmonary Embolism","FDA AESI Pulmonary Embolism","Pulmonary Embolism","rao@ohdsi.org","Pending peer review","","Pulmonary Embolism","#AESI, ,#FDA, #Study, #Symposium, #Covid19, #Covid19SubjectsAesiIncidenceRate",1,"'Azza Shoaibi','Gowtham Rao','Rupa Makadia', 'Patrick Ryan'","'0000-0002-6976-2594', '0000-0002-4949-7236','',''","'Johnson and Johnson', 'OHDSI'","","","",,"2023-09-22","2023-09-22",,"",,0,,,"ERA",0,"fixed duration relative to initial event","StartDate",1,1,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,1,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1091,"[P] FDA AESI Thrombosis with Thrombocytopenia (TWT)","FDA AESI Thrombosis with Thrombocytopenia (TWT)","Thrombosis with Thrombocytopenia (TWT)","rao@ohdsi.org","Pending peer review","","Thrombosis with Thrombocytopenia (TWT)","#AESI, ,#FDA, #Study, #Symposium, #Covid19, #Covid19SubjectsAesiIncidenceRate",1,"'Azza Shoaibi','Gowtham Rao','Rupa Makadia', 'Patrick Ryan'","'0000-0002-6976-2594', '0000-0002-4949-7236','',''","'Johnson and Johnson', 'OHDSI'","","","",,"2023-09-22","2023-09-22",,"",,0,,,"ERA",0,"fixed duration relative to initial event","StartDate",1,2,"All",FALSE,"All","All",11,1,"ConditionOccurrence",0,0,16,1,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1093,"[P] Abdominal Aortic Aneurysm Repair, adults, inpt stay, no ED, post op new Afib","Abdominal Aortic Aneurysm Repair, adults, inpt stay, no ED, post op new Afib","Abdominal Aortic Aneurysm Repair, adults, inpt stay, no ED, post op new Afib","rao@ohdsi.org","Pending peer review","","Non emergent (No ED visit) AAA repair (requiring inpatient stay) among adults, first occurrence Afib (any) that occurs 14d after index (date of surgery), no prior atrial fibrillation","#Surgery, #WorkGroup",1,"Evan Minty","0000-0003-4631-9992","'OHDSI'","","","",,"2023-09-25","2024-01-05",,"",,0,,,"ERA",0,"end of continuous observation",,,4,"First",FALSE,"All","First",2,1,"ProcedureOccurrence",0,0,4,1,1,0,0,1,0,,,0,,,,,,,1,,1,,,,,,,,,,,1,,,,,,,, +1094,"[P] Lower Extremity Bypass - post op new Afib","Lower Extremity Bypass - post op new Afib","Lower Extremity Bypass - post op new Afib","rao@ohdsi.org","Pending peer review","","Non emergent (No ED visit) Lower Extremity Bypass (requiring inpatient stay) among adults, first occurrence Afib (any) that occurs 14d after index (date of surgery), no prior atrial fibrillation.","#Surgery, #WorkGroup",1,"Evan Minty","0000-0003-4631-9992","'OHDSI'","","","",,"2023-09-25","2024-01-05",,"",,0,,,"ERA",0,"end of continuous observation",,,4,"First",FALSE,"All","First",2,1,"ProcedureOccurrence",0,0,4,1,1,0,0,1,0,,,0,,,,,,,1,,1,,,,,,,,,,,1,,,,,,,, +1095,"[P] Carotid Endarterectomy, adults, inpt stay, no ED, post op new Afib","Carotid Endarterectomy, adults, inpt stay, no ED, post op new Afib","Carotid Endarterectomy, adults, inpt stay, no ED, post op new Afib","rao@ohdsi.org","Pending peer review","","Non emergent (No ED visit) Carotid Endarterctomy (requiring inpatient stay) among adults, first occurrence Afib (any) that occurs 14d after index (date of surgery), no prior atrial fibrillation","#Surgery, #WorkGroup",1,"Evan Minty","0000-0003-4631-9992","'OHDSI'","","","",,"2023-09-25","2024-01-05",,"",,0,,,"ERA",0,"end of continuous observation",,,4,"First",FALSE,"All","First",2,1,"ProcedureOccurrence",0,0,4,1,1,0,0,1,0,,,0,,,,,,,1,,1,,,,,,,,,,,1,,,,,,,, +1097,"[P] Esophagectomy, adults, inpt stay, no ED, post op new Afib","Esophagectomy, adults, inpt stay, no ED, post op new Afib","Esophagectomy, adults, inpt stay, no ED, post op new Afib","rao@ohdsi.org","Pending peer review","","Non emergent (No ED visit) Esophagectomy (requiring inpatient stay) among adults, first occurrence Afib (any) that occurs 14d after index (date of surgery), no prior atrial fibrillation","#Surgery, #WorkGroup",1,"Evan Minty","0000-0003-4631-9992","'OHDSI'","","","",,"2023-09-25","2024-01-05",,"",,0,,,"ERA",0,"end of continuous observation",,,4,"First",FALSE,"All","First",2,1,"ProcedureOccurrence",0,0,4,1,1,0,0,1,0,,,0,,,,,,,1,,1,,,,,,,,,,,1,,,,,,,, +1098,"[P] Pancreatectomy, adults, inpt stay, no ED, post op new Afib","Pancreatectomy, adults, inpt stay, no ED, post op new Afib","Pancreatectomy, adults, inpt stay, no ED, post op new Afib","rao@ohdsi.org","Pending peer review","","Non emergent (No ED visit) Pancreatectomy (requiring inpatient stay) among adults, first occurrence Afib (any) that occurs 14d after index (date of surgery), no prior atrial fibrillation","#Surgery, #WorkGroup",1,"Evan Minty","0000-0003-4631-9992","'OHDSI'","","","",,"2023-09-25","2024-01-05",,"",,0,,,"ERA",0,"end of continuous observation",,,4,"First",FALSE,"All","First",2,1,"ProcedureOccurrence",0,0,4,1,1,0,0,1,0,,,0,,,,,,,1,,1,,,,,,,,,,,1,,,,,,,, +1099,"[P] Colectomy, adults, inpt stay, no ED, post op new Afib","Colectomy, adults, inpt stay, no ED, post op new Afib","Colectomy, adults, inpt stay, no ED, post op new Afib","rao@ohdsi.org","Pending peer review","","Non emergent (No ED visit) Colectomy (requiring inpatient stay) among adults, first occurrence Afib (any) that occurs 14d after index (date of surgery), no prior atrial fibrillation","#Surgery, #WorkGroup",1,"Evan Minty","0000-0003-4631-9992","'OHDSI'","","","",,"2023-09-25","2024-01-05",,"",,0,,,"ERA",0,"end of continuous observation",,,4,"First",FALSE,"All","First",2,1,"ProcedureOccurrence",0,0,4,1,1,0,0,1,0,,,0,,,,,,,1,,1,,,,,,,,,,,1,,,,,,,, +1100,"[P] Cystectomy, adults, inpt stay, no ED, post op new Afib","Cystectomy, adults, inpt stay, no ED, post op new Afib","Cystectomy, adults, inpt stay, no ED, post op new Afib","rao@ohdsi.org","Pending peer review","","Non emergent (No ED visit) Cystectomy (requiring inpatient stay) among adults, first occurrence Afib (any) that occurs 14d after index (date of surgery), no prior atrial fibrillation","#Surgery, #WorkGroup",1,"Evan Minty","0000-0003-4631-9992","'OHDSI'","","","",,"2023-09-25","2024-01-05",,"",,0,,,"ERA",0,"end of continuous observation",,,4,"First",FALSE,"All","First",2,1,"ProcedureOccurrence",0,0,4,1,1,0,0,1,0,,,0,,,,,,,1,,1,,,,,,,,,,,1,,,,,,,, +1101,"[P] Nephrectomy, adults, inpt stay, no ED, post op new Afib","Nephrectomy, adults, inpt stay, no ED, post op new Afib","Nephrectomy, adults, inpt stay, no ED, post op new Afib","rao@ohdsi.org","Pending peer review","","Non emergent (No ED visit) Nephrectomy (requiring inpatient stay) among adults, first occurrence Afib (any) that occurs 14d after index (date of surgery), no prior atrial fibrillation","#Surgery, #WorkGroup",1,"Evan Minty","0000-0003-4631-9992","'OHDSI'","","","",,"2023-09-25","2024-01-05",,"",,0,,,"ERA",0,"end of continuous observation",,,4,"First",FALSE,"All","First",2,1,"ProcedureOccurrence",0,0,4,1,1,0,0,1,0,,,0,,,,,,,1,,1,,,,,,,,,,,1,,,,,,,, +1102,"[P] Coronary Artery Bypass Graft Surgery, adults, inpt stay, no ED, post op new Afib","Coronary Artery Bypass Graft Surgery, adults, inpt stay, no ED, post op new Afib","Coronary Artery Bypass Graft Surgery, adults, inpt stay, no ED, post op new Afib","rao@ohdsi.org","Pending peer review","","Non emergent (No ED visit)CABG (requiring inpatient stay) among adults, first occurrence Afib (any) that occurs 14d after index (date of surgery), no prior atrial fibrillation","#Surgery, #WorkGroup",1,"Evan Minty","0000-0003-4631-9992","'OHDSI'","","","",,"2023-09-25","2024-01-05",,"",,0,,,"ERA",0,"end of continuous observation",,,4,"First",FALSE,"All","First",2,1,"ProcedureOccurrence",0,0,4,1,1,0,0,1,0,,,0,,,,,,,1,,1,,,,,,,,,,,1,,,,,,,, +1103,"[P] Cardiac Valve Surgery, adults, inpt stay, no ED, post op new Afib","Cardiac Valve Surgery, adults, inpt stay, no ED, post op new Afib","Cardiac Valve Surgery, adults, inpt stay, no ED, post op new Afib","rao@ohdsi.org","Pending peer review","","Non emergent (No ED visit) Aortic Or Mitral Repair or Replacement (requiring inpatient stay) among adults, first occurrence Afib (any) that occurs 14d after index (date of surgery), no prior atrial fibrillation","#Surgery, #WorkGroup",1,"Evan Minty","0000-0003-4631-9992","'OHDSI'","","","",,"2023-09-25","2024-01-05",,"",,0,,,"ERA",0,"end of continuous observation",,,4,"First",FALSE,"All","First",2,1,"ProcedureOccurrence",0,0,4,1,1,0,0,1,0,,,0,,,,,,,1,,1,,,,,,,,,,,1,,,,,,,, +1104,"[P] RBC Transfusion (adult relevant, no auto 1yr clean window)","RBC Transfusion (adult relevant, no auto 1yr clean window)","RBC Transfusion (adult relevant, no auto 1yr clean window)","rao@ohdsi.org","Pending peer review","","RBC transfusion with no prior transfusion","#Surgery, #WorkGroup",1,"Evan Minty","0000-0003-4631-9992","'OHDSI'","","","",,"2023-09-25","2023-09-25",,"",,0,,,"ERA",0,"end of continuous observation",,,1,"First",FALSE,"All","First",1,1,"ProcedureOccurrence",0,0,2,1,0,0,0,0,0,,,0,,,,,,,1,,,,,,,,,,,,,,,,,,,,, +1105,"[P] Clostridium difficile - first episode","Clostridium difficile - first episode","Clostridium difficile - first episode","rao@ohdsi.org","Pending peer review","","Clostridium difficile with no history of clostridium difficle","#Surgery, #WorkGroup",1,"Evan Minty","0000-0003-4631-9992","'OHDSI'","","","4307981",,"2023-09-25","2023-10-04",,"",,0,,,"ERA",0,"end of continuous observation",,,2,"First",FALSE,"All","First",2,2,"ConditionOccurrence, Measurement",0,0,2,1,0,0,0,0,0,1,1,0,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1106,"[P] Non-Emergent Major Non Cardiac Surgery no prior Opioid","Non-Emergent Major Non Cardiac Surgery no prior Opioid","Non-Emergent Major Non Cardiac Surgery no prior Opioid","rao@ohdsi.org","Pending peer review","","Persons having any of major non cardiac surgery","#Surgery, #WorkGroup",1,"Evan Minty","0000-0003-4631-9992","'OHDSI'","","","","","2023-09-25","2023-10-05",,"",,0,,,"ERA",0,"end of continuous observation",,,3,"First",FALSE,"All","First",35,1,"ProcedureOccurrence",0,0,38,1,1,0,0,1,0,,,0,,,,,,,1,,1,,,,,,,,,,,,,,,,,,, +1150,"Emergency room only or Emergency room and inpatient visits (0Pe, 0Era)","Emergency room only or Emergency room and inpatient visits (0Pe, 0Era)","Emergency room visits (0Pe, 0Era)","rao@ohdsi.org","Accepted","3.4.0","All events of Emergency Room visits or Emergency room or inpatient visit. This cohort is deemed validated as it represents data convention and did not need to go thru peer review process","#standard, #Visits",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","","","2023-10-04","2023-10-04",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"VisitOccurrence",0,0,1,0,0,0,0,0,0,,,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,, +1151,"[P] Autism","Autism","Autism","rao@ohdsi.org","Pending peer review","","","#autism",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","439776","","2023-10-05","2023-10-05",,"",,0,,,"ERA",0,"end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1152,"[P] Deep Vein Thrombosis DVT 10","Deep Vein Thrombosis DVT 10","Deep Vein Thrombosis DVT","rao@ohdsi.org","Prediction","","All events of Deep Vein Thrombosis (DVT), indexed on a condition occurrence of Deep Vein Thrombosis (DVT). Requiring a clean window of 30 days, cohort exit is 1 day after start date.","#Prediction",1,"'Jenna Reps'","'0000-0002-2970-0778'","'Johnson and Johnson', 'OHDSI'","","","4133004",,"2023-10-09","2023-10-09",,"","Prediction phenotypes",0,,,"ERA",0,"fixed duration relative to initial event","StartDate",1,1,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,1,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1153,"[P] Seizure 10","Seizure 10","Seizure","rao@ohdsi.org","Prediction","","First Seizure record in 42 days continues for 1 day","#Prediction",1,"'Jenna Reps'","'0000-0002-2970-0778'","'Johnson and Johnson', 'OHDSI'","","","377091",,"2023-10-09","2023-10-09",,"","Prediction phenotypes",0,,,"ERA",0,"fixed duration relative to initial event","StartDate",1,1,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,1,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1154,"[P] Heart failure 10","Heart failure 10","Heart failure","rao@ohdsi.org","Prediction","","First Heart failure continues until observation end","#Prediction",1,"'Jenna Reps'","'0000-0002-2970-0778'","'Johnson and Johnson', 'OHDSI'","","","316139",,"2023-10-09","2023-10-09",,"","Prediction phenotypes",0,,,"ERA",0,"end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1155,"[P] Non-hemorrhagic Stroke 10","Non-hemorrhagic Stroke 10","Non-hemorrhagic Stroke","rao@ohdsi.org","Prediction","","All events of Ischemic (Non-hemorrhagic) Stroke, indexed on a condition occurrence of Ischemic (Non-hemorrhagic), limited to events with overlapping inpatient visit with no such events in prior 365 days (clean window). Persons exit the cohort at the start date + 1 day.","#Prediction",1,"'Jenna Reps'","'0000-0002-2970-0778'","'Johnson and Johnson', 'OHDSI'","","","443454",,"2023-10-09","2023-10-09",,"","Prediction phenotypes",0,,,"ERA",0,"fixed duration relative to initial event","StartDate",1,1,"All",TRUE,"All","All",1,1,"ConditionOccurrence",0,0,2,1,0,0,0,1,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1156,"[P] Hemorrhagic stroke 10","Hemorrhagic stroke 10","Hemorrhagic stroke","rao@ohdsi.org","Prediction","","All events of Hemorrhagic stroke, indexed on a condition occurrence of Hemorrhagic stroke, limited to events with overlapping inpatient visit with no such events in prior 365 days (clean window). Persons exit the cohort at the start date + 1 day.","#Prediction",1,"'Jenna Reps'","'0000-0002-2970-0778'","'Johnson and Johnson', 'OHDSI'","","","439847",,"2023-10-09","2023-10-09",,"","Prediction phenotypes",0,,,"ERA",0,"fixed duration relative to initial event","StartDate",1,1,"All",TRUE,"All","All",1,1,"ConditionOccurrence",0,0,2,1,0,0,0,1,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1157,"[P] peripheral vascular disease 10","peripheral vascular disease 10","peripheral vascular disease","rao@ohdsi.org","Prediction","","First peripheral vascular disease continues until end of observation","#Prediction",1,"'Jenna Reps'","'0000-0002-2970-0778'","'Johnson and Johnson', 'OHDSI'","","","321052",,"2023-10-09","2023-10-09",,"","Prediction phenotypes",0,,,"ERA",0,"end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1158,"[P] Aspirin 10","Aspirin 10","Aspirin","rao@ohdsi.org","Prediction","","aspirin exposures w 0d prior obsv 30d gap","#Prediction",1,"'Jenna Reps'","'0000-0002-2970-0778'","'Johnson and Johnson', 'OHDSI'","","","1112807",,"2023-10-09","2023-10-09",,"","Prediction phenotypes",0,,,"ERA",0,"end of continuous drug exposure",,,0,"All",FALSE,"All","All",1,1,"DrugExposure",0,0,1,0,0,0,0,0,0,,,1,,,,1,,,,,,,,,,,,,,,,,0,30,0,,,,, +1159,"[P] Angina 10","Angina 10","Angina","rao@ohdsi.org","Prediction","","First Angina in 30 days continues for 1 days","#Prediction",1,"'Jenna Reps'","'0000-0002-2970-0778'","'Johnson and Johnson', 'OHDSI'","","","77670",,"2023-10-09","2023-10-09",,"","Prediction phenotypes",0,,,"ERA",1,"fixed duration relative to initial event","EndDate",1,1,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,1,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1160,"[P] Atrial Fibrillation 10","Atrial Fibrillation 10","Atrial Fibrillation","rao@ohdsi.org","Prediction","","First Atrial Fibrillation continues until end of observation","#Prediction",1,"'Jenna Reps'","'0000-0002-2970-0778'","'Johnson and Johnson', 'OHDSI'","","","313217",,"2023-10-09","2023-10-09",,"","Prediction phenotypes",0,,,"ERA",0,"end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,0,,,,,,,,1,,,,,,,,,,,,,,,,,,,, +1161,"[P] Major depressive disorder with NO occurrence of certain psychiatric disorder 10","Major depressive disorder with NO occurrence of certain psychiatric disorder 10","Major depressive disorder with NO occurrence of certain psychiatric disorder","rao@ohdsi.org","Prediction","","Earliest occurrence of major depressive disorder indexed on diagnosis date requiring no occurrence anytime prior including day 0 of Bipolar disorder, Schizoaffective, Schizophrenia not including paraphrenia, Dementia or Psychotic disorder cohort exit is the end of continuous observation.","#Prediction",1,"'Jenna Reps'","'0000-0002-2970-0778'","'Johnson and Johnson', 'OHDSI'","","","440383",,"2023-10-09","2023-10-09",,"","Prediction phenotypes",0,,,"ERA",0,"end of continuous observation",,,0,"First",TRUE,"All","First",1,1,"ConditionOccurrence",0,0,6,1,0,0,0,0,0,1,,0,,,,,,,,1,,,,,,,,,,,,,,,,,,,, +1162,"[P] Coronary artery disease (CAD) 10","Coronary artery disease (CAD) 10","Coronary artery disease (CAD)","rao@ohdsi.org","Prediction","","First coronary artery disease (CAD) continues until observation end","#Prediction",1,"'Jenna Reps'","'0000-0002-2970-0778'","'Johnson and Johnson', 'OHDSI'","","","318443",,"2023-10-09","2023-10-09",,"","Prediction phenotypes",0,,,"ERA",0,"end of continuous observation",,,0,"First",FALSE,"All","First",2,2,"ConditionOccurrence, Observation",0,0,1,0,0,0,0,0,0,1,,0,1,,,,,,,1,,,,,,,,,,,,,,,,,,,, +1163,"[P] Acute Kidney Injury 10","Acute Kidney Injury 10","Acute Kidney Injury","rao@ohdsi.org","Prediction","","All events of Acute Kidney Injury (AKI) indexed on a diagnosis of Acute kidney injury or a Dialysis procedure at a medicare certified esrd facility for acute kidney injury without esrd,. Applying a washout period of 30 days between observed events excluding events/patients with 1. a diagnosis of End-Stage Kidney Disease in the 365 days before AKI occurrence 2. patients receiving chronic dialysis defined as more than 3 recorded events of dialysis in 365 days before AKI occurrence 3. kidney Transplant any time prior . patients exit the cohort 7 days post index.","#Prediction",1,"'Jenna Reps'","'0000-0002-2970-0778'","'Johnson and Johnson', 'OHDSI'","","","197320",,"2023-10-09","2023-10-09",,"","Prediction phenotypes",0,,,"ERA",0,"fixed duration relative to initial event","EndDate",7,4,"All",FALSE,"All","All",2,2,"ConditionOccurrence, ProcedureOccurrence",0,0,7,1,0,0,0,0,1,1,,1,,,,,,,1,,,,,,,,,,,,,,,,,,,,, +1164,"[P] Asthma 10","Asthma 10","Asthma","rao@ohdsi.org","Prediction","","First Asthma continues until end of observation","#Prediction",1,"'Jenna Reps'","'0000-0002-2970-0778'","'Johnson and Johnson', 'OHDSI'","","","317009",,"2023-10-09","2023-10-09",,"","Prediction phenotypes",0,,,"ERA",0,"end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1165,"[P] Alcoholism 10","Alcoholism 10","Alcoholism","rao@ohdsi.org","Prediction","","First record of Alcoholism until observation end","#Prediction",1,"'Jenna Reps'","'0000-0002-2970-0778'","'Johnson and Johnson', 'OHDSI'","","","4218106",,"2023-10-09","2023-10-09",,"","Prediction phenotypes",0,,,"ERA",0,"end of continuous observation",,,0,"First",FALSE,"All","First",3,3,"ConditionOccurrence, Observation, ProcedureOccurrence",0,0,1,0,0,0,0,0,0,1,,0,1,,,,,,1,,,,,,,,,,,,,,,,,,,,, +1166,"[P] Smoking 10","Smoking 10","Smoking","rao@ohdsi.org","Prediction","","First Smoking condition or observtion or procedure record continues until end of observation","#Prediction",1,"'Jenna Reps'","'0000-0002-2970-0778'","'Johnson and Johnson', 'OHDSI'","","","4209423",,"2023-10-09","2023-10-09",,"","Prediction phenotypes",0,,,"ERA",0,"end of continuous observation",,,0,"First",FALSE,"All","First",3,3,"ConditionOccurrence, Observation, ProcedureOccurrence",0,0,1,0,0,0,0,0,0,1,,0,1,,,,,,1,,,,,,,,,,,,,,,,,,,,, +1167,"[P] sleep apnea 10","sleep apnea 10","sleep apnea","rao@ohdsi.org","Prediction","","First sleep apnea record continues until end of observation","#Prediction",1,"'Jenna Reps'","'0000-0002-2970-0778'","'Johnson and Johnson', 'OHDSI'","","","313459",,"2023-10-09","2023-10-09",,"","Prediction phenotypes",0,,,"ERA",0,"end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1168,"[P] skin ulcer 10","skin ulcer 10","skin ulcer","rao@ohdsi.org","Prediction","","First skin ulcer record in 365 days continues for 30 days","#Prediction",1,"'Jenna Reps'","'0000-0002-2970-0778'","'Johnson and Johnson', 'OHDSI'","","","4262920",,"2023-10-09","2023-10-09",,"","Prediction phenotypes",0,,,"ERA",0,"fixed duration relative to initial event","EndDate",30,1,"All",FALSE,"All","All",3,3,"ConditionOccurrence, Observation, ProcedureOccurrence",0,0,1,1,0,0,0,0,1,1,,1,1,,,,,,1,,,,,,,,,,,,,,,,,,,,, +1169,"[P] Chronic hepatitis 10","Chronic hepatitis 10","Chronic hepatitis","rao@ohdsi.org","Prediction","","First Chronic hepatitis continues until end of observation","#Prediction",1,"'Jenna Reps'","'0000-0002-2970-0778'","'Johnson and Johnson', 'OHDSI'","","","4212540",,"2023-10-09","2023-10-09",,"","Prediction phenotypes",0,,,"ERA",0,"end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1170,"[P] hyperlipidemia 10","hyperlipidemia 10","hyperlipidemia","rao@ohdsi.org","Prediction","","First hyperlipidemia continues until end of observation","#Prediction",1,"'Jenna Reps'","'0000-0002-2970-0778'","'Johnson and Johnson', 'OHDSI'","","","432867",,"2023-10-09","2023-10-09",,"","Prediction phenotypes",0,,,"ERA",0,"end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1171,"[P] hypothyroidism 10","hypothyroidism 10","hypothyroidism","rao@ohdsi.org","Prediction","","First hypothyroidism continues until end of observation","#Prediction",1,"'Jenna Reps'","'0000-0002-2970-0778'","'Johnson and Johnson', 'OHDSI'","","","140673",,"2023-10-09","2023-10-09",,"","Prediction phenotypes",0,,,"ERA",0,"end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1172,"[P] Heart valve disorder 10","Heart valve disorder 10","Heart valve disorder","rao@ohdsi.org","Prediction","","First Heart valve disorder continues until end of observation","#Prediction",1,"'Jenna Reps'","'0000-0002-2970-0778'","'Johnson and Johnson', 'OHDSI'","","","4281749",,"2023-10-09","2023-10-09",,"","Prediction phenotypes",0,,,"ERA",0,"end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1173,"[P] Low back pain 10","Low back pain 10","Low back pain","rao@ohdsi.org","Prediction","","First Low back pain continues until end of observation","#Prediction",1,"'Jenna Reps'","'0000-0002-2970-0778'","'Johnson and Johnson', 'OHDSI'","","","194133",,"2023-10-09","2023-10-09",,"","Prediction phenotypes",0,,,"ERA",0,"end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1174,"[P] neuropathy 10","neuropathy 10","neuropathy","rao@ohdsi.org","Prediction","","First neuropathy continues until end of observation","#Prediction",1,"'Jenna Reps'","'0000-0002-2970-0778'","'Johnson and Johnson', 'OHDSI'","","","4301699",,"2023-10-09","2023-10-09",,"","Prediction phenotypes",0,,,"ERA",0,"end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1175,"[P] Psychotic disorder 10","Psychotic disorder 10","Psychotic disorder","rao@ohdsi.org","Prediction","","First Psychotic disorder continues until end of observation","#Prediction",1,"'Jenna Reps'","'0000-0002-2970-0778'","'Johnson and Johnson', 'OHDSI'","","","436073",,"2023-10-09","2023-10-09",,"","Prediction phenotypes",0,,,"ERA",0,"end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1176,"[P] Sepsis 10","Sepsis 10","Sepsis","rao@ohdsi.org","Prediction","","First Sepsis record in 180 days continues for 7 days","#Prediction",1,"'Jenna Reps'","'0000-0002-2970-0778'","'Johnson and Johnson', 'OHDSI'","","","132797",,"2023-10-09","2023-10-09",,"","Prediction phenotypes",0,,,"ERA",0,"fixed duration relative to initial event","EndDate",7,1,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,1,0,0,0,0,1,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1177,"[P] Acute Respiratory failure 10","Acute Respiratory failure 10","Acute Respiratory failure","rao@ohdsi.org","Prediction","","First Acute Respiratory failure record in 365 days continues for 14 days","#Prediction",1,"'Jenna Reps'","'0000-0002-2970-0778'","'Johnson and Johnson', 'OHDSI'","","","319049",,"2023-10-09","2023-10-09",,"","Prediction phenotypes",0,,,"ERA",0,"fixed duration relative to initial event","EndDate",14,1,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,1,0,0,0,0,1,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1178,"[P] Gastroesophageal reflux disease 10","Gastroesophageal reflux disease 10","Gastroesophageal reflux disease","rao@ohdsi.org","Prediction","","First Gastroesophageal reflux disease continues until observation end","#Prediction",1,"'Jenna Reps'","'0000-0002-2970-0778'","'Johnson and Johnson', 'OHDSI'","","","318800",,"2023-10-09","2023-10-09",,"","Prediction phenotypes",0,,,"ERA",0,"end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1179,"[P] obesity 10","obesity 10","obesity","rao@ohdsi.org","Prediction","","First obesity measurement or condition or observation continues until end of observation","#Prediction",1,"'Jenna Reps'","'0000-0002-2970-0778'","'Johnson and Johnson', 'OHDSI'","","","433736",,"2023-10-09","2023-10-09",,"","Prediction phenotypes",0,,,"ERA",0,"end of continuous observation",,,0,"First",FALSE,"All","First",5,3,"ConditionOccurrence, Measurement, Observation",0,0,3,0,0,0,0,0,0,1,1,0,1,,,,,,,,,,,,,,,,,,,,,,,,,,, +1180,"[P] Inflammatory Bowel Disease 10","Inflammatory Bowel Disease 10","Inflammatory Bowel Disease","rao@ohdsi.org","Prediction","","First Inflammatory Bowel Disease continues until end of observation","#Prediction",1,"'Jenna Reps'","'0000-0002-2970-0778'","'Johnson and Johnson', 'OHDSI'","","","201606",,"2023-10-09","2023-10-09",,"","Prediction phenotypes",0,,,"ERA",0,"end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1181,"[P] STEROIDS 10","STEROIDS 10","STEROIDS","rao@ohdsi.org","Prediction","","STEROIDS record with 60 day persistence","#Prediction",1,"'Jenna Reps'","'0000-0002-2970-0778'","'Johnson and Johnson', 'OHDSI'","","","1551099",,"2023-10-09","2023-10-09",,"","Prediction phenotypes",0,,,"ERA",0,"end of continuous drug exposure",,,0,"All",FALSE,"All","All",1,1,"DrugExposure",0,0,1,0,0,0,0,0,0,,,1,,,,1,,,,,,,,,,,,,,,,,0,60,0,,,,, +1182,"[P] Opioids 10","Opioids 10","Opioids","rao@ohdsi.org","Prediction","","Opioids with 30 day persistence","#Prediction",1,"'Jenna Reps'","'0000-0002-2970-0778'","'Johnson and Johnson', 'OHDSI'","","","1174888",,"2023-10-09","2023-10-09",,"","Prediction phenotypes",0,,,"ERA",0,"end of continuous drug exposure",,,0,"All",FALSE,"All","All",1,1,"DrugExposure",0,0,1,0,0,0,0,0,0,,,1,,,,1,,,,,,,,,,,,,,,,,0,30,0,,,,, +1183,"[P] ANTIEPILEPTICS 10","ANTIEPILEPTICS 10","ANTIEPILEPTICS","rao@ohdsi.org","Prediction","","ANTIEPILEPTICS exposure with 30 day persistence","#Prediction",1,"'Jenna Reps'","'0000-0002-2970-0778'","'Johnson and Johnson', 'OHDSI'","","","797399",,"2023-10-09","2023-10-09",,"","Prediction phenotypes",0,,,"ERA",0,"end of continuous drug exposure",,,0,"All",FALSE,"All","All",1,1,"DrugExposure",0,0,1,0,0,0,0,0,0,,,1,,,,1,,,,,,,,,,,,,,,,,0,30,0,,,,, +1184,"[P] Osteoarthritis 10","Osteoarthritis 10","Osteoarthritis","rao@ohdsi.org","Prediction","","First Osteoarthritis continues until end of observation","#Prediction",1,"'Jenna Reps'","'0000-0002-2970-0778'","'Johnson and Johnson', 'OHDSI'","","","80180",,"2023-10-09","2023-10-09",,"","Prediction phenotypes",0,,,"ERA",0,"end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1185,"[P] Osteoporosis 10","Osteoporosis 10","Osteoporosis","rao@ohdsi.org","Prediction","","First Osteoporosis continues until end of observation","#Prediction",1,"'Jenna Reps'","'0000-0002-2970-0778'","'Johnson and Johnson', 'OHDSI'","","","80502",,"2023-10-09","2023-10-09",,"","Prediction phenotypes",0,,,"ERA",0,"end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1186,"[P] Urinary tract infectious 10","Urinary tract infectious 10","Urinary tract infectious","rao@ohdsi.org","Prediction","","First Urinary tract infectious record in 30 days continues for 1 day","#Prediction",1,"'Jenna Reps'","'0000-0002-2970-0778'","'Johnson and Johnson', 'OHDSI'","","","81902",,"2023-10-09","2023-10-09",,"","Prediction phenotypes",0,,,"ERA",0,"fixed duration relative to initial event","StartDate",1,1,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,1,0,0,0,0,1,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1187,"[P] acetaminophen exposure 10","acetaminophen exposure 10","acetaminophen exposure","rao@ohdsi.org","Prediction","","acetaminophen exposure with 30 day persistence window","#Prediction",1,"'Jenna Reps'","'0000-0002-2970-0778'","'Johnson and Johnson', 'OHDSI'","","","1125315",,"2023-10-09","2023-10-09",,"","Prediction phenotypes",0,,,"ERA",0,"end of continuous drug exposure",,,0,"All",FALSE,"All","All",1,1,"DrugExposure",0,0,1,0,0,0,0,0,0,,,1,,,,1,,,,,,,,,,,,,,,,,0,30,0,,,,, +1188,"[P] Anemia 10","Anemia 10","Anemia","rao@ohdsi.org","Prediction","","Anemia record or measurement continues for 21 days unless normal measurement","#Prediction",1,"'Jenna Reps'","'0000-0002-2970-0778'","'Johnson and Johnson', 'OHDSI'","","","4144746",,"2023-10-09","2023-10-09",,"","Prediction phenotypes",0,,,"ERA",365,"fixed duration relative to initial event","StartDate",21,3,"All",FALSE,"All","All",3,2,"ConditionOccurrence, Measurement",0,0,4,1,0,0,0,0,0,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1189,"[P] Anxiety 10","Anxiety 10","Anxiety","rao@ohdsi.org","Prediction","","First Anxiety continues until end of observation","#Prediction",1,"'Jenna Reps'","'0000-0002-2970-0778'","'Johnson and Johnson', 'OHDSI'","","","441542",,"2023-10-09","2023-10-09",,"","Prediction phenotypes",0,,,"ERA",0,"end of continuous observation",,,0,"First",FALSE,"All","First",2,2,"ConditionOccurrence, Observation",0,0,1,0,0,0,0,0,0,1,,0,1,,,,,,,,,,,,,,,,,,,,,,,,,,, +1190,"[P] HORMONAL CONTRACEPTIVES 10","HORMONAL CONTRACEPTIVES 10","HORMONAL CONTRACEPTIVES","rao@ohdsi.org","Prediction","","HORMONAL CONTRACEPTIVES with 30 day persistence window","#Prediction",1,"'Jenna Reps'","'0000-0002-2970-0778'","'Johnson and Johnson', 'OHDSI'","","","21602473",,"2023-10-09","2023-10-09",,"","Prediction phenotypes",0,,,"ERA",0,"end of continuous drug exposure",,,0,"All",FALSE,"All","All",1,1,"DrugExposure",0,0,1,0,0,0,0,0,0,,,1,,,,1,,,,,,,,,,,,,,,,,0,30,0,,,,, +1191,"[P] Chronic kidney disease or end stage renal disease 10","Chronic kidney disease or end stage renal disease 10","Chronic kidney disease or end stage renal disease","rao@ohdsi.org","Prediction","","First chronic kidney disease or end stage renal disease continues until observation end","#Prediction",1,"'Jenna Reps'","'0000-0002-2970-0778'","'Johnson and Johnson', 'OHDSI'","","","46271022",,"2023-10-09","2023-10-09",,"","Prediction phenotypes",0,,,"ERA",0,"end of continuous observation",,,0,"First",FALSE,"All","First",5,3,"ConditionOccurrence, Observation, ProcedureOccurrence",0,0,3,0,0,0,0,0,0,1,,0,1,,,,,,1,,,,,,,,,,,,,,,,,,,,, +1192,"[P] Chronic obstructive pulmonary disease (COPD) 10","Chronic obstructive pulmonary disease (COPD) 10","Chronic obstructive pulmonary disease (COPD)","rao@ohdsi.org","Prediction","","First chronic obstructive pulmonary disease (COPD) continues until observation end","#Prediction",1,"'Jenna Reps'","'0000-0002-2970-0778'","'Johnson and Johnson', 'OHDSI'","","","255573",,"2023-10-09","2023-10-09",,"","Prediction phenotypes",0,,,"ERA",0,"end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1193,"[P] Type 1 diabetes and no prior specific nonT1DM diabetes 10","Type 1 diabetes and no prior specific nonT1DM diabetes 10","Type 1 diabetes and no prior specific nonT1DM diabetes","rao@ohdsi.org","Prediction","","Earliest Type 1 diabetes with no prior type 2 or secondary diabetes continues until end of observation.","#Prediction",1,"'Jenna Reps'","'0000-0002-2970-0778'","'Johnson and Johnson', 'OHDSI'","","","201254",,"2023-10-09","2023-10-09",,"","Prediction phenotypes",0,,,"ERA",0,"end of continuous observation",,,2,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,3,1,0,0,0,0,0,1,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1194,"[P] Type 2 Diabetes Mellitus with no type 1 or secondary DM 10","Type 2 Diabetes Mellitus with no type 1 or secondary DM 10","Type 2 Diabetes Mellitus with no type 1 or secondary DM","rao@ohdsi.org","Prediction","","Earliest Type 2 diabetes with no prior type 1 or secondary diabetes continues until end of observation.","#Prediction",1,"'Jenna Reps'","'0000-0002-2970-0778'","'Johnson and Johnson', 'OHDSI'","","","201820",,"2023-10-09","2023-10-09",,"","Prediction phenotypes",0,,,"ERA",0,"end of continuous observation",,,2,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,5,1,0,0,0,0,0,1,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1195,"[P] Dyspnea 10","Dyspnea 10","Dyspnea","rao@ohdsi.org","Prediction","","All events of Dyspnea with no Dyspnea in prior 30 days","#Prediction",1,"'Jenna Reps'","'0000-0002-2970-0778'","'Johnson and Johnson', 'OHDSI'","","","312437",,"2023-10-09","2023-10-09",,"","Prediction phenotypes",0,,,"ERA",0,"fixed duration relative to initial event","EndDate",0,1,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,1,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1196,"[P] Edema 10","Edema 10","Edema","rao@ohdsi.org","Prediction","","All events of Edema with no Edemain prior 30 days and cohort ends 3 days after index.","#Prediction",1,"'Jenna Reps'","'0000-0002-2970-0778'","'Johnson and Johnson', 'OHDSI'","","","433595",,"2023-10-09","2023-10-09",,"","Prediction phenotypes",0,,,"ERA",0,"fixed duration relative to initial event","StartDate",3,1,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,1,0,0,0,0,1,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1197,"[P] Acute gastrointestinal bleeding 10","Acute gastrointestinal bleeding 10","Acute gastrointestinal bleeding","rao@ohdsi.org","Prediction","","First gastrointestinal bleed in 45 days continues for 7 days","#Prediction",1,"'Jenna Reps'","'0000-0002-2970-0778'","'Johnson and Johnson', 'OHDSI'","","","192671",,"2023-10-09","2023-10-09",,"","Prediction phenotypes",0,,,"ERA",0,"fixed duration relative to initial event","StartDate",7,1,"All",FALSE,"All","All",2,2,"ConditionOccurrence, ProcedureOccurrence",0,0,1,1,0,0,0,0,1,1,,1,,,,,,,1,,,,,,,,,,,,,,,,,,,,, +1198,"[P] Hypertension 10","Hypertension 10","Hypertension","rao@ohdsi.org","Prediction","","First Hypertension continues until end of observation","#Prediction",1,"'Jenna Reps'","'0000-0002-2970-0778'","'Johnson and Johnson', 'OHDSI'","","","316866",,"2023-10-09","2023-10-09",,"","Prediction phenotypes",0,,,"ERA",0,"end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1199,"[P] Pneumonia 10","Pneumonia 10","Pneumonia","rao@ohdsi.org","Prediction","","First Pneumonia record in 180 days continues until for 30 days","#Prediction",1,"'Jenna Reps'","'0000-0002-2970-0778'","'Johnson and Johnson', 'OHDSI'","","","255848",,"2023-10-09","2023-10-09",,"","Prediction phenotypes",0,,,"ERA",0,"fixed duration relative to initial event","EndDate",30,1,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,1,0,0,0,0,1,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1200,"[P] Rheumatoid Arthritis 10","Rheumatoid Arthritis 10","Rheumatoid Arthritis","rao@ohdsi.org","Prediction","","First Rheumatoid Arthritis record continues until end of observation","#Prediction",1,"'Jenna Reps'","'0000-0002-2970-0778'","'Johnson and Johnson', 'OHDSI'","","","80809",,"2023-10-09","2023-10-09",,"","Prediction phenotypes",0,,,"ERA",0,"end of continuous observation",,,0,"First",FALSE,"All","First",2,2,"ConditionOccurrence, Observation",0,0,1,0,0,0,0,0,0,1,,0,1,,,,,,,,,,,,,,,,,,,,,,,,,,, +1201,"[P] Antibiotics Aminoglycosides 10","Antibiotics Aminoglycosides 10","Antibiotics Aminoglycosides","rao@ohdsi.org","Prediction","","any Antibiotics Aminoglycosides with 30 day persistence","#Prediction",1,"'Jenna Reps'","'0000-0002-2970-0778'","'Johnson and Johnson', 'OHDSI'","","","915981",,"2023-10-09","2023-10-09",,"","Prediction phenotypes",0,,,"ERA",0,"end of continuous drug exposure",,,0,"All",FALSE,"All","All",1,1,"DrugExposure",0,0,1,0,0,0,0,0,0,,,1,,,,1,,,,,,,,,,,,,,,,,0,30,0,,,,, +1202,"[P] Antibiotics Carbapenems 10","Antibiotics Carbapenems 10","Antibiotics Carbapenems","rao@ohdsi.org","Prediction","","any Antibiotics Carbapenems with 30 day persistence","#Prediction",1,"'Jenna Reps'","'0000-0002-2970-0778'","'Johnson and Johnson', 'OHDSI'","","","1709170",,"2023-10-09","2023-10-09",,"","Prediction phenotypes",0,,,"ERA",0,"end of continuous drug exposure",,,0,"All",FALSE,"All","All",1,1,"DrugExposure",0,0,1,0,0,0,0,0,0,,,1,,,,1,,,,,,,,,,,,,,,,,0,30,0,,,,, +1203,"[P] Antibiotics Cephalosporins 10","Antibiotics Cephalosporins 10","Antibiotics Cephalosporins","rao@ohdsi.org","Prediction","","any Antibiotics Cephalosporins with 30 day persistence","#Prediction",1,"'Jenna Reps'","'0000-0002-2970-0778'","'Johnson and Johnson', 'OHDSI'","","","1786621",,"2023-10-09","2023-10-09",,"","Prediction phenotypes",0,,,"ERA",0,"end of continuous drug exposure",,,0,"All",FALSE,"All","All",1,1,"DrugExposure",0,0,1,0,0,0,0,0,0,,,1,,,,1,,,,,,,,,,,,,,,,,0,30,0,,,,, +1204,"[P] Antibiotics Fluoroquinolones 10","Antibiotics Fluoroquinolones 10","Antibiotics Fluoroquinolones","rao@ohdsi.org","Prediction","","any Antibiotics Fluoroquinolones with 30 day persistence","#Prediction",1,"'Jenna Reps'","'0000-0002-2970-0778'","'Johnson and Johnson', 'OHDSI'","","","1797513",,"2023-10-09","2023-10-09",,"","Prediction phenotypes",0,,,"ERA",0,"end of continuous drug exposure",,,0,"All",FALSE,"All","All",1,1,"DrugExposure",0,0,1,0,0,0,0,0,0,,,1,,,,1,,,,,,,,,,,,,,,,,0,30,0,,,,, +1205,"[P] Antibiotics Glycopeptides and lipoglycopeptides 10","Antibiotics Glycopeptides and lipoglycopeptides 10","Antibiotics Glycopeptides and lipoglycopeptides","rao@ohdsi.org","Prediction","","any Antibiotics Glycopeptides and lipoglycopeptides with 30 day persistence","#Prediction",1,"'Jenna Reps'","'0000-0002-2970-0778'","'Johnson and Johnson', 'OHDSI'","","","1707687",,"2023-10-09","2023-10-09",,"","Prediction phenotypes",0,,,"ERA",0,"end of continuous drug exposure",,,0,"All",FALSE,"All","All",1,1,"DrugExposure",0,0,1,0,0,0,0,0,0,,,1,,,,1,,,,,,,,,,,,,,,,,0,30,0,,,,, +1206,"[P] Antibiotics Macrolides 10","Antibiotics Macrolides 10","Antibiotics Macrolides","rao@ohdsi.org","Prediction","","any Antibiotics Macrolides with 30 day persistence","#Prediction",1,"'Jenna Reps'","'0000-0002-2970-0778'","'Johnson and Johnson', 'OHDSI'","","","1734104",,"2023-10-09","2023-10-09",,"","Prediction phenotypes",0,,,"ERA",0,"end of continuous drug exposure",,,0,"All",FALSE,"All","All",1,1,"DrugExposure",0,0,1,0,0,0,0,0,0,,,1,,,,1,,,,,,,,,,,,,,,,,0,30,0,,,,, +1207,"[P] Antibiotics Monobactams 10","Antibiotics Monobactams 10","Antibiotics Monobactams","rao@ohdsi.org","Prediction","","any Antibiotics Monobactams with 30 day persistence","#Prediction",1,"'Jenna Reps'","'0000-0002-2970-0778'","'Johnson and Johnson', 'OHDSI'","","","1715117",,"2023-10-09","2023-10-09",,"","Prediction phenotypes",0,,,"ERA",0,"end of continuous drug exposure",,,0,"All",FALSE,"All","All",1,1,"DrugExposure",0,0,1,0,0,0,0,0,0,,,1,,,,1,,,,,,,,,,,,,,,,,0,30,0,,,,, +1208,"[P] Antibiotics Oxazolidinones 10","Antibiotics Oxazolidinones 10","Antibiotics Oxazolidinones","rao@ohdsi.org","Prediction","","any Antibiotics Oxazolidinones with 30 day persistence","#Prediction",1,"'Jenna Reps'","'0000-0002-2970-0778'","'Johnson and Johnson', 'OHDSI'","","","1736887",,"2023-10-09","2023-10-09",,"","Prediction phenotypes",0,,,"ERA",0,"end of continuous drug exposure",,,0,"All",FALSE,"All","All",1,1,"DrugExposure",0,0,1,0,0,0,0,0,0,,,1,,,,1,,,,,,,,,,,,,,,,,0,30,0,,,,, +1209,"[P] Antibiotics Penicillins 10","Antibiotics Penicillins 10","Antibiotics Penicillins","rao@ohdsi.org","Prediction","","any Antibiotics Penicillins with 30 day persistence","#Prediction",1,"'Jenna Reps'","'0000-0002-2970-0778'","'Johnson and Johnson', 'OHDSI'","","","1713332",,"2023-10-09","2023-10-09",,"","Prediction phenotypes",0,,,"ERA",0,"end of continuous drug exposure",,,0,"All",FALSE,"All","All",1,1,"DrugExposure",0,0,1,0,0,0,0,0,0,,,1,,,,1,,,,,,,,,,,,,,,,,0,30,0,,,,, +1210,"[P] Antibiotics Polypeptides 10","Antibiotics Polypeptides 10","Antibiotics Polypeptides","rao@ohdsi.org","Prediction","","any Antibiotics Polypeptides with 30 day persistence","#Prediction",1,"'Jenna Reps'","'0000-0002-2970-0778'","'Johnson and Johnson', 'OHDSI'","","","948582",,"2023-10-09","2023-10-09",,"","Prediction phenotypes",0,,,"ERA",0,"end of continuous drug exposure",,,0,"All",FALSE,"All","All",1,1,"DrugExposure",0,0,1,0,0,0,0,0,0,,,1,,,,1,,,,,,,,,,,,,,,,,0,30,0,,,,, +1211,"[P] Antibiotics Rifamycins 10","Antibiotics Rifamycins 10","Antibiotics Rifamycins","rao@ohdsi.org","Prediction","","any Antibiotics Rifamycins with 30 day persistence","#Prediction",1,"'Jenna Reps'","'0000-0002-2970-0778'","'Johnson and Johnson', 'OHDSI'","","","1735947",,"2023-10-09","2023-10-09",,"","Prediction phenotypes",0,,,"ERA",0,"end of continuous drug exposure",,,0,"All",FALSE,"All","All",1,1,"DrugExposure",0,0,1,0,0,0,0,0,0,,,1,,,,1,,,,,,,,,,,,,,,,,1,30,0,,,,, +1212,"[P] Antibiotics Sulfonamides 10","Antibiotics Sulfonamides 10","Antibiotics Sulfonamides","rao@ohdsi.org","Prediction","","any Antibiotics Sulfonamides with 30 day persistence","#Prediction",1,"'Jenna Reps'","'0000-0002-2970-0778'","'Johnson and Johnson', 'OHDSI'","","","1836430",,"2023-10-09","2023-10-09",,"","Prediction phenotypes",0,,,"ERA",0,"end of continuous drug exposure",,,0,"All",FALSE,"All","All",1,1,"DrugExposure",0,0,1,0,0,0,0,0,0,,,1,,,,1,,,,,,,,,,,,,,,,,2,30,0,,,,, +1213,"[P] Antibiotics Streptogramins 10","Antibiotics Streptogramins 10","Antibiotics Streptogramins","rao@ohdsi.org","Prediction","","any Antibiotics Streptogramins with 30 day persistence","#Prediction",1,"'Jenna Reps'","'0000-0002-2970-0778'","'Johnson and Johnson', 'OHDSI'","","","1789517",,"2023-10-09","2023-10-09",,"","Prediction phenotypes",0,,,"ERA",0,"end of continuous drug exposure",,,0,"All",FALSE,"All","All",1,1,"DrugExposure",0,0,1,0,0,0,0,0,0,,,1,,,,1,,,,,,,,,,,,,,,,,3,30,0,,,,, +1214,"[P] Antibiotics Tetracyclines 10","Antibiotics Tetracyclines 10","Antibiotics Tetracyclines","rao@ohdsi.org","Prediction","","any Antibiotics Tetracyclines with 30 day persistence","#Prediction",1,"'Jenna Reps'","'0000-0002-2970-0778'","'Johnson and Johnson', 'OHDSI'","","","1738521",,"2023-10-09","2023-10-09",,"","Prediction phenotypes",0,,,"ERA",0,"end of continuous drug exposure",,,0,"All",FALSE,"All","All",1,1,"DrugExposure",0,0,1,0,0,0,0,0,0,,,1,,,,1,,,,,,,,,,,,,,,,,4,30,0,,,,, +1215,"[P] Any cancer (excl. prostate cancer and benign cancer) 10","Any cancer (excl. prostate cancer and benign cancer) 10","Any cancer (excl. prostate cancer and benign cancer)","rao@ohdsi.org","Prediction","","First cancer (excluding prostate and benign) continues until end of observation","#Prediction",1,"'Jenna Reps'","'0000-0002-2970-0778'","'Johnson and Johnson', 'OHDSI'","","","438112",,"2023-10-09","2023-10-09",,"","Prediction phenotypes",0,,,"ERA",0,"end of continuous observation",,,0,"First",FALSE,"All","First",4,3,"ConditionOccurrence, Measurement, Observation",0,0,1,0,0,0,0,0,0,1,1,0,1,,,,,,,,,,,,,,,,,,,,,,,,,,1, +1217,"[P] Platinum based chemotherapy regimens","Platinum based chemotherapy regimens","Platinum based chemotherapy regimens","rao@ohdsi.org","Pending peer review","","Events of platinum based chemotherapy with 60 days of surveillance because most cycles of every 4 weeks","",1,"'Gowtham A. Rao'","'0000-0002-4949-7236'","'OHDSI'","","","","","2023-10-09","2023-11-30",,"",,0,,,"ERA",0,"end of continuous drug exposure",,,0,"All",FALSE,"All","All",1,1,"DrugExposure",0,0,1,0,0,0,0,0,0,,,1,,,,1,,,,,,,,,,,,,,,,,0,60,0,,,,, +1219,"[P] Hyperlipidemia","Hyperlipidemia","Hyperlipidemia","ryan@ohdsi.org","Pending peer review","","Earliest event of hyperlipidemia","",1,"Patrick Ryan","","'OHDSI'","","","432867","","2023-10-16","2023-11-29",,"",,0,,,"ERA",0,"end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1220,"[P] Hypoparathyroidism","Hypoparathyroidism","Hypoparathyroidism","ryan@ohdsi.org","Pending peer review","","Earliest event of hypoparathyroidism","",1,"Patrick Ryan","","'OHDSI'","","","140362","","2023-10-16","2023-10-16",,"",,0,,,"ERA",0,"end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1221,"[P] Osteoporosis","Osteoporosis","Osteoporosis","ryan@ohdsi.org","Pending peer review","","Earliest event of Osteoporosis","",1,"Patrick Ryan","","'OHDSI'","","","80502","","2023-10-16","2023-10-16",,"",,0,,,"ERA",0,"end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1222,"[P] Viral hepatitis type A","Viral hepatitis type A","Viral Hepatitis A","ryan@ohdsi.org","Pending peer review","","Earliest event of Viral Hepatitis A","",1,"Patrick Ryan","","'OHDSI'","","","4223947","","2023-10-16","2023-10-16",,"",,0,,,"ERA",0,"end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1223,"[P] Birdshot chorioretinitis","Birdshot chorioretinitis","Birdshot chorioretinitis","rao@ohdsi.org","Pending peer review","","","#Opthalmology, #OhdsiWorkGroup",1,"'Edward Lee','Kiana Tavakoli', 'Rupesh Agrawal','William Rojas Carabali','Karen Armbrust','Kareem Moussa','Jessica Shantha','Edmund Tsui','Brian Toy'","'','0000-0003-1883-9018','0000-0002-6662-5850','0000-0002-9976-8989','0000-0001-9381-4756','0000-0001-9110-9594','0000-0002-4449-8598','0000-0001-7532-9191','0000-0002-9612-5697'","'Roski Eye Institute, Keck School of Medicine, USC','Shiley Eye Institute, University of California San Diego','National Healthcare Group Eye Institute, Tan Tock Seng Hospital, Singapore','Lee Kong Chian School of Medicine, Nanyang Technological University, Singapore','Minneapolis VA Health Care System, University of Minnesota','Department of Ophthalmology & Vision Science, University of California, Davis','F.I. Proctor Foundation, University of California, San Francisco','UCLA Stein Eye Institute, David Geffen School of Medicine at UCLA','Roski Eye Institute, Keck School of Medicine, USC'","","","436100",,"2023-10-17","2023-10-17",,"",,0,,,"ERA",0,"end of continuous observation",,,3,"First",FALSE,"All","First",2,2,"ConditionOccurrence, Measurement",0,0,10,1,0,0,0,0,0,1,1,0,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1224,"[P] CMV Anterior Uveitis (sensitivity analysis)","CMV Anterior Uveitis (sensitivity analysis)","CMV Anterior Uveitis sensitivite","rao@ohdsi.org","Pending peer review","","","#Opthalmology, #OhdsiWorkGroup",1,"'Edward Lee','Kiana Tavakoli', 'Rupesh Agrawal','William Rojas Carabali','Karen Armbrust','Kareem Moussa','Jessica Shantha','Edmund Tsui','Brian Toy'","'','0000-0003-1883-9018','0000-0002-6662-5850','0000-0002-9976-8989','0000-0001-9381-4756','0000-0001-9110-9594','0000-0002-4449-8598','0000-0001-7532-9191','0000-0002-9612-5697'","'Roski Eye Institute, Keck School of Medicine, USC','Shiley Eye Institute, University of California San Diego','National Healthcare Group Eye Institute, Tan Tock Seng Hospital, Singapore','Lee Kong Chian School of Medicine, Nanyang Technological University, Singapore','Minneapolis VA Health Care System, University of Minnesota','Department of Ophthalmology & Vision Science, University of California, Davis','F.I. Proctor Foundation, University of California, San Francisco','UCLA Stein Eye Institute, David Geffen School of Medicine at UCLA','Roski Eye Institute, Keck School of Medicine, USC'","","","436100",,"2023-10-18","2023-10-19",,"",,0,,,"ERA",0,"end of continuous observation",,,6,"First",FALSE,"All","First",5,3,"ConditionOccurrence, Measurement, Observation",0,0,11,1,0,0,0,0,0,1,1,0,1,,,,,,,,,,,,,,,,,,,,,,,,,,, +1225,"[P] VZV Anterior Uveitis (SUN)","VZV Anterior Uveitis (SUN)","VZV Anterior Uveitis (SUN)","rao@ohdsi.org","Pending peer review","","","#Opthalmology, #OhdsiWorkGroup",1,"'Edward Lee','Kiana Tavakoli', 'Rupesh Agrawal','William Rojas Carabali','Karen Armbrust','Kareem Moussa','Jessica Shantha','Edmund Tsui','Brian Toy'","'','0000-0003-1883-9018','0000-0002-6662-5850','0000-0002-9976-8989','0000-0001-9381-4756','0000-0001-9110-9594','0000-0002-4449-8598','0000-0001-7532-9191','0000-0002-9612-5697'","'Roski Eye Institute, Keck School of Medicine, USC','Shiley Eye Institute, University of California San Diego','National Healthcare Group Eye Institute, Tan Tock Seng Hospital, Singapore','Lee Kong Chian School of Medicine, Nanyang Technological University, Singapore','Minneapolis VA Health Care System, University of Minnesota','Department of Ophthalmology & Vision Science, University of California, Davis','F.I. Proctor Foundation, University of California, San Francisco','UCLA Stein Eye Institute, David Geffen School of Medicine at UCLA','Roski Eye Institute, Keck School of Medicine, USC'","","","436100",,"2023-10-19","2023-10-19",,"",,0,,,"ERA",0,"end of continuous observation",,,7,"First",FALSE,"All","First",5,3,"ConditionOccurrence, Measurement, Observation",0,0,14,1,1,0,0,0,0,1,1,0,1,,,,,,,,1,,,,,,,,,,,,,,,,,,, +1226,"[P] VZV Anterior Uveitis (SUN) sensitive","VZV Anterior Uveitis (SUN) sensitive","VZV Anterior Uveitis (SUN) sensitive","rao@ohdsi.org","Pending peer review","","","#Opthalmology, #OhdsiWorkGroup",1,"'Edward Lee','Kiana Tavakoli', 'Rupesh Agrawal','William Rojas Carabali','Karen Armbrust','Kareem Moussa','Jessica Shantha','Edmund Tsui','Brian Toy'","'','0000-0003-1883-9018','0000-0002-6662-5850','0000-0002-9976-8989','0000-0001-9381-4756','0000-0001-9110-9594','0000-0002-4449-8598','0000-0001-7532-9191','0000-0002-9612-5697'","'Roski Eye Institute, Keck School of Medicine, USC','Shiley Eye Institute, University of California San Diego','National Healthcare Group Eye Institute, Tan Tock Seng Hospital, Singapore','Lee Kong Chian School of Medicine, Nanyang Technological University, Singapore','Minneapolis VA Health Care System, University of Minnesota','Department of Ophthalmology & Vision Science, University of California, Davis','F.I. Proctor Foundation, University of California, San Francisco','UCLA Stein Eye Institute, David Geffen School of Medicine at UCLA','Roski Eye Institute, Keck School of Medicine, USC'","","","436100",,"2023-10-19","2023-10-19",,"",,0,,,"ERA",0,"end of continuous observation",,,7,"First",FALSE,"All","First",5,3,"ConditionOccurrence, Measurement, Observation",0,0,14,1,1,0,0,0,0,1,1,0,1,,,,,,,,1,,,,,,,,,,,,,,,,,,, +1227,"[P] HSV Anterior Uveitis (SUN)","HSV Anterior Uveitis (SUN)","HSV Anterior Uveitis (SUN)","rao@ohdsi.org","Pending peer review","","","#Opthalmology, #OhdsiWorkGroup",1,"'Edward Lee','Kiana Tavakoli', 'Rupesh Agrawal','William Rojas Carabali','Karen Armbrust','Kareem Moussa','Jessica Shantha','Edmund Tsui','Brian Toy'","'','0000-0003-1883-9018','0000-0002-6662-5850','0000-0002-9976-8989','0000-0001-9381-4756','0000-0001-9110-9594','0000-0002-4449-8598','0000-0001-7532-9191','0000-0002-9612-5697'","'Roski Eye Institute, Keck School of Medicine, USC','Shiley Eye Institute, University of California San Diego','National Healthcare Group Eye Institute, Tan Tock Seng Hospital, Singapore','Lee Kong Chian School of Medicine, Nanyang Technological University, Singapore','Minneapolis VA Health Care System, University of Minnesota','Department of Ophthalmology & Vision Science, University of California, Davis','F.I. Proctor Foundation, University of California, San Francisco','UCLA Stein Eye Institute, David Geffen School of Medicine at UCLA','Roski Eye Institute, Keck School of Medicine, USC'","","","436100",,"2023-10-19","2023-10-19",,"",,0,,,"ERA",0,"end of continuous observation",,,8,"All",FALSE,"All","First",5,3,"ConditionOccurrence, Measurement, Observation",0,0,15,1,1,0,0,0,0,1,1,0,1,,,,,,,,1,,,,,,,,,,,,,,,,,,, +1228,"[P] HSV Anterior Uveitis (SUN) sensitive","HSV Anterior Uveitis (SUN) sensitive","HSV Anterior Uveitis (SUN) sensitive","rao@ohdsi.org","Pending peer review","","","#Opthalmology, #OhdsiWorkGroup",1,"'Edward Lee','Kiana Tavakoli', 'Rupesh Agrawal','William Rojas Carabali','Karen Armbrust','Kareem Moussa','Jessica Shantha','Edmund Tsui','Brian Toy'","'','0000-0003-1883-9018','0000-0002-6662-5850','0000-0002-9976-8989','0000-0001-9381-4756','0000-0001-9110-9594','0000-0002-4449-8598','0000-0001-7532-9191','0000-0002-9612-5697'","'Roski Eye Institute, Keck School of Medicine, USC','Shiley Eye Institute, University of California San Diego','National Healthcare Group Eye Institute, Tan Tock Seng Hospital, Singapore','Lee Kong Chian School of Medicine, Nanyang Technological University, Singapore','Minneapolis VA Health Care System, University of Minnesota','Department of Ophthalmology & Vision Science, University of California, Davis','F.I. Proctor Foundation, University of California, San Francisco','UCLA Stein Eye Institute, David Geffen School of Medicine at UCLA','Roski Eye Institute, Keck School of Medicine, USC'","","","436100",,"2023-10-19","2023-10-19",,"",,0,,,"ERA",0,"end of continuous observation",,,8,"All",FALSE,"All","First",5,3,"ConditionOccurrence, Measurement, Observation",0,0,15,1,1,0,0,0,0,1,1,0,1,,,,,,,,1,,,,,,,,,,,,,,,,,,, +1229,"[P] Behcet Uveitis (SUN)","Behcet Uveitis (SUN)","Behcet Uveitis (SUN)","rao@ohdsi.org","Pending peer review","","","#Opthalmology, #OhdsiWorkGroup",1,"'Edward Lee','Kiana Tavakoli', 'Rupesh Agrawal','William Rojas Carabali','Karen Armbrust','Kareem Moussa','Jessica Shantha','Edmund Tsui','Brian Toy'","'','0000-0003-1883-9018','0000-0002-6662-5850','0000-0002-9976-8989','0000-0001-9381-4756','0000-0001-9110-9594','0000-0002-4449-8598','0000-0001-7532-9191','0000-0002-9612-5697'","'Roski Eye Institute, Keck School of Medicine, USC','Shiley Eye Institute, University of California San Diego','National Healthcare Group Eye Institute, Tan Tock Seng Hospital, Singapore','Lee Kong Chian School of Medicine, Nanyang Technological University, Singapore','Minneapolis VA Health Care System, University of Minnesota','Department of Ophthalmology & Vision Science, University of California, Davis','F.I. Proctor Foundation, University of California, San Francisco','UCLA Stein Eye Institute, David Geffen School of Medicine at UCLA','Roski Eye Institute, Keck School of Medicine, USC'","","","436100",,"2023-10-19","2023-10-19",,"",,0,,,"ERA",0,"end of continuous observation",,,5,"All",FALSE,"All","First",7,2,"ConditionOccurrence, Measurement",0,0,12,1,0,0,0,0,0,1,1,0,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1231,"[P] Sickle Cell Crisis","Sickle Cell Crisis","Sickle Cell Crisis","rao@ohdsi.org","Pending peer review","","First occurrence of Sickle Cell Crisis","#epi1073",1,"'Gowtham a rao'","'0000-0002-4949-7236'","'OHDSI'","","","4216915","","2023-10-19","2023-10-19",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",3,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1244,"[P] Non Platinum chemotherapy regimen","Non Platinum chemotherapy regimen","Non Platinum chemotherapy regimen","rao@ohdsi.org","Pending peer review","","Events of non platinum based chemotherapy with 60 days of surveillance because most cycles of every 4 weeks","",1,"'Gowtham A. Rao'","'0000-0002-4949-7236'","'OHDSI'","","","","","2023-11-30","2023-11-30",,"",,0,,,"ERA",0,"end of continuous drug exposure",,,0,"All",FALSE,"All","All",1,1,"DrugExposure",0,0,1,0,0,0,0,0,0,,,1,,,,1,,,,,,,,,,,,,,,,,0,60,0,,,,, +1261,"[P] Acute Typical Pneumonia","Acute Typical Pneumonia","Acute Typical Pneumonia","rao@ohdsi.org","Pending peer review","","Acute Typical Pneumonia","#respiratory, #lung",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","0","255848, 4318404","","2024-01-05","2024-01-05",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",30,1,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,2,1,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1262,"[P] Asthma or Chronic obstructive pulmonary disease (COPD)","Asthma or Chronic obstructive pulmonary disease (COPD)","Asthma or Chronic obstructive pulmonary disease (COPD)","rao@ohdsi.org","Pending peer review","","Asthma or Chronic obstructive pulmonary disease (COPD)","#respiratory, #lung",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","0","255573, 317009","","2024-01-05","2024-01-05",,"",,0,,,"ERA",0,"end of continuous observation",,,0,"First",FALSE,"All","First",2,1,"ConditionOccurrence",0,0,3,0,0,0,0,0,0,1,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1263,"[P] Chronic obstructive pulmonary disease (COPD) without asthma","Chronic obstructive pulmonary disease (COPD) without asthma","Chronic obstructive pulmonary disease (COPD) without asthma","rao@ohdsi.org","Pending peer review","","Chronic obstructive pulmonary disease (COPD) without asthma","#respiratory, #lung",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","0","255573","","2024-01-05","2024-01-05",,"",,0,,,"ERA",0,"end of continuous observation",,,1,"First",FALSE,"All","First",3,2,"ConditionOccurrence, DrugExposure",0,0,4,1,1,0,0,0,0,1,,0,,,,1,1,,,,,,,,,,,,,,,,,,,,,,, +1264,"[P] Pneumonitis and lung infections","Pneumonitis and lung infections","Pneumonitis and lung infections","rao@ohdsi.org","Pending peer review","","Pneumonitis and lung infections","#respiratory, #lung",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","0","253506, 255848",,"2024-01-05","2024-01-05",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",30,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1265,"[P] Pulmonary hypertension associated with lung diseases and or hypoxia (WHO Group 3)","Pulmonary hypertension associated with lung diseases and or hypoxia (WHO Group 3)","Pulmonary hypertension associated with lung diseases and/or hypoxia (WHO Group 3)","rao@ohdsi.org","Pending peer review","","Pulmonary hypertension associated with lung diseases and or hypoxia (WHO Group 3)","",1,"'Joel N. Swerdel'","'0000-0001-9491-2737'","'OHDSI'","","0","4322024","","2024-01-05","2024-01-05",,"",,0,,,"ERA",0,"end of continuous observation",,,2,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,3,1,0,0,0,0,0,1,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1266,"[P] Non-small cell lung cancer (NSCLC) for first time using ICD0","Non-small cell lung cancer (NSCLC) for first time using ICD0","Non-small cell lung cancer (NSCLC)","rao@ohdsi.org","Pending peer review","","Non-small cell lung cancer (NSCLC) for first time using ICD0","",1,"'Asieh Golozar', 'Vlad Korsik'","'0000-0002-4243-155X'","","","0","439676, 37311061","","2024-01-05","2024-01-05",,"",,0,,,"ERA",0,"end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",365,0,1,0,0,0,0,0,0,1,,0,,,,,,,,1,,,,,,,,,,,,,,,,,,,, +1267,"[P] Lung cancer using ICD0","Lung cancer using ICD0","Lung cancer","rao@ohdsi.org","Pending peer review","","Lung cancer using ICD0","",1,"'Asieh Golozar'","'0000-0002-4243-155X'","","","0","439676, 37311061","","2024-01-05","2024-01-05",,"",,0,,,"ERA",0,"end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",365,0,1,0,0,0,0,0,0,1,,0,,,,,,,,1,,,,,,,,,,,,,,,,,,,, +1268,"[P] Lung Resection, adults, inpt stay, no ED, post op new Afib","Lung Resection, adults, inpt stay, no ED, post op new Afib","Lung Resection, adults, inpt stay, no ED, post op new Afib","rao@ohdsi.org","Pending peer review","","Lung Resection - post op new Afib (any)","#Surgery, #WorkGroup",1,"Evan Minty","0000-0003-4631-9992","'OHDSI'","","0","","","2024-01-05","2024-01-05",,"",,0,,,"ERA",0,"end of continuous observation",,,4,"First",FALSE,"All","First",2,1,"ProcedureOccurrence",0,0,4,1,1,0,0,1,0,,,0,,,,,,,1,,1,,,,,,,,,,,1,,,,,,,, +1269,"[P] Pulmonary fibrosis","Pulmonary fibrosis","Pulmonary fibrosis","rao@ohdsi.org","Pending peer review","","Pulmonary fibrosis","#Condition, #respiratory, #lung",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","0","4197819","","2024-01-05","2024-01-05",,"",,0,,,"ERA",0,"end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1270,"[P] History of Bladder cancer","History of Bladder cancer","Bladder cancer including history","rao@ohdsi.org","Pending","","History of Bladder cancer","",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","0","197508","","2024-01-05","2024-01-05",,"",,0,,,"ERA",0,"end of continuous observation",,,0,"First",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1271,"[P] Chronic obstructive pulmonary disease (COPD)","Chronic obstructive pulmonary disease (COPD)","Chronic obstructive pulmonary disease (COPD)","rao@ohdsi.org","Pending peer review","","Chronic obstructive pulmonary disease (COPD)","#respiratory, #lung",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","0","255573","","2024-01-05","2024-01-05",,"",,0,,,"ERA",0,"end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1272,"[P] Chronic Interstitial lung disease (ILD)","Chronic Interstitial lung disease (ILD)","Chronic Interstitial lung disease (ILD) not including Acute Respiratory Distress Syndrome","rao@ohdsi.org","Pending peer review","","Chronic Interstitial lung disease (ILD)","#respiratory, #lung",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","0","4119786","","2024-01-05","2024-01-05",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",365,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1273,"[P] Lung Nodule","Lung Nodule","Lung Nodule","rao@ohdsi.org","Pending peer review","","Lung Nodule","#respiratory, #lung",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","0","37206719","","2024-01-05","2024-01-05",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",730,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1274,"[P] Lung Nodule - solitary","Lung Nodule - solitary","Lung Nodule - solitary","rao@ohdsi.org","Pending peer review","","Lung Nodule - solitary","#respiratory, #lung",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","0","37206719,4142875","","2024-01-05","2024-01-05",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",730,1,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,3,1,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1275,"[P] Lung Nodule - multiple","Lung Nodule - multiple","Lung Nodule - multiple","rao@ohdsi.org","Pending peer review","","Lung Nodule - multiple","#respiratory, #lung",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","0","37206719,40482871","","2024-01-05","2024-01-05",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",730,1,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,3,1,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1276,"[P] Lung Mass (not acute, necrotic, atlectatic, abscess, fibrosis)","Lung Mass (not acute, necrotic, atlectatic, abscess, fibrosis)","Lung Mass (not acute, necrotic, atlectatic, abscess, fibrosis)","rao@ohdsi.org","Pending peer review","","Lung Mass (not acute, necrotic, atlectatic, abscess, fibrosis)","#respiratory, #lung",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","0","37206719","","2024-01-05","2024-01-05",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",730,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1277,"[P] Lung Lesion (not acute, necrotic, atlectatic, abscess, fibrosis)","Lung Lesion (not acute, necrotic, atlectatic, abscess, fibrosis)","Lung Lesion that is not acute, necrotic, atlectatic, abscess, fibrosis","rao@ohdsi.org","Pending peer review","","Lung Lesion (not acute, necrotic, atlectatic, abscess, fibrosis)","#respiratory, #lung",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","0","4116778,37206719","","2024-01-05","2024-01-05",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",730,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1278,"[P] Non Small Cell Lung Cancer (Stage 3)","Non Small Cell Lung Cancer (Stage 3)","Stage 3 Non Small Cell Lung Cancer (NSCLC), indexed on lung abnormaility with no evidence of SCLC and had follow-up for NSCLC","rao@ohdsi.org","Pending peer review","","Non Small Cell Lung Cancer (Stage 3)","#respiratory, #lung",1,"'Dmytro Dymshyts', 'Gowtham A. Rao'","'','0000-0002-4949-7236'","'OHDSI'","","0","37206719,4311499","","2024-01-05","2024-01-05",,"",,0,,,"ERA",0,"end of continuous observation",,,15,"All",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,17,1,0,0,0,0,0,1,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1279,"[P] Non Small Cell Lung Cancer","Non Small Cell Lung Cancer","Non Small Cell Lung Cancer (NSCLC), indexed on lung abnormaility with no evidence of SCLC and had follow-up for NSCLC","rao@ohdsi.org","Pending peer review","","Non Small Cell Lung Cancer","#respiratory, #lung",1,"'Dmytro Dymshyts', 'Gowtham A. Rao'","'','0000-0002-4949-7236'","'OHDSI'","","0","37206719,4311499","","2024-01-05","2024-01-05",,"",,0,,,"ERA",0,"end of continuous observation",,,4,"All",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,8,1,0,0,0,0,0,1,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1280,"[P] Small Cell Lung Cancer","Small Cell Lung Cancer","Small Cell Lung Cancer","rao@ohdsi.org","Pending peer review","","Small Cell Lung Cancer","#respiratory, #lung",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","0","37206719","","2024-01-05","2024-01-05",,"",,0,,,"ERA",0,"end of continuous observation",,,0,"All",FALSE,"All","First",2,1,"ConditionOccurrence",0,0,3,1,0,0,0,0,0,1,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1281,"[P] Primary Lung Cancer","Primary Lung Cancer","Primary Lung Cancer, indexed on lung abnormaility","rao@ohdsi.org","Pending peer review","","Primary Lung Cancer","#respiratory, #lung",1,"'Dmytro Dymshyts', 'Gowtham A. Rao'","'','0000-0002-4949-7236'","'OHDSI'","","0","37206719,4311499","","2024-01-05","2024-01-05",,"",,0,,,"ERA",0,"end of continuous observation",,,1,"All",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,2,1,0,0,0,0,0,1,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1282,"[P] Hoarseness","Hoarseness","Hoarseness","rao@ohdsi.org","Pending peer review","","Hoarseness","#Symptoms, #respiratory, #lung",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","0","312437, 4041664",,"2024-01-05","2024-01-05",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",14,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1283,"[P] Bone Pain","Bone Pain","Bone Pain","rao@ohdsi.org","Pending peer review","","Bone Pain","#Symptom",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","0","4129418",,"2024-01-05","2024-01-05",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",14,0,"All",FALSE,"All","All",2,1,"ConditionOccurrence",0,0,3,1,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1284,"[P] Weight loss","Weight loss","Weight loss","rao@ohdsi.org","Pending peer review","","Weight loss","#Symptoms",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","0","4177176,435928",,"2024-01-05","2024-01-05",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",14,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1285,"[P] Acute bronchitis","Acute bronchitis","Acute Bronchitis","rao@ohdsi.org","Pending peer review","","Acute bronchitis","#Symptoms",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","0","256451,260139",,"2024-01-05","2024-01-05",,"",,0,,,"ERA",0,"fixed duration relative to initial event","StartDate",0,1,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,1,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1286,"[P] Non Small Cell Lung Cancer (Stage 3) without second diagnosis","Non Small Cell Lung Cancer (Stage 3) without second diagnosis","Stage 3 Non Small Cell Lung Cancer (NSCLC), indexed on lung abnormaility with no evidence of SCLC and had follow-up for NSCLC","rao@ohdsi.org","Pending peer review","","Non Small Cell Lung Cancer (Stage 3) without second diagnosis","#respiratory, #lung",1,"'Dmytro Dymshyts', 'Gowtham A. Rao'","'','0000-0002-4949-7236'","'OHDSI'","","0","37206719,4311499","","2024-01-05","2024-01-05",,"",,0,,,"ERA",0,"end of continuous observation",,,14,"All",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,17,1,0,0,0,0,0,1,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1287,"[P] Intestinal obstruction - colorectal specific","Intestinal obstruction - colorectal specific","Intestinal obstruction - colorectal specific","rao@ohdsi.org","Pending peer review","","Earliest occurence of Intestinal obstruction - colorectal specific","",1,"Andreas Weinberger Rosen","0000-0001-9990-8155","","","","193518","","2024-01-05","2024-01-05",,"",,0,,,"ERA",0,"end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1288,"[P] Intraabdominal abscess - narrow for colorectal cancer","Intraabdominal abscess - narrow for colorectal cancer","Intraabdominal abscess - narrow for colorectal cancer","rao@ohdsi.org","Pending peer review","","Earliest occurence of Intraabdominal abscess - narrow for colorectal cancer","",1,"Andreas Weinberger Rosen","0000-0001-9990-8155","","","","193518","","2024-01-05","2024-01-05",,"",,0,,,"ERA",0,"end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1289,"[P] Major Non Cardiac Surgery, adults","Major Non Cardiac Surgery, adults","Major Non Cardiac Surgery, adults","rao@ohdsi.org","Pending peer review","","","#Surgery",1,"Evan Minty', 'Brian Bucher'","0000-0003-4631-9992', '0000-0001-8376-9752'","'OHDSI'","","","",,"2024-01-05","2024-01-05",,"",,0,,,"ERA",0,"end of continuous observation",,,1,"First",FALSE,"All","First",35,1,"ProcedureOccurrence",0,0,35,1,1,0,0,0,0,,,0,,,,,,,1,,1,,,,,,,,,,,,,,,,,,, +1290,"[P] Abdominal Aortic Aneurysm repair, adults","Abdominal Aortic Aneurysm repair, adults","Abdominal Aortic Aneurysm repair, adults","rao@ohdsi.org","Pending peer review","","","#Surgery",1,"Evan Minty', 'Brian Bucher'","0000-0003-4631-9992', '0000-0001-8376-9752'","'OHDSI'","","","",,"2024-01-05","2024-01-05",,"",,0,,,"ERA",0,"end of continuous observation",,,1,"First",FALSE,"All","First",2,1,"ProcedureOccurrence",0,0,1,1,1,0,0,0,0,,,0,,,,,,,1,,1,,,,,,,,,,,1,,,,,,,, +1291,"[P] Lower Extremity Bypass, adults","Lower Extremity Bypass, adults","Lower Extremity Bypass, adults","rao@ohdsi.org","Pending peer review","","","#Surgery",1,"Evan Minty', 'Brian Bucher'","0000-0003-4631-9992', '0000-0001-8376-9752'","'OHDSI'","","","",,"2024-01-05","2024-01-05",,"",,0,,,"ERA",0,"end of continuous observation",,,1,"First",FALSE,"All","First",2,1,"ProcedureOccurrence",0,0,1,1,1,0,0,0,0,,,0,,,,,,,1,,1,,,,,,,,,,,1,,,,,,,, +1292,"[P] Carotid Endarterectomy, adults","Carotid Endarterectomy, adults","Carotid Endarterectomy, adults","rao@ohdsi.org","Pending peer review","","","#Surgery",1,"Evan Minty', 'Brian Bucher'","0000-0003-4631-9992', '0000-0001-8376-9752'","'OHDSI'","","","",,"2024-01-05","2024-01-05",,"",,0,,,"ERA",0,"end of continuous observation",,,1,"First",FALSE,"All","First",2,1,"ProcedureOccurrence",0,0,1,1,1,0,0,0,0,,,0,,,,,,,1,,1,,,,,,,,,,,1,,,,,,,, +1293,"[P] Lung Resection, adults","Lung Resection, adults","Lung Resection, adults","rao@ohdsi.org","Pending peer review","","","#Surgery",1,"Evan Minty', 'Brian Bucher'","0000-0003-4631-9992', '0000-0001-8376-9752'","'OHDSI'","","","",,"2024-01-05","2024-01-05",,"",,0,,,"ERA",0,"end of continuous observation",,,1,"First",FALSE,"All","First",2,1,"ProcedureOccurrence",0,0,1,1,1,0,0,0,0,,,0,,,,,,,1,,1,,,,,,,,,,,1,,,,,,,, +1294,"[P] Esophagectomy, adults","Esophagectomy, adults","Esophagectomy, adults","rao@ohdsi.org","Pending peer review","","","#Surgery",1,"Evan Minty', 'Brian Bucher'","0000-0003-4631-9992', '0000-0001-8376-9752'","'OHDSI'","","","",,"2024-01-05","2024-01-05",,"",,0,,,"ERA",0,"end of continuous observation",,,1,"First",FALSE,"All","First",2,1,"ProcedureOccurrence",0,0,1,1,1,0,0,0,0,,,0,,,,,,,1,,1,,,,,,,,,,,1,,,,,,,, +1295,"[P] Pancreatectomy, adults","Pancreatectomy, adults","Pancreatectomy, adults","rao@ohdsi.org","Pending peer review","","","#Surgery",1,"Evan Minty', 'Brian Bucher'","0000-0003-4631-9992', '0000-0001-8376-9752'","'OHDSI'","","","",,"2024-01-05","2024-01-05",,"",,0,,,"ERA",0,"end of continuous observation",,,1,"First",FALSE,"All","First",2,1,"ProcedureOccurrence",0,0,1,1,1,0,0,0,0,,,0,,,,,,,1,,1,,,,,,,,,,,1,,,,,,,, +1296,"[P] Colectomy, adults","Colectomy, adults","Colectomy, adults","rao@ohdsi.org","Pending peer review","","","#Surgery",1,"Evan Minty', 'Brian Bucher'","0000-0003-4631-9992', '0000-0001-8376-9752'","'OHDSI'","","","",,"2024-01-05","2024-01-05",,"",,0,,,"ERA",0,"end of continuous observation",,,1,"First",FALSE,"All","First",2,1,"ProcedureOccurrence",0,0,1,1,1,0,0,0,0,,,0,,,,,,,1,,1,,,,,,,,,,,1,,,,,,,, +1297,"[P] Cystectomy, adults","Cystectomy, adults","Cystectomy, adults","rao@ohdsi.org","Pending peer review","","","#Surgery",1,"Evan Minty', 'Brian Bucher'","0000-0003-4631-9992', '0000-0001-8376-9752'","'OHDSI'","","","",,"2024-01-05","2024-01-05",,"",,0,,,"ERA",0,"end of continuous observation",,,1,"First",FALSE,"All","First",2,1,"ProcedureOccurrence",0,0,1,1,1,0,0,0,0,,,0,,,,,,,1,,1,,,,,,,,,,,1,,,,,,,, +1298,"[P] Nephrectomy, adults","Nephrectomy, adults","Nephrectomy, adults","rao@ohdsi.org","Pending peer review","","","#Surgery",1,"Evan Minty', 'Brian Bucher'","0000-0003-4631-9992', '0000-0001-8376-9752'","'OHDSI'","","","",,"2024-01-05","2024-01-05",,"",,0,,,"ERA",0,"end of continuous observation",,,1,"First",FALSE,"All","First",2,1,"ProcedureOccurrence",0,0,1,1,1,0,0,0,0,,,0,,,,,,,1,,1,,,,,,,,,,,1,,,,,,,, +1299,"[P] Coronary Artery Bypass Graft, adults","Coronary Artery Bypass Graft, adults","Coronary Artery Bypass Graft, adults","rao@ohdsi.org","Pending peer review","","","#Surgery",1,"Evan Minty', 'Brian Bucher'","0000-0003-4631-9992', '0000-0001-8376-9752'","'OHDSI'","","","",,"2024-01-05","2024-01-05",,"",,0,,,"ERA",0,"end of continuous observation",,,1,"First",FALSE,"All","First",2,1,"ProcedureOccurrence",0,0,1,1,1,0,0,0,0,,,0,,,,,,,1,,1,,,,,,,,,,,1,,,,,,,, +1300,"[P] Cardiac Valve Surgery, adults","Cardiac Valve Surgery, adults","Cardiac Valve Surgery, adults","rao@ohdsi.org","Pending peer review","","","#Surgery",1,"Evan Minty', 'Brian Bucher'","0000-0003-4631-9992', '0000-0001-8376-9752'","'OHDSI'","","","",,"2024-01-05","2024-01-05",,"",,0,,,"ERA",0,"end of continuous observation",,,1,"First",FALSE,"All","First",2,1,"ProcedureOccurrence",0,0,1,1,1,0,0,0,0,,,0,,,,,,,1,,1,,,,,,,,,,,1,,,,,,,, +1301,"[P] Acute Urinary tract infections UTI events","Acute Urinary tract infections UTI events","Acute Urinary tract infections UTI","rao@ohdsi.org","Pending peer review","","all events of acute urinary tract infection","",1,"Evan Minty","0000-0003-4631-9992'","","","","81902","","2024-01-05","2024-01-05",,"",,0,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1303,"[P] Acute Heart failure from legend","Acute Heart failure from legend","Acute Heart failure","rao@ohdsi.org","Pending","","The first condition record of heart failure, which is followed by at least 1 heart failure condition record in the following year","",1,"'Evan Minty'","0000-0003-4631-9992'","'OHDSI'","","","78232, 80180","https://forums.ohdsi.org/t/17895","2024-01-05","2024-01-05",,"","modified from 934 to support HowOften study.",0,,,"ERA",1,"fixed duration relative to initial event","StartDate",0,0,"All",TRUE,"All","All",1,1,"ConditionOccurrence",0,0,1,1,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1304,"[P] Major Non Cardiac Surgery, adults, post op new Afib","Major Non Cardiac Surgery, adults, post op new Afib","Major Non Cardiac Surgery, adults, post op new Afib","rao@ohdsi.org","Pending peer review","","","#Surgery, #WorkGroup",1,"Evan Minty","0000-0003-4631-9992","'OHDSI'","","","",,"2024-01-05","2024-01-05",,"",,0,,,"ERA",0,"end of continuous observation",,,3,"First",FALSE,"All","First",35,1,"ProcedureOccurrence",0,0,36,1,1,0,0,0,0,,,0,,,,,,,1,,1,,,,,,,,,,,,,,,,,,, +1305,"[P] AAA repair, adults, post op new Afib","AAA repair, adults, post op new Afib","AAA repair, adults, post op new Afib","rao@ohdsi.org","Pending peer review","","","#Surgery, #WorkGroup",1,"Evan Minty","0000-0003-4631-9992","'OHDSI'","","","",,"2024-01-05","2024-01-05",,"",,0,,,"ERA",0,"end of continuous observation",,,3,"First",FALSE,"All","First",2,1,"ProcedureOccurrence",0,0,2,1,1,0,0,0,0,,,0,,,,,,,1,,1,,,,,,,,,,,1,,,,,,,, +1306,"[P] Lower Extremity Bypass, adults, post op new Afib","Lower Extremity Bypass, adults, post op new Afib","Lower Extremity Bypass, adults, post op new Afib","rao@ohdsi.org","Pending peer review","","","#Surgery, #WorkGroup",1,"Evan Minty","0000-0003-4631-9992","'OHDSI'","","","",,"2024-01-05","2024-01-05",,"",,0,,,"ERA",0,"end of continuous observation",,,3,"First",FALSE,"All","First",2,1,"ProcedureOccurrence",0,0,2,1,1,0,0,0,0,,,0,,,,,,,1,,1,,,,,,,,,,,1,,,,,,,, +1307,"[P] Carotid Endarterectomy, adults, post op new Afib","Carotid Endarterectomy, adults, post op new Afib","Carotid Endarterectomy, adults, post op new Afib","rao@ohdsi.org","Pending peer review","","","#Surgery, #WorkGroup",1,"Evan Minty","0000-0003-4631-9992","'OHDSI'","","","",,"2024-01-05","2024-01-05",,"",,0,,,"ERA",0,"end of continuous observation",,,3,"First",FALSE,"All","First",2,1,"ProcedureOccurrence",0,0,2,1,1,0,0,0,0,,,0,,,,,,,1,,1,,,,,,,,,,,1,,,,,,,, +1308,"[P] Lung Resection, adults, post op new Afib","Lung Resection, adults, post op new Afib","Lung Resection, adults, post op new Afib","rao@ohdsi.org","Pending peer review","","","#Surgery, #WorkGroup",1,"Evan Minty","0000-0003-4631-9992","'OHDSI'","","","",,"2024-01-05","2024-01-05",,"",,0,,,"ERA",0,"end of continuous observation",,,3,"First",FALSE,"All","First",2,1,"ProcedureOccurrence",0,0,2,1,1,0,0,0,0,,,0,,,,,,,1,,1,,,,,,,,,,,1,,,,,,,, +1309,"[P] Esophagectomy, adults, post op new Afib","Esophagectomy, adults, post op new Afib","Esophagectomy, adults, post op new Afib","rao@ohdsi.org","Pending peer review","","","#Surgery, #WorkGroup",1,"Evan Minty","0000-0003-4631-9992","'OHDSI'","","","",,"2024-01-05","2024-01-05",,"",,0,,,"ERA",0,"end of continuous observation",,,3,"First",FALSE,"All","First",2,1,"ProcedureOccurrence",0,0,2,1,1,0,0,0,0,,,0,,,,,,,1,,1,,,,,,,,,,,1,,,,,,,, +1310,"[P] Pancreatectomy, adults, post op new Afib","Pancreatectomy, adults, post op new Afib","Pancreatectomy, adults, post op new Afib","rao@ohdsi.org","Pending peer review","","","#Surgery, #WorkGroup",1,"Evan Minty","0000-0003-4631-9992","'OHDSI'","","","",,"2024-01-05","2024-01-05",,"",,0,,,"ERA",0,"end of continuous observation",,,3,"First",FALSE,"All","First",2,1,"ProcedureOccurrence",0,0,2,1,1,0,0,0,0,,,0,,,,,,,1,,1,,,,,,,,,,,1,,,,,,,, +1311,"[P] Colectomy, adults, post op new Afib","Colectomy, adults, post op new Afib","Colectomy, adults, post op new Afib","rao@ohdsi.org","Pending peer review","","","#Surgery, #WorkGroup",1,"Evan Minty","0000-0003-4631-9992","'OHDSI'","","","",,"2024-01-05","2024-01-05",,"",,0,,,"ERA",0,"end of continuous observation",,,3,"First",FALSE,"All","First",2,1,"ProcedureOccurrence",0,0,2,1,1,0,0,0,0,,,0,,,,,,,1,,1,,,,,,,,,,,1,,,,,,,, +1312,"[P] Cystectomy, adults, post op new Afib","Cystectomy, adults, post op new Afib","Cystectomy, adults, post op new Afib","rao@ohdsi.org","Pending peer review","","","#Surgery, #WorkGroup",1,"Evan Minty","0000-0003-4631-9992","'OHDSI'","","","",,"2024-01-05","2024-01-05",,"",,0,,,"ERA",0,"end of continuous observation",,,3,"First",FALSE,"All","First",2,1,"ProcedureOccurrence",0,0,2,1,1,0,0,0,0,,,0,,,,,,,1,,1,,,,,,,,,,,1,,,,,,,, +1313,"[P] Nephrectomy, adults, post op new Afib","Nephrectomy, adults, post op new Afib","Nephrectomy, adults, post op new Afib","rao@ohdsi.org","Pending peer review","","","#Surgery, #WorkGroup",1,"Evan Minty","0000-0003-4631-9992","'OHDSI'","","","",,"2024-01-05","2024-01-05",,"",,0,,,"ERA",0,"end of continuous observation",,,3,"First",FALSE,"All","First",2,1,"ProcedureOccurrence",0,0,2,1,1,0,0,0,0,,,0,,,,,,,1,,1,,,,,,,,,,,1,,,,,,,, +1314,"[P] Coronary Artery Bypass Graft, adults, post op new Afib","Coronary Artery Bypass Graft, adults, post op new Afib","Coronary Artery Bypass Graft, adults, post op new Afib","rao@ohdsi.org","Pending peer review","","","#Surgery, #WorkGroup",1,"Evan Minty","0000-0003-4631-9992","'OHDSI'","","","",,"2024-01-05","2024-01-05",,"",,0,,,"ERA",0,"end of continuous observation",,,3,"First",FALSE,"All","First",2,1,"ProcedureOccurrence",0,0,2,1,1,0,0,0,0,,,0,,,,,,,1,,1,,,,,,,,,,,1,,,,,,,, +1315,"[P] Cardiac Valve Surgery, adults, post op new Afib","Cardiac Valve Surgery, adults, post op new Afib","Cardiac Valve Surgery, adults, post op new Afib","rao@ohdsi.org","Pending peer review","","","#Surgery, #WorkGroup",1,"Evan Minty","0000-0003-4631-9992","'OHDSI'","","","",,"2024-01-05","2024-01-05",,"",,0,,,"ERA",0,"end of continuous observation",,,3,"First",FALSE,"All","First",2,1,"ProcedureOccurrence",0,0,2,1,1,0,0,0,0,,,0,,,,,,,1,,1,,,,,,,,,,,1,,,,,,,, +1316,"Acquired Neutropenia or unspecified leukopenia (21Pe, 365Era)","Acquired Neutropenia or unspecified leukopenia (21Pe, 365Era)","Neutropenia or unspecified leukopenia","rao@ohdsi.org","Accepted","3.11.0","All events of neutropenia indexed on diagnosis or lab results, with no congenital or genetic neutropenia all days pre to 7 days post index. Also excluded, events with normal neutrophil count or a diagnosis of Neutrophilia on index. patients exit 21 days post end date or with the occurrence of a normal neutrophil count. Reoccurring events for the same patients will be combined into event eras if they are within 365 days of each other.","#PhenotypePhebruary, #2023, #Neutropenia, #DME",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","Anna Ostropolets","","435224","https://forums.ohdsi.org/t/17409","2024-09-06","2024-09-06",,"213",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",90,3,"All",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,23,1,0,0,0,0,0,1,,0,,,,,,,,1,,,,,,,,,,,,,,,,,,,, +1317,"[P] Reyes syndrome","Reyes syndrome","Reyes syndrome","rao@ohdsi.org","Pending peer review","","First occurrence of Reyes syndrome","#Disease, #DME",1,"'Gowtham A. Rao', 'Azza Shoaibi'","'0000-0002-4949-7236', '0000-0002-6976-2594'","'OHDSI'","","","375241","","2024-09-11","2024-09-26",,"",,0,,,"ERA",0,"end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,0,,,,,,,,1,,,,,,,,,,,,,,,,,,,, +1318,"[P] NSCLC solitary primary rx naive","NSCLC solitary primary rx naive","Solitary Primary Non Small Cell Lung Cancer - treatment naive","rao@ohdsi.org","Pending peer review","","First occurrence of Solitary Primary Non Small Cell Lung Cancer - treatment naive","#Oncology, #LungCancer",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","4311499","","2024-12-06","2025-03-28",,"",,0,,,"ERA",0,"end of continuous observation",,,43,"First",TRUE,"First","First",1,1,"ConditionOccurrence",365,0,32,1,1,1,0,0,0,1,,0,,,,,,,,1,,,,,,,,,,,,,,,,,1,1,,1 +1329,"[P] Death due to substance overdose (post mortem)","Death due to substance overdose (post mortem)","Death due to substance overdose","rao@ohdsi.org","Pending peer review","","first event of death with measurement of overdose within 7 days of death to account for reporting date discrepancy","#Death",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","4306655","","2025-03-28","2025-03-28",,"",,0,,,"ERA",0,"fixed duration relative to initial event","StartDate",0,1,"First",FALSE,"All","First",2,2,"Death, Observation",0,0,2,1,0,0,0,0,0,,,0,1,,1,,,,,1,,,,,,,,,,,,,,,,,,,, +1330,"[P] Acute Overdose (or “Acute Toxicity”) by substances with abuse potential","Acute Overdose (or “Acute Toxicity”) by substances with abuse potential","Acute Overdose (or Acute Toxicity) by substances with abuse potential","rao@ohdsi.org","Pending peer review","","Acute Overdose (or Acute Toxicity) by substances with abuse potential events","#SubstanceUseDisorder, #MentalHealth",1,"'Gowtham A. Rao', 'Azza Shoaibi'","'0000-0002-4949-7236', '0000-0002-6976-2594'","'OHDSI'","","","602985","","2025-03-28","2025-03-31",,"",,0,,,"ERA",1,"fixed duration relative to initial event","EndDate",1,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1331,"[P] Opioid overdose - treatment drugs","Opioid overdose - treatment drugs","Opioid overdose - treatment drugs","rao@ohdsi.org","Pending peer review","","Opioid overdose - treatment drugs","#SubstanceUseDisorder, #MentalHealth",1,"'Gowtham A. Rao', 'Azza Shoaibi'","'0000-0002-4949-7236', '0000-0002-6976-2594'","'OHDSI'","","","21604816","","2025-03-28","2025-03-28",,"",,0,,,"ERA",0,"end of continuous drug exposure",,,0,"All",FALSE,"All","All",1,1,"DrugExposure",0,0,1,0,0,0,0,0,0,,,1,,,,1,,,,,,,,,,,,,,,,,0,30,0,,,,, +1332,"[P] Alcohol poisoning (acute severe intoxication)","Alcohol poisoning (acute severe intoxication)","Alcohol poisoning (acute severe intoxication)","rao@ohdsi.org","Pending peer review","","All events of Alcohol poisoning (acute severe intoxication)","#SubstanceUseDisorder, #MentalHealth",1,"'Gowtham A. Rao', 'Azza Shoaibi'","'0000-0002-4949-7236', '0000-0002-6976-2594'","'OHDSI'","","","602985","","2025-03-28","2025-03-28",,"",,0,,,"ERA",1,"fixed duration relative to initial event","EndDate",1,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1333,"[P] Advanced liver disease","Advanced liver disease","Advanced Liver Disease","rao@ohdsi.org","Pending peer review","","earliest event of Advanced Liver Disease. Persons exit on end of observation period","#Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","45769564","","2025-03-28","2025-03-28",,"",,0,,,"ERA",0,"end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1334,"[P] Liver cirrhosis from alcohol","Liver cirrhosis from alcohol","Liver cirrhosis from alcohol","rao@ohdsi.org","Pending peer review","","earliest event of Liver cirrhosis from alcohol. Persons exit on end of observation period","#Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","4064161","","2025-03-28","2025-03-28",,"",,0,,,"ERA",0,"end of continuous observation",,,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1336,"[P] Infective Endocarditis","Infective Endocarditis","Infective Endocarditis events","rao@ohdsi.org","Pending peer review","","earliest event of Infective Endocarditis. Events within 180 days are collapsed","#Condition",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","4064161","","2025-03-28","2025-03-28",,"",,0,,,"ERA",180,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1337,"[P] Human immunodeficiency virus infection earliest occurrence","Human immunodeficiency virus infection earliest occurrence","Human immunodeficiency virus infection","rao@ohdsi.org","Pending peer review","","Earliest diagnosis of Human immunodeficiency virus infection","",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","439727","","2025-03-28","2025-03-28",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",0,0,"First",FALSE,"All","First",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1338,"[P] Binge Eating Disorder","Binge Eating Disorder","All events of binge eating disorder","rao@ohdsi.org","Pending peer review","","All events of binge eating disorder assumed to last 30 days. Events within 1 year are collapsed.","#Indication",1,"'Gowtham A. Rao', 'Azza Shoaibi'","'0000-0002-4949-7236', '0000-0002-6976-2594'","'OHDSI'","","","4208913","","2025-03-28","2025-03-28",,"",,0,,,"ERA",365,"fixed duration relative to initial event","EndDate",30,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1339,"[P] Bulimia Nervosa","Bulimia Nervosa","All events of Bulimia Nervosa","rao@ohdsi.org","Pending peer review","","All events of Bulimia Nervosa assumed to last 30 days. Events within 1 year are collapsed.","#Indication",1,"'Gowtham A. Rao', 'Azza Shoaibi'","'0000-0002-4949-7236', '0000-0002-6976-2594'","'OHDSI'","","","438407","","2025-03-28","2025-03-28",,"",,0,,,"ERA",365,"fixed duration relative to initial event","EndDate",30,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1340,"[P] Anorexia Nervosa","Anorexia Nervosa","All events of Anorexia Nervosa","rao@ohdsi.org","Pending peer review","","All events of Anorexia Nervosa assumed to last 30 days. Events within 1 year are collapsed.","#Indication",1,"'Gowtham A. Rao', 'Azza Shoaibi'","'0000-0002-4949-7236', '0000-0002-6976-2594'","'OHDSI'","","","436675","","2025-03-28","2025-03-28",,"",,0,,,"ERA",365,"fixed duration relative to initial event","EndDate",30,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1341,"[P] Eating Disorders","Eating Disorders","All events of Eating Disorders","rao@ohdsi.org","Pending peer review","","All events of Eating Disorders assumed to last 30 days. Events within 1 year are collapsed.","#Indication",1,"'Gowtham A. Rao', 'Azza Shoaibi'","'0000-0002-4949-7236', '0000-0002-6976-2594'","'OHDSI'","","","439002","","2025-03-29","2025-03-29",,"",,0,,,"ERA",365,"fixed duration relative to initial event","EndDate",30,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1342,"[P] Narcissistic personality disorder","Narcissistic personality disorder","All events of Narcissistic personality disorder","rao@ohdsi.org","Pending peer review","","All events of Narcissistic personality disorder assumed to last 30 days. Events within 1 year are collapsed.","#Indication",1,"'Gowtham A. Rao', 'Azza Shoaibi'","'0000-0002-4949-7236', '0000-0002-6976-2594'","'OHDSI'","","","440080","","2025-03-29","2025-03-29",,"",,0,,,"ERA",365,"fixed duration relative to initial event","EndDate",30,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1343,"[P] Antisocial Personality Disorder","Antisocial Personality Disorder","All events of Antisocial Personality Disorder","rao@ohdsi.org","Pending peer review","","All events of Antisocial Personality Disorder assumed to last 30 days. Events within 1 year are collapsed.","#Indication",1,"'Gowtham A. Rao', 'Azza Shoaibi'","'0000-0002-4949-7236', '0000-0002-6976-2594'","'OHDSI'","","","440080","","2025-03-29","2025-03-29",,"",,0,,,"ERA",365,"fixed duration relative to initial event","EndDate",30,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1344,"[P] Borderline Personality Disorder","Borderline Personality Disorder","All events of Borderline Personality Disorder","rao@ohdsi.org","Pending peer review","","All events of Borderline Personality Disorder assumed to last 30 days. Events within 1 year are collapsed.","#Indication",1,"'Gowtham A. Rao', 'Azza Shoaibi'","'0000-0002-4949-7236', '0000-0002-6976-2594'","'OHDSI'","","","440080","","2025-03-29","2025-03-29",,"",,0,,,"ERA",365,"fixed duration relative to initial event","EndDate",30,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1345,"[P] Personality Disorders","Personality Disorders","All events of Personality Disorders","rao@ohdsi.org","Pending peer review","","All events of Personality Disorder assumed to last 30 days. Events within 1 year are collapsed.","#Indication",1,"'Gowtham A. Rao', 'Azza Shoaibi'","'0000-0002-4949-7236', '0000-0002-6976-2594'","'OHDSI'","","","440080","","2025-03-29","2025-03-29",,"",,0,,,"ERA",365,"fixed duration relative to initial event","EndDate",30,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1346,"[P] Attention-Deficit Hyperactivity Disorder","Attention-Deficit Hyperactivity Disorder","All events of Attention-Deficit Hyperactivity Disorder","rao@ohdsi.org","Pending peer review","","All events of Attention-Deficit Hyperactivity Disorder assumed to last 30 days. Events within 1 year are collapsed.","#Indication",1,"'Gowtham A. Rao', 'Azza Shoaibi'","'0000-0002-4949-7236', '0000-0002-6976-2594'","'OHDSI'","","","438409","","2025-03-29","2025-03-29",,"",,0,,,"ERA",365,"fixed duration relative to initial event","EndDate",30,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1347,"[P] Posttraumatic Stress Disorder","Posttraumatic Stress Disorder","All events of Posttraumatic Stress Disorder","rao@ohdsi.org","Pending peer review","","All events of Posttraumatic Stress Disorder assumed to last 30 days. Events within 1 year are collapsed.","#Indication",1,"'Gowtham A. Rao', 'Azza Shoaibi'","'0000-0002-4949-7236', '0000-0002-6976-2594'","'OHDSI'","","","436676","","2025-03-29","2025-03-29",,"",,0,,,"ERA",365,"fixed duration relative to initial event","EndDate",30,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1348,"[P] Obsessive Compulsive Disorder","Obsessive Compulsive Disorder","All events of Obsessive Compulsive Disorder","rao@ohdsi.org","Pending peer review","","All events of Obsessive Compulsive Disorder assumed to last 30 days. Events within 1 year are collapsed.","#Indication",1,"'Gowtham A. Rao', 'Azza Shoaibi'","'0000-0002-4949-7236', '0000-0002-6976-2594'","'OHDSI'","","","440374","","2025-03-29","2025-03-29",,"",,0,,,"ERA",365,"fixed duration relative to initial event","EndDate",30,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1349,"[P] Anxiety Disorder","Anxiety Disorder","All events of Posttraumatic Stress Disorder","rao@ohdsi.org","Pending peer review","","All events of Posttraumatic Stress Disorder assumed to last 30 days. Events within 1 year are collapsed.","#Indication",1,"'Gowtham A. Rao', 'Azza Shoaibi'","'0000-0002-4949-7236', '0000-0002-6976-2594'","'OHDSI'","","","442077","","2025-03-29","2025-03-29",,"",,0,,,"ERA",365,"fixed duration relative to initial event","EndDate",30,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1350,"[P] Primary Psychiatric Disorders","Primary Psychiatric Disorders","Primary Psychiatric Disorders","rao@ohdsi.org","Pending peer review","","All events of Primary Psychiatric Disorders","#Disease",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","432586","","2025-03-29","2025-03-29",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",365,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1351,"[P] Gambling Disorder","Gambling Disorder","Gambling Disorder","rao@ohdsi.org","Pending peer review","","All events of Gambling Disorder","#Disease",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","4023166","","2025-03-29","2025-03-29",,"",,0,,,"ERA",365,"fixed duration relative to initial event","EndDate",90,0,"All",FALSE,"All","All",2,2,"ConditionOccurrence, Observation",0,0,1,0,0,0,0,0,0,1,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,, +1352,"[P] Behavioral Addictions","Behavioral Addictions","Behavioral Addictions","rao@ohdsi.org","Pending peer review","","All events of Behavioral Addictions","#Disease",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","4023166","","2025-03-29","2025-03-29",,"",,0,,,"ERA",365,"fixed duration relative to initial event","EndDate",90,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1353,"[P] Tobacco and Nicotine User","Tobacco and Nicotine User","Tobacco and Nicotine User","rao@ohdsi.org","Pending peer review","","All events of Tobacco and Nicotine User","#Disease",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","903654","","2025-03-29","2025-03-29",,"",,0,,,"ERA",365,"fixed duration relative to initial event","EndDate",90,0,"All",FALSE,"All","All",1,1,"Observation",0,0,1,0,0,0,0,0,0,,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,, +1354,"[P] Tobacco and Nicotine Use Disorder - procedure","Tobacco and Nicotine Use Disorder - procedure","Tobacco and Nicotine Use Disorder - procedure","rao@ohdsi.org","Pending peer review","","All events of Tobacco and Nicotine Use Disorder - procedure","#Disease",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","46273821","","2025-03-29","2025-03-29",,"",,0,,,"ERA",365,"fixed duration relative to initial event","EndDate",90,0,"All",FALSE,"All","All",1,1,"ProcedureOccurrence",0,0,1,0,0,0,0,0,0,,,1,,,,,,,1,,,,,,,,,,,,,,,,,,,,, +1355,"[P] Measurements for Opioid Use Disorder","Measurements for Opioid Use Disorder","Measurements for Opioid Use Disorder","rao@ohdsi.org","Pending peer review","","All events of Measurements for Opioid Use Disorder","#Disease",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","4091460","","2025-03-29","2025-03-29",,"",,0,,,"ERA",30,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"Measurement",0,0,1,0,0,0,0,0,0,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1356,"[P] Opioid Use Disorder - treatment procedure or drug","Opioid Use Disorder - treatment procedure or drug","Opioid Use Disorder - treatment procedure","rao@ohdsi.org","Pending peer review","","All events of Opioid Use Disorder - treatment procedure","#Disease",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","46273821","","2025-03-29","2025-03-29",,"",,0,,,"ERA",365,"fixed duration relative to initial event","EndDate",90,0,"All",FALSE,"All","All",3,3,"DrugExposure, Observation, ProcedureOccurrence",0,0,2,0,0,0,0,0,0,,,1,1,,,1,,,1,,,,,,,,,,,,,,,,,,,,, +1357,"[P] Measurements for Cannabis Use Disorder","Measurements for Cannabis Use Disorder","Measurements for Cannabis Use Disorder","rao@ohdsi.org","Pending peer review","","All events of Measurements for Cannabis Use Disorder","#Disease",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","4280954","","2025-03-29","2025-03-29",,"",,0,,,"ERA",30,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"Measurement",0,0,1,0,0,0,0,0,0,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1358,"[P] Alcohol Withdrawal - procedure","Alcohol Withdrawal - procedure","Alcohol Withdrawal - procedure","rao@ohdsi.org","Pending peer review","","All events of Alcohol Withdrawal - procedure","#Disease",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","37311131","","2025-03-29","2025-03-29",,"",,0,,,"ERA",365,"fixed duration relative to initial event","EndDate",90,0,"All",FALSE,"All","All",1,1,"ProcedureOccurrence",0,0,1,0,0,0,0,0,0,,,1,,,,,,,1,,,,,,,,,,,,,,,,,,,,, +1359,"[P] Alcohol withdrawal","Alcohol withdrawal","Alcohol Withdrawal","rao@ohdsi.org","Pending peer review","","All events of Alcohol Withdrawal","#Disease",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","37311131","","2025-03-29","2025-03-29",,"",,0,,,"ERA",365,"fixed duration relative to initial event","EndDate",90,0,"All",FALSE,"All","All",2,2,"ConditionOccurrence, ProcedureOccurrence",0,0,2,0,0,0,0,0,0,1,,1,,,,,,,1,,,,,,,,,,,,,,,,,,,,, +1360,"[P] Alcohol withdrawal - condition","Alcohol withdrawal - condition","Alcohol Withdrawal","rao@ohdsi.org","Pending peer review","","All events of Alcohol Withdrawal","#Disease",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","37311131","","2025-03-29","2025-03-29",,"",,0,,,"ERA",365,"fixed duration relative to initial event","EndDate",90,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1361,"[P] Alcohol detoxification","Alcohol detoxification","Alcohol detoxification","rao@ohdsi.org","Pending peer review","","All events of Alcohol detoxification","#Disease",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","37311131","","2025-03-29","2025-03-29",,"",,0,,,"ERA",365,"fixed duration relative to initial event","EndDate",90,0,"All",FALSE,"All","All",1,1,"ProcedureOccurrence",0,0,1,0,0,0,0,0,0,,,1,,,,,,,1,,,,,,,,,,,,,,,,,,,,, +1362,"[P] Alcohol poisoning","Alcohol poisoning","[P] Alcohol poisoning","rao@ohdsi.org","Pending peer review","","All events of [P] Alcohol poisoning","#Disease",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","37162280","","2025-03-29","2025-03-29",,"",,0,,,"ERA",365,"fixed duration relative to initial event","EndDate",3,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1363,"[P] Psychosis caused by ethanol - condition","Psychosis caused by ethanol - condition","[P] Psychosis caused by ethanol - condition","rao@ohdsi.org","Pending peer review","","All events of [P] Psychosis caused by ethanol - condition","#Disease",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","37162280","","2025-03-29","2025-03-29",,"",,0,,,"ERA",365,"fixed duration relative to initial event","EndDate",7,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1364,"[P] Alcohol Intoxication - condition","Alcohol Intoxication - condition","[P] Alcohol Intoxication - condition","rao@ohdsi.org","Pending peer review","","All events of [P] Alcohol Intoxication - condition","#Disease",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","37162280","","2025-03-29","2025-03-29",,"",,0,,,"ERA",365,"fixed duration relative to initial event","EndDate",1,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1365,"[P] Heroin use disorder - condition","Heroin use disorder - condition","[P] Heroin use disorder - condition","rao@ohdsi.org","Pending peer review","","All events of [P] Heroin use disorder - condition","#Disease",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","37162280","","2025-03-29","2025-03-29",,"",,0,,,"ERA",365,"fixed duration relative to initial event","EndDate",30,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1366,"[P] Fentanyl use disorder","Fentanyl use disorder","[P] Fentanyl use disorder","rao@ohdsi.org","Pending peer review","","All events of [P] Fentanyl use disorder","#Disease",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","37162280","","2025-03-29","2025-03-29",,"",,0,,,"ERA",365,"fixed duration relative to initial event","EndDate",30,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1367,"[P] Stimulant Use Disorder","Stimulant Use Disorder","[P] Stimulant Use Disorder","rao@ohdsi.org","Pending peer review","","All events of [P] Stimulant Use Disorder","#Disease",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","37162280","","2025-03-29","2025-03-29",,"",,0,,,"ERA",365,"fixed duration relative to initial event","EndDate",30,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1368,"[P] Cocaine Use Disorder","Cocaine Use Disorder","[P] Cocaine Use Disorder","rao@ohdsi.org","Pending peer review","","All events of [P] Cocaine Use Disorder","#Disease",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","37162280","","2025-03-29","2025-03-29",,"",,0,,,"ERA",365,"fixed duration relative to initial event","EndDate",30,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1369,"[P] Methamphetamine use disorder","Methamphetamine use disorder","[P] Methamphetamine use disorder","rao@ohdsi.org","Pending peer review","","All events of [P] Methamphetamine use disorder","#Disease",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","37162280","","2025-03-29","2025-03-29",,"",,0,,,"ERA",365,"fixed duration relative to initial event","EndDate",30,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1370,"[P] Sedative Hypnotic Anxiolytic Use Disorder","Sedative Hypnotic Anxiolytic Use Disorder","[P] Sedative Hypnotic Anxiolytic Use Disorder","rao@ohdsi.org","Pending peer review","","All events of [P] Sedative Hypnotic Anxiolytic Use Disorder","#Disease",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","37162280","","2025-03-29","2025-03-29",,"",,0,,,"ERA",365,"fixed duration relative to initial event","EndDate",30,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1371,"[P] Benzodiazepines use disorder","Benzodiazepines use disorder","[P] Benzodiazepines use disorder","rao@ohdsi.org","Pending peer review","","All events of [P] Benzodiazepines use disorder","#Disease",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","37162280","","2025-03-29","2025-03-29",,"",,0,,,"ERA",365,"fixed duration relative to initial event","EndDate",30,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1372,"[P] Barbiturates use disorder","Barbiturates use disorder","[P] Barbiturates use disorder","rao@ohdsi.org","Pending peer review","","All events of [P] Barbiturates use disorder","#Disease",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","37162280","","2025-03-29","2025-03-29",,"",,0,,,"ERA",365,"fixed duration relative to initial event","EndDate",30,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1373,"[P] Inhalant Use Disorder","Inhalant Use Disorder","[P] Inhalant Use Disorder","rao@ohdsi.org","Pending peer review","","All events of [P] Inhalant Use Disorder","#Disease",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","37162280","","2025-03-29","2025-03-29",,"",,0,,,"ERA",365,"fixed duration relative to initial event","EndDate",30,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1374,"[P] Tobacco and Nicotine Use Disorder - condition","Tobacco and Nicotine Use Disorder - condition","[P] Tobacco and Nicotine Use Disorder - condition","rao@ohdsi.org","Pending peer review","","All events of [P] Tobacco and Nicotine Use Disorder - condition","#Disease",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","37162280","","2025-03-29","2025-03-29",,"",,0,,,"ERA",365,"fixed duration relative to initial event","EndDate",365,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1375,"[P] Tobacco and Nicotine Toxicity","Tobacco and Nicotine Toxicity","[P] Tobacco and Nicotine Toxicity","rao@ohdsi.org","Pending peer review","","All events of [P] Tobacco and Nicotine Toxicity","#Disease",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","37162280","","2025-03-29","2025-03-29",,"",,0,,,"ERA",365,"fixed duration relative to initial event","EndDate",3,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1376,"[P] Infectious Diseases (HIV, Hepatitis B, Hepatitis C)","Infectious Diseases (HIV, Hepatitis B, Hepatitis C)","[P] Infectious Diseases (HIV, Hepatitis B, Hepatitis C)","rao@ohdsi.org","Pending peer review","","All events of [P] Infectious Diseases (HIV, Hepatitis B, Hepatitis C)","#Disease",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","37162280","","2025-03-29","2025-03-29",,"",,0,,,"ERA",365,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1377,"[P] Substance Use Disorder in Remission","Substance Use Disorder in Remission","[P] Substance Use Disorder in Remission","rao@ohdsi.org","Pending peer review","","All events of [P] Substance Use Disorder in Remission","#Disease",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","37162280","","2025-03-29","2025-03-29",,"",,0,,,"ERA",365,"fixed duration relative to initial event","EndDate",180,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1378,"[P] Controlled Medication Use","Controlled Medication Use","[P] Controlled Medication Use","rao@ohdsi.org","Pending peer review","","All events of [P] Controlled Medication Use","#Disease",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","37162280","","2025-03-29","2025-03-29",,"",,0,,,"ERA",365,"fixed duration relative to initial event","EndDate",180,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1379,"[P] Physical Dependence from Legitimate Therapy","Physical Dependence from Legitimate Therapy","[P] Physical Dependence from Legitimate Therapy","rao@ohdsi.org","Pending peer review","","All events of [P] Physical Dependence from Legitimate Therapy","#Disease",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","37162280","","2025-03-29","2025-03-29",,"",,0,,,"ERA",365,"fixed duration relative to initial event","EndDate",180,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1380,"[P] Prescription Drug Misuse","Prescription Drug Misuse","[P] Prescription Drug Misuse","rao@ohdsi.org","Pending peer review","","All events of [P] Prescription Drug Misuse","#Disease",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","37162280","","2025-03-29","2025-03-29",,"",,0,,,"ERA",365,"fixed duration relative to initial event","EndDate",180,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1381,"[P] Cravings","Cravings","[P] Cravings","rao@ohdsi.org","Pending peer review","","All events of [P] Cravings","#Disease",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","37162280","","2025-03-29","2025-03-29",,"",,0,,,"ERA",365,"fixed duration relative to initial event","EndDate",30,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1382,"[P] Compulsions","Compulsions","[P] Compulsions","rao@ohdsi.org","Pending peer review","","All events of [P] Compulsions","#Disease",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","37162280","","2025-03-29","2025-03-29",,"",,0,,,"ERA",365,"fixed duration relative to initial event","EndDate",365,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1383,"[P] Mental or Moral Distress","Mental or Moral Distress","[P] Mental or Moral Distress","rao@ohdsi.org","Pending peer review","","All events of [P] Mental or Moral Distress","#Disease",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","37162280","","2025-03-29","2025-03-29",,"",,0,,,"ERA",365,"fixed duration relative to initial event","EndDate",7,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1384,"[P] Any Distress (Physical or Mental)","Any Distress (Physical or Mental)","[P] Any Distress (Physical or Mental)","rao@ohdsi.org","Pending peer review","","All events of [P] Any Distress (Physical or Mental)","#Disease",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","37162280","","2025-03-29","2025-03-29",,"",,0,,,"ERA",365,"fixed duration relative to initial event","EndDate",7,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1385,"[P] Withdrawal of substances with abuse potential","Withdrawal of substances with abuse potential","[P] Withdrawal of substances with abuse potential","rao@ohdsi.org","Pending peer review","","All events of [P] Withdrawal of substances with abuse potential","#Disease",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","37162280","","2025-03-29","2025-03-29",,"",,0,,,"ERA",365,"fixed duration relative to initial event","EndDate",3,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1386,"[P] Withdrawal Seizures","Withdrawal Seizures","[P] Withdrawal Seizures","rao@ohdsi.org","Pending peer review","","All events of [P] Withdrawal Seizures","#Disease",1,"Gowtham A. Rao","'0000-0002-4949-7236'","'OHDSI'","","","37162280","","2025-03-29","2025-03-29",,"",,0,,,"ERA",365,"fixed duration relative to initial event","EndDate",3,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1387,"[P] Methadone","Methadone","[P] Methadone","rao@ohdsi.org","Pending peer review","","[P] Methadone","",1,"Gowtham A. Rao","0000-0002-4949-7236","","","","","","2025-04-02","2025-04-02",,"",,0,,,"ERA",0,"end of continuous drug exposure",,,0,"All",FALSE,"All","All",1,1,"DrugExposure",0,0,1,0,0,0,0,0,0,,,1,,,,1,,,,,,,,,,,,,,,,,1,0,90,,,,, +1388,"[P] Methadone Treatment Program Enrollment","Methadone Treatment Program Enrollment","[P] Methadone Treatment Program Enrollment","rao@ohdsi.org","Pending peer review","","[P] Methadone Treatment Program Enrollment","",1,"Gowtham A. Rao","0000-0002-4949-7236","","","","","","2025-04-02","2025-04-02",,"",,0,,,"ERA",90,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",2,2,"ProcedureOccurrence, VisitOccurrence",0,0,1,0,0,0,0,1,0,,,1,,1,,,,,1,,,,,,,,,,,,,,,,,,,,, +1389,"[P] Naltrexone","Naltrexone","[P] Naltrexone","rao@ohdsi.org","Pending peer review","","[P] Naltrexone","",1,"Gowtham A. Rao","0000-0002-4949-7236","","","","","","2025-04-02","2025-04-02",,"",,0,,,"ERA",0,"end of continuous drug exposure",,,0,"All",FALSE,"All","All",1,1,"DrugExposure",0,0,1,0,0,0,0,0,0,,,1,,,,1,,,,,,,,,,,,,,,,,1,0,90,,,,, +1390,"[P] Naltrexone Maintenance Therapy","Naltrexone Maintenance Therapy","[P] Naltrexone Maintenance Therapy","rao@ohdsi.org","Pending peer review","","[P] Naltrexone Maintenance Therapy","",1,"Gowtham A. Rao","0000-0002-4949-7236","","","","","","2025-04-02","2025-04-02",,"",,0,,,"ERA",180,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ProcedureOccurrence",0,0,1,0,0,0,0,0,0,,,1,,,,,,,1,,,,,,,,,,,,,,,,,,,,, +1391,"[P] Opioid Agonists","Opioid Agonists","[P] Opioid Agonists","rao@ohdsi.org","Pending peer review","","[P] Opioid Agonists","",1,"Gowtham A. Rao","0000-0002-4949-7236","","","","","","2025-04-02","2025-04-02",,"",,0,,,"ERA",0,"end of continuous drug exposure",,,0,"All",FALSE,"All","All",1,1,"DrugExposure",0,0,1,0,0,0,0,0,0,,,1,,,,1,,,,,,,,,,,,,,,,,1,0,90,,,,, +1392,"[P] Opioid Antagonists","Opioid Antagonists","[P] Opioid Antagonists","rao@ohdsi.org","Pending peer review","","[P] Opioid Antagonists","",1,"Gowtham A. Rao","0000-0002-4949-7236","","","","","","2025-04-02","2025-04-02",,"",,0,,,"ERA",0,"end of continuous drug exposure",,,0,"All",FALSE,"All","All",1,1,"DrugExposure",0,0,1,0,0,0,0,0,0,,,1,,,,1,,,,,,,,,,,,,,,,,1,0,90,,,,, +1393,"[P] Medication-Assisted Treatment","Medication-Assisted Treatment","[P] Medication-Assisted Treatment","rao@ohdsi.org","Pending peer review","","[P] Medication-Assisted Treatment","",1,"Gowtham A. Rao","0000-0002-4949-7236","","","","","","2025-04-02","2025-04-02",,"",,0,,,"ERA",90,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",2,2,"Observation, ProcedureOccurrence",0,0,1,0,0,0,0,0,0,,,1,1,,,,,,1,,,,,,,,,,,,,,,,,,,,, +1394,"[P] Nicotine Replacement Therapy","Nicotine Replacement Therapy","[P] Nicotine Replacement Therapy","rao@ohdsi.org","Pending peer review","","[P] Nicotine Replacement Therapy","",1,"Gowtham A. Rao","0000-0002-4949-7236","","","","","","2025-04-02","2025-04-02",,"",,0,,,"ERA",0,"end of continuous drug exposure",,,0,"All",FALSE,"All","All",1,1,"DrugExposure",0,0,1,0,0,0,0,0,0,,,1,,,,1,,,,,,,,,,,,,,,,,1,0,90,,,,, +1395,"[P] OTC Nicotine Replacement","OTC Nicotine Replacement","[P] OTC Nicotine Replacement","rao@ohdsi.org","Pending peer review","","[P] OTC Nicotine Replacement","",1,"Gowtham A. Rao","0000-0002-4949-7236","","","","","","2025-04-02","2025-04-02",,"",,0,,,"ERA",0,"end of continuous drug exposure",,,0,"All",FALSE,"All","All",1,1,"DrugExposure",0,0,1,0,0,0,0,0,0,,,1,,,,1,,,,,,,,,,,,,,,,,1,0,90,,,,, +1396,"[P] Varenicline","Varenicline","[P] Varenicline","rao@ohdsi.org","Pending peer review","","[P] Varenicline","",1,"Gowtham A. Rao","0000-0002-4949-7236","","","","","","2025-04-02","2025-04-02",,"",,0,,,"ERA",0,"end of continuous drug exposure",,,0,"All",FALSE,"All","All",1,1,"DrugExposure",0,0,1,0,0,0,0,0,0,,,1,,,,1,,,,,,,,,,,,,,,,,1,0,90,,,,, +1397,"[P] Pain Management","Pain Management","[P] Pain Management","rao@ohdsi.org","Pending peer review","","[P] Pain Management","",1,"Gowtham A. Rao","0000-0002-4949-7236","","","","","","2025-04-02","2025-04-02",,"",,0,,,"ERA",180,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ProcedureOccurrence",0,0,1,0,0,0,0,0,0,,,1,,,,,,,1,,,,,,,,,,,,,,,,,,,,, +1398,"[P] Terminal Palliative Care","Terminal Palliative Care","[P] Terminal Palliative Care","rao@ohdsi.org","Pending peer review","","[P] Terminal Palliative Care","",1,"Gowtham A. Rao","0000-0002-4949-7236","","","","","","2025-04-02","2025-04-02",,"",,0,,,"ERA",30,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",2,2,"Observation, ProcedureOccurrence",0,0,1,0,0,0,0,0,0,,,1,1,,,,,,1,,,,,,,,,,,,,,,,,,,,, +1399,"[P] Alcohol Misuse Counseling","Alcohol Misuse Counseling","[P] Alcohol Misuse Counseling","rao@ohdsi.org","Pending peer review","","[P] Alcohol Misuse Counseling","",1,"Gowtham A. Rao","0000-0002-4949-7236","","","","","","2025-04-02","2025-04-02",,"",,0,,,"ERA",90,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ProcedureOccurrence",0,0,1,0,0,0,0,0,0,,,1,,,,,,,1,,,,,,,,,,,,,,,,,,,,, +1400,"[P] Smoking Cessation Counseling","Smoking Cessation Counseling","[P] Smoking Cessation Counseling","rao@ohdsi.org","Pending peer review","","[P] Smoking Cessation Counseling","",1,"Gowtham A. Rao","0000-0002-4949-7236","","","","","","2025-04-02","2025-04-02",,"",,0,,,"ERA",180,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ProcedureOccurrence",0,0,1,0,0,0,0,0,0,,,1,,,,,,,1,,,,,,,,,,,,,,,,,,,,, +1401,"[P] Psychotherapy","Psychotherapy","[P] Psychotherapy","rao@ohdsi.org","Pending peer review","","[P] Psychotherapy","",1,"Gowtham A. Rao","0000-0002-4949-7236","","","","","","2025-04-02","2025-04-02",,"",,0,,,"ERA",30,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",2,2,"Observation, ProcedureOccurrence",0,0,1,0,0,0,0,0,0,,,1,1,,,,,,1,,,,,,,,,,,,,,,,,,,,, +1402,"[P] Group Therapy","Group Therapy","[P] Group Therapy","rao@ohdsi.org","Pending peer review","","[P] Group Therapy","",1,"Gowtham A. Rao","0000-0002-4949-7236","","","","","","2025-04-02","2025-04-02",,"",,0,,,"ERA",30,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",2,2,"Observation, ProcedureOccurrence",0,0,1,0,0,0,0,0,0,,,1,1,,,,,,1,,,,,,,,,,,,,,,,,,,,, +1403,"[P] Family Psychotherapy","Family Psychotherapy","[P] Family Psychotherapy","rao@ohdsi.org","Pending peer review","","[P] Family Psychotherapy","",1,"Gowtham A. Rao","0000-0002-4949-7236","","","","","","2025-04-02","2025-04-02",,"",,0,,,"ERA",90,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ProcedureOccurrence",0,0,1,0,0,0,0,0,0,,,1,,,,,,,1,,,,,,,,,,,,,,,,,,,,, +1404,"[P] Behavioral Therapies","Behavioral Therapies","[P] Behavioral Therapies","rao@ohdsi.org","Pending peer review","","[P] Behavioral Therapies","",1,"Gowtham A. Rao","0000-0002-4949-7236","","","","","","2025-04-02","2025-04-02",,"",,0,,,"ERA",365,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ProcedureOccurrence",0,0,1,0,0,0,0,0,0,,,1,,,,,,,1,,,,,,,,,,,,,,,,,,,,, +1405,"[P] 12-Step Facilitation Behavioral Therapy","12-Step Facilitation Behavioral Therapy","[P] 12-Step Facilitation Behavioral Therapy","rao@ohdsi.org","Pending peer review","","[P] 12-Step Facilitation Behavioral Therapy","",1,"Gowtham A. Rao","0000-0002-4949-7236","","","","","","2025-04-02","2025-04-02",,"",,0,,,"ERA",365,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"ProcedureOccurrence",0,0,1,0,0,0,0,0,0,,,1,,,,,,,1,,,,,,,,,,,,,,,,,,,,, +1406,"[P] Harm Reduction Interventions","Harm Reduction Interventions","[P] Harm Reduction Interventions","rao@ohdsi.org","Pending peer review","","[P] Harm Reduction Interventions","",1,"Gowtham A. Rao","0000-0002-4949-7236","","","","","","2025-04-02","2025-04-02",,"",,0,,,"ERA",365,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",2,2,"Observation, ProcedureOccurrence",0,0,1,0,0,0,0,0,0,,,1,1,,,,,,1,,,,,,,,,,,,,,,,,,,,, +1407,"[P] Specialty Addiction Treatment","Specialty Addiction Treatment","[P] Specialty Addiction Treatment","rao@ohdsi.org","Pending peer review","","[P] Specialty Addiction Treatment","",1,"Gowtham A. Rao","0000-0002-4949-7236","","","","","","2025-04-02","2025-04-02",,"",,0,,,"ERA",30,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",2,2,"ProcedureOccurrence, VisitOccurrence",0,0,1,0,0,0,0,1,0,,,1,,1,,,,,1,,,,,,,,,,,,,,,,,,,,, +1408,"[P] Alcohol Use Screening","Alcohol Use Screening","[P] Alcohol Use Screening","rao@ohdsi.org","Pending peer review","","[P] Alcohol Use Screening","",1,"Gowtham A. Rao","0000-0002-4949-7236","","","","","","2025-04-02","2025-04-02",,"",,0,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",2,2,"Measurement, Observation",0,0,1,0,0,0,0,0,0,,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,, +1409,"[P] Screening for substance abuse","Screening for substance abuse","[P] Screening for substance abuse","rao@ohdsi.org","Pending peer review","","[P] Screening for substance abuse","",1,"Gowtham A. Rao","0000-0002-4949-7236","","","","","","2025-04-02","2025-04-02",,"",,0,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"Measurement",0,0,1,0,0,0,0,0,0,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1410,"[P] Use of Substance Use Screening Tools","Use of Substance Use Screening Tools","[P] Use of Substance Use Screening Tools","rao@ohdsi.org","Pending peer review","","[P] Use of Substance Use Screening Tools","",1,"Gowtham A. Rao","0000-0002-4949-7236","","","","","","2025-04-02","2025-04-02",,"",,0,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",3,3,"Measurement, Observation, ProcedureOccurrence",0,0,1,0,0,0,0,0,0,,1,1,1,,,,,,1,,,,,,,,,,,,,,,,,,,,, +1411,"[P] Laboratory Toxicology Tests","Laboratory Toxicology Tests","[P] Laboratory Toxicology Tests","rao@ohdsi.org","Pending peer review","","[P] Laboratory Toxicology Tests","",1,"Gowtham A. Rao","0000-0002-4949-7236","","","","","","2025-04-02","2025-04-02",,"",,0,,,"ERA",1,"fixed duration relative to initial event","EndDate",0,0,"All",FALSE,"All","All",1,1,"Measurement",0,0,1,0,0,0,0,0,0,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1412,"[P] Naloxone Dispensing","Naloxone Dispensing","[P] Naloxone Dispensing","rao@ohdsi.org","Pending peer review","","[P] Naloxone Dispensing","",1,"Gowtham A. Rao","0000-0002-4949-7236","","","","","","2025-04-02","2025-04-02",,"",,0,,,"ERA",0,"end of continuous drug exposure",,,0,"All",FALSE,"All","All",1,1,"DrugExposure",0,0,1,0,0,0,0,0,0,,,1,,,,1,,,,,,,,,,,,,,,,,1,1,1,,,,, +1413,"[P] Screening, Brief Intervention, and Referral to Treatment (SBIRT)","Screening, Brief Intervention, and Referral to Treatment (SBIRT)","[P] Screening, Brief Intervention, and Referral to Treatment (SBIRT)","rao@ohdsi.org","Pending peer review","","[P] Screening, Brief Intervention, and Referral to Treatment (SBIRT)","",1,"Gowtham A. Rao","0000-0002-4949-7236","","","","","","2025-04-02","2025-04-02",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",1,0,"All",FALSE,"All","All",2,2,"Observation, ProcedureOccurrence",0,0,1,0,0,0,0,0,0,,,1,1,,,,,,1,,,,,,,,,,,,,,,,,,,,, +1415,"[P] Impaired Control","Impaired Control","[P] Impaired Control","rao@ohdsi.org","Pending peer review","","[P] Impaired Control","",1,"Gowtham A. Rao","0000-0002-4949-7236","","","","","","2025-04-02","2025-04-02",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",180,0,"All",FALSE,"All","All",2,2,"ConditionOccurrence, Observation",0,0,1,0,0,0,0,0,0,1,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,, +1416,"[P] Neglect of Roles or Social Impairment","Neglect of Roles or Social Impairment","[P] Neglect of Roles or Social Impairment","rao@ohdsi.org","Pending peer review","","[P] Neglect of Roles or Social Impairment","",1,"Gowtham A. Rao","0000-0002-4949-7236","","","","","","2025-04-02","2025-04-02",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",14,0,"All",FALSE,"All","All",1,1,"Observation",0,0,1,0,0,0,0,0,0,,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,, +1417,"[P] Risky Use","Risky Use","[P] Risky Use","rao@ohdsi.org","Pending peer review","","[P] Risky Use","",1,"Gowtham A. Rao","0000-0002-4949-7236","","","","","","2025-04-02","2025-04-02",,"",,0,,,"ERA",30,"fixed duration relative to initial event","EndDate",1,0,"All",FALSE,"All","All",1,1,"Observation",0,0,1,0,0,0,0,0,0,,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,, +1418,"[P] Tolerance","Tolerance","[P] Tolerance","rao@ohdsi.org","Pending peer review","","[P] Tolerance","",1,"Gowtham A. Rao","0000-0002-4949-7236","","","","","","2025-04-02","2025-04-02",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",90,0,"All",FALSE,"All","All",1,1,"Observation",0,0,1,0,0,0,0,0,0,,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,, +1419,"[P] Pattern of Use Causing Harm or Distress","Pattern of Use Causing Harm or Distress","[P] Pattern of Use Causing Harm or Distress","rao@ohdsi.org","Pending peer review","","[P] Pattern of Use Causing Harm or Distress","",1,"Gowtham A. Rao","0000-0002-4949-7236","","","","","","2025-04-02","2025-04-02",,"",,0,,,"ERA",0,"fixed duration relative to initial event","EndDate",30,0,"All",FALSE,"All","All",2,2,"ConditionOccurrence, Observation",0,0,1,0,0,0,0,0,0,1,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,, +1420,"[P] Medical Conditions Mimicking Intoxication","Medical Conditions Mimicking Intoxication","[P] Medical Conditions Mimicking Intoxication","rao@ohdsi.org","Pending peer review","","[P] Medical Conditions Mimicking Intoxication","",1,"Gowtham A. Rao","0000-0002-4949-7236","","","","","","2025-04-02","2025-04-02",,"",,0,,,"ERA",30,"fixed duration relative to initial event","EndDate",14,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1421,"[P] Hypoglycemic disorder","Hypoglycemic disorder","[P] Hypoglycemic disorder","rao@ohdsi.org","Pending peer review","","[P] Hypoglycemic disorder","",1,"Gowtham A. Rao","0000-0002-4949-7236","","","","","","2025-04-02","2025-04-02",,"",,0,,,"ERA",7,"fixed duration relative to initial event","EndDate",1,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1422,"[P] Stroke events","Stroke events","[P] Stroke events","rao@ohdsi.org","Pending peer review","","[P] Stroke events","",1,"Gowtham A. Rao","0000-0002-4949-7236","","","","","","2025-04-02","2025-04-02",,"",,0,,,"ERA",30,"fixed duration relative to initial event","EndDate",7,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1423,"[P] Single Acute Intoxication","Single Acute Intoxication","[P] Single Acute Intoxication","rao@ohdsi.org","Pending peer review","","[P] Single Acute Intoxication","",1,"Gowtham A. Rao","0000-0002-4949-7236","","","","","","2025-04-02","2025-04-02",,"",,0,,,"ERA",7,"fixed duration relative to initial event","EndDate",1,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1424,"[P] Opioid Acute intoxication","Opioid Acute intoxication","[P] Opioid Acute intoxication","rao@ohdsi.org","Pending peer review","","[P] Opioid Acute intoxication","",1,"Gowtham A. Rao","0000-0002-4949-7236","","","","","","2025-04-02","2025-04-02",,"",,0,,,"ERA",7,"fixed duration relative to initial event","EndDate",1,0,"All",FALSE,"All","All",2,2,"ConditionOccurrence, DrugExposure",0,0,2,0,0,0,0,0,0,1,,1,,,,1,,,,,,,,,,,,,,,,,,,,,,,, +1425,"[P] Alcohol Acute intoxication","Alcohol Acute intoxication","[P] Alcohol Acute intoxication","rao@ohdsi.org","Pending peer review","","[P] Alcohol Acute intoxication","",1,"Gowtham A. Rao","0000-0002-4949-7236","","","","","","2025-04-02","2025-04-02",,"",,0,,,"ERA",7,"fixed duration relative to initial event","EndDate",1,0,"All",FALSE,"All","All",1,1,"ConditionOccurrence",0,0,1,0,0,0,0,0,0,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1426,"[P] Psychoactive Substances","Psychoactive Substances","[P] Psychoactive Substances","rao@ohdsi.org","Pending peer review","","[P] Psychoactive Substances","",1,"Gowtham A. Rao","0000-0002-4949-7236","","","","","","2025-04-02","2025-04-02",,"",,0,,,"ERA",180,"fixed duration relative to initial event","EndDate",7,0,"All",FALSE,"All","All",2,2,"ConditionOccurrence, Observation",0,0,1,0,0,0,0,0,0,1,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,, +1427,"[P] Acamprosate, all exposures","Acamprosate, all exposures","[P] Acamprosate, all exposures","rao@ohdsi.org","Pending peer review","","[P] Acamprosate, all exposures","",1,"Gowtham A. Rao","0000-0002-4949-7236","","","","","","2025-04-02","2025-04-02",,"",,0,,,"ERA",0,"end of continuous drug exposure",,,0,"All",FALSE,"All","All",1,1,"DrugExposure",0,0,1,0,0,0,0,0,0,,,1,,,,1,,,,,,,,,,,,,,,,,0,1,30,,,,, +1428,"[P] Disulfiram, all exposures","Disulfiram, all exposures","[P] Disulfiram, all exposures","rao@ohdsi.org","Pending peer review","","[P] Disulfiram, all exposures","",1,"Gowtham A. Rao","0000-0002-4949-7236","","","","","","2025-04-02","2025-04-02",,"",,0,,,"ERA",0,"end of continuous drug exposure",,,0,"All",FALSE,"All","All",1,1,"DrugExposure",0,0,1,0,0,0,0,0,0,,,1,,,,1,,,,,,,,,,,,,,,,,0,1,30,,,,, +1429,"[P] Buprenorphine, all exposures","Buprenorphine, all exposures","[P] Buprenorphine, all exposures","rao@ohdsi.org","Pending peer review","","[P] Buprenorphine, all exposures","",1,"Gowtham A. Rao","0000-0002-4949-7236","","","","","","2025-04-02","2025-04-02",,"",,0,,,"ERA",0,"end of continuous drug exposure",,,0,"All",FALSE,"All","All",1,1,"DrugExposure",0,0,1,0,0,0,0,0,0,,,1,,,,1,,,,,,,,,,,,,,,,,1,0,30,,,,, +1431,"[P] Ectopic Pregnancy","Ectopic Pregnancy","[P] Ectopic Pregnancy","rao@ohdsi.org","Pending peer review","","Females aged 12 to 55 with two distinct pregnancy markers and a clear prior history enter the cohort upon an ectopic pregnancy within 84 days","#rupamakadia #j&j #pregnancy #ectopicpregnancy",1,"Gowtham A. Rao","0000-0002-6976-2594","Johnson and Johnson","","","199076, 437611","","2026-03-05","2026-04-08",,"",,0,,,"ERA",0,"fixed duration relative to initial event","StartDate",84,9,"All",FALSE,"All","All",37,5,"ConditionOccurrence, DrugEra, Measurement, Observation, ProcedureOccurrence",0,0,105,1,1,1,1,1,0,1,1,1,1,,,,,,1,,1,,,,,1,,,,,1,,,,,,,,, +1432,"[P] Still birth","Still birth","[P] Still birth","rao@ohdsi.org","Pending peer review","","Females aged 12 to 55 with two distinct pregnancy markers and a clear prior history enter the cohort upon a stillbirth within 141 to 301 days","#rupamakadia #j&j #stillbirth #pregnancy #fullterm",1,"Gowtham A. Rao","0000-0002-6976-2594","Johnson and Johnson","","","443213, 4014454, 443463","","2026-03-05","2026-04-08",,"",,0,,,"ERA",0,"fixed duration relative to initial event","StartDate",301,8,"All",FALSE,"All","All",87,4,"ConditionOccurrence, Measurement, Observation, ProcedureOccurrence",0,0,105,1,1,1,1,1,0,1,1,1,1,,,,,,1,,1,,,,,1,,,,,,,,,,,,,, +1433,"[P] Live Birth","Live Birth","[P] Live Birth","rao@ohdsi.org","Pending peer review","","Females aged 12 to 55 with two distinct pregnancy markers and a clear prior history enter the cohort upon a livebirth or delivery within 301 days","#rupamakadia #j&j #pregnancy #livebirth #delivery",1,"Gowtham A. Rao","0000-0002-6976-2594","Johnson and Johnson","","","4092289","","2026-03-05","2026-04-08",,"",,0,,,"ERA",0,"fixed duration relative to initial event","StartDate",301,7,"All",FALSE,"All","All",97,4,"ConditionOccurrence, Measurement, Observation, ProcedureOccurrence",0,0,105,1,1,1,1,0,0,1,1,1,1,,,,,,1,,1,,,,,1,,,,,,,,,,,,,, +1434,"[P] Miscarriage or Abortion","Miscarriage or Abortion","[P] Miscarriage or Abortion","rao@ohdsi.org","Pending peer review","","Females aged 12 to 55 with two pregnancy markers and clear prior history enter the cohort upon a spontaneous abortion or stillbirth within 139 days","#JnJ, #Pregnancy, #Publication",1,"Gowtham A. Rao","0000-0002-6976-2594","Johnson and Johnson","","","439658, 43530950, 40539858","","2026-03-05","2026-04-08",,"",,0,,,"ERA",0,"fixed duration relative to initial event","StartDate",139,8,"All",FALSE,"All","All",51,4,"ConditionOccurrence, Measurement, Observation, ProcedureOccurrence",0,0,105,1,1,1,1,1,0,1,1,1,1,,,,,,1,,1,,,,,1,,,,,,,,,,,,,, diff --git a/inst/ConceptSetsInCohortDefinition.RDS b/inst/ConceptSetsInCohortDefinition.RDS index eaee8318b8afbdb2e94e3b39a28ff9972529f869..b4fa8cf4b435ef9b77910ff50e64e8b5906c5c12 100644 GIT binary patch literal 1609447 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

;g#Xvx3cN<*e?b_K%GDm^Jl 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

lyw_SsHg66;#dXe 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%0AfJxg$f#CqZc2t*kNPh1h`836 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

>b91{GjA>m|p79J>!H# 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

1h5uW|YE=`tj~WrGdZu@!KEXJPYe# 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 z zicnlE;Oi|)q#6n8{(&o%+LLzA6G0u%K+yyuIH%6-rwI?dHFc*ybhCxt00oqMdUa%| zOw7bcvaBr@s5Q_vIL$Rj1p+u0cdfggArm5|*lrZQsu*}&l)J<4c2mHGWtuI{Fbr=R z&&Xj)@5i4#)m)@15fkX$1ZN~pl9ABuNDj=aYjoS|VKag0E|`yd!H}nWkBzLIi;G*Ywg@ zGUw8m(Ad!^h5vK28zek@&PlQ)7AOsO?wJJR^-~(tc*KQt03r*$F7PFJrwwOWDVHW= zFs$IsMI(Iu`POyotxli%!@_2CD~%FZT8Vq+mpBrX9~kS!|~|O7e9lD zqHo#CL*Z_FP)?zVd$2M#|vvNpxeQkmjiYe@W1ydYt)qBdceFAki zp!yW-ZD#taV6Cx=34p~M6m{>RKigwC=_rXe5%1(#zJkhxW-{ z&g&nrd;*y`!WAD=+v$qhY_e{>-7SNvvaWCZ6Q9O)Q0WAM3@&9Nl9D)gUkS7a0dAg(bGD|z9N7@b#QEGDmRo3h_NWmNR5o~k-8@le*4y?O2_yVvD zz!r7aWDWi+c!y1~@XpoYT&3yMY}VbL`vSBa&{~><3uFbZ_mr2#yfKeioA-l=ohgf@ zpFP>gJ~^-t-Ps-3vzN0U+O>VWZkeD{!{=^?x(VMs-M5UVQzJVPg}#97om{w#9}nGW zgg9eqp%<_X<;G?FDBv7=E<(ggv1mk5eH8w{JMxSiu79VK34t(+6tj4whLNo@V_k?p2s_H_pSd17b4rA#Bsf*2~)Ff+LlNVO@ z*q*&dEp^Y}DUrr;_!}*_RFsRcrp;T~4S&zNy&;lCf%B7n>0KdJQI$~VrTK}P0N#4GmyJN8ovq!xp^GPTZT#aUdzt*K7rwoLajUP^L#YoRM7+yZg}Izqk-P7IPW3} zW0}(MOC3U}G-B>S+qG_i8CDXD5>U2z<{Kr(5@oxs(E1#M?x6$`aE_))>I~BdNJVRk zs_N_FpS$gv%cahru4wiQ9X@!mON}lp`$BYa;w~k+(RuB*#0d*OF>M#3bLDhf+|2I9 zO^Fj8{*{Jq3Z?M{lWX%v>l#nT8KG@=qTAnQ;F0*&y+|d5>duhwPdaPihT6CJ-0=-J zFmu*|&Y7`#aTm;#E4>mHv&5|mdCrVC_rc5=mWRWPM~uhr;l?$wcbX=v(#(4})_45K zUkkX|8eH&hZ@a(whK*A(JNNysG5h|Cc_6uN;eWGwpPAY|ShASNKlwV(5XWgu zUyAqbPrr)MLkK<{+wiJnHR}^A&t*X&QL3?H6}(LWmb%0Qd3; zxF>=^9@N3KSL*X~rfM_>}=q&v1FrC=fa81wpjc2gz zcwyuk`3)&7ikNh7hwkUPEHgO$x(qw&J%hty@Fvw1nwOZ0DRZ89J3`ggz!in>*|(-o zDR4YD{C+{fc>@2rz^FM&A$Z1!fzO3P72z8a&Y}os7hu0%dXGb1er}d!k&I>RDntY~ z>n?aCVz+E~zrod|3u0eFrMttzjQ#q)LBXJFvcB?dX80>wKPTh>A5SGdL3cZt+Xy6g&-V@sp|B8+^_VLX06fve+dr zZl?IUD}|7yn8G=U`@h^{2_M1oK6dh1xbZZ`_aL^u?U3EU-R%H7;p?S+$`s@7;E!4> z4-t<9bt42XLVLCNPVmVrz_3LGCS1PfFQ55o+X?ljf}Fb`Q|eycop0DROV;_|g~~M}v>`MZ_qVt}g6f z?xAxO7_r1vfeYoB6p`Xgv0M2(z2{m}79Fa%JiYL2lnCePcu&IXUVTcYQR<5CgMrHU zh?@N~sP}w;#>#4e1h0o}9hpnF;2x%FFP)&T>#(RvI4l;Gym*-I=Ouh*b>4;_Dyztq zUHQd-L@(~#x=TcYNiOB3YwRMT*XlWmgoMcYe6TVU@4}|IoP(85u#h+Vv#!>|M?6ef zsQ^<}!^w6b1$lAK^_35{mpbKld9V$HF65?;Q(!mw3$Jz30k6-Di(6c^sgam3xCF%s zWw%?0LTvD074_eHh=V(WP2c5aUyt!ozmzGdqA65B1!Yk}-RIyA8}u zypt{E5w~iyAqzd@G6Sb|SyRg9P1XXT_6}O?SR@&?a0Rcpo z?x94ih`3!f8hkGZ7@Ul`vv(jbHI`8bgvNE&nWp!xPY&Dtv4{|SdL5nnSUJ5!4c})m zEScD^1M#&O0#1E`vx1=?g>ZJzgr?4;@QAC@wP~8Q_RZCxv5dG3pAv>FlDS=t1EsaD z5E8E8-CbOm?>H7CAsW-GtSq;1y)AkOS4gLu!<^Kx&euy@1jjg$Y52VzJIa@j&a0H~ zkZt11?gz=%S$nye?H${%a*o}H#TZ>5E}bj3j*M|7XszL8cRFiuI`!$UP|wf_7IQU$ z$U<-wH@$rFZr0njFr`@)xxXG!VkaJhKTdJfDwg!JLv*4@a&ofX-Gmipt64mO;}b_A zQ{_^0JTk@c98{Zu|Hlyz&rk`jXgq=A((a{juCf~?<@c;{!lp2v3fR=h2*)V4d)X+G zuql*aanfJ7YkQU;*x0Jk`sihrnO%V9U(#AK_qyF6fsKcKXTWS&uh#h);cBW`~ z!8@Gx>~!k3zXar6IGmR01hT5AYonAH&wZ1wDJtFK^gdwH_Er0Z3OlZ?q+#%=m=MCb zcK!^NuW7J&*q0pq)-xV~hjJm)d4lR6eYPMK&g5e)aKGi}yQf=zFiG}{ZXk*`4f(0e z+A1SIWDR;XkG?56i!@5v?B%<*?q&y2l<<+p2}B2^PWEEhN7FMvG>Mt}ZVOL!58h|$ zTpqb+wbaN7_crAi@_7kNh$v2+>NMd2i;^@NIXDMkCmXAMWQE3sSKN6p5FRU<$Yi8o zQ2Y~)`u1e0xGl@tJ;;L~DVBWv6eZ;f{46?wR2W=hDHU#8bMwRIzb2~-cpE3x1kY(w z8mTD+=Sni=p3mRYdN{{G5 z*VF@_C6#idW>+p}`%abh*5<`p+~%q)@9K6mjey$(O00qkB}NWPz*U*L0GrxPa?ML) z7PbYcwT?1^pt!$HCOE&$y zXrEW#JR^tH)D)_0QIw`5m)E8(yw+N#luei0-B(2(ur-4~<|ZQbnnA zC~{zTr*ecsCL#&n_Ao~$1$UR!p7Fy?m`$JK)?*(JOT{@AYyyh}Sj?q#?kwFQ17Bnq zMAjtF`WAT2x8#?ufgfOUljl8nC|k4Awf0ROMe$hjDWr@=Bod}Bn4M*4vyI1LtW3jQ z=N&T^NscAb(3^k+Cix@bRBjz(wrWhjA-{iWe4g>6Si3lE^a!0IX8U`1I(^ zR#}Nc9GPzk6O1hVQKqF5{R{=El@P1fZ+ADT}sp z4;}j+CnPeGiBlgoNRA`7-*t{d@aHu}HVx4*1u@?!MXZjV+<;@4UUlJvpo}^9Jp{%| zL`me{TfDQlc5U)^_nKf~B8n%GAd3W3&aIq7S2>%l8{1hq+cfZd#s;rlJ&sgQODG<} zqf$jl;Gh#W{kk_V~=?lv}N-pwG-m zP{rIaIU-zUt?g&NlN-*dJrocvMkD1G!XIeiMDbjA8Cmxg*w#^7eP!xwVY zI~}~xx3i5Yw;K%c7e3#ROi{){zaeQHjS1eIQuCZr=(Yu3Cj{%Gl%96bk~hDf{qgO8 z__n=_N(j$|s~{B4W*EW5NF~UDX=8>4XdgLEqj459DdT=6W-Co~FQHucMzop?QEX`CigI4vWV3g)hGA91b9?a*Da zYY$o!*<6F84-QFL7M*u(v5YIpX!wm?TuK#3-0kOEe8VgOyk=9kx+5CD^*SrfChOKa zP0^~z(aFLO`_^Zo6y?zr8uY+vN$H3xy5)G3?^t23}_^i1bvR&84ELN+0loI=P3kZ=p>jgY*SG*41& zC=dP!1Y&74vZ?bjvFAGGN2xsTE;LJ1Odw_>ltX-aA!d6{vo@XIHW*J}96&^|8WZVt zP`fj`o5FY%_S+>R109xN*JO2D=(;0amO~_7>stmqUT^Pl%-ICo6%nPQQvn~Wj9NC| zVlL8C^&pneDCVxA?@!ZO-u>%&smZr>S9IIgXC-2IDC5YTTmI1Xn^Jc}df78ZDqPVWW@&U_7J7ma zb!U*tV;1kS=3iQp!ufL%frRhFBPW%*mjfR;-HY@m5)0lRg#RRwa4%n2o4#D=hAg&i zXL8T$EvcG>fDa)mmTqDAGhFv#Xeyb47Z2nZcUQ{xkr** zp*O$=M`d0eB$wEH>2?us0Qs1$irTg-dU;e*@TU&h-}AdIIGXn49N7ak&>Zr;zMh=U z3}RR(r!_bs$1k_e)Z;ei88k&z5;;5J!ZR(xV#Sp+P4!Nfc2Raw|GjUv`|*iko~diH zzVgl6XCmTLsje_3oN?JZFsrt28q?bsOZsYFltYaL6IpH7R~xb^>UX}eOHz(5X7G7o zU?-Kksrx2&{w1<3x(Td{5|Sl?Q)lnMyS}`mgEAF^1}^?5{GJaKRF#SQxGW3&?kAR3 z7OSl58$Dzqj~mZDBPilnq*F+2;X-ig99JsMd$P0+%BnH%0oJZIJ$$Un%DV5G;!+&` zs$$|4p2!JId17i34jbovhXmWwY&5~OCb)5QowZgu&c`)hB4sKKKawNd0(0h)5!ley zZC8)NB?sXQTyPyOImevJ(zkOmwZZpr)rpt4%Kf0{P1e54$oKj~kq=*VCm2N}1xuWE z2WMkBTbgFJ$Z!rGJH9=`M$=T%DU5ic&Yu*{@VoAp%M$QFP~hv#1m!B8f*=`{jJbsh zOl4Nv0xm9Hn+pElH%2^7>?-r%!)hMIaKJlL#HKc@CIdtbsk6$r8w%X`B$=JJSzSvt ze*fclKfJvP==8h1J|u{qlO%R_f^1NrJtsw}d(RiBrLmksEfi0^IC4wS?qJ~#`f@w$ z$v#PW3~3P0sEG(AktPr@(})RoJL4F&q6Qy62e%$q0C|j%B{AyMP9S1VMe6Rl8bjD_ zY`xlJcq)z4DWp3XqnwXiak{BU(VEg;$G;n<*!2e-qS%l(di6kl(oJqkOlV~boSeql z!FgXn1hD_e7ud#y>fahZYQGPGzb}exRijeRkhN@4uoTxe+h@eH2O&wBJnulc+~f83 zr(ebBGk~A-g}d8mpK)&sBaaRiCw zJH(eYU9l|k!j{pGBs~KaC!C!}@%Ii&2$cx#?nxQ$OIudGo2s3((lAr-VIv?na+V&s zm07Nv;av2e9g8r9GzoSpiro{5C+wPjV~ebJ0&WUg7Q@ zN=fBROIu>#ezc!-&%J7W+#22#rWpm5X*!Z;E48lg$MSIh?Ibimv1*q@&aRXJ*&W?) zsO>MOu$?(lT)20RZcGioTW$K5%p0xqwZDTOipI_rP~ptTMd10nW9uWO^>$Iv{MdU4JhyLTRoP>)_*+AR|OAJ@F*Q~{Er}q z6%3xX<|RVlu^4{0P()+u7VkenwRb)M)~**;S73g%_ANgQj<0fWo(zo}l}e=Ugw~N; zUuSJww4GiY{Er8_LmA)9MmMdgYmJ&1y7g~|o=8|ELRLx>EQ*=CQ}2W!K=*m1RqlqnkLM>@pWUm4y!X@P`f#A^hJCXvct89*kd_?ym3l}dzJF;7yE2YuWz7Y zMx`@d70wP(!O{dg5I3XEdRv;@4KsWn1UJspSYE#25Z$vg6s06AH!NURrqRCfQxToUY$A^+bFa#9@w*p# zxSeYP@F;{j?geX4;6YIR%>JXxItiH|xZG2BbI%CBd!VP39Y+nnH4B0} zaqa4xfxG#xHt%av>?<`3o!J4NuE{o8)AbdeqMN3G|L%;Jr8g94L4ypvKaw!TD06F2 zc16{f8P;tqxxF05lhKVgMPGdJKynl~Y5c2t{~{uOekWe8-Td+GPj7!2BRG8W^|7H7 zBixmMu7PiIA1O;dg&U8`WJD;aYs@>_GJ;d#n_f2?u&~~@wE#>(NG>MO`h${ABLh(V zJZrSw6qU{4MYJu++7=fBbo=eu`MM|4)@lxU1pC;t;8;=k5-=kt0cyWC}@Y%A?pVDYU0}SKu&FgoV`! zoStb+-3`j);7$X&tTrEtY%f-coy;G+YhuPEp0k-NG?+Buaq0}y9WcTFw51}9$^Dcj z5?n?s{Pc=l2pqdZg?_%uN)4}8Z;HL9O$%P>#?-oR463J$9jspZHA*su8S4ogtUO}z z$c;EF>PJ)dg9yfwV1}jlEl{Trr%%B6P*{}HF;HdyA=^`Gx7B8CRf;zKyl9`aSw5V^ zf!1I3Ite;m|Rb|cg{v!K07HSffi47s{UWp^U3MIt4;*Rhs zmC^~cx(KFt8o4_H`+2MX(d)W9t|`m2Mn71MAv`+uV^;RV$&06HmDS+hV9PNc#2Kkg zQ^CL4d94q&`F)Z3=If-X;Ni&-5f)PsyX9;~x$XcBfG@&*iq=1(^1NI0-icaEjbrC5 z(2;0SZ-5#8X&7`xwz!WXcSF9xiueD#+>)X!_w%z4geCZGtZXg@HSor)2Xu_|Y9KdWBaKO_+9*edBkU#A{_yzgv z?&Y`tMs^`eOWv;y!7px6$3mQ^Km5qUkAff6_GP!LA=D*2$F=G9pX!Rb$Hx?Z!WVz@>?w=li2dR0 zDZ94D=PsTz8gV+(^3WMXZu`^m59@8)X*f_iQ*BAMgg=v9w}1;Cg}o>WdGmeIcEB9h zSacdgSU8#%i^EdE+$^+3zG(`Zv)=4Y)wh!+PGk1cw&^<{E+WRFu?Ek7n%ZwQd&Xjh z%W=;;ri0NUg1a{6Za(&C#Y;c$50%(PcbOe&218oFSJ?c}?g#qEkJCs7t|b*QMcraI zJzST&g%N9<>@rn$Y&`n$XHWC|G*a065PtKmzzVtB@Q&cRbz`cz*{n-Fx24w8&W9It zJG`>~He3QM{IV;S&C@7#XYfCsDVgp49lh|E?<5-LEnlY|$Y59jKIS7K@+YvjyfaL^+zD^A^(lzF54_#=w@>ALPxg(xCn1PT1!p4- z{8xDU+H1_k>~5#pk%Z2i1XSJ`TdXI{qS~-;P=^_ z{EC9muTReI7#eXuo0Wac;3?asXg%Gffjfp+>hc{!$-ZJei;W}%c9gnCXWhO=j@7IU zZe8Dp2)`rQd|@iPTF+PE_!wsuw;sW4q4;d2n2DzdC#~Y)m@bs$Nb9 zBj^yvA1r8h0_H~0T|XZ>NX%o_6j}XnV!v%xZs33S{Ur6`EBrdMS(}|XKb%~}X1~y- zB=E)>ljXimGQvZ^f<4mR6||3j2++Pw-(7zMJY;;HXTNvGm{*UI#C>hI8z7+J|@W?2|w1OjZcdd8tN@l^p4fdg%E%XM!U}){%9N*1h7QupxIcC#+Zp{BT_cg&&Vnn9=H%})L8 zzoiB2<9Bg!!SH4b-AakTgeP+aF~4e!(=y&>`50H&!xesGhlo^~IMvsGh5Okwm;@+s z(fCl+nvpE;J5Ac%DeD_HC2>dm6f8?YZ0O1ZjbKBmKJUrV33N?@W33c(MGC*_rXq*^ zBTF3NY0yXM-WPTIK<01>lCpTjx8WDNL`gY?`mx}VWX>S(7Idv$P~zW+LBc7UgyC@> zxrctQ&@;8(+1>DGUqLb)Yo0=HVkA<|-CpG>$O1DALz2|@6O_h6swvnYO_>y~aPJm$ zz8ap2WvV7H&;wB`kC-b}eTCk=oS-~ma6?QX=mUo>WmiE~ec2V8QtyW&eM^&31^2)d zZakWD#@s>rDX$$S@{c}SG(CXpd?Th3+(HumNy)j4((AtF5m-@oUII&G67eYrbkj7Y z;`-gTC)Vl@egcb`NG5S6@<=h~l#3f!*AzbDO6(0b0rOG`Q?AzF5nAXtdWI^FR6L2x zi{XiXJxDuv@qW@`L-$Gev{J>KlG#XWza@8AXzgXGjVDs_)D?AwG8X}Hb0nj&!|x6d z#Y&|Un0m(SMwE^eL*1ZuQf$kjX*+Z=DvcfSp5YTHN)htpk%(BFB%|(y6WkBqz8%B# zsuBZK$%IpvOBf0)?3GMMYS$yMhCMp|j?iMmq>xi6fijAMCu6?h&~WD&oLD8(=q%t| zrcMnt%f?sd0?uueR0%%>W~q#v+LFI&_{H|^)BeW&EXS^+v9i10ePsxDmY71)iBJwc zqT4|n7!C_#OyiyWjlibUDb%)TlEzL6&|lZO$u_#j=KXHW)0l%xKS*lhr*iO^x-MJ! z)-A_Vc$ZFpBM>LiZmo?XmsZEE7*R;MISNAH*EQZP1gDXbJnY;@3J>Z>bKIQ%8a(2L zNh?7^mQp4()14KL;QRAksPI+FC9=~#ezP2iHgiFH0&u~T(H*LqU}QE4}bX>CY?waJ1 zyx01jZ_QkSrFI-Y{NPUr5hct?50$=jZAGT%ra20E?Snoq?=r4LA}4S_0=P)T?x_6$ zt}5C*YnsBp5HE&TpG?7nWHD|rycv^S5$APtm*OgQimU}kE(Lh*xNeMGt8u@szv$u= zoBxA98%4xf6uZ-3W9Yi4&WdN`Xq2GLTJYpJO{8>dCLGCuA6aEx-{`?H@wkS7S6qZu zJ3vQYOz#IhZ?g7XM!we{ihTH@JK;zmN_ERqUgU@y!hL0lRT5lA9JvoVcG;=sC;n2)UUv}`Yn%b^m&eIlw-8g8TWj@+2Dc_TUhFT+BWQ@7e{SCwIvDEJ(W4Kthz zz;40$DKJ-|WC62S{vh=NxoFvS#7Vg@bRR7lq5fRZe za&G_o)voG0Zu2@_+BbAX&5IHxZ{c&hols`x@g68jB^AycC*hVhzS;fu{lG~fmow;zJ4}Y0e2((fEJs- ztpH4pXX}crb>>^_8H-f$falbNP)W+8@r!T#oW#W6(}Tw&ZZwUV97>fDbz}}gJ2IV_ zS_`nRUv_4`mIRFa^88}^9Ooq-mNs7YRaiUOX zKltj0h$Q81Q9ui+(b*8k!v$6veC=7STj16f**$gV$XTuB3mMIH&aB?FZWtg}7+S*chw=>p|-+cpTl(80E7lF0Kew6RGN| zR5+c<>(D&z2Bv8Or+xUk1~z1q+?nEf8Nla5)E+CcTDVhCWVM}8ZbjCc;QHO;4G`5N z2H_Rw%vtd{g=jh~#eXPjU3sTu$8ZU(Q^r3uR=6=+j7ABT)t~}uPskEmg8gF^vnlAc z;sScEMzbeRSuKiet~=e5N|!**!yp09c|L*Da9E$_Y(;WW8+uY~FmAF{U;5~da3-S( zGz$tAa~aFa7uf+F-e{|Go8xV^*V3}CN>R6c>E$h_cq~wOH}t79w84~$%Q3?NWUYHF zsOs7~UU7_q8o_sO;;5Nau~VPtBCfsJ!OvR3-|@4L1(sTidZ}{{4^qWg%Hqioz3~!s z5IuZup5+}JshGFco7OvD)B>Hti7Fxp@!S(>=Rh}o+x4aK4;K!yq-+AA1MVq`)M)kY zDXwl90nN9am$x88{f!Cqwxftq>TV^v&TM~h>JRxkgWHgFwti&m>AvxdWQ^6K@OS2* z!~?rAejfu`EDE#9x^;MqHF9?zz%zI@-k*eQHcgYn-PU;muhe~evZmWJSPA1YnSg7G)gtQF zm2t4z%Q_XEcO4X1hM0mI1F?i;d_0!7zz)ZuE_DuvWV!87A_(HZX6|9rCS_^l9Oep- z9q06BcJ;#KxR~Xzw^4W5+>|H7vtt}zck3{vLa_!B~ zf^Tra5J9plp2<^U@W;keWXS|13(-NLQ952cIz#5G`;Q)qbS`5Lj2PjJO7~`!Be5>a zfmN+De?tHj#}jZUZCXr-(K36rH5H0UV$S4#n&5>#p0 zod>G>e2s&zUQ4(lDe3G+3WpYtnR|%xl-5zXbzwG}5=_l^a15WqkmtCpnT?)~=iqz? z29_pVw^}g3BE`k^bJ1YxUz0}X=F+~K*Gh;e6$utFChK+Z@#(ESrso3I;BPGSu;E+V zsdC+R1yQ?Dz9eheHU7?GBDGI}oa<6~L)mU*1yH4SeIW&|Xh+rChQp zRB1>;c|2NT8(97LGhA(D@sD0(?!U!lwEN|>OYL7Q zQcUMeB5Q>as2fmUWn|fyiWGI*H9g)`&zG)yh7Gr6rBlccGpVAnYA9esky8EPWcm?> zXba<^gcO&y*C2dik-{Am7m2OPtj|q#=<(@<2=K%NMg$njNxHZE;J#;@zQk16kQaN@xWH%Am{p@&`&T$R zi`q`jZ6655&q6q;NsFI0b^Cyo1uW^IP5`_K@&>|+mUQc^CR~yCTEA<_O1HbpL)HzR z>K6}qkuFVB>BW#u9URzxgO3j-TbjR5S|%=yTv=JQJvM><5J@Xvj2(&ggng(4XX4F zVw@)Qr43Ja1JT`oaRRX_+7{>>0lJ9&jx39&?fl(VohB?mvGD<+yXWcU2wM$5+vAPn z!0^0Y90)^qP;tPL@OXIxkU;nfsmkidcxmbm>2#6vo8 z5PXB9;)FYe-NV_MCL)TL&t)!F-1|Me2LC!XC1$E!d9xqqt!^H(kF_8JZ}vksTj&k^ z_7U@|qrxIz%IG+%j^NdU!*sY-du`f{)nS}(Nv_)rJii+KaSxSksEm>{#@@gPn>ZbQ zL~t-|B9xC*`v#c4?kkb-Ac{%UW6_^rw-EBYr5%?g2j3PA2Bp%GQqXf;cKrxmXFHM1 z#>`9Y+iF5f&N&AZ7&&x7M0~+>Z^6E@vb5J5@o-oioREZ1LqdbbVq|dZK+4p5Acghv z?!6&xSCpl%*m(FgR}rfiJ8myvdmyc;w7&)xDH%z5a1cW$W(|#wRLKv9)~y?@{kASK zg>fHyC|+Nv`K2(0$*YM*0-mmPq@?XC%-a)*u zHfHfRjMe|(;W(vGjIr6vQ(xcz_}ve0$DV`lvpM+{6Me7FUkH(=@kqR2Hfx9ovKGr@ zU0<2z0f!a3H83;9!gi4OIbsQSWBe7Ly^WJEUwTJ=_x76~`4~6+Bsu>3SEq+Vurx~C zo@lShJ4{#troNgNr9F6Z)A$yeGbM2a&;Z@b%Df;Y&o_XC2;6GkBprJWO8eA95u{JONf;*_1k6QKaZ= zd?$gDnnHw!n^@hm{!j3D-pxhT1bTvim55SjyZBR9chky6lL?sE&`s`4B?C4rgwGA| z^0v=JrU{$G=0DqCGUjg_ICDEQF04HOG4P4ks&>Uph_5x9!!4o1)A{GA0xP#}s!7RM_y~0Z-kiZ(?IlV>; zFTYoK=>%MUpqEnT0Pml7i$GA$xi1#D#1<#wNmkW`!8R=27QVI5$(ScjPcoFQ5ymK0 z&JxW{xE@GRVe)E4+8!+Lv9M~g=))B71r5qV`B;HdG8Hdf;c^H169Y_F=6?)kZd+aP z!;j#6_AO~MEWy>QI|lnwW4#-&u0U@Ltd;2A7gv|MJM4b!+r2iLX%->aad^r2Qv0JFH3j=0N6r*@Qo8q1ZwG@m&HT5M@5vdm|r@2pCALH+V!baV7r~M z8kwGMWMYEa)#B%Ann2*$x?SvS_jAD;PSbf|-~+AozBi3o7Ns7t*tMx=ZP!=QBLi; z_imNEioi_@c_LYeBvQ9|7br#Fmz`BA^|ik?iQ~vd*XY9sY+jK_nM!ZTWICyxBvZ25 zRGD|$^FqXlbP6_vLoi9zO(EDdf_0y-_m!ivhZpUgRe~d#piu^#?UHGvl&c%YK@;nA zMXeW@yhL}hwQHA$pXOir4h7*7c{o$g`>F$BNO;64y_AaXA+TO#oo{I?jvMG_=Pv)X z(XET>QHQ3b)9>=?j6|ejnL3rkj*K2iSyV-*;SYZ|1@2#Ih+Qy-#ev7H&HFNIaE)4{ z;mfw9?HY{f8vUmIVpw4|{4={M+ipKAW?9n}!@uj`?V0+o?cW~YRBrQ9+dtOuI~x8p z{G`?_yIEJXZLg2tfB5{EW=W)a^uJ2D>8{?e5{= zD=&`1g!(Zn``xFrC4BICqMW?>A876WPN>*zSB&8L*tTHm)>q5s3sc#VQh4i)$@2B@ z;6cjQBwGx_~uDP}=n2{tIyvV{R5hQ_%)~e%9dAxFhq0XOE*o zXE3;9V|eICfaDO;W%!&7-)HKl zRggQ6?PGU2GV}GZyQ33}276*%D42Z0qx0-08_mj->Zs>__N2grVL!5$8JgaK_0pz= zyLsv^Gz0nj)ZNp0_0pQe-8?xL8gD=0$uVVV-p~5YknC>s?Bu39c4HL()F^v4JUw>k zY{!qR8uK1?T;bHIH2mP!-kZ)2U&psM%?fq!w(!(em~n6WcB6A#)nVt|YIxi#_zN6g zb4{{&ZJG)nR5;o2?LK<=_=P&8>J&ryA1|Wc>_)t}*(ZkS|_O4+M9-mM%S@Ca@Rye(`JcRkuhLt;j$z`nEOSewy zVQmhF`jcVxqVuf|MyXWku@LssDCd3(VS;hR`Q=3Nk(k$gU{L~rLBO3ub|zV>%c->I ztOf_nGgNj0nFrh|yECgR4MNXQ-9d96npo_T@D7GsBqPZ#=YF1Z1K*_ewC#qN zS>* zKl<_6eETmgR^8^l6~EBZsB`OBc=X^{yun9oyB?0kc?LhHsF!d?dbbtHo{lX1%@PAM zr@p7TQ>3G9UHn7S|o%wc=*|RX6KyJgv%aOA->0*Vugx5MN{S3dT zGYuagG38cGb`dk?pMJuc!pdhZrHZAxAp#pCyC-8}6Lmy)3Xzl(Q5a7)T;`!rXdG2as!BnWkA|AMl`ZFfSVK zI^R%AdlGe+NZ}j32yA1@EtX)w;NE+<7?mk0=>*m@0xLkpou_0C-{@P=aF$BD=RnfZ0Wo+)o5qV57!|5VCvar zP~Thz^w^m`!h*Sbcv zz@=&YtJ}nBk_I@NH1K4Xc%A?pq#aQ6G0z%pr&f32oNuj;i0h?GzwQ7R9Gfa(Zu8re zSv`p2`l+Irz-xEjZozquF+`y5tL=;t>Fam3d0&%aN%D13E=bXm_ZVXPb^ubD#xik@ zxrD}#QVzbqlOImn7s~>>Lm)V_!_>C9M~{mde+Iwg&mZlV&@@r$1j;r$XilLJ7c}_6 zzGK5V+u+-Yan;U9Th zN-W@8Jt7aNp|M5$+6h_e6^=#kO>Va~mLSHRlF2Q7k*{ut(KH(DC`;YyUMED`jlu3n zZTj{pS6m!>XI!P2LK7Y#DveTi7PIZLd8tWR_*Mi@B#)<14nR0b;?7zg;rLxL69Ntj=~|~8P`Qo9lu_q#h%14zokAi;ES15XKLFvYAAcrT zz}XbJw`Ru@nmW;iWp>yznNsC!A#ZfIZZe3t|K2xSpY2&B1tbX@Ib`zJG!HEeUg5Y`h7~Fav@F$X@ zs`}bwZJTX<8$86^LBQA#I}9T5!v&mF#9Wp`Iz zCr>C|jOUeu(121QMdGaWi~ucaf1yPx=3)xeqBs`rK^>r`k8;IiW$J8UAY9+90i3@P zI>oVc8F)i1OM^smOc{0bFi%_i?_)>vJ!5k8pLi*8y8jGMEpu8j{r=SZ1M;~){6O54Z64fN+mh3Gx?wvnD zRqK_H>3j=|PN9v!+SSch73MI!WW^?utQcuyw5-2B^MQqo~fqDATTy{)|sXs?XZ8<86&~OBr>^Ffg|kH0{rFJJxUg4vnh4snJK~99i`54 zV<_(7unExV9-iW{+vWDV;yr_8*ELRH8e+%FnHD@_s=YG33Ra?!+(q&65qh^-gLt`|iDRbFfFsEn~a~fZ=I-Dmm4Y<3O;R9I~P1})$UNzb~Ts)4F zDLDNskt4(EBhXq6-+$pJHJPMS5EvsgRq4h14gSCBip(=SOv3pPes_(CRje+bgk_fN zCfm(gHa<`0MM_4tCu*3k48AuMY)jCKu|Qk=bMO4*KBhTTk#ATr4XIXUS0(I{>Sfrczc!DX@vLs)C6S- zbuVxqs1^02DSQ8tj4VkN_TNmPu*?*5Z{>VK$ji-+3U`-~CJge)z^v;uHsXBHnzI27b z-Ne*8ysn$=)9^OMs#y5THi-^wLoN)!5#?N2w`02x3CLW7y9qvLUzXr*mIvGrLp&BA zJi|woqRJ`77z#M6@9ivDr)pa#yRUJS>>URWLeqO+#ldMl8l7?(I99XdWD7)$s?qsw)hH9D)Y9&kw# z|Fs4z(kOPyLWJUk2+k>0?%Ql2w7)aw z`>i6!cmVqtzJkv{d2x}42t`DLxv z#vI$$JAb}ga=sds(B?*Fzcd@)X+d*HPfAS`qOWmAO6H{tn4upNzrwra?|GPm8}!>{ zVaC+LyS822K3Ajw2uy>VXLd81AGmz+$1K!P)K02($g zDPS%wp*x6WrCrJh^nC~ZaI$R!n7uvBzH9u1`}5dXpWl?wtEbxtSFoS_?>79A9j(OL z5B{7}-Hk@pTyQfTfMXWa14{PQ%~G)?YAL(fI2YZ+ORKT)Q*JAT%1lv-@XdX*_d?+m zt!G}eG`Uf2Jswp~)2bp6z`=X0}c-_Bt}99E1@|3-M%(HEPkA7rDfp)p@Znh zKA79wTs-8ny`pu2vvcFfo2PwmW<^hc?^#UwYc91be-NwKfz>GE5KaBOB4Y0@n`61? zH~S})WPUidqM0&+310qTv6J#*T`)H{Kqa!=1U8gHbYFe!IjROII;a;{u&5Q~NM6K@ zjLS+gR3Dav`fw4_uq^#q27R>G|HQ_1P;Xy;530W|?tuzGn6ISB|KsWX>z1H?9<=xbWQX|&{S&j zAs;q<^HY$woDu`em$+MUvNLEP?xU=12FqQ@za7Lz=58Ee9%$T|wT8^UnSHQ4@o|Jk zFxLxL;zwS39C1`hCa5n~IytC395Ck=t~d{(ZsU{g11}c7KV-@2V-9!x>sgHecru0> zldJh$ohuD5{i@Byi^~>9!x#fZi#xiBL}%x+_2_bCh6JTdDL{^Cm=f^4`a9wGX+l3= znX#;qf{9+#F+bEUCc?-N@)+?9Vo_V6GbE&Z;7k36=CDynmwR%_ew zg6eMf-YrvvSwnT(J|CZ6KV6}XoAAn{(@VLIw-y#^k5|I4J*($HhVtF7$mOf`ubWD{ zJ*|}=_`9frjINlawtq-C6RYK}R29Byt+bNM=oq$W7P%%MyoJRkIEFEd&vQwCndLSc zA-y~eQk#4QIAZJ?kcjK&Px1-d+1)C#->i_LdD)9ucPGn{F)_(dhTy-Zg-&YyUe@E5 zW-U0l8B#;^vKNvN-*CF35&CMSHeYS~sx?9VS!0Yf{yF?uS-wix*ln-xVrCml8dEeT z&aWZI`ujLPe`B!jQX=rz@6=8kI}=Y%H^3HCe7s)gyIp-dvgztP=E7~`115OZ0x%2V?S48oK5>vXVxwt+}|!BFPe4TA@B*&<#>fw>@sD9uv}0UFX4 zr`9Fz!FQ8=!V!-d|)7G5U2FNQ5XADxHtB=~-T6oP=rs&bH_+ z3Mzp;QDtY~2Pa%1qU3_U8_tfo4+RhMfoE*j{iDG#?G=+&X-ORtzX1N=PTUD;DWys_iug*!)HWOjGh-=R*uQ~1bU z`UV>r*^~93UC28}`L+aqdKq*yKxZ5dvaj$Y+|X|xaP*yfv1$%r+>KhNy87iDs;I3y0*o0u<)Hhs>! zPR<~-a9G>4lU?+*4w=+A<$iX5LMikv>4=2`lYPeA-*xc_WMaqWn9neA zK3Zq_n?vR(D8}Xqt9Lz`&qn;)r&MT?ucPhHxUZ3~o3D3)PyMg$uP6O4gJuJ^ z{KIEe$u?Xd?;|rZJ|(z^$$x~0 z+j4g96re`8?H)eUXNxd-z1+Cv0SuFs4;yGa;;_sJD>llOs%n2^^AiuioRX!;|T@KM&0ux4XVoZ_GTB#o#+yTTc9>mFi^&| z&L@3&b~FBf=aG5xioFPJY&w|;u^s&;@T{1gVzXMOOV9adz0a1%6*>Lb3%5qFcP_jG zsA{iM>YVuwt*RM!;vZ|K+UxrHVR*O=70-j4x&3u^~6~%$>1SYb!VNvX(@u*t{zzRtc6#z*~$)(WE~Sh~zh7?~V!dNB=Vg z&7{i0#AHW$3=`g4dN0U0l~Y=g1Qk+{p9c)#uOUYXuNtDVdGMcRG8@U(r|NE;zj&{E za-PoQvm7#q0b`dlbt*N=2h_;XxKC&^3`4KK!(4bF46%7DNJ=eBlT4Fbx)+s!=!tXX zig-BGeJQf^+Z6**Hb8i?Yi{QpqIPzP7t~HApkg)rvqX2y&pGr!#KQ`b;1R}%9IJmw z@J~`F|7GPkZdrm58G995Drg4XXf?>03dq z39a#jeVG5t8E!)1?Pa3Zx@=Qn=3Ak5iUR%bjl6G!i+*}r6E$DsRHyf{QI?rRI3I24 zg+3Z8p66i6wKS`hluEM@fDZdc+>I;S`|qW5sioF}Y>{2ZLQezsK3L+P znx@Jc;T}0L(j6T+217C7YCZ)Jef96HymdKGqlIiK+%|QduwrqEK`bcG%E1un1yxIq z#6C8iJQ=SSP=d;SQ7WI_)VMDj(`Rdy#qp`y&2GB`mQ*3h9Ci$BgPA_3;X?oGQz8rO z*&{~&PY;pbhfBw-pGer<6Q>d|BO@S)*{cn6afqn*f1CUHnc6rQF^m_<*b&yP-wBbN zIf8Gvwi#eOvpKr>*Vz%Aes6KzWo%=ahy~8*puV)31ll#O1(&%QSfvq?konokz9#M2 z?_zsd)r~@X&owLUBCQkF%jtm@A4e64Is&$D-INZ{&WIh~dXM#(5Qi|E-)W4tfcl$S@PBZQI{b4Yw(iS%5Q z#FbM;`(*R=2)@_{(Xx#;@2-~4Hzg0uks(3(yV%#v&sr2nF%}hHdWdGw4GhAym^w# zJ8PJf%v}tzqyE4HOg!&gcyIi1&)Y&&fxm<^tGIX)_>Au1yoGB0_`H9p-Tr(ZSl&*$ z@_jz+XwhHSFVlziGnCEM0AWDN`TV~MTo9Z09F%ZGcyY&W9Sc(vKE5up=F`)&G)W zbD!^hmyKQYyFeQjH=`@;P1J997GmMl7!W>doJs7Ri8T-n$NH6cz(?QGIZboR8ww9s z*_qDK6Z}B$5Nca|Yb1QBVxNmQNRTKeOde(IcIqfMsNRI=!R?n+k-R5pb&bCxDa&~f zn1{^bb0qLDo!qTe0+S96}VZ1SIC+upTBdh$;8jB=429r zm3CB@4Hp~~d>}uR-ESHB+xYJe3j=?^_@zB^ds2afUYyTM`U`?gs6ObvGVl@NNovJt z8oVKsgWIa3k-jVm+wkqF>a4*#hOXH}iMH?KY68$Age9gHm{WFS5QNKxCfnd{vVZR1 zOwXRBtS@+mEkKl!*-tc1LQm;NP|$YS{HL4!x_~WG$n2Wr^VQ~K+6Ds2PQIa&h9JuJ zZLyH*&GLButGxm)C{O134xa1!v_|m>GV+gV zIc?1`Ie`QAjKstdG;?lrgFs%#lIpu*)#DL(5wp#qowvpP+j)1?iZbarNv^^mJU3HnN4 zW$D#v7L4O0Q7q1hfwP+JUa$;_Rk9iQlDnXARV%OD^tI+V#XzroV)e-4%g=uNNmmtC zEwdd;U38me165%4QNd0wGMc0q7<)!h1WQ>D#5yu);9Xa+CUN7ew^e3{+iOYc5jgmp z!=!}RC9=_M+NS(^N9cNG**bw(VA-ic;)2h-Nm2O`fEFt4}3U)x>Tl=o) z7aqD1C>u2K&Z=C_NyZS#xH}y*_`mS40CV3Si(KdlY*$y?Nb4?kH!UEQkl>2`0qOHK7Q`W$txA zq0HRet-bm4BE5(?MT$8_7>qeGyUo&o6}cfXxeWcC0OP((Mu>#=AQB*ek{ZDA_P;LC zj~$WM*MF_idnhQ61w`$cSqW8K_($I&Pe4!u&5>`85lJI>4PdNW!H)O3+A(kj@*nk$<7i6?-F!REi zfcYC3+PvyW9t~Y6$VdrdWm{bZnl5QGKhDV7M9}PV$jj>dty3TUpk6Uw7KdTRJZ`_I?XDx0g)LQ0^us~!sy zIR1t;ZSm#g&BSaz@wD4_N*A(wvLoakCQcRa9|m*lsU4rlv|=}3mBrS|)LJeMNnXwo z6&Mlpr%Y9_BYBT4v3cfDJnr)>qwB`eE|@>!S#ne3d> zKG1@Z!oeKgwh+DYi=u|wW6haRtm5}Qgz2j?5PBYzn%8&0-Me|C*D%0uISGm{EuNa( z)7x%!RVgzT{zO;&L6A9b&$;Ahyi=7Q91K228cX&B zlQUgzYA#CQN)`q2h@dd%sJke(3)W~(S~k@Ke(~^bcnL6cFI^FZwv7+Z4{`cv)W3xF zIuNvw*-;*MV-RpR^W(VOzHv@-B59#oYrkkYO*f$M$kgHqUBgq!B`|Mn=Zha_ zgYVvRAc<;#oj=w7^9HK?YVi-IZ707@V2c}Mc6~?3p%`Wz&-l-wrFy0GQaLrd?#}@Q z{rA{jzv=EHlU0)!#(X`* zQd8bt5apmE1JS9A9Z8_)i=ijS-(h@3C`v*e?1bqF{1l!Yk}}0|?d|jEX{D?&7H(N` zVRHKNCHq%dh$IWtIG&`^ztSJ(^MHvQ=OF#>&o?PtPB=zhv0@l)S|L8;Dc7(-d3cVC z8U>S_2=&@`gr;g=YT`pm*S2izh4)POkEoJ3LCQWDp+|r}9l2`>z?j^4ox$)68asd zbO%tZ!Euu&eBR+}T3504$F+%jNY`0rY<8vL@^Ix++!wC!#1Uc=Yj4vEXsWes)hg$DRdI6d5(*#-oZx4^>4gy9%Y3gLE|j${PW?z5~iqW-9?gPo~cH7 z1*p5Tla(sq>L^oqKrPeeZ;pLJK7TFDGLp(hR5vfv7;<|DT9>E^ci>SsQ){)FUjU&G z?M{o-y}+wcBcVvMfU}C}i!Gyv&18pGkB9%2D(0Q3`#YmI&Q?ZP+;$r>U{k=?ezW&` zwb$}S8@F8tc8u*cJ+r3ed{mQePftV)uCS3p@9x&xsra@8Cjk*h9&bt#VZl~+ij-sQ)YW+dv4)hiZi4M-v()C{*2!P&7F>`MXZ*!h)^N!h^rW&D)N%#77 zgFbO(Z|bgw+gk59jXVTsLVLP0^-ro4--t$IT%!0^QBfWhlfSexrC7*?R8Aam&#*;k#rUMuV~-f83< zX2Z9ejaw^lj5L$QNNh6+MWL4U{B96@xp1tjGFdTW#vJuu-J6u&zZMd@Jlwo=M~vv8 z!XXQsHW?xX^NR^I_FtN3JSol>yok{yE^M1?C)4J>qZI}G zRY;HF7@V0({kj3VifQ;gsPj37+@!R8dm-BDZBAk?=FMWp3GG9=xxzFqkAQ)AL8YqY zP(MgiB6FN=dq@B^!gk9s&77+iaE~j!LF#(f(FCneMK7znN;ZbZ5vhB$QB=dWLJr1m zdcX=nvO!h;@5NS0#t_BMMtXAxQnn@NO)kE9DMu@{P442pTt~oY4O3RriEMF4$*2!a zFIjYC8VA(25R5!yLXmBbm&~}TcB0E$V5}WcW_V(7piqvCNU-ufrYg`@0*mn6rMkgX zZ6Q5#@<)nYwUewA(Vmq13pMKHy`K$R?9%s7d^29&tlI^h1p`jL6v!ONa&XUNsf&RP zk~C7aKtw2JYLYwE!mrVoVb2Z^B?Z71)hE};inVq*;t)F8P%;3Ah?=8xX~$N8HsZ3G zKQk@N>gP$okOwjq(c6(Q{x+}^7L%uo3&5mCfWPA$F+W@QB#`_+W$Q0iFxl^Ezp+PC zEW6GGl}{+Jcv9;PNSt3B|IszhiBpR_Zc zHvQT-08QP^UtR7OQ|N>vS_{FDKj!oEZ^1v2aO^O5d-ebw#-0F_;9~>hPXt6tnm)94 zIO-h>*%WQ@@+CUFIJ)?Tfl;UVm9-PoJSfYtEIU@@Nr&sHmIV`06%SjZCjneRlFXTe za3H!yjdp8Z!)tsYuLWbd(%)w=d9XCe#mBqqYkl7o{GPF_tEgs@>Maw5Yr1-}Op_?! z>_{%g`5+;AU}i!8_yDl&mwiUTX+<8=P@4$uun2Ig-0LEr(dA_Qdsq|BKCO=z*TJMH zdT74rg_*Kx0-5kAx$0GKNvm2CDMk0l)h`UV?gWx95&9D!b^x_&foaKTb)Ao6a;Jp# zoD0T@vHN!N5q)uk?=hFG)K#it>%yeR*M9E<E_#}<0qDaA zE%B%J=-B=IDrbgewuH*?1?@O{F(Kv7a7HeD}Kgz+`H~ce5>v?VHgh0}4ezK9kI5+Cn#B4)d+vnOpVpo_cw~ zq#6rS$rW>fkqP-FwDfPqZYM{?pHM?ou5NmlT=mEFoDu$S=?)Q6iS1-JvDxWY*{D)l zjw_m|v~*r_0lK;+WZtEJs;OO1GQj&S>ZqS2uMwvo8%DGdmH%oNf{^nI~1NDs4pU?b2l z&Y3A(u(CCK^|k>#J^d&21(XYCNb7MsmudnM@+Z3Xs0g$zcA4E0j9{=rdE^Aqaq3^7{qYR0b!7T-YY zHG!$$o$bV>5g~;THc1%oB$^2!tIpzFO|B}3-4{Ee*KZy@vFB&AiP9xRV| zu?Wl2FzBsJ9if#f zeEM!x%=Ry{i#6X~oF^+$2RohrqC^X3Ja^2R^lxCo2)NpK{ByJ|h$KFB&(V6=8J)$% z+RyTZnsH)sV}=_d?!ZQ^pCP5F8>y#*u8z$gGVObM!A;1zl)1vVi7pY5=2|sf5T% z#e%jGfyx=lC+_D{S6Gc$n@rG#?8ULqc>^(lqfB-sPmq(K>&PBmJ$B7X{lthjKOx%D zT0LVuj4L0+tsTEt)T6Ld>}se>emxCBCBLwER{K%S%Oda@X9d|SR#PO>{gTnEu7L_rB0 zr?CRX{B1W{*vzwnt1>mkc(&fRW_Mu`_7|=FmqZl}8%9 zi&>;h;Fz4@_t!>Pu+t+hE2P&@Sixw&*x8Gv@fu)VNTwNQGg3?qniTAzto%o!1B_g=jO&#{r z=tA^tzSfKBPn$Re!HB+Z{3XKZYEt{1C_w>XT%PbP`akS83rA&?)O>6(J+<~jAk9K~ zF=O0>`FLYgchMUVAa?+-wq0~62D3Oawa=w3;v+gPX*22dSd5hojuEKM-Jnr{>bAi% z;nFURGLgMIoWXI`59A_Lxv9?UG2}f@i1;$QbxG8`sY;%5(~seo-#}&aR|N6%9T(5g zC~@kTIXIcXpnP_7@5YIf18j?BtwJpR)F0M&S=pohtQgt4w!T(T@AxaKH8OrGH0m^K zs{w?GTKTO{2eH|%9a>mqI$B_5tH{AEYZ63)7+hW$V3Qo{YJM7c@ufSR{}?m4)kp&C z>-toZ(-a15a}2puHN+0-Xq*vJRPGsms&^0r{uG{0)QtU}UykwtDJA=#ZSbRJpHt*` zhMEg==Ri6Z&Om8kc8^kzqd&7Q)Pb*|(Gt}80ar=GvyV&gOAq|w%}&>ZXC<3spTykNS3WPzI0k%_%uTjaL_sq?Tx$iX`T65 zj8bY0$=17SVYPJd=q5Tz>M=Oxw~g4x330U-;ydy`kydE%H$QPYJ<1OtfnuG+a_weE zl{4M7%}1t#oDn_Va8B7~0?RuOEA4yjPm;)J}sLaW6 z9~>Ilz>2*o{sf*9$5Zz$N&e`Z=F|PSC?v$^vcC=Ra~n!r!m%wfz1Z&7rblIpK?La| zVM}f1EW8(N@R+yT`AGWDseQ(5bBFcTW7yJL=x0`-y3i#+#h7j29MQUY{GBH{^+AR} z(k^%UPr4mnq-D!Z-_?J+tIVTl^2iKcT~TIA%})n4Yyq?T4+*e^NT@9 zD+^$k9Z^|^i79_>pf+1(xrbQV0>_JSK$|J;jvO<^hS3;Qq`;(S_5y#JxvevNulwOn z#UEZ$rWcqzO9EKT}GE$)75 z<>tsbl|FM+R@LV?qLfFrUpdQs<|s~2LMs-_%I<`ND=N1(Cdw=JODF=S0)PRi_3ik{ z_b95|0iqF2lm~bsPJzk#>9sV5S;C!8b zVE+Mv4Z%ShzL;K5@n$RMIy!-^EW+9in~^K&+$^1u1;t}Dl1pqm@Ly@v=L;1jAp_Ov zXLoVQY$}P`sosr|g$I|5?Q(k=6?ogE-e95g8s2)9Pe)?1vZ^c* zlnfd{N2#>@@w55_ax=CwEJao%>H&JIK=EGIO*kuN5+i}QgV`kp?<5O1Z&O7rP=k)r zjJMsCcY}p{$K%!=wV4EbZ<(H8+p@8BUQ&)&Q7-YAI%nnkvdZ3l6|F8OTscLLXSI_i zO~MAXPW}>hJ9EuE6>Kv!H`@ozY@bTRBnmwlGKXcJMow4*8U$d#5pv!S$cacN6+|V%h3M%cuAMsIB}OR?t>f_WV$+mN0Y31+76>MLTVtT}L{?32SNx-GKO5G=P?t-dA>Lu(X7ByP zeP_0tR?1OF%XZN-hH=@TwNlk+C#8%IWolLklBGuAO>zg>mmcI<(|%H7`rY3Lw!YQk zi0>^Dr0Ah`17nll2w|GksdW@Q6oyKI7uGyyh08VoxO_oEYgXyNS%>=V2O3PoT>{fO zlV3j`cc*ZtCPkCqCjO~I8-eO3^Gr#v@&Y3xeX>PB085)}jyKEUGVr=t=V9@UD?#bf zn)V-pF*`~r>sU6&W8`x3Ph+}ZH}Q}>DdvB}R|G}klS=1#b@9SbmnhvlE+M{Zbd8yX z92ebRC7*}_$S~+J-S2{RcT<+?a48I8rk~$Q{~u9KiBE3RJs5T`VTFqdAMhzb>@K}Y zhsJX;4@DdQmmo#18|#7j4iO#9O-lAJz`kF@*^RU=k*M)7IQEv)V_d2WTjPa1EKx9~&*L zAj^mqbx$jX9O)hYu5jYDCpV%}Et!^#_xAH<=dv^c`5Ktt4b|&G8!Vr#J!UI~b+>fc zU#fY6WU8XnB_yuPn9cTlcK-m&Q2Glj%Boa26hvvu-#Fe8K*BH|vF=n>HPKns1XJ3r zU(?a)nHT@?zV^n8d*n&L{z?y+My8$KFaxotgY8S4ouB91#LsGAQms5J ze1vh%(?L-#L7)Oa@b(ZFf!-wc48xlj8H^Tn#cHza>6z@OpM-i0q&0G2ZQo|;?4|yT zx)4O9R5%2eOo9*hkaEj~KXL)cM;t-tF5o%lu6Xg9r&mf6RjDP|tfQJer<}R!eXT?eG@TQjZ~5s&Jva@H-yPua4?T)SsW;&1Az-r3{d3 zq5@uc{#2V0f+zN-!Vp%WLN)tc%))la0FrhU^~flS3Pi#|1PNU)J>h-}a*83g4zoPZ zda{b?kY{W%Vli3&II8Px(z4UG_9*YEY0pS==s|M8!TlYQY)5+XB{P}3E9x~#OIBquu&;qID zRa!RfI0n2et*e|TS4DN`*;EmvrdHS$Gt@Fv*4#ArGnzXH!e zv=>r*FaxIr=TQN4c0nvPpva=~VJiYKilm%$+lCkh241wR*yA2;m>*m(qqAnQdobb5M>mcxNn_`F)dgA`63ynsB3oTL@2MkIRD=ptBhEy zsB%JooMUQ`Jp4>gpR{NNW6zxC1l>y*=}r88z+D%QK}}ooQEypkFKL_@Z-)KqD=th| zpU}Sb@Q3qh-*$M3QeHFQoo@J`)R^-pR?dP&I_VffgdX4nVt5f`MU?jy_ZD|!*_r`# zFR88D-Zg6I6f!P%q+3rP^l4Ai2%hh)H{wF}JoKISiA?~Be0Xkb(4d(rthhzT$Z?oY z&Uuv8VWK!}czj9OmWf_qT6p~gv+X`C5DY_txShyl^kZ^j{k2C0gHuwGV}Fm2@0GR; z27H7^v4xcRee&YBV$$(s^G8VG-}BDnBvo;<8a<8LZQY-8y@SxwM_f<%AHIs}y+k@) z7Ew!Qv+`8)Fr%69zmsiSx=v(c`X{cZeuI8Bg>I|+W-m3P{*1YCbONVV-Tfic3Y)Ss zQ0ctyEo%QYM=;}2K|D^9pFQsv@T*_$XtLVx`mN>bWs1;GVQbPM;rus)=?gcF<*obx zS?a+MXnb``)Nqw^%y`)L92E1it~h(ihV9M>7TgDfN1>84>w0qLzx9&sc!HLzc(GZ_ zX9<1e=aEbk7j;`;nU7#ZChYkOQxMqCt()s_QlYn<9l`#gSeeJ##zZZ7!B*nu~ zO8s@}-5&J*>u;S``qt?-XW>5Cf1)-Aei4FnW@IkR79!CIj{G3h)yp7-dx*lFUX^UXn$HRpN9<2 z#D7cFWt;L@5h6FNJvVoX?61~EapjU!>tI^@gH?n`%r@WeL>_-5A^R&BilJ+|kY)>K z_b^>|C?f@j5##99f3 zGRRO9i+H!PfwZos|Af(_5?%P_F2v}uYi(g)HP8e~!0_Bhf$LM@3v$ERFAI4hB*>SX zgh7*oySddMA|svebnritByB1 z;e}|Zoo-}#!tr#BxmRlI{HU8FeMP9g&YIw5V2vP}-NUm#zB~rt;M;5FG6bE7V?IH%temfov6AW=?*>y{8TJcRcVxYs!l!TS2X4fV*=UAo|nI z6Dh^Q7CTLgy~Xe@h#ScX;zT zaNP4C1oPIxCCzUUOmA+3gbGIUzXKb;W+U1IZ&VLZ*|*j`jHFtZKl-(`6GBWmB+uZt z6$6pqBT_kImg`&H_Dlzpd%)C`k(JxE`kkrOXy@c_P8gTMX)JRFge^Bub=53Xz0aLB zBP)iQ3LW&-3U-@W-y3T&r_Q&f?qaK?GLFRKvn991b9(pUCMhtRDXn2ao`vvDsM9#{~JmwWV^pf z8qARuOoXfJEx3Q4KAfTI2Xcje{4X?6zn3p>W0OG2=k&a10(%4<7N+#p4o zKV#LyZ46cD|DRT@MeDBjD?&Zsz2mnj8C9tS)x4}o#a){1DphL9WeSj~t(R-NPc%M_ z{1UiuzF#~{bP(7_9Y$v=nX`(HV2MG)5$`j)rj($@39m2vF7Y-yDrI^?By_s5i4PgG zg+Pp9s_`Z|c|}%eXOX|{5K<&WQaRH%uu3OZl0zIBz%h95VUyRmGs8%`mY=q=rL^mL zw7|{i$vQI6VsZZ5^WFV%ysZY`Et=?gAyZ^cEVQB-c9pQ~^Kv`JN?JcNGhBFdv||Kb z`VN^UZ%hhPTX%Ch;bi}W>{{%Nlc8VNdNa7|WWU*Nj!7UQvp~wN!f1D3OCoHpi9aw# zg7jj*Mdth^A}TEoLs;u#JKimX&4^3%wQm8YRE2Kb=%l_p*ZY5PqS}6L1XMlzpTG9% z(f1r2mrZ;Qw9f=-FYYytbHEJbc~MFB(j+)d@*DqDYj3aFP|A?y1;a^-QJ-*@Jhf|9 z^CXr~X&Dx(o)FUPkRG5r7eJ^bx4Vt!G>jiMSx|eac!xKSv&@D*cmv%1!q?wfTneaD%E zb!ZDU0f0XlwZ)rPvkX}9Zj0RW(qzhWa7F}ODswwboLp$v#OX%K?NBq_UpFImqw4~` zZ>3khFAqmwS?|D+yfH%G&qwXsH#@(N%=epVzt>l&=kqv$0lV9dmVE)=ci@?w@B70M zq2KEz)a_xM-PZsI{=I%{5yP_P=eOT{>ytUu>3RQ*WuF=Hsb6cYfq2Ekf*a3-@z1Qf z$*h$uXhG`K{|1sIOHS$5Z<`=RJ}S198-=RDBWIoSmUT-*)gz4u1~`eURQFAVWg?`=o<3!B}?GG z2mdMAUwCYXhc{13w2mPa0OPi{t$!A`FSXq}R73jt!Y!$R6c`rc;&ZC*5C162bV!=@GJl;|?JmTs2a+opP~60Qm$K}dwsZD z_WNb$EAYl8qUJWAf$gmwv{r<~PFnV$vDrRb5-O13CYICm3U@1ByK~M;Mz0hSq{@M0 z&zGuYQ*j;zMPn_^Y%ktoGs_>})0;0w&{*Q{_EhpvO+=HA4AK3(+X;uElB?_n**3=S z?0*?2_E|GjZI6FBb#G6HXQnJGID`IK=q{Q=3}!#ogg^T*&PwyfS)j64n#qF&BTpgs zYmk46ulRHaq^S_FGGSb`x zjM@IDp4$z1i4+#RUTu_@KJrH+fx4sq1cDE^-zuf(qYL4DeU=mYm(Ul(>9K4g9KIg1W>u|AR#*ENQkRdq<(#4^lj(fXT_@s_*B|5)=k( z&6E^-5yPlMd*ddb+_UD8=hh9Q6ujPiX+<;W_emFZL~gRM+9yQw$CA0ZJ_wp@E=z_19OP2dPn=K>eac*6_#=>J0Buq15DcHJnOxk~A zko2nHS;0$E{^L)!yy0BBL}E!HshnBwqCQ)OoxeM1KADpXQJ4yK5Zn(MXKy!JO+384F_7BzS=_T9sTwf^BTQ2eFPW(wK})QQ^>PBD-Kwv z?gA7DPp8^lewp)f@3h`o)rn-1%i1SPt1$<}`;S5hmXR2X2(cxv4rlo zwZX8%qcvDuKwb@cTD@`h?IlX2E1AE(GIRfWHsL?BO$hp;NE|Cn0whMxfG8mXtd9W4T z2?6$Vn+PA}`oda^Pg*1sjS8V>dMn&BgOeq}?16QQO=%_at{+zbpM$^pP(ov)2e@@g zip+xHKLaExu5b}WVJNT|E^n=6_{HL?8#?Y{rkWoxzOGuL$e=MgAuCS*mIP;ZBG-g| z*k4}B8)8bC@>q(Pu{(=*7zgR*t>iq3SBls{T)1<_XTuSJk6K< z6l`D0$WiyXJt!Folw4=)3R@Jj22}%`dr&507o)`K*mT&rB&Ds6r+yRe+-doF&-rqL zY(5bU7~nIj?MRXw##cRN9G)!FK+>#cF4=W>q8^ad!?~DSsfkbITUb3~`7PA5kdUQ# z^-)`sw(fo2NaE}rdEXxuK0ZQ#FC0 zx-^{<{7Px}gA(%0IM~AX!BpXf(2hhMF6X&x8@Lb8Xdu3th0sE`DYZg^x=U9E{nI0I zHPP!UOf`q1Pw1a9QpH!teca)d69cJ&2E+;q--&iCrQOz!p0pPCAgpQffg%F%YwY4O z*r$@$L(}adS8?&|KJ{X*H?t7v>FYSKhkVSbBML^hUV;%n8CRoRj@@;piu@D z+A|(p61ZcL^_Xc7iN@b(iUUp(twt{;@s@V8MI%LeV|pbz#i0OR*y@-O>4I&zfa&n@ zsN6lSt~aJ$&i6Vw=#;=|@7W(Ry0!k=S!OOVQeRaA`77TP*SqSy#Cp=hFeA6t*Sg>m zY8;F0bs?S{d3Qa{#vH&Oc8+d2HkJUSJyJyZnhk0syQhv>L>s72?i_VGYgky$=2*VD z>L=1&vT|AYjelh{h^%m%F{*!b`!mbgoMdh75-bF1=_t zJ2F0=W;~IMJ1aTi2tnW?6P38j1J4MVB^frAw;P=o%K{Y$wj1A|De>h?*bBsoT~{WoKdeP z87ZuefxVyNs>L{gg~uYoo}Ad(1-90eeX+g{O9{B>5;=i}B7u8T+=IjGqFf9U`uan5 znD(BLVPM!ZU`!^~F$ur>mBn1e&fpG#J!8eZY*Y|5lFT_06^Iv!LKvxXE7zP++OLEj zt}y)p@2#S{%c+n!mpz5W!*Jv?w+!W;)xZ1C%Bg7> z9xH2C<8B79ioT42)Qr$CQ@@GDpMSTlpTtt-o^5U$H9)-y?cv<_p$ScM880<@V%gfrAv)wd2UN-Q$;%fX4 zpJ7?!N~ZzK`WY8trOB7z$^5MM@0Vvm(6y@ zCJ{Y`h?3rufQTEf$MYKwh&yIvxqB0yu|ru~K8=omh)SA_=YAdR4%Wvo#prS2*}DGm zG)&NXCoeL=Cm1~?Xb;h7DoJ8oP4!U(Q>@N-OwcKS6&^u*l#VxlTq4-5i^kWk5POWW zX&|H#OWn&U*QV5Mm$gMZ(+gc?q}|qw##H)&{9u~*dR1h#kAenv)OZR*N-W~sJr8(9 z=kfj@&Kb^a2EW!2sLfkNNA6^03mtC@F1IH7+d+2Zeg+gYg?-`Vm+(Ajx@ zCJ?wHQgM>H<crRa&zy4&GgynZ~3`eu` zC^8(X5S6$^bw7>jpPQogE+;@Ko1NF}!(qu2I?}Xs<XXnYhfY>F9-WFem z5K?kRr3~7+i8#I07VkacNM`4i|8PLkB#m!0%)1OSA{lnxE}`nyJMqpO8k$B)6!0M` z5Z;BnTwUbk6yO8N%FX&1Cst2?4?dBLaMaXQN501Hj`Z9Zs#m+4hTZfq$e;NSk0&yA zk5hyOZ~WZ69o_?JH+FT|vh0W7r*9~oLrejojHpcG@$Aew%3XZ#uLauU)7h>V6gDMB zI!#^Jp4uFCEEZkX6_36-oWM>*(xtEy4m-vuyVR3&#;)y(sxJrq*-cjK@^=JWuqIm+ zrX&zTY)lO=<=1u54xc6!#QD30f!d}34of5djeNWRmk*>fsG$EQVNylp17QTdKPMYw zO1&WS(wGHlvuac7_6yG*lOz(3C4<)CRD(k%wu^u zta%2BIO_|dG~ zwuNuY7!as901bHID3vUZUUW{9zQzAGbGZ1r20jmbo2<2~hgJ}mX7JNJqbWG2u~SYy z6pn-_mMV8-y0bO#UbFeIrl#n&n37%U4!CB^C2rn3MT)DU{97+8m`t2nyA)~;ng~+Odk!{#ABr)-&$aE(r210dm)M{LXiMrfGaE1Ik`&312Lc;0Sw zQw-Zt@lW2ReptkDDc}UA*%^=BPH&mD?GTeZTNUmZszgw1Lh?6FT3${U*h)7^B2zi(*CQ;Dy_amsxm#i%Ug$ES-%911^HKj*hH#WtwK4 zt>7d3gYkHwkwvdju;mdP7Kjqbf0Bh>7I~rl6DmMCA?~bYhjmzT#iB$c?!&Tx3l1fA zbk+d62A{{>a(CZwQ5wZbbV#y>zWLiKflzn6Z%S-5|9cOv$zEm0W1mtgF@Y`Mn1`bY zbH?tbEQjljEV9m`dYW|ej98o~E*!J0*W|1&X3`GCPQS~mQ-kO&8EY6ZrD>2=Y4SA$ zZ8LAhI3-IbptmEyndBq-ai*FVwVl4{nyl|IMjI-K<}qtfc+6L^B$=kDJ{EkH0_=>( zEOIv0?cw>#h*KFk*K>x2NJJvxapDXB_K3QEj(M#5nWgzkP6!5vM)>Fmrz(=M)5AB_ zrp&YM)V}sHTH7}(`$pD9i+QepBYU9L7F^1_GnH>dCEj$qAVAO;CzpTF^CoNGW#oJP zp~#0Xx)a0@4yZ_sBG%wnX5jt*#z~ZKE_3^?ejF!9r=hbMLD)9pQ0_R*8?E!TuW>fx zibJgJa7ltmOe#hhcSmYFMEN!^^#fUD75>d$cJT8`v#~0+O;)!{-HpWBtWMDU;f6Fl#@4uBwBXKCav z4(thnBZ67vc?teV(dJnLk=zQv;^&LOrI~N>6wS8UHn`{yxo%rHQ;#`n-+1y!DIQOu zz$&m;^rD5{##dK!Qx#0;9-3t_tgK9BGzRaL%{Xvin93UFx$3sm1@%w z)2(&$zJQm|ZggHO3%&5$IeO`w)15d+f=2H4{5{GN+W<+Y8*Ih46n$O^AQerg5d4Ez zn^3pv_-){Z9^Cu#X=$1O-tcP}BH}cW^kUxN%(IIo$(8 z;V1YdYlDgiyS5AR!;elf_zyor>&2fhW4q9LVZo_s)G8w3-W7I|pgu}+k;;@=Lx9Rx zKmJUx;c0{8n!aYy(j=V-#F16)rw~n^_suY`GK{U1XorJrke`h;xPo59;Rg*kNfz_* zdeVX55|v2WZmruQ+fzizyiKngoUZMC3;PtK5sue}PS9pu_;}Xkgy3LxyA$-9;l1iD z$W$yQ(8g`!1mV_hf5z@qzzKVSf!v;B70)$f7i>!MuDiv~hJ_}zbnNi$zBL5wD%bP{2ppfMe-!aoIBWgR#$ zoo_xTir}HkIf;Hlem(Ttt?lyGxRQv{N$Bqg4*um;2eZ+oZ6CzK?6s);Ri|6hC}C4b zjUhKCubqkQNs8r=9mB|cpJKs354o2;)?&QG{;FW%wo7O-0kVR_r9R&0dmxKZd)Mh| z)9vQ1&7#luXY0PN5R31ReRc8}xLXfBJAF}oF=7+wst`2gN{;!c4Yo`SK>KQ5l!H=} zX?%+)RLZ81jlsce##47h58tJD92)HJ!o-B&k~_7vuc?dN8#ee)0*8s)$ac@?QC8bD z#mY8>4rirxQvH@16qL$j67f8omLrkH?v1v9?9r5u`vf*zi+a_gEbTs@h8L!8GP~IT zJf8hl8GB_Se)y6r>P@fe1&Jt*#1vT5RPm9y(t`@`sVqKTk)3W(O#3K|?`r{3P)6fv zP!uY1Cr>X^Br`J4hM`g{WWc>@yD>JV?NG!QJX((@otRXXZ}@#|;Jqen*)b9k6X(yvEFbol)i<}qvY9sk%`8Zee z+^{{PO4F1{=WfREs0zW{6H*^d)pwhbp>bQivKi1w>`uAye#H->K+f~Xc}F1 zT*f1F9OtVl%wvHUudmJjaT+rfzGZU7Q>oMyXh*4To8~Py>ud(`so6B9(}i#76qQyE zF8DiBFfJK)&utvot+zH`)b{xLy&IU~GJ?2z3KQTom2{;0;aEgdcEtuSaDB`$y?b9=Mfjr9yKb#39xL{hk8$nG$L#Z@ zjb0TvdaojxLh=Y6YbvieLRW!b$RoWtD1CkI=_E?tNdgb}W$sNs*JYWJO|ARNz{kAX zG%Zw=Oku&7Z4i@J&gDI>{Sp+h0dQl=i-Vn?#$;A`|x)8E;$)6KEN5~o3G zeP}2lmGN$Vho&iyCQ;|W3AzypzfqD;mTD|?1~J5r>5k^W)RdkUqtf^v2&%#zx+oym*LGfI+CHU*g$L0Oc#mkJ{( zTzR^%LnGvX4JT#G3|>{|8#M6ic;XbO4rJ#MYO+W*vh%2hD{IGR-ekpLhxgEUgN{t) z8!*Md$R<#(*l`>4J`db--Du2(_SL<>Q&T7|@+6A+ND|<&FWcShh;3~1b9;B9gpw1u z&T!khirnWT++kURiYmY;e>Vi|`EgFtGh!@B?f$;--F$SkgxgmHWOLmX3)KD2d}{~B z@C1{fp{L6*bpl7dyW{|b&=IUxrN%)y&k)62&?!{Kt)9b3Lh~7+C(EAvJo+fcBoinu zFgV}Y$foXQVKBmi!>=W8PScQIJdmv3qM-NMyIJBmjp+GU;^o-u?N7goQD*qL*XJ~p z^G2PD!M5z4ig&f?x_#f6zXpcgLO7-rzUPkXNyl%lJ-O$&$js*%qy%@T2Y)!C(;-HL zY%Za*A2_!1Z5lI&i_b@jbOHt_qBtJwR%sfYcVt<7z%(!>t+3q^Qyz`Z+K#}L;pcod zN-W8s7pq5Bs%9M8QS)M$Hi8e0LHZ0`u^*kEiofLN26h?JcW=K*@hiqKiP@r9k$F*; z_|WEN;R7%1+ymFk$*ZqhZC~pWm!RFpo=F<YIA}Z6^?NIi$ZAKq#t1^#1 zhSiF4%A8xX!zp1hMwxU^>&-UsO^StYO?ios$@!)9C%8=EH@bg{?lu03h0|P`EPn@H zU|noBr6yV1Vk!9;fgR?~JwwG~MJEt{VcCld_gL1g77Wk zq6%j^9QokTH1TZz6{F6sfy-RWEbn}D>S>g4$;6?#Y668al=yJ^_)iHI^{JA_Q|S&& zdHG5db6n{ZLTtM&%bi93NRp@Nuj2^pZZy(k;WTha(Jc*K1Y{UWaIdHTSmJj^Sxlm) zCs@oze5bmA*II*9fsp^+H`_bt7h;iQTuh(|1wuy%Se%W^&DLP1dhZSX4mV@N$KJGG zcm^v;S$uww-hC;Lf!oSr_tAMk0|)4U1?{MAm%4c%c?LhR0Y}y|PQQqVpVxvebNb`k zpWgm525R`^>yyIj&qz|U*=|sktTs)v*1nx`agxMz0*9Q4VkLxAPy3fY{2N)7eQsJD zn#!@9<6j+BDg}4Z1lsGO82;n5qf<`s1O4SRh51CmWSY30hEqLy|Iq$ZeS?StTU|;YZky(%L8(#h!`*A&cUo7+& z1iqj#S<_@&lEG)UV28i6+o+nxtPbs4`)>uncgs2(__muZsrzbQN@v<0@w!bkE_ z8|+zuleXMerrE5EwjytS`QfK8$Ya(N`0E(H!@4n*X-)NH`O1a8p08!~l(F-mFo13s zjCSF4c051dWEEVNHp^dT3*4k}T+BJFVco4M+wW)f_$-K7_*35~RvIhkiG707yoZ4P zPC=pwubRLrGC0v$8eg$VIIC+j;S-a zzVlRE@hM17?SNkPif#cqSgX%CaidE3g)6E=>@0y4oJ$CW&l@qvD z1qJWnip#s(#(JkDRm%A!TwO*bPuNA0yS+yDN|H@OFhoR(38(tsH(6(ETqRCUL;Trx zO^?&>aPE4i62d5IG&*QqOWs}PwHvaTmzsQAcSX1L0$7p=;f_sCfDKtzPict+W#Juu zOo+H-B%K?{zp*Q#zS^zSAbuJaXHOo2#*SJik!``R4ZF|Jg>BFqFXVhZJ)C4-|a3n@1+#Nh%f9hV!Y`-`5UelKnM}H>4 zlM5NSnvTEG>jHmvuJ_CqMcee7eXHYs1>1WY&+j%Zcx#_r(kPw6E?Rr4Qa8{t+d>4f zx4;iMMuCs0<6q&}E|wiW)mmS5;krsG7LS6Tp&}IG;mCakKSA8$hyeViwdv~`CLqo=po}kFnAcEN;0k9=Q}}mlB1D>mZ;wP!D#j9c14PqY zb83gx!thzY9a)+t37bF-3kUPS<-6nxHF}d34c>=(Q?!NYOy%1#D&cfVTp9F03dY#t z6jP_{(>MBijrP^R_i73J*BX9F`O&|zeraR86eFeZ=t<|n845R4Ays361_CN{OXgc# z?xFKFoSpl1!k&?0igGv&gZERc0sx$dSAoGDmo?hE1{xe66_XH?jH!sF`#>B{zOSt2 zC%PPsF%{fmZQtg_a1K6TE%C9~?-w4*P=im>V)GtWKDweD!hhiOm7M^`n%2oqrNeGp ztB;6DTKHC3-gnsckuCH;dTeHNeJ8+PWH~W?x9L02o}e@p@}-Ny?_qpAQZgMWn(S`M zeHWwM;_ew0rs4!wBb<}@G!cC-+f8XCMdYqC?@?{Z!u0s6;m7S2neFbS!4L9{UMi_G zD;|oQ1GwNgzHn<=WV*y9S#ZqmFHg*l`{?Z8C7Mh@h#``a(vkey5nH9372I#zyWlp3 zy~e1!5IHxmo^t!oLYF1x&^(R)k`(LS;dXi3!oH%Hd{o5rC;0wdW2%2?{SE)pNN{IY zX*j4Dm+ld=Yp8|{i?^vU5i#8L{!+2NdqSrY=AKSEL01)v_r=mTw_e7$HZ^3sLe2N9 zN8m4cR{zt~1*x)H_mBS7&0`k!YFj~*l(`4UPB1-YdEZz5-cpjrN!Xa86yvOyV)Fck zVv^I4_u8T#sDyJd)d5?c`8UOf+5yt#IfS##mPeG1jWq1YEHH`tZQB(Uwt0ERh*G7J z*?C^+8lmrh{O*UhR|DSD@ACSrM8p%3UOfE#-2Omm!srD0p23riMRKXwxh19Xa(kXa zK(li<{FChHm%e$_UL@2bN!3Nm`8QIVq3&U;ApV_mGL<;mbMD%OwnNyqu1Yb|x;hw< zm+MnRV%Izef5=5~OykRZ%<|ZWGt`E?%)i2Qs@zh1!8qPgEU9x>=qalu9(x{hqB5b* zszxA~1WOc4E@vNbPtE!Cu)oYi99bQPa68-V{u+Ai9JD?KAR=#Cy~%JK-_ zeEgwn;TCNUh7^tEm`>1+l*jQDQ&gb9#d*&46XPjU!;{&~7J37}d{jX6f>b2f#fxen z1^->w-l5_&iWBGV&=669AIL9O3pc0dhew$3Zo+8lrLD7fbmB!qMwf#r+i2}!DT8vJ zM!$g#d4z{cg=qv*ENeFI)`u~ylZ|#j6*WNGsRdBVp{cOpu^I_%L7f#zryc65K ze8`$><(U^CS)vew04D&doB8y+MuF6^K#77pHBjhxzHzriNu+)pRpa;{#&QG&b=j)$%5Ltx}z%==~tQSR<{RJkk@=aCLVJC07E3kR(LI_SwY~*8{JUk+g11eRV z#HR;}eBoKP*~XP+(d}A)ku_no>NxYCU1p0Mrg-pbvN9I+7}K&wn0IB$Mz6IOL#*m9 z+q(`oOg#r5g-FBVJExw7d66xzi*nVwnqjjTW-Y;hl+QpM5`^abTlYms{iV3+^~YdJ zxgU!hM10VvLrYjIE$KXF@R%~uL~;!9L#uppjULT~B0?iYk998E@i?ZO7Qx$K|e@ywJmrF0eMsH;$DKc=1SgB_)PaD9I zc!~T);21)1Cb~;5MR0Nb`WJ!Y7{SdzfEVPiEfNb1Rl)lG9B-Z9fB7$3PLFt1gD`P^XNn)A_rZ5 zQY374a56F*@1D3LSLWNisoQ0}?FXpb26otPU3r7>pcJ7mGhI;-?|3L1?<~6`cJEO1 zz}8KE6aP?%`bQkHq83;myPR0wP0$-fb22 zNRsJz@u9Q#@%g~D_MiH5v2vFU+-Cka++|laL@3vLsNz)Z4nmf8b8PASd(o(`ShjMo zb;u!HOk=nfGsr|9m<}AD=P~`|x1T9;qO&Lp5JriN6J1`{jenuAAfvc#AnZQDT3e(W zqJ*?msq~9*nP4E4!=l(+2OAV~e}%w8A%`u=B{g(0q~BlWZA%C6S)CTMiT%7Gm7EwaZKTm##;wt3e%bc2=N)+C9Zm#Ntr72X$%`~T|# z8tNQ~Pv351YJA-0kH!_KHmr8bE)2*Xejq~88tUEUq}BMLM?si)pX=Rd`>|bV9ndp(4iY>w=DB^2N z;s`ymzF>FIX*+KC#deBXYHixPf~Yb)F6VzF7ZhNdo8ogoR=j~RzMD{3Up`NGIRoWJ zi+GysMKlAwn0u35HTCA1BK!Nbj}a9W14#xe(ZZ;BW&NdC563N-YvVSxzpLP*n<9wy z`2Q^PrYZbmk-??fpHE5qu^uiH17klU;npQeoGj%ICa_gz&$iXWo};|o7R|kjbYe#_ z;01Atl#gP@$bi4pxMi0W)xYm_f7-40jQoeXI$Q3$dRyl0=BTSx*ZxC;_W8c?3dn;+ zD;)`86mlSWaKP9#IW)#}b>;kVT2!q&`nbr9F3^e=71N<*gc+DcZ>o#yBRlic>~FLa1p%|;?_IpHSZ@=KvCzX zpOGrEQc6R6OzN7SknJ{x4tOIyMo;UuA$OVI6y5$PQMPfLMU$iJu+R*a4bOmGrnwww zZMtLE_f+^`ysei7Y)b75_;-SH$mkhG?HtC^q2}vjooDE+inVJy@9SsnzU|xwqVQ#L z1-h%?zYZ1(RHB{hWc_IB3zm?Xz~vuHN?Bb5XWMXs&s@CYK^T6;JvP(!*OC58UW% ztnNAI<1x3o%p2S`7j0`uiybVmk#eYX)3a+_*=xJ|@T|S|Zb%04Tc5@}WKBHNK7;wm z73*tk(+)~25fzI_j3wkR$-sJzdoE;lnQiia!%FMk(aaZB-E90Xuft}A)LIVho$1dy zQ)|S4Wc$m=`A;F9B3f2tZl-j!jUo z6?C8=)aFi683+B6%t&5H&-OQk5aGdWVtPY;RY2P>lc zeocRN23i<**fMWzb_Q8(FgI-nwzjq1u33QWbZA?5n=RaXu-5yoCJUdzX>H0#Nzw<% zHKCdhc%c8;ukq^wYRV-Dyd;0KG0i9wQTL?wQF`Xq>ukASmhQrzied4k>-^uBIdnnf z!{Z|F#O)U!r$4Q#pB_8-+lP-Iei=g6e-aC)Xk;EZK_hYD!}2h4=MC$o=o)A)YPzB< z{?i|eU-Z*IKy|Zd_Vt&zIi4%vKMjtI(t(s&z4gZB*(|T?rT>K%^}5No*ZT`-5zEU9 z9}AQ)8v7}~32hQz*WhAST~X~|OJ(?Q$fiMenfF7>&__|``#)tzyF~^$%;ud5`NPLw z#o+M@pTmMU+7$T5A@1vpm%D8iMsBw*?=tTytD(Yq3uj;(;4UMEjF5NJJ7pvWxXsmu4|6Q`loDDtX3Z0 z(lxNMuFUeL!#B+b_IB=UJAQjR5R3LboglW`EQ&HX;AmMrtrDH$K>MFXp8W`g4^Y->vTvFW1_}#UZ@zU1_ksX!ojh(CP3-+|;J#<^2+5n2 z$!9_^8y~-KcI#~AJfW3?ilu+GVb8%a-2?GXzSv`KWMwicWSLkMtVb9(-j^Y)>Mq;6 z4mV1X{!A61B-+HU-G?ZPD%;fEwQKtNNU`jPK5o%o+|yS$&V8V5r{e-*-}Lbc!mMCJ zcrX3)-1%GO!465cDX`6_GOiU2fG6KxAP5&WKH>NXSG_LxORT8K475xHvC5EW*>VU~ zC`Q)14h~Rk+^B_Z95YxOlL;<)d|L%vc#X@K_a_%Y`}K2i5M{eBM1!+qjtkAr4DPj{ z;T0b#28v*4t0w>CpL4sfRz6g8FX$;L8yF0z}tDP6|Y z@2U<)r4c}*jA<5ag1iR}BPC`m18?N1T_s3~P$A-((0i0x=fCG_0=C6scUY3tvCL=`Xg?Xs?$RTv_~X;KDu-KSp$09W3`&%k|)G(RPnVlY%TgZz{xT1VZAeY^Fq z)rBV9jjQUWxpvq%F{+fEK_Wvy2uWg?zRR0(@8jOOmwH*b9Gz}8x0D(hGp2FA!*@5( zd-(2fxPrOHXxnrTr>aTwkzC>Ro+%rilRAg54zp zy&D%$3@x*+*c`@aiw)$lR`oKhG&&5)vv0q==s)f4^;qEk;c`>2Kx1SX0(ETNwJz#qH|7R&Jt8P;beg)><~!k~y?_h2SEVn~q}Y zFEVgo`#}D##Tng7oq&+eA)KcW&PU_JTZD);(E_JgsP9s$xQK>@4>+Nn1t6R#J`eqQ zBl+p8YhvdhpTn+2W<`8`&Uc5+RQJa>iWZ%HY3(g6ea}!(W@S{x^T_G@zy9TtqMzR2 zGjI?4xv2P2c*lyNXElcrMd42mYEGSho)vmh^Oy?;kNp%Wtj;aa{6xs@auz)$-wyG`Zy+M=MnAKx)%lgy* zyUjL5`8#ax>%zj@#<^@&xDFjQ?{>3rEAvM!hOs9>$_FzKX(JpbTD$sw2f|W|L(7U z`8oT-ZHtwI-NMISpR0V?g+49#5q0yWf5`eGtGt8X`bU-7()s@>cb@kWmWufYtX&1m zH}Z1d7VQND6dV8ExXGIWURD3~?z8_8wb?&BB8W>|uhRGrBhAkj*{|A?A1<=LYHGjf z|MLrcPSOAKOJr{wLm7YS$3CZ*J%KJUNDGnZ2D$G_{|15H-lo_T>n6V`R@hEsX1Sfi zs92Edv(eO01QO~dB&+E>REh-i|Mya2Q(5k=VH0uksd8^@lA1U?x9lJ}ce~fUbxVvL z65i_;(ZQ5N{F|OpbOQaBQCWX-u)AtspQ%Em`(Uq-AyB^O2MBYBu$ z?{*7V=w7Tb_9$tt2vf1cG7+8!3p~kl=YPnwEHGMyN`zQ%f%4?NcAD7aEHLhCCc-ll zR8uD7VF9eYgqfbA`uDCEA!xmmwLQwR2d!>oz?fE=%%ZKyzfwC890YFVzVqZZ-nhd4 z_I{8Kux)CX)jJ5(I^>--O2R6t^cxD9;w0YsRJt2~Qm$a<^lp<~?>7D@U0&CXf9;;z zx~}q7?Qw65D)SF@ONkxmPLV9t9l6$z%kC=xGslCJSZ2}%?cpj zTaX4@n|d8%|5(hMw-}RZ4thF*QqOh>t*6=e7u(*;s(|8Zs0ZTCq)=-N808G~Ta+Sk zed9R5NfnByX6cs|pkG1=5uG}^-AEsX!hm0WmE|i?lCP`w<(p~Vji2(TOUienXU9xD z-oIlPa%J~G9g=8(Z=HJ^MTsqCAGOD(o-w(=$v@xj8l2Ew>Hpo} zu+BQ=(v46uF2-@o1eT4Ui+;Ix!J~)SxDAG=*!X*uvS_2v9h;)MLRmrsfoG;?kQjt^ ztbs+Kca-WTyUEwy(s*C!gk`cgt&6RW955AF$8zwjX4J4*BHT&)w#)BJggS|Fl-Jsjf!$AIj4&wQONIOt1@eau* zR7FdBylua}smtBQ{WmDE{}QISeIWkP zb3}KoF(&EdQ!nK?iNb&U^!<+?hUonxUu3_!wnG9<$mnHu5879|%74>;@7BQxr$>-n zJ{`_ZhaizEo{T&}a94K4whU(}v=wjMs>rMV&hpj2cWoEcg0WMjOo^lolW-PaJ$^n` z{4|MBDq$mq`tCq3`apAY_ew8%VH0$SWPGRRbBrcb*9j&Ut-0Og%Uyn4_tLm7FDh?v zTOaK0mZ9V7@N@9hdl*;Vtxmd+k!muqx8MObn77}x*zkbbU&^uwpl7H|+(Eg?%R4+v zAJG)c`dE&;DtE;yh~VGOK;@gN2(4HB=MIYaU$h5N^<(Q?ndRm7I?p!6vZ>c)y?`yQ zmo)p=$8Uc4>m~i~`;R=T>Qm-F{gE>N$?(OOSFWoMpZxM7`=4DNs!cxVyvSU>yzZZr zKl6~ios6LL>02oQL3P2X(khzF`JAuUt_dE{9oV)&Hy8lAf^rUHRgfapGS2F7N#p9!$udyM6MtXOdhAuWyG zqKV)K@K!w}pwq)h)1I4GAl@V1+hiY%mJO;|mmTu{GJswP6_aK(Taj^F&5Z zsjt+zE#J=#j0uDTV?GYEigFf(=o*jFT^_xb>pe8)R4wFSixyi^OH&E8kr^~C!g^gA zKP?Z$8druKYQAw5IHnF=k(g@=i}GdwOG!O&MqcN;HXMtGjWZ>Tp<@F@2vu{~h(Lt4 zhQ-6YZ4D(C2AP??|t;?g*%1_JVUWxqvT z+UJx6^~`jYrWm7~$JbGQhPg~nYPl=H!v|2kJkb~JmtVUexbOdVk%>#4t@1s#y1%hZ zpIh_CU#1oQKqMxvID7=QE_chig_E&#O<2U$L6a6PJWL2nZ}-`s-MM2*(R9D@HLf-F7+f#y=9bu+C1A-bOWG3wMKBVVnf=@~`Q>eI z+C<7Uf*2#BnU6$>1t|$3{Hrees;Lp)1S7E5jzAgQ&nKSFEo) zkgduqbkUgi-l3YAdK+I@7DCxTFc$31`xAEtcZC<1H0d|$`9In)8gnuJlKbHJr=PvI z?hOnwjL?;S^f#TVJ0v2 z`eg)$oPkYU(N0WK(uuvQuRw`svOeZm{8MQ)1l~~Tix~waI?OmNQ6jotA~BqT8LG@1nC7lu&(KQ)q7|D~3Iwo{ z4+MqOQfnRS*m{EXIN#p8sri-13~XYR5rdr6!{ z>CnaQz);R1co*KwvL_j?9sz_2DTHGHS{q2WBp;&t!%|TeYrH!W^G|uR+hq9?X1_E4 z6Pr38?%{gh3J|Q}j4quX*D2|lckXj{xpG@*14c0w06Ik?Dt&VR*EK~y?u*g980UNr z#RTt-z)s7TQbO#92+CnQTKadGVAj~dq~&2+qu2ZM&wEvr7*mp=?3n!RC8XAr=yO>e zB}=wVv4J$?F6@hiGOTMlboD%_l;7s9(hs#WLy3ts5#1wN=F1MF)hTP|u-i##Duo_O zUOi@X2+_LEdyPSEZ&h4f6)^dRt*u-$O4ST9{#j`K8qATz0dDKI>tk%hmAD|#q2{39 zM5U(c8G>DtSM8N+LIp1Gg}aK)W>-P~Wl?37`{aF2Yz(<35**DLFl5@;cvkr+6w|n% z3Vf6)b?bF+jXp}q_hHpV>yCw1WE>e+mPQpX6B#goy_EhUj0blQgt**69S9jAXy=nW zVfl6+%V|5*fCAt1_o@zdwc9L;G8_-fy1^ECbEWJYc3umjn3VCpX84{M^H|hcBIW_d zST&H@-+0>zz07s*AhxdfkGFqpy#@X(uyEWZUjp^cp;9V->h+WJi?Xio#4I)s^&n6o zqeMjq1=7*5;Dk#S9rZoZI&yllyY5521uctae*n7JXMcsqZd`{>%wAAM#O3)Ln5MEN z%VX4ZV4Uh1jJVgEQ7O&k`35)w%7PmZSRO~Q!@9fPkYcX8kb1W_KLnhJUOG;NXy zKyP|J;CZF#Ve~5{r&J_;`F1eGCE%OT4To6kd{!0RUFK`1vd=a7f^FWU#w> zi;SGoDrF-RoDmU~YdwNPtgE1`p2HXhS5h(>H?Hnh9ATPE7>y#z=ovKl^bq3#+;b2& zwU6F#Bb-Ht52u8Y=v1}~g=%=p2*t;__dQ@M&H1<3bV@dYNirZk6WAQxkJ8<^5*Z&s zv?kHfi-h=qgp-Whj$8G+M?3#A`^nEm<6k&7GXfPS!DD7La+C?*N#~C`&gm&yhpEmM zZ_}doZ#NbjxJZr`r<&8~>cYRcO%7WWTvPaCpu2AT^M>Zd24i<(n8zjkk_-`Bl5yId z_|Ywzy!}1T{^33s%l<*r04TWR#FA)gF|5k?rd-z7b(#IL_3k|6fWIx;x>=!1-Ya4S z*XfU2K$|HnfEomrAAlXDs*!Q>POJvy36VS}Dv6TOpsVLpUlM{^{o|3`kU6nD6X?W%*T5l!Ii3H@fxh_{65}uF>6NjA`gfP5pTE z!3^_P0Xt!U2$Q}-F$!wBsZYI!-FHk3dxd$sgltpRE^}KuN)Q@Ra-T^!;5`t7c9QC*` zYGvrTTh#Dxay<}>s#={U21?VDfcEsvoIJEF)0T>;qE!zqL}g{&q8ltD3I^7bm)i+q zaVjpi^N3J()zq8pCU5gz9~zrqFNqW){h*6$PKhP)Y<z-M&4gx>~!c2yxh=s+*1fwRMGSFW@3uUi-Lt8A7x+-?w4q6DWP;RbK8PWc%Wq zzkIyNcHi-ftgGRBTz~lM1$0`u23oD^c39%O))ejUJ~pfyY}sc+C4E}zey%Eq|F(qpjJ9exopSbjrrtHt z_l$pAWdF*mJxG#o{`(EyA=ww39Q0?xZz9WAy(Rna;9ag=*&XhV+qDAspYFjQ`x4=s z?ELNQlX;U3$E@eR$-3*t#ZRV(@3Jp1Qagjr-_kmnx5wMvTm9R^2V|WqD*yKQ_|35`4bk(}M##mdhZ$DIzG(#Yg7&07`-}X_q&VSog*wkBR$7mc|^_44_N14H7c9t1J)d`C$+HF%qQUl+(4X04x zN?#_|JN=x+mClZg`c%fW+IQWTLZUSf3gn)Lg!cgdEeE` z0-GHgm@CyYXjKVwZtCP67f@cnOet(!3xgj;b(NzNLAFH3y^+L_3FdFN6FJA#z6F!Q z7GP^8ukJw=4-R1x6{PQfpO}W8ldxmL#zOpg?u8=TIU``y8>)Z#`HE3%=o9=_2 zE^P4tWz^iQRZc#4>|<+K;5AIn6Uz^6*ggtC2FqW~JUWCwt{!vv>P6|Y@8B%iqX4Cp zR>PeKx1h4TgDs%`^lSFnr9V3>gi#q+Lc?fW^8N?ZW*8a1+SX0|$p_Jm1J&szLLY>A z2a3<4v&RU*hp(_}mp5IusjH%^8+-=E43)~f{ZWW0(*eDwO0(fi$KL{?AM>UO&R_P8 zx2GFeX^pT2RZ;cUTS}0&pk^S(XNU8{1$1-oeCP}s{I`X)tDe3IxGoQf-iz(FuJJf~U-VE9 z_e|k|b^kTxZWA6@FZ{b;htcWrw~XXbE$k#24@VWRVSH1UH@k9&tsN{drRi^Z7XD=# zDTdp@Ucxj~_U_N%!Es&WP(`};6=4hu8)n6r=IKY42h8J+=f{}a&Q*0=v{T_6E$pVn z8IEXaP6#kQ;CvtMJ%-rwcAEJBh|lAG_3&Qk6+eR4cJ(G-Vw=tj=)?>H8YoJM6T>Lw zuAd_J!D+XLNpv62K;ZtT?5f=Pa0Z^;(nE!U^O_{N<&D!}%%=Q9~>!?mar*xb^4GCl%nxBh?E^=9wwE7` zHrvMag~tCzk5BlRUnRWn78W7!;m+R6+lJ3;x2c=v8eailgVf6moXLz@F8N?iCPpf| zJQg|dX?$BNXVIAEu_-MF=f0xYLQW-zHG+B9t4PC&I*bHO`bCU>eFYz$+}qq;1t?co zcyCJIuCO>)Pii`){a*9y1g6`*i-*Y zVQ%G<_i6m+4svgQ3c0d7=O(MG5?kOWEs^JLF_}Qf(6b*7`~DZ$x4SKL6}O>%u39~M zFCcsyB&aMWs8B|{=m-c?F&@&tcMUchWy%;fi=kX9^t+>3a}NQ+`6F<)@z?)?4#su?pP|e?YV8`_52vB4zr)y}#ZR zwQSf5p8)Um2Rhx5HfEPo)+-$sN%Op5fAeBdb=Vu$12A)L)_ z>wgK^w#=8H>xQj21XAfFs&=0kzc4y^LZfJaU%9NW>oA;AwHv5st+E^MCLM7?A?s@> zlQk~)e$%EXe@AJhT*>$vinJ&Tp^e}t;+X-;RaabkCl zsX9^b9wrLCg9j7cZ5BltUKp%cL1vpqDQMG3zSqo?B;#Xh^qm%H8On7tcbQTwjpr{>06W%5^MUsX}(9ugBE_@xZucDQ+pArLwZseym{M=MJ6wh5X371}uQyxQflnG1 z4t_?)PZMM3px*>4=gOYjZPiPIpwGE!#e|YGC{^{5;kj|e?=ZtzR2a#Hh>*^pfFWQ> zH97YxEbFkq86&nJrk1+@8PcNXr(!mFxvkq`0!dK`gFWf{E}1s+?4&4AY+MU@wLtRz zBs9v9o)ZD-wbVCx08S;@xr4Bea9%vH(qrGoU_AqQXNQClk>m~8haemjJI*G5XuLX( zdgZGX${n%Z7ZQ99(MYH^igUf8JC6Q;*04tl8$WM_W(MBuf#3OV(JepMcGp+|&Y(bb z=-wD%fJcDGdl9Qi8m6h8MXJ@GJZCFQ+yZr0Ix+Lk1p}HvOTB z6ypleavt51oRhPA)9=fp3qI9MNh*a)`Tm0iD9 zc9XZQze`u{bH)jLlXc_ZYqEupValKxf1OwU?SztkP)VGDs?#BCeYMN`0{ZTMcK(4~ zeg8dx9z9P#PkccCYCpNYam^=JtgkzG?$ z(yypyf>J}|t8S2?iSbS+vs5i@YU71#`PthP}hML zh`iZnVMZ6V$r}Ggo`DQJ)LxkwOBXZ9(3Zy1CmHTi&Cl;+nwX4`ze|l(Gbq;dd5c%y zr64pDUQzA6q>~F%-#=@?(>KpU@9(S4^LTS&HqCI<@;S7Og6hoqEbC@_U6-{t%g1|E zkV=IcO~gD3aG(cuc196)TyIN~iOU;Hmvo@1?mw^gLEC zaIMasb=lVC9((Ah*jyHEa(@2F*|=q~ExNpOxP@#DlaO1VLk@?NvxRK8OuxuN~jMxM<7-=^-akq#nBMePjsf*s88T%6st z5B?T)TeRqfP=jI4Knmla>V9r4(bdgy7Z_G}Y!0Ek5R8g*J(;flTrBTYXeL};HrD8Q z%<*ci`MLeDfvb-;{0}V)Z0S>K>?|ZU`}6hO#(;+#-GYQBPPxpmKVu#q4+w^z>+#&= zO#xjUi0?_A{@DD%2+yry+~n;s-HjQbO@D&m5O17Y+rM#T4&r-#i&g8I4!O^2X3;4J zNz`*L#P-27$m4b4xI565cTs1u`kiS$d_Dg3^Bq;RC4EY%P&3G)_Syq4)Oji@@IhVU z7LET`of%@8kw`u%ge_%H6_3b@?844!JHx>x*POuYWu0Q|zgJfQ-PAGi0{(ZIW9oDSPA#?8EU%1Xr zX$gONZr=TpV}L$<{8bE^6MXLd$p``y@x#|%Tl~jm`4UP|Z7<2Z@+Ts;(G04r=5r8m z5S+pe-$7hAMN^bTJGh|Yo%mR(p#38KHX17F;QHwL-Vk@)Z0gEon};VnB4P}r;%LmG z(z%sD?#2wAeY>{LwtQODO_k-L#M>(=oYX+ZIr_vs%NZ=5@P7>DYQXRJM7Q~N4`sr7 zhwTQlgt9qkRfis@q4cyT)Nb;!yu7NL%iw49E=OCet3!K5dAsce89-<;RP)$qCzu)9 z2(UX4gL^I%;$3qCeNFAY?c4_VU4g1*=!)qVd{mw5<8aKYwWzhAP@TScW|{Uk|8sC* zK&EbMPxFCH>gBQh*A12(-k;(ubo?^!)~JCp(sLBgGt2i1_yFY$6gHupE0})9AP-_+ zhm>W=NAEh<6h6Z6KPxmwZM(1%*4-3KY*}ewDQ6*wK@?|ppeXoCmM=MU-;wJ)cIpJK zZ)>B|Ifm!31`7}qr3Vr_w}_kF`oI|>C!yz%fb-WSefGM%?}&>>^W7=p(gU5n!?=(ilza};OFg=0oRA2*$()yb z7CpXHaCV~V6lmQPkUc%zcQDzDa~i_C#2`jGhX~JG-s_lQKRL}zvS?HfSDjAso6hk$ z3#AguERAb-7mKE->T(atU6CvNEy5nH*U0|D&~!x?$Vr2!;*l}DH+Xf z1z>L3)tj)c@(QNGwnbh6GiHAm?l{4Z$(tZS_&^S{^`6BRBe^*=A$bd<+(bJZ?#L~Q#(Np1tJd8$Mo?@H zkryRg#B)}UL49(?`nn6PV?~MYOr#tp3}%p?VoLL9sC)-(S(kN#|2SmEayEx$If7WC zE{VSNlb`%O7|96@5YBy(X}1M^_g5L&gO7;^(W#pF5+Rdv7OH8Xk(6If~R9> z%Y6o3?H$F+wJm-hKSa`V@I(A5X{n5MkKcjoRZXy&7o~<8Glz;w2%e*@jCYLc)#KP1 z)D=(~R|ufZ95TTnpZH9gstwB#^RCZVAwvb{ptf^B`<78$jg4OI z?Oc<2N^XTu@{V%GIfy{PA3B5Rjd5!SqPK^@u(rTSt@s>dN(2>J@My-^dnC(ZbrkMG z#)k{7=Agp`I`;A;pT6Rf)WiSqtld|urruyn zFLF-cl1kl26hYP5L{s;54wAXqHgEDU|A37UHCp$Mgr%=6kY)dLK`$fk&xvU;;~HFw zc#nM@o^6)HaoD(a3+*{KE^A%!9}ty9YHXmauGI`W7lUSXeCDq%%VJsjXlz$4g8=9i zWc2IhzH^?WcN5)BUS4E*wa+%LyGFN#MH+vQJmEKeEo(-#644}nU3cMtT=*b*d5zWK z(81$~G<+m87(ul3S3#6eyO0^`c+sCZZ^ zb_M;1QbbG2kL@a?*qge$UF?13`eo5MHapXlDwXm@IPh4*)hGWfmAdW8mAd@#00c9GrW%iV4R!P5%8xBkY+SU^_Q6;Q*1 zETh&48*TQjcQCd$nU(-$%|*1OGaS-04R#Hg~fn2P|V zuz^9AGdMPG*3c=2>$O*RTKrdtRqc8n!7;VBo1LS1-bhw;@ab||9 z_;O0nJ~}M;T9)}uNctZX+)04*y83U?Fx~}q7-8J?0x~MQOZI(pACbfi@HVa{h z_7*mV->&S6ZFyMRyaJI_yhwd$O4#iP#?zE%GGL)xE@)hgvvKWp)^PF0SH?z@l&RcpOf$;j)4NeXka_H%e6|FE+p>fW z_wK6pA2>ed!hgy?od%z($S;D>r)meMS^n+A#}B^@q3l121!J_ap~vViv75qQXPM{Y zPsQRtea&aNUzQFxuXB5dCc#TEtCWf6vmm0rOZ2!ULMY+Q0#TyO6`7@ADBFeTWvds1{H+n?a#k z3mvVS9ndw+wacf&&A*no=w@Qvyvfn{)YAiQhZKHQSC{po?O={@>7DrKCQGT?p6+2lo0|zJ*K3HTiVXgDY zPRC~L3_K)nv(}gs(PU3{QsJaFim^Gg7g45Zbg|7}^Ns7Ax5uu@ukJR9qAlxL$c&y_ z3Yt>tS~C&Nhu#OZ3+hM?D<-Oy5z*}^sbJ~_gW~BKz;u!QXTPrDzjbr0#15Dka_yjV zt9Vn;4x*YF9S;`UuJOly+wa%FC@TpY%UM*RA+amVJCaOCx90uTRj%>BpZ|FGqNuK1 zzq9->cva>e8Zu_eABQ6SsR8g1HIdP%u18kxVKZe|Gw<1LU3ue84R6wgS}Vvr#^N+A zcsvu_qv#v$Xrmx%2InPI9%NK7>cG$g^7z6lc1^acitcVoby3&9BNQc9HiTzS{m5~v z+Aw*Nf`o`Bj;-j9W5tbYp_SQRa92&e!5dJArM`1mO_Wiq=#YETa|3hBJbl94%uoBlPA$B zp<7J;`Q~e=x#Bb^OC-H~8Wub^C;pG0zW?#Vv!L#$*igWd{yu&ItX}_l*Jg`-_RXd$ zYX7`Chj334w}f6kbuLEH`$xXWe)YeQ_b1lt5Dj>U4~gxn->do)Hdo%ex0cOeXE!Gt z>XR=3_1iBY_Nv>WbD95KvB5WaOsO&E@@f2);-M%QqtrfkgZ0`d%e+|@RgF$6$~#LE zI-b*aH>lxpF`N6aRz<#W{<=E0Ghj_hO3-p9y;zN)XXhq=bc-f$f6udjxX;D1f6zoY z3c`enYS%CImFNm=0(}7 zxiMti#E>3QTHLrM)acW>#5lLxoIc`9PY@HXJnwX!f8|XLWtik)^tq$ctsFX^l5x$9 zoI&OudSvCZ))o+jB3ixcdfl7ORV}{inbsWE4JThb6GR$HW7=(TY|vWSxuWtR0X9>E zBANI9XW&TsqmV|0zwR>&x}){NJ0TtHwJlngqmy(HR0+_QNs)?Mcn-ZlcOLFy)T zD+?=di8^Uza1OS}X&I^J;4FGvMvBwsb&r-nNsCiXwV8p>A+;tfx(GZ<%b=uXnUv~Q zh(7r!+MkC^vy-m9iV~G1d?uZxRx@$B1^5;fLy1aTYiCj!Q!*})_Y@V*PGH42=d;Ke3ZvNztqP~( zu9*SZ$@G0dX1F@tN_B@yqC};Xo`b-kAi}D+Le^7K3MDBj6`X%FxT>_);$*AT9V(3y zm6FQLV^6cyiku!Tx5@(%9q8z3};qJNdmj_ z(mwz>SL~S@$So?IStX;)EL?TZ%Gv>;zbB}0W|cxYIJ$a1Jyuc;$Wc9Eg)^UpLzwW63_I*+@ivnSF%Lg zS?pv2R4*(nGMsrOA?Z9iD_{oHyfCmrNy;!v=g_X?uPPzpOOu|E;y4pansO=Ufr=aT zLR2^tOG-cs%q+YLCgsbjRUGF5s6mo>7ET3K16r_8Na4&YX~V6YLADm=y-j>u{8Lmo z^GcL!#phvFf~l9e>KtcU$q35X3=-@8_|D7HN*rfeNooss)eIa!!T1ZyRUBzri7Pvk z<#7J4dRbbD<4i00yULmwG(m?F$V;sXXIjY+Vdfy}4`OMIvzMVlNecQ6<}d^jmSd`y zb=C@`xe6}H9ELzbUGas!y1<#M;0ne|({}&`wUQ1jAbNrdB`NO~fm4xu0#GpP!~B<> ze>me`4i3c(;$OijCogO)!x{b>6;vP7_x_kB^0X@5Eh(JQui`YQRwPe~LjTLlGPO8^ zU#1is;4>)H3u#|CR)sV6wVci&p3=&D6fg1o9!i-jpC$y=pOgg;4+G zNDAst78CUh%iS_xdyoxm1MqVCF9oS8P)4@zeFi^Ybp2_>0eqz zFruO^JK)(kIQ|x84Tm9o0G+}u?Y)ag$^N-5K&M%KZ0e<3`L9O+iTfzu+NclMGr3fk zAFu0nd+l$lY~`-^tEOJND)&F{U*A>#*>7@CPtBKIaZ_~ruQz$y{x@v8``N9sKL@xU zTv=kf%{Y@nT|V_k64{yt%eb_R?~Z&G)|@VMbleJs7EUw@ZDfiixcS*1P z8J+FW9m|GUbw1$_AAc2tmnVD<3*6{DN{{kSJ=_cLdgk6(yR7Y+Vv7%tc#TShWtr)#L-?NyCYcKqJ zk@FLTveMnSGP}&K4(}>le7J&bR5NHA;DkwIqXo_bs9;B5cf}!Mro@L*yC(b1$6(m3 zicwBC2~$iRrK+(#EHU;;axKf^cK0%clkCbXZYE%=4`7rR0yt z;78XKU0u0;HFCLci?+{3Awx)+Vm9F{y+$$0n)!f!TJQA5cEBQF?+P1o&!VwrzO zo{GGl;%Yi?Yu?Tws)u;>1B?JTMvY#TwI=? zGn@`WE@WJK?JR^Ff7c;HrP_Cc)xDYvGJ1@Qw68kv znaH!8%UgQC-m8=4)efEEd2}@0xPW^nOh`M_k$UpT#ClX3Ef`BT4gh4Fn^UFeVPuWF z#7N9=CDSDa=c8rxJip|&=K~ole;%goLK3JupM&Z{zAef!Z}up|HqHoDN&6n$Sj9#F z^XK9sZ(WHmDJh7N=JILjGa+_jBs=dx-u3-s!$+0mmrn;~(!s}=6sJ0?p5k+jTQqr@ zwcDcd|3P}gv2;Uit_Y{bo|WhN_Rmoi@5sn1X+_$m#ic&$Wc(I$ZN}RaPujsJOq}ep zdIr~R2C|=*@V^jb04YOsEQiK}sw zOgqm?1e0$@(%d82U!ec>U;mXYuk*5W)f!s^4ZzjuUY#(9&h2?4VW;3CZG%#jN}hBZ z6d`I@arRt_+s0vaWg$>WSZW~j0Wfh^4e}mIjOlg8g-+V^DDlzd7+{c8XVZ!(DPt_{ zOuMj#zV<-9&BjhFPaupoI_bn75o$cuX+ia-O4BZH5-!eb0gphPn56>Lw3RA6RC3ll z=*QCS8oWM`N;ilM=c*)UWe9$8&29txWj+SERD8T-(it5=2|deaeZ&h~Rzk8(QSCa{ z;!ooUA0UgQFF|hQd6!^}=vVUoHHaH1lL;3rp=nDqeO4hP22@VRL_t5zB<<1&erCIJ z)I{}^Y*dk?i87_xXrkFSKcFpbDXL`B$vY+)9pkw61bc(L%G(Z~{xt>PJni5^=~LTj z&SHrEP^C=y*d*lw2!&p)(KsLYJ>b}`zy5uFyL;;Ue`3QbtV!2Mxh9NAc2?%~d8)TM ziLmw*8BgdoOglj*{XsN3J{bUtQ25eVBa&{{^1eD7e~V5g-1PUTOk9Raaeh_?{WQ?V zq34;f%wniW3p@V6{fIW$^hd0vNvHH+tb6nki?^#xq`g{hrD3CSPNh`@<`QVqcPQnCjOIDHJ5(mkR1kBX#9@S~ zn9`A(c-w(say-sSMV>b4JCq7KI+Y+Mcjl(P7}UtIZmyhG+>&;clTpUUp1KctlCOyO zJHDba`^`VT-IYZJgGS%~Gs9kc5jO2*UYu(^HtFz~^#sPq(%!L0nHVix@(?QMnA{P? zS5gx;ZQ&AP3^_}G_F1A@A_uC{%?*Z0Pj%k%jAwy{xxi&v|M>m4__T#BQ!4GqhFfmO zwuVK3UNt+UZ48oXrIT(gqMFFD!Db03Utz^eWwzs&DbQ-gw%>*Bt7k{pCFo#?ZcLn=?Uc4 z|4F)XMl2ztFVo5Or=-2kNDwhv=|oK^w?NY#lit<$JK-0cK{gErjHi?-j;Y_<>R}f{#7R~Im>@)4%j)K_pwjsxWPRk`q zJ5MjT8r_wft@8aOSTd1z&d)M2HeR_W>Nng<-BteIMsntT#}!)ikK~i=>fKrR><^%RQtL zyMZRYiAD3#Q-}9xBA;)OM5lXu9=cNA&^D*ik)qNKWngHDGCekN^cX7UiKVnv0R4qR z-Y_slKCUE;B59XhDDju*8}r1uXOI!W)83&(HGj*b5%Re+NlDV_T*5egYs*9%cf!z_ zNxJEeDKff?{vJ+*(=C(;VUspVCdX^sOk~v#v{kF56G231Hn!p9Q2v}u`dw0%Zge7u zRz#?=U7HV>Vm48!xlCLj+lQk(RVOSEAlvj&Vj9>AY~U(1s|b-CeV+e#i&#l7xK za?27<)&?yp`ISswuE7OD3Hk@;K!i-=vsb zBMPrK>FljAZ0stY`#_P8-GhOq?Gy>BM!UMx5`begU6)7@Ev?aGfqq5xRDena%3*0+ z=;$@uY%(i-!9H2i9+BXRkF2h+X|43-Ea{ysu%mhGfjh0`p^PUTgHmbv=o@rOJ3K7c zX$LKY$gw?rkBH(<{84UH;uSPv$I2YD$?belNgunga&qM4eGDni%pc^55*`se2$7F1 ziK5>RU?n9y-E;yZaJklFi)PbtZkgpiT1oko6@0vNI~kl1eCnief`Z@JX)8wwqQ%&h5Qs5O1ZLt%c%|vs!smpFDpXRDw0JzxWUTJuL!Oh+ zb(4ulpW~Yoo|MVZny3%XSlaF_lWKH-{C%F-rQN7WH~b7LU}E&#;FAIwVi_=<_WBh; z^;i|nr#Nw!u+!dQ=5NojI$%$MA}wG;BV*F3TWZbd%I6c9Xnk9M*qXGZz!=qU>f0i0 zN1&3?q|2Rzn9+@VQ%UcE3ZxYK2&7h_ZCU%b+yG z<=BkgJ${ogNve_#F)6gwjy+;O{(#jcspqGY1}KOaJDMJp*EnbmuW z6u-0^V@YQcLN~(OQk_6M0#Chs?M-#8tmb2^*elpfr%Uv(oNQzg{xQ+1EGQG{R#&(t z)N1)Afz2bZh`SS%PFmMQ5;}GsJ4zI9g90on)9E%;2fb8g{s^Xs^->cC3gL`l;*Ypb z@iv{-Ul&P8JEN%HAZsh1P z_msrJgh(2v1ku}(IJ0liHs=asZQ}i5TF9}E&xGO<>ff+w$0gF*vCU!AlQdE3cANlH zE5|M@<5QBr;5_Ma3io%)TOPT{TM|GsA?;i()6|a5)lMZ7L@<3LOj!^JtfztMXs2DAL!KacmpoWXI_Xko!>FE1%a`P)Z;qK{v%6F{R5T8;* z31KqnC`B;A#|{oork@1*gIK!duwF%B?9v>LTt&eoeZGc0=OY0&sFi8b-a^Ku8Qsv; zOih_aCvB46r(+{q48#NnvAIlF-z21GsTz6EKBkI$)vn~0r9G0uv^680pT|g%pS&{d z@dX9~HY0&ft)DhwqCr)PkKHmSCef~!w$>XrR*jsY7t?9igXMBE>8OPfrpDf!kCw9{ zKWQnYf~Q*%I|!JJj6@$Zor-`-+K~(6)Qr7DV_=cCA}AlYq@7q(my7O**{{GleEVfy#FUgR>?#^rHeE%4_REAG(slS*a;)?WMLrMWFP1erk#~1 zQkapwLSkACd@S|M(3{#P(!5aG)oVuWSiKoBm8=l6oF_b69Yk&E*d114I$kW4Q_>c* z;4r~3l4o~~)rE!Ll7xrk1<{HUJ=W#9$FDcZgUf>rrnWlq1%Z~^H;0M*e5EGo^ObUA zMrH}*#QG0R((@=p8ac8oCa2bakTy}sQ8TtxXiE2|6lrf#CW4!> z*XOj#C_G&UH%CgagU8HFb80Wo-qV`)xqd`zT0=P8J^ zqutucr22f=Nz!f)64bJ>x!VcpAoxE?cVJSc$D1c=9Ry9%Z3hZ1w03Meki=c9PI%M8 zp;kSzsa;N}R-N|Ja(~#2U9zC2lVhh$36gXUPZBzItBpb~=Pr_tJ{T8c#Vgc=%F;fX zOt`ZvWMS3V&Ji`CB8lOWr|bQMln*l_+YHoniX=*_#Dft|*<0eoJ#H(~Rxl-k%eOph zF}t$N3d+)M|1oOp7?_$=9+s)3ty97pl(9VVChmM_Vr7&4k3n*ZFtrbDm^pGY2stHcC-Y)M&7aovtJ_VID~4> zM%KIZl+IY1bQHp=9ZeIp6HC(G?k1=nt6X3vr${8@ zV+&pecLmz0r2QQxv|?ic_U3q%w_Q=Kks+koD4DdA1Do7NW_rw2PE>GN6E8VSI{rkR zjK>3MJDzmUov@=@d<^bFh)sL&nOQv0Zj{Ivy;v^5~=sm5@XqnX|LF9iX(uoVnEU z4f)|WNq@vLnzm2N)YzbMk+-faDs=3mNIM*1(u_s-L=O!aLq>$4Nhft6YxNcoF}8Rp zOJ&mjDU*Eco-X`Xpr@F2qYj~xj!f%-yvHOYc+&Py8R#>QCy9UdHEppoYQ@+k-vJ}* z7py@w8685I_IxCfWbDibAVfa3EG13azad=kk@+{EhJhpbBQo*BjLtK zmz@xXDy7dqNH31$Ji|Yib-hByO$)8lE(Z(7$a#sHW1;EtlC~Yzx}iTxJh-%nZ|s>n zmhQmuW`!AC+7027a&=xpt*dKn7n(4zAt~9&0HjrkCFl8+fGJz-vyV`IxZbaty4<%# zi;SGq+Uj&&k#I7ex%2bay35OKn>YTo`@dAXt|_{r#&$GH(Ctau8DWImvwC5EYw-0* zFzzX(e1S2d&dZquO5iUt+_Pv>%B1@usI=#a4&8#A)OuAaY}zdngp%{}Bm*2V3uH>A zP0}3_RMGSLK5rrR71&8wq9kdL4^qw8>#o9k5OMEL^$gRF$C;+*shGqVVlT&%#MSo* zJuev+V~G1YRB1O1a>mYENIggpZ2?a(MQOSa1<}&7@kc4f@|~hA?J|((CSDa%uqg$G zlBO*eL=-!3&2*F^c3*}iu4uvdd5RWMh{&Cpv?u1dAmpq~Zo>#sdow)g3Om>Oysok% zMgBb!*|!w50^s6-^4_y&pRS5Xwxx)e>iy@o*qk)78(AEk)- zIQ8DCOghHkKFD}g>ia1|%*QFSY5O&dkXI#8C(~Es{hEXWj8I54Z-o%EA@Z~(oT!!h zResHsHbBdyi&4x{@+zn1DMHMKND^N(Yt3tVh8O$nn_X9L^3JWY&cUEy*A!c1_$2qY zMbft+6Y4y5*js$RqJ^d{OS*a}*sB^6A253~or_-;RuCg>(k>0R-ZLGKl~t>0VU;B5 zz+Z4i-vI0Vk?aXzm5hj_)8m3!^9t|vF;+1tX>P!p_6VHdM82Yk{1~g899EU|A*n}p(KQZuU6s268!xIXNmwWk1~jyyXI+2)SKhe>873)&Q3)S{lt2&o%VUa- z%d3bQ9x`f{Ynyh>0+gLj)hq(1o4njb>@0}iW#6@3(WgwWntGG1%l$I^>)LJVby+V8 zZ2kz-Jn03o0<q58r(|MCW5uFP(Rf9R@s%S$T5T z};2|=Smu#*z#51?Um>^av$6LP+Y+Jq<(YWT^S z`lpmG@K*Y$k5r5|tn&-*6GBEMY@>NGvU;^g8HO=sEmNuATu=}?H6wVB6{H_GbyakA zQ&j703bex4I18S-Wx$9^E{bRAGQ5EXky{^K#PqkVl_;4m5*la?mDEgTHZyB^P_Yaa6Yrs-VcjSOdlyY**%(tZac!k%Yfe@4g& zJdTv}pqxla#dC#>2&ah%kZC4UKNtypMrQmmzYqDgD9gOrqdXZUl~yI~GcqdKc|QIl zVvh?+2p9TMp%qCtGZ}V-OESvt-~`0G^-V=>`COW?8==@%U1H-X?YS%@4Pt zMaXzcYbZ}x(jm+Oh%(9}eVkR=@% zN=na-DQa(S7{hp>t(A#8oSL1Nkw#teflOz@&0=6(%)F#|VG!7D+68Nn2gOL5bh1-Y zqt6Q#o*)$H5vHv_D?xp69K!m>HC3^`#x{Zm@OZin)uGs6&h#;VtgA&)m-V_>B2BSK zPK-!*R;k~2a^|V|(KVh|1Nwa^nQ`m=%XD)p(4V5%vz_fvnRRvLJhByPM^k8_(w!Y+ zR9GLyy%D=RpL6xel_gfUMH|TzURQEp`rIJG%bALaFim(@2{2{i%#zV5rng>cj};qD z%T&UROpuS^=N16((ZqUDroEP(EB(w4s3*uuw`&md(n$vrlpA(l_=kIC0uW1k-#Rx^ zjUonhbs`@QwIkm8EC@?|1W%lnpne(Auk>VQU_o9n;n<>Y;XNtH^)jSW;+gsqD9O)r zYoa{kXKubmw=_=*&opTZC6t_5>pg=gzFU+tE>qtXEuYnuI2S1LLszEUM+%27*XLFD zPZMn%@-vqSlXS2Nq04zKiO&MXZlN^YiJ9IlV&^63Vn8Rg7+MN$Q||~6XSQ=hpiW5H z6rz`et0ITNsPno7VnmV8La}u7>d*?VxIV9sIEru@TC`d#lW_ETxHw09LUeK$r%3mh z4el*Fb8bHZl}+p7)ajnO;0kfcN2hTa;)_#AA``wi0U;Io^j`QEA)Js&s-$xWf)X}5 z&Bvyc=3^xBUS`S8l$DAS{fPRI73ro74({yudvbE_tW0-+Jmi5aKd`qyKge< zOyI~hiFa$BJMu6xLC`tRkCDM*AVT)!Nz=Vs!ETK(qkW}^NVW7x5BUasNTuW+Y0@GV zR;$siL=TaMvv}dU{BvE_*oLen7m4pX;>y@JK6eo(1>w+Ti91W&zLm2ynWSLaL)wC| z@zaD6q-b3uAEauNZYc)(IfWfxF^wRFg*~OePW{)l$e?N|h)mi!63o8!Rf=#Cj1ZRE zq(f0g+4xby=_HVtR660=P$9HYT8vK#K1}lBPA)*kEMbX--p?JMTo{r;K{_64lWx@| z*67i-(&-4>_+wWkyuj%YioW%+i$4}62_L&$a?kY-Id<`0rOa5Ba4_1}*VrGybZQm0 zgv&9#Xt)@ibBJL^oOBR`)8zF4&s=-|JXOrmDyVA6bdO`$r$N;C;b8ex_Xcx~E#W0M zhgkJ3Z4|$fkt9hUx{~Peats4N@kOfMJc&(ylHx5r;3H4efokg7RN~An#4kfSwU{R1 zZijwe#=K?D5dVCIOgO&;Nnow$Xwk>7)I{2mU`A1;T@x2e|bc3OUsPB($nPll_}sfBEn@23EhT9)=uxEA9V_}m*Hri5S~M1(OX zo^%|_h*6{S3ip6Y^gKnl~V{t$l41OvuNe!>zLH=|!K(OnqOIFmFi||NNO1Nt-AH+@tT&35h>K{F3l& zcOa_x*lHS^(gtWt(#-;fBUh2p`GtvXfHp}JCnM2wvNW8zk!P+ok9{^($N>|ls0e)$*f5@cMlu5BprVaPiq5L%35-vFNKUA z9c2^Sz(tboH1YwP7~38gBZ|{mf;N?eM}ZIR*nfnDV(!S6HsO0TsGg6WHjE)f>l%UR zxlFq8NKiVuzmrWW=b#doHz&%B?G9uU;>oB;_Zkg6&1n4vHYs6qM$+D^#sz(YEYgIu z9c9|>4E_ogqaED|X*)8SxJ$$c8|@P5De+8ruTSX2=A-wKdY)6dK`BW$4(-)+$H$=) z(g9>tCmyqy(c9FRof1!zbShU6u12>5f@a(_Xfl?rbsnnTqpfq|HE)&n_B3Lt99{Fi zfBsHD7%<^h6{x1E@p9&DIz0>kG~pfw0IDS)-5ofc4hAZ$m5C1sj~8WNQ|e#PD(Q|C zs`U7@?nIKhaNOE-t@AJ%JUYcNt=5d2D?s%4t8+s2Gipt`714u&+~}U7 zYBezhxwNIsy*o5|(KDZr-Wa1cZC^;*(VGVNr1ZwXGh#`{p#C1UZ(ySjnBq?3`iO<5 zT{`2Ij&_b7GsT|CH9TGS2+Y)IJ2v+hMT$0=t9ZJ;(P0#AY2SR>o(G9FF6$6V;b8Y7{!b{d7rj!3RUA51wW>WIR(M| z%S~Ipid*kDy&=)Y;g4)Y+L?SICj>1ZS~?o&l(ZNU&k9mS zMu#j@(qdqV@AJ__jP`G*HJGME+9$3icC?E-ojE4XQqTKw!$<2SKaE&0=ZMl?MM||C zJ^3<~2o#Q6nRdpHia&rR<{D|rGRcP;>DwQ-Q!9|BJqIHw<)fq0sf{)zUh`(cjINGO zCoZLmC4LI?@twR!oX5H->Ta^M6ZPDP(VLq1bb1$H#3}XZU^Bk*GNnSd)#=`!{=ikt z=QgWHL$cChB zyt^wWCdeR@M#?xFojQsl#p@jLg!4vy`D|<-eH19_5?b1MBcYid+i4VKiq=08lG)T% zumu@gb%`>aTECG@H?-;ZsnI{=ensALl=dcQ#(jMA##AwGvOwjwI0l^9BRLKIG1 zp~s)N6FF}oF{INzZwVb8cuwfFr74d@08T4LHxx~$pGasUZPFT4f{ZV#OsLWc@k+uv zj)%+ucsBYn55?jxzVFj3wlDy zdBPH(-WIS0?TvwAH_?PwejLO&$7YH&<~by5s7RM!IAo<9eaKGf&P-g##+&5mBX)A3 zib*zsF3-AXVz>CVccx7Bj6B zyh{3n<(7@^xiwP?G#Oz@hbgedV{DPkOsQ?iCO)>}ZFICxi+tQur5o4C!eNoOt}H5S@L;^tq?_0~)KA8GKz;tF$jg0OU=uq9A66#aHR4^K(MM_^ zxN$i?fq!B}>JFQ!5#Jv`bCQg!xx5({WB21J+16{(4 zQ^O1aC2x__@&CT-SI(PtQQ<2)askbB$@T&CG~XnYd_Z$q)<1s#El!*|-ONCbbM(T+ zCpeL22!Lkd_oUS1ErOCKH1TB$0A|`MA_TJY)>;!Ax0x021j$i??)wP&W-w zA6h2u(sCn4Yj;mzvPYP7J9zxr%9Rzb@O>_h3_Z<1mvy~D22N|rWx6p)0LNcbU48=2 zTOqqYGJr5Wpfza3rd(ns%GfgpKX4Axah7@-PEsPyy!N^pUAZ4>jA?h@Frv=gP`a<` zn<6i>t8!OhyU?i6GVSPqNFTVL1?;y5U$%@&q7!b1>WjYOygEeSlr8qzH@mLh0XUV_P8d5?cr zh0(*S!vA}QBHL8EQs@}EP0%4%dtuQ3r3`v;cmS;+j|Fh^C z2f#2ok{*~&cnf+z6nduT|9^R(q(R0>3So4*4!?hOL`ieXk*s&!b{7&-_g^p~MA|aN zC<%WkIls~Kmmh!n;k$2#Sbc2jrSq4xdw*DA&ow!vHS^WSpS)e=ZTsI@eU*KSuT(0S zvI#fFGe#L#Cwfx;)Ms~(V??12`o-brx5p2Ei42-yR-PY|#zoq4 zbwv9==OM~2FDay)CZm@`l_hB(hD0fIG7%M}$g0)EC??!J0LP^v^n8lEnHt5kQ~8YB zQ$GIyMKLJ_I-r>F^c_$X+MLV>M=4Hg3p-FuSc(oPN_BeBE=qA)dq#m`+S)rrKO<-s zr8un>Or9boNqaX$vC{)RQHs-&HwTI|ZSRI^dH#tyEqz^}$ddMMh-GK{sHj^_q+p4Q z2+C)+gg!?MvNjLb3Ir)Sv;rSWtF(pai9B6teFag(Q;|$b$&)@)88Ph4WcO2^eMM;! z<|)#iKWCKilO0B9;>0Z&>2an#AwsPbdwc~W9k z+F5gI?Ah6YXOQAHQJ%00VIN`2(Iz^jXeIGMFiN=`8-KFt9Jrn*P5TNJij9pv*>q0Z z)PohS_}JT%lZRXF&>y&orxU2+V-MWNNYS6UBI#;0;X;m$K_4SUe(a{5R3Orfc5?aD z;?TtVei$2__T!U^Llc(L3MR@=57xhg=X4Cz-=Q+yInr>4GBWzeosM;i#Fa#)(I;2M zzJR8f+69_+%Oxd>o;y(T1nG1PH1V__BVu&gZ$i#c>PbJ!%vk4EP3N%n&X7%d>(E_&gi>Y)JywL00pk2Q z=Ltv#^a>9rX7>J+b#=Meb@`@PIrzJ4a{ujv)E+)a^8Cng0+1kRq$jsD-EldVwAP+a z5Ms;AY@1iE%q|b-r~lPI)=WnRk_j%;UfkrPjFUs_cRc^~ebu>U+qj-)RPp}DylKLj zij1QqO6i0-3h$1J7ji^+UQ)`5R)m}%Fib{b3M4MMqU^xhn6_$<-@sHK&A} zAFNM?*1;P&5#asl2`-l}ud{r$Dh_wu!tHB+!SUN^tv37O9|eR9ZX0%mmU}otk6+=x zU$(5hX9GH>+oss$&EEg_@GC*+hRXA;bpjqv5B`LiJ_etC@z-B}{qo`==P3w}o!>G! z0epf;sr1Vn)IhJOR>d-h9)MMmFC6@3PDA*P7A zn~9-;%S^?4FuaShs=KD%7S%)pE8lhj| zd`{r@>Ul+-kJG&VXXk%c9mdETSS6VX>sdwnC!S?>n|ekFD@m_D{cP_F6u^xO_1blzo)qUo-Y z0i%RT&`?j_-+*N3+BY)M7TfvMV4rg$=J(B9QYp z)l+{xF>-=%rsFA#rY@?iYx3o-L*YZ=<@M3p_Q;UIerxXwM$X2&YRdV@FjZm%5sav4 zHt^S9v;S|_I4HKPv8I|r8qm(*G!(=KSn+n{edU&QS+B!0_HkshcGYs9UDxflfYUHv zZHl(Vx2lgCE~IDov{LfZqIJzp{z`hN%!>*uqGKR`%U9WMvna}<500BvmN)gTg2-$6 zJ2F&E8KYoCDRDCsObf=NZ3KV&^EdQs|357IA}_bsxjz%@g}=;b=(Bq8A@*hVgK=p08V1xj+6PGg_3ZkPyf`ov(lTIos}B zvvo~@F6E{TH_?ulv`!ZYX^4y#AUxcg{pD5NT&_a3{FrL<{@2?7x=Yu#uo>^R*)s!< z=(f3PWrD=}msjX|R+wQ#&!N)p=}5(5 z8HM|VuKeFi7mmitp}XXm;a1ssz+!R9uKTdCqXN51J>2oA6lLVOldoR1o$H!nnSFu) z6&Wn9{fiLkUsFCdCDw{qyU~4EU{Vk;g6D`Y=OctQkOO}z%##)@uDLfX{TwVGt@dfV zU|88z4bCCNaZA_cjgQc?)-5}H7_~7Pnq|{>^`WL4UCebKeJ{3W~TMx8IdCgClza>A2sq1AN2 z1v%Q3KM8;S^N04LuS8sg@i_n2`Zhgv?H}7T*ZJE0DO(j+SFZ8DlEQx?lq9k*{$9G` zI^VhG^3SgO9p5OH6zY5_j>*s+xc6Q~x2ap#b?D5~159$34qQuOhpxPG-}!j^SnauW zTz>lb)^Ryxl)w4&Pg$|q?5g5FIl@SRGb85_C*aFSfX@^9JSKAJN}>oQKKiGY zrhoRrB#ROQS?s59yKDE@P^-GS^h__pUw*zuZnTtA0hOdV%s!i;W|*Vj3JCz0H|74W z_hksz`xeusVKccpwTp2{wKJ;KRwl?l>U|08+Hx$@Li;N;Ll9{@FfmR8R>tFoMeXd&w6p9tZ65sSU zTmT#(}hKkcwxhq!L(v>APwp2*1V+pl%1m*?N)mK)E^{*vLCGCM61 z^wY-=zYMmhAu}aOP4t93%_+G5-T^^bLiawEVlfva8DS^JsV32K(0y!3g}00~kVko1 zv`YpL;rLfa|zev~)KvjHH|tb$GYg zO96G%^hV^QVsK&~m;-|waJmwAJ&Ux6FN8H?FiGFp+4>SbIF znpf+pwg}r3_Sp_(Q|=MNxO5VB*=lG)2bbf`w;3L=`$HxB4)%TQ-ydMuti?>UHE4~KsfO(=boJVfj!U+#7rtT8g=Fm%#U7xPCViO;weZC5va)!BW9RD3Usce~RiVhunPs%s^iyRH~bPQ|RIAHf|Me?Z$x^Z~ImD#jn>z+b<1muj^g8%Id1z zXA76@TDJC+1T`v~$4RPp#N(!Y;9 zSr7CuN4W9FL*6t6Gz$Ok#I_^iBVzOn+DZjcOsaS~;#q=K-QlNbW{~&m_hUuR^V(mo zXqRKnKv*9v45GjxHn(+-MP2`nZiLKJQjEr`h2ydho^j_scb6--^}l-vrx1XmlG3;= z$pcW^GOsFhq&OwgL^FEnkzx`Wd7}9uAazr;MRz|+33ij%WzB;$R{`(K#{=|o{!6&o3uYY%F{*UI8M_b@v^Wa^xcF}JA;aE4J0D*ezHSE7g zKZluRhT6FN(g|==>9!JV4w@tW%oHrHNBDqYFB`hdcP&JW4~YJOWrW{O<2%*pNGV*~ z>8l%r?o`Ew0N&f%Itkfc+DkK~K2ZiU6~yQ`wykRpdl}bFepC2gGP;>|Du@*`xZ?cF zG}62rllT9-pm2YILX%CO@_zs9-#v`y9d5m2TNJAk^%#VzbE0+&?2^ggNIrnpI1T zFo;kJ6Zc)Cgag5icZU}BAuj25%>p4oXoF#M*oX!QX?*qIxd?G*1PEjVW?+$m==e0_ zD{#K3S?xWMn)KsKSPn|nu!XM6{nBlU+okb$rCwK-MTc$;xnV5SdQ&$=?*UN7#h@uZ z=GOTSW)wX>uC%qc+d@*m9uE+s(m;a{*#saOB4@MmCFn5_J{VvgATG0IQ?z$!I_wZ( zjzFpzWXJ{a78sZ3dVtUSE_JhV4KhxQYiZ}Ok|1!3k0eJqJ&=UO2TifLte)p0Ua$u- z*Q(w5Cw>2p>l-Yx!)I!ID?p49mZcxMAJ7eEUn1x>{&xoE)*+`y(>FX&+0c><-f9Ox zMT@QQWO!I7mpUI1*w8`^X0Pw~gl6k&_*lN#)V;m6`)bwH8*EukO${Y8SQQcAQT_ts zx^?z%mwQ0zAt$>T(<#p~k@=NG@sXy=Y<-WXJ)~@=`eghi` z`i7W#?ZB-;PI)F<<`p@|!`W5Kdbcg1{r9k{1xgKwIU2YsQx`fFOmd~jV12f3H+7je zy*GMSYVc0#V4)!t+0Sj!EkThZlGUY7v-v7 z?elaSAu^`a8Y}1w4%>`crtDz8pbKN#N5PBLzP<835yB2{E`lCH>Pb52Hsox$c=!;P z|Nl*gE)~a=W@;AKA5p>#XLO>haCh_?K7$nMf!kn}H_mM;Bff@5_ckSlFcX}cp$=Xs zTl77I{`dd&Pd`JT=!3&`<=XJk`sygjHiYk8_nBy|$P5zVK6+4E#<#QHX9#K*SiMLX z7u7RZ=_Huc%)}LcJS)h-nTj zY_@rUF$OU7P5~|TvY_`sV2WWN5~z=(D99KIq1f$B_Bz9w~pI&Ke|Pex4-AvKiubH**|C+B>lOm85x>Kxg)u&av!z1 z3ibm`>)ru0y$yM9@t7&3x_QO#!1pbP8_rR*Gb6Y)ho!v2U&93gby z3QC`eBq9j$pQD;uMpgP{9-v6L8j$seW8G_Wuk+CSivdx^W=?UWLj+^4A>*s>-20%euRE&C9yF-plCxkun2$k3O9; z*w58n@05VJD00B7YE)V;Li|Q&z*U9CbV917~pNyoE`)g~MRo_v5<=iUt164?GFAff)jCmO& zH+myPMhqhZ>Tj(-0o}5zH~X-1*k4}tjeqj~BD;RPg%24(CWwk|{W`q~csjc*nSX<_ z0WTl0)j;hc%NMJ9Q^4xxFWmYfP<(<89@Q@Z`w|&N2?~B^BE-MUIhdRn$co&u>!(S< z%dh&aCB6HIQstByPNHIBsaTt!oH09mNcP0S-8Q8|(tE(s%?HU~V;pt|MzDRKcR|9Y z&w?P9$@DR_oWT@62!%<@VnvwmKYaKGuMnn`dP?XiQq^0oIayP|D(=n8J!XfucD(u`Ve;-~1DnB4{zIib4_nbLx%UzCHa z7p!G{1CZe4_>=hZV68=U-e9 z0-ZNN+BitnT;)Z12)+=}G}g{xOOUruCT*;scP>nfT`h|0S?q#_`;)WRoU%|&3LssF z%>t=4!TU+SFPaKY<9VCsY_L}>TJAcB`Y`2ODmn+XFzVwG70nyGjO10ZXo?C_bqLc3 zoI&Sp@>imuMvCYH_7_4d8m#f85R}Zq4msgADsuWlgqx}eQnpv+u2^BE$&H1oefkDT zlw$1lr|P1t>(%A5tUIhEVe(`id3D3$6VNXsx%9vJB41{C)3~-fO8-6M^SrCjpA-@r zLsOTSfZ0B-M%d`mH85mcW_bmTQ^@R7cyrFRJC;rkHA zwRu&svS(SXydidt|CL~?H&Z(cDR@e>C9gNes~m6qVJ#p`z8Wbww8*{waxAK@$#3#@ zxeL3g+{PcR2$xI|!{*TCga&|t4KC=zRJpCop10dmNP5OEDldJ@kh$x7VX<+wQi(a7x{O&J73O*kSC|DyCu|Z@uyZ(V znXvlJO!OvS`-dV!sW~%b7FMYg6R~0bm!Yh^E&|D4H$@WYZSy8a znz1u1Y`dMoS<3xk`uY^XVT=I$98gKY2htJ|ZpGw5QjhUIW;k-6AyoRBqYS_w0@#qs*-lthWhDKOnqsrAUh6m%ZNIe@3>lo(X*)VDq zd3~^PpolTbFpNVfB>gCZ8ZM)o8D55P*B}&%kb+7%2XB-@PtxnF%R88}gYCghzU=U7 z)$!n&rf-VGzfd}OC;C^q$vcNvm0S?$sd^efq_)EWmXJacDh6t^ajPOws@raxH{EUn zq5;^d6q;&7Y^(up94u67(r&QNtFo?}-fGJme0emu zC8Hhw$pB?yXeMs6*?DKi`IruBxQBHR*~aB9MC%Cq+6V*T>Zcj&A09sCDbwP_3`FW1 zFgoWADsMa3(sx`Dj0_UD#6pQL^}2!(h8V8nC*=Xvy4)@677onyuEgkZ8eyphg(BE6 zJA%(0T7A!kXP0o5P`q zf|<1R`#yH(9K#zl%>j`F&0pv$bxJkYwV*VwYs znhP_F`838Xjf;lA9Of}pXdL`pAKv8)A4qKc@3zCn)fh?H9L`%xsU=Zeg_m>P`j7f} zubX9N4I?wS*~u)XvO&x2d}df1A{f^SWM8=u+mtWuYlp!N3p|<=4=jlr8 zhmXICL74D41OR<}qjl8xKLWhfmw*lJKI|^qE?c>>xN!|OcSQ5A?78Le?>~HN;Soci z#O113XN#gNp>nybR~Txo{W8*M0q=IzXjZ&z8A-kY%k*pyLR@vT&a2SP(yLEkJ6prf z(s}F+=Gw+ferH2=Wxn?=kB90$FP%5y8yB?oo95cn$4Gb%>n=QDBTO`^IF~TeF)=_X z=TK?tPvikl=sc8bR}~#RDvYdnlRX^FScg}Fxy~Wu)-xV(md<0maa|4u8>$s`gHI)i zW<<{do~Ar5T=8;v==Ysc6;{0yN-dqmMQIp)&ikp{jdxxbrOP%&yUd%Wfb7C8M2~y1 zpIA7`iPmxsy&JHaSjR;Y&n1jB90ioK$sMVG*uq zvykC#t#=*f>ostkPYC*qvGxH=zNnkvCk51^g_T@{_ zO}H)!$%PrD;i2{QndCy6RZ*g5Fz3^|L(kN`CteeUzNzF_GiLtEk^Gs`N~#r6*rb}g zo*&${#J<68JBfNI$jQyY_q9Ae4Rjt-?A1_^a-4%Z>}kFz5}jr(lt%S9)1xSqdB!8U zm)-jVvp?UyKKrAL;_17ug24Wa=L**^fc0KRB^6YuXVH8qL|o7@$_afr+P|0}=$?LD z0gci8Tyj%P=qM;w&cI0#Ab)-?f^R9GXPK1{BOcqSx#0uyhlMgg?+`vs_#{0ygM zvUwQ=o$7PQ%dm3-hUp|>l$eQ!V+S+@Pw+#YaZ%8Jp1j0|cV?)1E`Rm}9n$oQ5;K@$ z7ff==;#+C%khR;o^1o(R@7lYjjnys$6nMQ(Md@vaa_SL1$Qn!X+~~(d8aA}B+T6+; zCtuSSR8uC0OwjuxfXo}=r@SodPcVrO0%Y!!H$-esCeupOs7`KbTcZ5Q$t{a3HwHDv z_MXa4>26$!43#oWsu{SGf^cJoqPqj9>)j@=vL)>Mt^M=Q)^(My>aMA`-qJ9_qa3;{ zXOK}5%vdP~(wzr-r4PU{=A=U_>zvtOM+~;E1KWHKZAqnl>gMML5 zJ-zBqYg_&8!^aQ548iI@iG@%+*Y%hXlYx*yOX#W7pA4b+<@SV-1wx#nC3NnF%IOe_ ztDQa}#97Y<>NRVS%tx2z2TV`JH`KBuBF4Wil z-PhOJ?2GV0|ExRL7VYKTXTH41`X?Sd&$``)N?pF%6z#1p=S|TTU3+ossX#*P%5{+8 zg!QCuxr1vQU1Nl_MxJ{WPC<(^ygS(B-W`8B^kWqLp1APYrRUIfP~PzW`Wjj^Zt~?0 zV}uHCrgL|qPUg)NPZ~_%&2+tQ{k>Fo^=6-a0ToUEgomElmk8fcDM|&0cT`;A@Z>w{ zsQBFOw%gjj3+kqD{@vu(7umL{TYpNFIl%w2NAJJvb`~0RhasN4JzK(8l{r*!nj%m9 zjypG)n9Q3fUgt^RO*H+h@Z9idGVi&UrGTdUo{Qa>u=O0C#oap&<6U`fs5h0j+`tHP z;`h6KZ&T1L(wrK&deC-JYizoi4xJeeJuW5?pd( z2d1l@k^Ow6Kj%%Xb6Mq<{>m*{cxbo}kr7qI3Mta>Z#{rL6$YLM7IV{bfGX2(U+AF@ zDA0|Ddhm|RV!iXOFG9pH?wa}x`N3{aMcyw)d{r!(qN-uV{RSmaXzEM8+qnmNDy)4m z(4xUQfEQ@$^e47}CbU4m1PkEaaF zjc37gpqKhwo^`#tT$Xi*+DL8sU4jQAeGC70QGaqJViOhVH_RVsp31(ym}XPwtIS6( zIp}O7#wyd73F)y8$b_7Sb?G4#`7+C!2H%SIz;gyuNr#*CEe_p>JdbtOXL3sK+kWqF zR?zaDN4jumtm0LW(WVL|sBfpP4|=fLx42xFu7Po((%WnO8D$I&5siPA{-Es||I5L6 zjVdu4ns4F#UgfCs_@HAtla$h1oU#XL(@W%vrlCSZ=3=MnE!xhGD0eN$oPvA~KBh8g zu*`xfdka@Lj0WE1?Q&P@CjV zM_8d|ju5KSbLnScZ_yX}2Hf@D(Z?b)=A0t&emv;Su4Y*^dZe3Hr^x-vB z<@)?SLd4e2#y5V8?(T<(cmB(E7#(AO*Ulmf?5Vy*^XNmW{iHfZs&p>LF@1}SF!~KF zA>Tyja{j8fIDhdDzDXECo=MdD77a_=yvY&QYc!urx6(rz9Ll}V z!C>dG_qjiZ-y}`3D>rqOH>jsG%xqE=Z=$1xUYL^2CEb5=U%+`dyWJwR2p{ES5pp&2 ziEQ5DK5g@I>t7SnbibL6BpQEYinTebd)o;=}h!vxMyUt|dO}s@)x2^Ln>ND2PqbUiJ zU~ho4bDjjsQj6uY@qXSS#kXsaE<1o}n0e$2#9QQncA#|Cc*AV+WrteV!P2>0oa!x3 z+P$v~|m zat5ceq)%ug=y|xiC~JqWuYpAj|~Ok`C`W2;g8<>FpNb z?eWQDV@0+0@5O}8&9mZ654UU{jjV))v&i5ut}Lu;dV1ld0>@u;LJvn658#9~TTNG7 z70be3*UfI*!Jb3^>5bbgn!Fk|t~b~^@an^me|7dj`2B}(Ej(g~ptxKW>ugb!C0z8& zdW8Tb*PK!_AZg>S02(ZFfq0>)T;{{T;-={Khc%U-_g%d#{Gqv9!_)%C?aqcOt7g!k z<-JcK#DJE$^UU%^>9S4HF7u`-@I?vIa?mzTKS-cLY0X}YsSovBhm98}T63O$HqARC zitzzQ+3-}{5kaUB1ML?N5N%v{U9Yh5Q5FWBBl)hM z7OiV;@>kl@;j7_1`L62xrHzA>68goYvb@V^ws$!;7vD3pHadQjAT!3P7V#Skm=*rX zLZdz?$u`Y(zAl#8^?n8C!}dBa(be;~w2IF_S-`s*T8IJ3;9zXtbKllJLc2{#fxRt? zrn^RljA^CG45r<=qLs&o5AoQ6l%;+9W_w<S%F2;p#?L7x{eRMf<$6^;n~!FbzC zu*@NKkBk;2QqQ32Ipa!7HPE|$57we_c^e|L%GKVyoTs*H`!1hfy2k&sdRZ@*=z?ma z6agur85o^_O3QN`t75w?-Nln5ba`ErD~usFrBuinh{bcIDHl3k@O%RB1i!;v!qU}IpdYQGmW*uI`r+QamEAW6u0h2RmLC7*K#DGT3J#5{zJNh{u#n(Um z{QO~yj3~8Q&!Sm@FyrrzlRz(n0$1g*8Xwo3&%m#NXwcH3B6!cL&DyP7LI@8j>3}Wo z{EL9Up(~3sqBy7N&rbq4ZidQqkG8KuVAz*^?nXc$QGMHMesSMJJ)ExFooj+h9<~u# zf6YS{JNcMV5bwa5X9)N4zJK1=ZtJ1qQ*-eVqOmj3TM7or2G-dGTsQ7(SZ~r6UB46K zXqjMzU*Fl^*UuZ?8+15-dm88W)y=RMW2v0OpdEwBq#^q&^UdZ?>$maIJi6qXpe)qX z3G8cs-F=w-(}fo9yxC6&oIf~?WHKJkU*~0hnAma9eAE{CMYi$ypijMpIk}C$49mK8 zEC1i3fpyn+qgllU=9=?0KCOKw7zjJ3+pWnY6>^}V*1wJY8*rI7?gG5hY?XVD=BjQo z=TEWSk@w1Tt~|Stc7t?I-E91qRqoTGZYr2l53Lu@!QZpqUFxp$D!Z=REfk3}7)ya8 zIt*g??}Dz4##*7yoj>{T@mDcu-0(Rh>{UES>Dk{Rio6LRad7gD01r6SO)fHK;49lu z0$V#kzW4Fz+BFy1r|UXv-2d!~##7z6hU>d@sQ-cR02jLC{M+Nk{|zFji||wX zx76Ji!gI~wYl|hiQ9%nr@rk~Z1{SeAdM7rfp^4H=YHz%2=5hIqBRDlGs_8JUOpht{gG`1VXukOOqn5R*x5)uf6=d+3F+|9O1v#K^ zM#%wfjG!n1q(K)T_8XIUe_*kL18zZi3_6 z+(0#=PoPbOqDWu-7$|BkLBDP1OLM&+!^nbKgEPmgWuFJNryn%V7x(dS5eHYR&e&Z~9JZO&^^!+34p3of?1?Y3@Qd(t-m}+Wdg1{C&Ds*!fw6-8lh3-_<^ntk#JtQGW*wW zRnfIy-_)hQ)c!lW%zp7V)CQVEK9+flE0ETNa@`xsNP zEx5SoKs$Dzc3B*@B;9!$5F|IQZNZoC56oY$i}vu>%`V6wh36L<^KMsU{U67(Hv0lD z9{J_HZ~280%Fyg{=0Ez^a<{Bo_!zT7hmRq9PZ%Qj(}tlW?oGzTzyxKF?q5IT?S!ls zHu_wi?|4qddSSb*5(6Rmi+E+1my~4J^{#1y7wo1)tJkbMF`HKF?QXCICnO_NfkPi13XLX#a%+pE0o z@HMkjsd>@}31=)mn0`LONm!&xIC=q#6a%dfFUR?nyw6k1Y@MwSG04ZCuo2~on4}Gq z5u?W%=tH6_Ao=T0|M>H7zvdf=HoyNTHmXwEw8IowdOH%ToRDA3v|^V}bs*9K%B4J+ z>pK%@?ANx2oG4$th^Ly0TO^gTBx&;`RE_p>?X=EYp1OSwEFpL~P?&Vb z&k~H2U7lZ-o(RieoN{2~{S20ODWNI2w~AbzUoe>n(Svo4bZ^;YvhZM_G~L4%3{-P5 zGO55OmW4M-XNd?=DlTvTa-eKNK)pL8lDmC$)4ysj+&jbxzJB5=oc0sg-tQ zXReu&fwHuZTmNTdBG*jIy-is)H^eKa6scdtb8-i+O#2SChK;;K?UW8&o^)28aY;vZ zD%i;xs7g8nd+NeeBZ7K~2~{3Nz6{oo+{e0aP|QsA;c-<66_xwZ<1f z<&%S&w#qQ0?3n`c3!qMGTo0foT=6(KzN3%dh%hZUzWKVYkO2kHH(@!w1JKb<(g0Aj z>4vm>nYm%&^sK?zNHHI}f-p-`w^26w(3KO*3EG6mY7aTV(caO7v|}JAn0C5>P$|b- z>D2t)q>o-Mxi{6*b3reFdT%=w?p7b|Z&H?cDMmfh2YVh*?7>UIts)1Sqc71IO{`9l zze1Bv?ixL=UEvW=%y*{`TV{|eIz8m|5}Lh-I~Ds>>E`MCpoNXjEIc5J*+PBDVp+O8 z!;BZPqwh~oaas`zP4^D%ZB&iDL#MQ^)1SIrq-&*zdvt6J8e0a4`Xbdy*GB!t^2`9( z*+? zw*-p+%uQRbUoi5FeDs+>ksr7oXSxS&Z=d6FPRuJxc!BvL!7w&o#HZsFL4rY~3p6AE z>FDY1X)U~l1Vi%YE*+a-c)U;-cY;CKgjbj!Zql)#%OFv-S82k^;D@Vptamh}wbyW$ zCak}3ICsaU0mY=^QNt2XFgz#sekM@t_L*`5u=inpMdo0iD)}pPY}BGB=H_af zy2cF~oBY!g@`|iU7bhIKQjbplO>3JuoVq&Q{5)vI8KK6GyG(0gGB7nsH>6N4M(+ff z){b3Zn($Q`^7MA}#0%CXy8^m6Q?6<&#`M@&qi4BhI^CcW+Tnc=GSkT6s-*o-YM+^+e?aTE>i4StRAudM(fVKb5}S2V!;+S2liJ6) zCjiGlIKO3}8kaA-;>Kmy`)$20_e-}a@@%zpSyyM>e(N%pt%`i%AoI3yWm$B)78yk& zxbhAfq25I!Pkqo2b+szGqVKgobJO()|2ry{d71sC@ZZF{-S5tnOCLp$lkLvl0t=Mp zrWNN*dQyoq$^>Oro*Xl{W0YO?cJ>W2Sd42Wy;(gy9g~E0`jC7K>(3ZrF+!d?iiyEu zj52X55dV|ExH@zZw&DIAcD9@G;p4AjkPUq9{dovNHMJ*hql=ygq&@DxRzz$l5gKgg z{PNCe>-pH!OSkf0j{uW*-2F*@GJo}3Rdf%6=0De~eRfsu`rjHNV9YX}@OTBlQcRre zJ9`2PcU;Vf5GLvQ31NjenP7a5SlHJ-ok3yY{f)#GRE#*iXlo2nglS_BG~s6Zkh+rN z4%G-y%&B9}xFSg>BZbxKJfG$?QQVDX!ceNxZOsOrT=0|44KLz3sg4!S4YBEFpaH5s zbw?k&bZSs3NjE?dL~Baq$xfD+K>dnMrtMxCp+wRF45j9DQT-)EkNWjEo0K@=il^J= z0zEGFnPHfhL7a?>E0r_}Z++>zBlzgN0-N0JNs~@3P|Z*8W_r=>IT?9YPMB1QTd5o$ zi1Nutg> zkvlXQXn)E5l6&u|; z{TL`_69qSjC2gYA$kR(dUP5$Q?R+NfIV3CW=reap9VLpS>lcO80Uw>IWs~SANxONE z38KdOw`@usB}VadODNEdDU2CA8_1?r6SL`_v|#|rlF=4wrovMyo%o(#Mab#35HI1G zt@8aOXj-AtzCRTmEmFfK)%u>YV;ce$sz%?R(+N}j<(X{Qd8lxX4pSx&q$J+w#mL** zB<4HQAF(X)JJWl#V|z$gwZdE!V@c=Rh2n1t5Wi7EQ7qvt1YtzXj!w{Wf_xH%rVKH3 zj}SVx5XPrf*-Sf|MtK(8Vm@cV`O)e6vWIlu*t?TY#+ik5o=tirmoj;Jd*n-a zPO4I^NV?8#NEv80wx56iGN26l!A9j!nIbNz}wl(#`EunNy42U&e7_x~2*1>-Cm7x>_wJV3#&sib2=i z@X_b%R6-PHxlVg?IkQBLHp+Wi!^i+a9!R8HnGQ`|nvRY!CnXjQClE`z@ltuJV~tWy zr}0t~qSHNO4_Sk;ccz?B_lOlT-7HW)syTYM%>*J$M$*j`K!sZQljkidVm3;DX-bxE zF0Wq%H+uW=&}JK)6>6Ed6C_3#!zPsfk(x`MF3?`C;tg)iTcC}@Zl5aY^AEo<((j%@b0ifq&e0o6`4?dI_(Kuz&X~ZRa0s=VCmL04>;La zoMu8edD5jY%E)NBOEsO|5x6~B(*1hOaQUV{G2189Hf_4MXBZ0;qgzPSq;?%EovwX` zDO^RzMl5PVDIq0n!lQm6hhRr5fGgZN1eNp=ORabF-Vh*uqXaJ~;Xb_}rxFOf9o&w2ZsPeah;j0a9Z}$0d4dr)=WBEaZa5b{|Y=RfZKb-O)|(WGSIzQ+o#Y z8EewD$B_FmqpQQ&c#Ed0ljnYnzX~Od-eGZ6>%>ga)*7?U`gC~_RY4_+6 z?*@#8ca^tYQLT}&gR}rox9K^oqL!lvO|UjQ3m;bie%g(+}T$JH+l|Q!kx=-3|df4^C(~2(R+U{I51! z)|-V7%vafsYg+%Rvrk2Low?6llP{0Ig&4UXpCk8UU0wb`l1lt5_Vld0``yR5egENG z3y&BgCoWgTI$IQF3Gdluy+VUf#6!U65Z1d6KgFl%?F10e$c`RV@A6 z^e=_~Ce`}=IdM&?)&uI0or9#Mf4cRe?V4RU1;L}N+$V2SmA5dLb#=Dh<<-8-JC`l@ zOYdX4jD5&f?y6W8u3GMqfz_M~q0=Xu3BtH{J>z7X{4(EEMcoxkPxQ+5Z0jpHMt9h3 zky1qsAx{O7k|U;>rtzjH@Iv6&glFu7gaWL~|Fx)ExA8W5%0YQAYFZf~2zgo>I_;oL z=8oe^Q>A%)auIknc~yj{Zc{hSb-s4T6LV2CK0xpf*`bTaHDi|ei|=W0ke0C>;0+tw z0bU7a7tCua@MO&7(t_u`OJT`?O1URf7V8``N8n*@8@H}q zk{F@1?kPxw5M~Db!6%rqWqnyMm%FBc`VHie5B}jXS>jfG?y;{1>^kS|&t=VS+wIWZ zb(#t9P{r=L)F?9|wSDgVd>XNpuBbQr8lT5+Bo{P&aG3z%OEHkAjDZVQx2*H^t~`Wq z4$@r6_%ZLUXdd%f(&8ti_QAFts0ZBgYrCQ>Lx7EplVwy|C4w4UF`)o!o%p9^eGA%jK0H2s(j&Of5epi_9nv~s!k1uu_z zE4M<%i(0FQj-7(zvLN5xK=&jHOq`QJZ{i`Q;J5py;{4GUF0Oh}x(!BRhLEQ-i-{1U z+!{HUvpN#He@A7zHgsLpRo%esX@iZKV2Vi+Ya>YI)&gon`V6P3LHJcUwA{F{vD+*m zZrYPOi`yZ+;XhxOrCVk7P2LoFm0j;WLLWwNj%g44W+@f4i9Egh(!ndF8JNF$BfQA% z*D4bm6i5YdMy)3N+29Uq46dYRdKT?^B6 zuRnkD&u{+v{g2=LBm3~%KYsn~=kKyFzW?WkFOfm|MG*e9GIJWx-#&c&@XHXN{*&*| z1|qr>Z3s7cyYv@S6Y4SLzAf79%HL!4C%CKpNBn0zim!kAIdjXd-WE%=XCw1|XEf85 z+Sy2n)@=A}bQSc{`KPI>@UB>Xc@O19wr=v3%lO5uDTcv~b5q`(G17E0_mM;!UvLlPPYT54%?$ z=Bl`=8|bDivGs2Ws+6+n$8bVGv3Q^jXoyufL1B)g>abPntiSfYrk5Y2`Rd#f`1c>a z{fQ5egHL96U;pmhAVnhiKtsuKi`^*_PW*$Q}*2;li$?T@+n%duC zO;?n~e=uf9BvU*(=bK6pz_c+&#NEm4pMlR`5c4tLk^kqv{_j`FS5R^yLvs6h415@6 zJbqWj?B`Ee|FhxfTkN{5s=KT#HU)H&cXd{*`~?P?$v*K9j-!A4Zjm1Y@(?2U+pb>j zJJ()3{N{Z{A=C#h9(|qLESi1&Mf>GN_@?b{(YpWHL09`t(eCow@8B;~e z-EFsJP-O)nFtoG`v!L;nux(Kv`NxGD8V@DZA&z}Vp^dE9u*7z0Nx|Y1T8UW|S5m5Y zhgiG3_J`jx%Y78>mi`ocATv}{|K6cXfOP=SF z)#W#T{^=t8<>%{cQP%b9a^2LsEu>uP&DKA7;r)}&UwKzSbPswrkshK-SvijzPf-M#S?l#;D)n78k#5)j@eOGT`eSyCy146hM52B@CeE;E>@3D1$`e@veXirl*Oa+zvY-2o!X|Jkt zOt_#UtSn7Cey4(oxaj(`gkjZBvGI7TuK(!TRSv|4S4F2b-p01?#m*(*UtMg^C0%tT(siBkb&$ zV%E$-qKq+E0eTL)$()^(=;#8_^bi^m9kxA}a3l8ThqCKF-RKt$dJbGzPe>vg$bLgyGZHpGB7OY%-7 z=*>wP%~%$z)wI$koanGTCVhv56UpO|K)Ks&e|MMPx_=)8tMVrA)m!ow^V%~*wH7l7 z!3Fg`b9A8W?~pa|_ttI$?M3jcmv#SJMuds^2$b0LISKD;5M!d=Mpb|E2Vs-7yLRis zj+lOLb-t+TW|NmE6h7WnQb!RhpxXV`%g{Xe&VBAKS8nTx;1IvfGVSkzSfRAX_tVd( z@ZIa|+vHWg?wh4yJhS$<-ybQM^!g;GQbEr>^+*mnrWt3^Nbcuve#yT0d(pI=t6&Z* zYx5>VbT>r<8?dWo4J{1Wb-k&}di`bgg)7t8)Z)4=BaIZ6$SRrLN5Hs8S!*T)SoH&i#+dZ!KTrHP-~S2F7-1<{Jo=;EzA zMn|EYeptC}vmf&Y29s~FO(RQ9w77igr=+MDApBvXqH@InT;A0lSbr|A%iXeWvB9EB z8LMKG3D3C`ld&%EQc9wtt4(_ALb%sjgcv;WHOYhu9c{_$v8;U5R+Q*G2?c9qX5j95 zFUh~uIG&|zZqvnig|1}A3?n+at0^%?8MT&}=Nb9G-xQy-%dq#@fe0!xV*Yhl&0^P3 zdc=etxQp%+yKbbdWGTFhuBqk26LXt~eJ;<#4exMl3PMH8#!l8{6y9!pguB0_M07Y}*|;5EA~ z=$fx?DR#R>SPYJsAxnCnEvJ^VXBqaLqmad2UAq>c_@I?gw@=sBh=2rcyz+aJ6Z`{? z%6%vf`zKKP2l`{v8y-48Qs|J5PnII6@CZR;-G~n;_FEsa#w}}%D|3{0C0WAiI)X51 zDS6J(e~c;n;{TQX_}%c{+V^!SySf#?1QA*fAefd7u#^v3yJ^RTf z;y(o?vwGJZq22-ix^6PWfc;4%&o$Z!bnpUI9^HF$Hq}WYJ$IkV1ds|QDW~yr%@HX! z6q+lZa(w6G2186#X7?VHEN^|-0244b`TFUt7>sOU*P@`{qDFGkiGYPfC)48ewYU!* zBA7!y#+8jv>ZZaexG&=LMYq3z%{FT&cO0&?#%+AiUiOiE;2jLrg*#oA6$#rMw4K_QG$0M(~PmGF6;j;?XR*gzIEPDTKY44g^s=AXKQIs zfqk&_bJ-tn(>B2T;`qgAk#G6K<}bIExipM>lmuT zYrAaYDv0FadUH)tud++(Kf21XmeP z^GDman2tEj0Z1~B*~ z(Y3|_;Kl=7)Ft#{9~J98GMtx}^&aI6f^pcMs%^X()Dx?#)^+zHHiUW@R9R_fARh|h zn!gC*;o2>#RdIE-Ye8_!xm6#4`{UAqskP4kv=y|4`f%W;=<-cbWq%9Qi&znO)4}DTNEmiwBFrR@6I>2Wpx-kjf0GIt6pmKF@s;%4NThpkO zq(rBmTge22Wq^Y>;noLkP~+QeGRUuBJ5!}1Yz_f=CIlq|sc4{d>^jSC>P->6%@-t~ z-?!=4TEgcr)C?PuIE$BFhtP%HWccyTBvP<(jqQN%78+%1)Y{)}7g{L{@qoH7);fBY#* zv94G|TueO75la{Zs#h&9;v1p1aEFHwR;hGbnXJLyz+ERkOmSNFg zjX^@rfXyI}Cx|sdM0;LdLhwQ12`fyd37vtMaweE%11o7>z%r~#yIhuahm|AO+RQ<& z9K`Zed;sDF9GCw0UgXOxZyMKj$0Xh}zRvqLWiVo+1+L_{YAxhzJ=djcU=wQTiPoRd zc|6pZIW!4}jy4|G2zm*_V;G4qJtvIdGZ@MRiEYB-jiWCB2+iCOcl4h}I?tq(m_fTX ztX&c8)d8d{-Lh-y669u!%_1-Tr?7$KmT@}^l2#b@+C$YpGjD@k<9{L8O3zxt%E9!z zO?|9vh=B^VKmzYWMEEhz=yVlKSs`ER z$JXB4*)`}Y9?;}DhlDw_v+DSY-sjHTK+`V#Y+b&!mQu8bM#}(>z9r zGC5~wp_C%1HDW+`<9v{q({qwq$>&f2;gs=L7eF2nMVX&7Qb{%k+hkS=`P#;SMHID(7!yky3_G){@t>u z+~rYz{CdBw*X4eR@Fr7?$~lN@GD-=H&(aj@!wuHJRaLe9H5E3jL@s~YaS5+2?c9?Hx=y{68W*BAHpM_pw8KrM5BMfQ(f9RG2Vt>9){`v`yIvg^9t zf(mQ#pZ-aF;T_hz={MyZl=iw~jQ3!$PnWU;>PF0bn5a^=Caw+*WO z-qTH9R=d#Th|ag6#tQImk}oHEc1*JY>wdy6Ym0T&9#$ygCa46R!>A+d&{T5Zc&=RD zWLFSG_|pZbwZHGm(x0MXpTMGMJW+pe?>5-(R_y~{5SAB-)AODXH;hDE{fpLLdPSaX ziguYd{%^xO0NzbD9%NHzkP9W2vAD`#apQs+AtS^7|Lpy1ljFv*?~Q&HyjxQ2X$f@! z3fMmTiSQbGEh`>b(w1beeZt`vAXp^f0Z?4H^bGy!PiBF)?kd0YfrmyV& zA*=HG&kR$4A)vw7Ryr#T*cLGzasAjmR*!bGx`A_W*nnGVS{?1+cq9f+ur zG-C3crOx!!0Z>nG>Jss&0QzJlSWliO&MRw=r(RGy+@#DQ^7kLkbhx?a2_`tDE_!nA zp0%Akgu5rs(?mEkhZCOF{-qM*BXcas2Vy?b83a#!HoADEmZ7kYK^#D&JJE6WH%@dK zc*#T^w;+~`F)pQB$9UpH*RKwur_}n@&V2fWXWMD2j&&LaAMo9ry`&SLPA{=hk(_sc zfK&*XAEuI-u9rQaanVr=eK-WAs5at%SBpK~E|^bW!uKZWyag~;v`-scFrHp_rl)2- zHgS;oj|Z(Mg=1nK&#LkxL5kgvrDaM%lY-`v1w&k_% z2a4jzT%{?BSowd%#W{-RI4Sj0fB6XC9vjTzuf=M>;`vk{CudnQ=dlQa89bV9Rq{Qv zvtg|gj=`?Qmdky)by*b)jbj9juIp+bCm)B39BCLOJv<=YruT7Q75}Jl_5%lx3wk*S zJR?I;Z@@rNW$v5o<0O)bFZk9T%imz%_-9XZ$ZuYrj+dw2zI*?N96w@?mv~rKYn%+M z@r)_WQWGF1S;}&EGx{45`^#lw7dFI;JewICzYOlOnVmlO&1nfGFh}kVvp#~qfhwm} ztAWxQm8GdSGpj7aHa$lG<_Rz<6DE|LI}lfU&%Dl^IM!j+Vj>Jb&+} z$^Ub2E;*yMmjI^e_wjFDHbQvl_f4d(oq9)7w;I;lk_*FQhZB+I?lzW>(PL4LV?*}3 zQi>_*O6mG?0zy2MB(bxMIF@?%@Q1GIOHqG`i?fpO9dWi(+x=%;*03>1)1c!{Q=`OUngp*Fg9*iC<6KmEeaSqN49j zSrvm`PM24?sp=&~;e#~eOopI)06%8#?(f_66S`u#vATEEGVSo_Ddz@If37VN3+7_; z=b~Jiwy2l?)}N;XyRxPy?!rZyqtdmv`6O`uc&0K}LF>=cB5OG9`T-nPiU%DRN?^Up z|4#Eb7l|{a^ylIq2Ft?OE8C;m%VE6wUDU&CueFV_Aka81%$WoRBRCW_Ilm*xc>oLM z;IXx`!LvNiFl`Fmn6BHGR*5q#aXq4_f{COndX8)3xIl(xl>4f53GZL@DaBHoE+0=)tTm`o<@@#9GENR}|+9L;zMveQEWx89O!l*luV3w1nqQ=GcIUjXZEJ(JhA z-`%BWVmpSMi%}2U%#+v;-hxpAMPlNcDuymxd-Ai{gZNl*;? zs&?p#LqeNsK08xc2xW5tmv_RPJ(YhhrW%soR%HiKJ*Gv+MX@!l9>EwPs=p%vQI$y< z#?C+ZDHDE)CqP^mwYCT7!T9cgAWFc-K?qf$1LIuvejs?-*?2|}uEkb=#GM25z)1`c zd{2r>35Se(CB&bxgoOQL&%4IpdL%h^Z`+Z=kT_>)oVfEV5N+FqjCE-?2L8Jk`&lpL zH}E(AaGBMG8ZJxoJP38{X`6sM65rD*i%#Q!LA0z;aIxQjsqHuOnMd2HI-5Xw(>lD3 ze?$-#m!=|d2YSyLZVmivFHq8%kMk{OZ;wufAYvBhjOFeN?tt#_6CW1S?)zY>`LfU3 zsg$r>xu|{Fs-yj9FKQkAv4vZIM*v)e$L36=z6ZCg`T@HJ_m$ap&}}i;(yW0Wg&aKF zV-~=T2d5=x!W|4a$zcJHJUJf1J%^{uOx55(Zr2YO4iH16awW3>%;pJ)6EU z6$~T3OH5H=4SW?G>!LdJn!!H->|IA%BI6fxDK1*)YZ~vzhhahFTLeo4zZf?-iQY{N z!9)P3C}v#Z_|>QA9ob?4h1$u#amx4}DKLdrPLfBOPIQGhbZKI7o*^lGHHavRZc=QOo<=+LW_Y-W`H zfNt06Pp7<2T`WvT(&U6<@Uw(a+n0i0j_ME0AgaH}>#fqJsS?s@VVTt7 z3tiXqC4S1K{XB$L8eo{Dml^iE?WU@${w^UVA#B;24DsSUcNOA2G}|PBv`&fGxsdfG zOfU1=i8HY9jJgO< zbxW@CG>dtX1h6o9Dhgh#7Y*Q(cI8;3JfWA>UzPiRO`<||mFes4roc%j zv+c~Ft4Z~+fG6RgU0-fG)0o~g+CC3O(^hr{e^rmwGU~Uwtl*0g11;e}XUt{M-fWJr zxo`KXqnj9S#-?b2uIb>Z2cB!w7E6N%^!@|J7GBLi#++e8N-J!-t z-xPEo0g+{XFAu>-AkLK28@~Do^iflEAK+TXdB^4`Mcis*xss#FGL(z-oK8L0? zOB{g&ZwqX(hs&HCKrVCVIEYsOQIzgFz!l0efY)?b!36k5t66$DOQW&33)`zLN`QZ$ z$1+ASH_ut})IGWSl;wdTi#BHLqGAQMcYI^HDe79c>uIX|@Ycc98iJw{{sg8<4=zUy z@RzD7-oQmQ+ElsQbKG#bh1+{TH)pBx+AqdkLMn0B$lP#+FL0TdnYi=@?sP1tHw3l^ zVA2=3crGW-rSjg;wdL*fHRp2T3tb_3;!I3=1eXi$UZVXB?y35Ardqa7HXH(;-%o1Q zDCkMBVHQ`-=APRsHl^pnea*tx!DMmKZ>znIKhX(k)ON&92LFfnSdLrLF43xLO-|z- z_$1t!#Pf`g`xWt2was9* zE3A6dsMd-5;R&(Z^ zD2lU~UBFfECSYKDh{|$X>>@KQA71PJK(etPZ~r#EJp3u)^Uni(Y>cZ)-P_)Se%x;B z3jXqy{$~BnyJ!oajM;(GjNs4WFX;S^~kGm|lL)+y|GY`R1E%2tJd)#4LY#a9nFQ{L}lN-v2W9Oiu57`^Qi+ zmaxQ~H=0fjh;z;c15Xr*9rGN{c}xp=Jw~k(cIoP#Lv;tYw3I4$%NO{95BErL_iA}v z>$W&s^>NtS(tm_w+g!yuYbHp7Ic~w{aRv?yfjLVf=EA_wIy9d7?rP2xd(1nM zrU0j;?X9K(*c~qM5z5^=Fcb?@1Ek~ex-u9KqVYARF1iS)eEZ|ikuC?bB@9y}JPsm0 zjCn5kWtRJ`KARmJj_Z0?>W19FEao#( zM;GTWI8H(g8k2dV9$t2KTSfrct6MN`(hFOiv65#&PvLJ2_>CEBh?aHQQ<4~ z5&UaY*dufDH+Rtwe|%4j)X$u~y2SP4Pw#(`caY`8Mb!y&OV(A(c}jLEL1##A&1Fil zRJy`EPg2v7#IFC$nVLSctphA#cv7CAbMab>x+6MqE|hZLQZMODri4LtWd_qwqs5bq zJLOlsp@mZx(wQqc9e__@nQ@?c^zk%FMeZ6`^aYpgnsJNJof($_XMHNG-e_HK*+9d; z;jg`_u658ziXAkPsXTM9kppxnj63aCfRL*gsJZKsXDoma3(NZPj8JEFrl%0~WkK%n z<5`j%8wX!TR-PPzk|!d`+}V9Vgx#QELqwfFB_vm=*S@)k6E#QYW3|%J*jB^IqgWX8 z0ZpG4CvYNE#$ArYmx=a~A{DDVck2aJ^)lL*NBZq%_laK0Po*h5Y5sQ>NX8i)7`H)s z7ybUH|NQ;Wk$h0pcxB-G1X3PJnOl+odD%3&1|Op8qjgt2R`9DPSaD3!Jb;2D3VO%f zokn`f>H*tx2)A{_JctdljOUqj2T=9$Y_-TzZ?R}aFh3!{0n7vFqLMM3_%j*WC#bgl zuH2x!EJ0EjOnF}e#^v^LKI>qBAwB4_E}Csm&Iy!^g^-i50_ZAn*Qjbck<^$aCj2yQ zr(G!#Mr#^V0-W|)UMPWX2iS(91Sg}_=d%>Vm_eYG2<8fe{elL^eJ*A0HnJA=jZgX6 zO`#jpb(>;MElbN{Arf`W0s0ONn?T{Gbz53r7F|~nWCW*R7%pH2Y~0@Zkxf(#QHD1d z&+Oh?YHlFQq`-or_jgvra-J$@^X(a}d(8tyjiss0v@ z%%ST0QBy;jWVnvge+?QSnk2cq4P&0Du8SQ`@J|HwrxN4nM;&dhUU_f2Oq{DM1j!m; zDrdGl%rn&ucJk5_@fRXa1GonvdQ&swo%77rx~+zye%PO@RlCw9!G0U?nzP)wUEDi} zk_q|B>#=z;5J3zd6Cw*Dfx>d!`uI9}oksnFRZ-O=y(zyq%~cpaOsd=xZS&yzjUl%r z1KU2FYZN>KhQnd0TP5lY*j_H=-@CE2E03*S6gjzB$urxj?SEY@P8gThyvjYa@8PQ& zE9FcK7fWN|?5p>VmdZr#F0GwtRc*AYx_%(L0*d7B@8Ug|9Yro zsY)~V+};yj!=~!!;*y!n68{|zDH0LSNTr|QGAmqVi(;|FC(qM3Pj~>_?6H`*mwKOZ zv(qa@ISx8%b=jHy7FyefMU0$`B`*5#zaf<~mZjI+k27$T66Gz zVaG`Tc`T`vx)x|p7M6*&z2arR9fAL0Gtw;%b8ii z=h)gMnAgw|+$tvG412QtKOAkp;7u;%svzs|rzykH4DXw-;3|t{aucnME*^Ift7*NY zCn~{JA~_4ewP#tJq}RITEU*ffc0U$S=U=DJcY9j_vPGPqH zt*RpC%)K=DGQx4t9k~u;IQ~PJEtP_?H2)0u|41{oJ&+MOP3_7H1;oLCEy;eXp~b~OisizPOp6@Ygs@*CSno?)Yz(NZ}&m;PHDOEWpMlJhw>(+~S4T92Bf zqKH(9P(jSkvs|Xv27D)IW8Ijx=*UW*Wt=4<1ZHu}vgD?W$uu20j0@ZUa~Sd^#*MK! zh~4hex?MMM>x+5|FPdPAOJRa5gv%_;MRJq-zh`A0jM;7s#Z+?2k~9eI9-bxF^~@${ zdQ0yhL@~A?270-~W|12?;W#f*k0Z%>EJHA?82pXfT6^}uDEjm)vjyuA{6jeIZ#o9Y zj-Uz!1BWmVp#>xsBED^gaK!mRh`ffbC6CAgIKyC*Bhr4OG1d# zgo;_3C(fP$Z16T6yi9Z-?bh)}U7IbzPDaH9W6t*B9~Zsu9*fW9^;2g`y+jGUHwT3R zJSoqdLuMyXs2y#}O;y-EF$M0}>UPn#SVpB8$zek&D7PGsH`wevXP!7cdeZ_b;0E|G zDmyBt4j-$Q?1d(ioM9=`_fTvP&Y5F;0(Saw%O5`lT`pV0U)Sq?HV|9EVZrraA7;(m8;hrBG>!F&WtE1Nt zfkBP7xcpWBb@bJrfBN}rV$6~}OJCkmr{B1X*887+m9v(G?|XYplBFVZyXuH(TkB|1 zb;E`j4Vl;_x4vg8ri!wAG0y?d{zBTlgTt@J5V+KR(doi2pQBk^wrXPj4-{E;&R}Ym z-O6gdOxqsDZ4pZaaUne22Au9*EWYAmyu^8m(aZS9$-vyLR9 zMB`hSuEh~G_R52mlD$*}#PC@su0apfdjD7T+F)^NssVsIj8hFPs60uA&_iBU#N4hCtq1eOg zjqUp%zx(0+)r0f=tGqp?NWy*Z9<-&73Bn%CItGvzmOOU%b-zF~xhl^b6WYC~A`4=0 z6JtI1-m@Da-b+ua$ih$pR~d6l&CT${_+g40YD2EZh9jyhfQ~E(7VAd`l6VzLtjabHh zc$w9_R?@jkx01&!cP?-G0mVLs>Yvzf06($rOlfKqC&0K3&d0IGEK93DVk}3DAXgZ@ z`QGFsl)!9*%i)}dXI2Mh@1lOd0a5mQV)Rs&#Z?fm-%16J7-@jAjr~I!A?fJPH zfnLLpleE9g|5$J07dsu6*YG20f4Tn&mpwmM3i>tt1V#J9y?DNNy6*YC&iOp&_shhO zqWxhl$oKOTb1PiT@H>o=mMt|63z@4RwkSs`O=4$Z=R{{Y2|VIr*RI=8)Efa*HsLiD zR(%f%uqQTmFH`>Ed@>u;U&Bz4lgP@G6x(5azq#xPK$5vV#{;H*Tb-1pk25x_daS4w zcQ~9BG7ey_KH>>V2i}ftQ5!>!R-E!&hCoY#hp1eon;BY-hA&@{Q$gS=%Xt9#Nb3*g zxvO?M2dt{8-C*`C3}J5?SeJAcMqRM_UAyc|qp8(H5tj%;l#?mOr90QL$F(R*tQx|f z;0ym_Y|Ei~B&a40$Z!NZgegQR5`NL!Saij5SHiEDoFJBD0?vmJ!elAqOuCc!drBqz zf-68oPw`taneiZo;$s!3PCb1WrAe4)(EU)6OFx184xwWR*+GlUUEOpet4Da@1Zf3O zOPOe0_Aj2%!aa4ZrWb9+Q@gSMsX`W~{Bn3ac@||m$g(IqQ||h~zNIWi+#$2rML%dOeXzU9#fh*l_f_68ChLX6>ikUCWq*Ux;q0G&Uu$iT?Rh;%0S*@@dgb#X=9dj~ZRq)j&>^Q|1{9Bu$m7^kVLJS*=!8 zIo88&l8eyz(xYOC7M(80MbC=!T*%+v&!EQ+ML1QOU3NLD9wKPn;SFZ6Hr9-#>8aH+ zl~AZm?|m!{7gr{^a;e6gXjpgUIZ>nL?%jgjoYFV?R*l?fbnZOoC z-!C}JQ8>5bx;VB&^-#6=SCmaE*5FCq7gU?*@;$9TL3Qo|azF(SQ+GITTea98VkN$G zw5L2TWcH>7Z6q1OW@KA?<4%FqOC-0ZAGSp|j17bkC~MZ!Q>0_KW+zw2z8~*Ln`DfG z?>F9ND8G|9x}bJX-zYqp!JuF6RF@TX!;u;K&pMasDUop)0_f4MJ!(qHRgce5y`TgCsRx5ZTc{&!51HFi%1F?Ko1`o@!> zv1G3{v>&j&y8lo_-|J6RIepOGz*I?oIaT%q=68Q33{jjzd~F19-w?%|#;OBizq4*h zPnaY-C;8f1!yS{fonP_AdAC(jqWr;D54zk`i6shrF#cHMfH_r>1Lc3<=>XZ8vmQLT%9=*-@`)bNH*uj=s=F<>lFGEYv^ zZN5isa2{sym88f-?x2KlR@x)RPNagf0Om@C0^ciU7c-MDn30`KWNDlvEIC@7|N3TJ ziukg8;D2_-qwfC=4NVt4HDXDgCjkiaW0OOcBo~ts z#Rk2nygpRRR#Thqu(&e+%Q1*6RhNa$p5n4Q4XM!*Nvc!;J_lxwll)>%@+qx;TWd`% z9?tnnBO%uci)SJ3u<+fwa4l~vFKdi!4q1L;jMCi7aC%>qkyw?v zJQ`&YnNrvFSQlNiEE;;@R-V8={(BcVe~7~0*Ky%J)tW}Hi<+7%n8iY6A($2uJc+NE zR=3rC)K?AQ`V>7@a9Pow^pz}5aDSxlJq7R&7qPflQNezyb-gQfL$0GL;VN|wt@%Z1 z>dujuZ44+4rmYI}2W<=7rs#GpwG=)2@VFkv`$Qosf2WscM3K@bf>s62k`RgieTrC4 zmLk5G#5i{5qgf3b9qAo4rw~iZ$~htL87`FMohLY6g|a&OGsRN;QQ%^(tv4t zxm6KR)kV`xQn&qwsTk5x?}kDJyGY_Tt-i8ty$D#)9pWZ zjgI;qIHFAihi0^>>Z%(TRXY`r))Y@suHZ_D{lEI~6wR5q%|wrU>td&ugz16bB7^9M z;GBUQ`i1bKRcD%WZ47W+H`SsV47E;NHF5MMy4(+2On8m$LM`mt!v#q{80SkA4PZE=S>VBk5ie*5YFIO zW+}VadhwLse^&KEcf-H+q|v1T_&#WQ@nuiHo;Kb$p29X^jYGI@kOI+-BP^ga3`nl$K^EXb-5cGrM$}# ze$5&+FHa3_r>%kS?Ur|H3>9Z#tU-_>&N#oAS!>}MGeh;y=_122Z)s|R?QURq32yK4 zyBUpjZX+qJ zgHja)yVGRKc>wD@ZCswD7ZWPyEotZ0b>?X9r+zlIo zLrQ|l4Wrw8CbvF>g+IR&5wCh1qZ0{&Esnn2LOgrwAi`S=wVYVO*<7AmR<3&sENVju~lmc zQ6M_v2|T(NlV;noZs3pIj&6V_nap?q<7rbZ?{dkY)8$i@Bx0;=J~{{`7r|1YE`|x6 z?zdGp&4CtWwIn!mlqYrzjPJ#`J*|re;S*Z*hoUBmOZZ>xnRbm_9%OietAoD{^jP8A zUEf=V>`tsCy_k*c^%iHmPT7$^7j@D1`k&;2ZwS^nid*?!*0H64EV(#X`+^$$%D0 zPeQbf(q-QJC=wj8D~njCDFU2yCR^6Ao2XIVi7b|c>QEql6{EErBC6WmtgNV~` zG128SaoE7Aw=m^yFk9W86$X}-*%reF%^d_T zOt8{BB;n;_f1dw?S6m8~U(Egw#ta)`c#=%XEC@UdT;q#LtO47#v{`iUWj7V&M6qBz zO9G%aH7=`*k@l(M?&0Lje)@LT`%4%5?bF zL*D{1bm*oe0eF;n6VB}#9J}HZUVQ~b0Bcm_{I+OyKWy-iwr8O(7VvLve->1eE22{O zMW>7QD6JEHwSTQWe3>1bv0GgXPy3-;t(Uc)9)#wo3fhhMCI7LXJb^cT3*QRAM62PO z^l1F>#g3l?PZE4ry{+I(x9y+sG9h+>n5M%QXJ6^p(N}-a+fJ9L1oSnr2QH4YZ_l`xdk_jWbAOnD|V z=I+t|7%i%9*hKnMf!e-%{dHWiG)!eo0~UyLg+)DVN^smTEPkx$?YPa8geOzqY3v#= z{BhCi?y>k>`!nsJKMfB{a30zv-1cve74>8COu7y5BlsHVVHe~Qh>#~SjYHfBi>n#cp_+7PG-KBGrB zL2L9-EKH4R1!bpo8?B}n9~Fz%bPc&_q@2a)!$_}|2^WF@A^u% z(X))qIBZ91O%r)8K@VD%t3(74`HD12GUbeXO;bdz?M^b?NNwLi zrecABd~XqqaArnwXMWbS57Xg?&4FhpBQaF=01RR32gmLb_g*|eRW;2B(Vh(pw|%sN zc(x|j&2Fn50c-?@=aH${t+0-P|5H}rMYfZZN(`4`g2w@@4Y7mdnRMpV(X^&!SqKl> zLpLoPj9s_U)XqZ1S;~?C{0hkwGMfcZ@mXjP0?1{5o2SpE%=(7 z0u!(=x)$yBi9=3(A8en}E?|Yrs2HApI7HT{>NbF9xlbDsV$YOfnKLcpNsA4pV-o4^ z#Q^L;aNQQTk+Rd%8sFbP{3q3+@>Hg%%HjQq8cB(YZEj@Su^Ve_>TQaCKuP=;3u4Pn zRWEJt6fu4(OLOIaxe{F%A(b;>{W^a8<95K2blb?itWXIa?LIOK&GQ z$H&~suN&xMNs(f26^m68OBT)=1WaOb>74sAZD)?%+|-+d1stl0>s0l`gOO6@G3PT8 zVbpFZhnb0YokG;2dtmV`s3pZQc-iz}4U$dI2AF?ACTj z=?Jh`HkGaF5yQnYA#>?UnSI$MM+z0TG`cq|oAyz+rkS>C^|~CQMKw%?))wAoZ#SyL z%#z1h?!W$egd)kaiRn3fIMPI%pGe|F`Jb#tesIFf+;#K(a0|lN5Jwo>2*LO04-jUG zy9FTT5%#$6jygf9Vy;41P{?DZ+`E6~2|kYXV?mo=A{5Ryd7nR%F_UVhzsTmTDJI8Q zn&&ACq7IS8S>~?Cp6Em$b+z75D;IDqbvbuX_?G4ZOsQb$1tU5Zc@`t8QVjYbLcI&q z4-e5)nJo_wZhxp05yQ#yTre5JjTWof6v|VWH;5Yja19m)^_PMD;WDuA+Q$n8JMP|9 z;ZL$eu_Si;k55@`&wpY{W`#vn=khv#7{w5#xjjV7XkCw`fiGU`M@?<^jKw@n0vH?I z45}ZQojA^1?4+H$=FpOrW({Nr0fA({& z3OGqo1jbH#!K+^B4(AfS>c5_Xge`o}c7VSUdph!5iq{(MJm}JiM z$&sd&z@5gv&xuW)3`g}|AoT5zKSQ`ja-)1|8#MyJ3DIcooLYT?^IkFXJd+{xHQ*V` zo!W!v7*8kc-2zP*OQio*yr~O1cI8vfF3l6Psj=O4=vFP=fd#lnWIlCh+Ma0NGp1Pd zletqG>2*~5=bq8FGmBbNlNP`_QW8L0;NDs<-l8wL>UQXClDvDwewS&D<((OCb{c5# z{*DFXP2&7YRQef^@5Yod^BMwWnJZVGXr8j$uezs0n)_d_+~*-&z1t_UR)+SWtj*v` zM?4&Q1N4#}M7vGQ_nQ{uRguWce(`09caxgTjeXTKEcy(9`n96$tXSAp~N z%5mH2q93AS(c@YzYNS-0#5{yEHB!LpHKd5&gi40s&O|Dcms5ThsNLC#sX~zbM53Iz znm%TU-j_3@oZEkVqlovObGOW8iuYrSAt+Gdct)CEEOQ>whIWPb#4PpEO4$cI8 z&5N*>MT2WB1`};{{RnUPhpFK8*!JPNT4T%OK-sThIs6lc;MZW9=1KzYHkfyjezRNy znM;%jznnh*!#98ZCR&=7+{8_0eHTY4=;2&qhDE!Jm~^92Q>NUV#yBWz${@MdH%{J9 zYpaY!rsQQ`8lhB3lr4NY^Xp6Nal~?dt)#T6)|;aoEDnfvBw4{-6@>c_$iSie zEM&xeNELu4eH20HBNhKFe0SqDX3lHPHN)N4qq@WN<2+c zcnZCa=)le(X1Ltt(pKATt;vd^@f0WP!#ERx)#c>#b5?g&w+qBC5h8QyN?zl5Kb1RY z3ez`^k;=0xmAe*Kv%FX(aKG&lSrGlZkxJ#2{(Cpr`#Nni5kiIrU@G<5Fz?4QlK|@P z93=yWR>zTWWm#zsn;3d{SZ|C?*_(|U3n%hS3S=g zuJ(Oc#Bgz;1P@{pMl5ij$t}1JO>u;Y1tHVIaw)GG7;c+^m;KR-1um<;8@B|b8<8u8 zbHgD(<08A9P@08y$4MnDviRTVBPEyYbK%|@P!WI+6G;J~`sH%W%K>6~v^XmKhd@hY zg5OAM*mMSf5r$?*Gy;H@iz^*G+ntrB#(Y^1U)O1Lcb1oDPJLt_*8>ltEmp}ynmboEax7O|X0$Qohx0=WB7;4c-o*xvovTNXg!0f#*@c{$`8ie`%|ZuHrVfa&)0AH=|^ zVh4_< z-HStv6H7BYlJE1P(k$WGWq0I2=-N)%w=yQltN^&bkg$a%<8$?cZY;5TtS%O&BZh|I z$Xe?E#WYQj&K`8W!LN6XgBz&5cVSM z8~o-x{2LhFMS=uzqATM4+$eTJq_chAGdTAVTW?lFG*o>*YKli{8bX2#_@yl4U(ApA z(Td}W-p^dv#uYhNgnb3eyE$T&GurbEtBk=ylbcL*Ia&q8V$s?S>(#Ks+$PSebSP=F zXKlK5K~9;}T500H10++pFEe(NmEMAr9LHECEEUHcP~M-qIO7nDxl)6R=c3cP+`zG_ zdrZ&}?0>M)2n(RsbAoqMM0tc~K9WZl!niPQ<;vJxb-{%W8;)$HfjYhb284xzDX->F}qDAZhsd#WqX8}|yl9=#;$=AgUE{GTYB_L$C2LpZ@zJx;@$&dx(D^zc#Zb}AU|jg=x# zbX$|`Xpr6~ex|7MHDSoAC^h-3GXT{axH|Kc%_|hy!2m< z4yX}zV{FklltEp%3BLp#@g%tnLemesGsKr+yqo-Z5`rH1l*4(=b-328?uxp`<=nW8 z-F^g3w-m#S0EVt1%uqa@9Yk_LgztUO=IYFFRF|Htb)yS%C#;Py*fGNJ9jOiZCBLcD zV~=!SpQ>7*dNfU%E>9Z5;QU1JHAZ=;FpdKv#Av^%mJem|h_x%?M5X_CrR0ggfu>gw z?Kftumm2=Q>jzU-)cT2)NMz3aPnhrBoYy4GkLai;ZDatEzdcJ|RcRdCu^+9MS{L0~ z(;T_LokOYrIkyOfa@57PRh#Ul+$OG65`@rD9Ir#l7 zh}~S^_Dk+88h!i6=;1Z}gl{_d&Qg)E5O(4ru*9wQVu2lVl-&?99zU=&CJRhvfmm2B zosPx}VEFIZ-16Jw3L_OF@;Gy*LSEo%4S8hZx8Ga{zz6+lcv$K!fWS2#B&dOrIYa0( zYK?i+lPr1Fz=PLs=1b*oPc9B%=z7A&Z^TAZatC3F0J^I8uA*}o#RUugUJrDMWdY6R>5x#jH_0>Oh^uMBIG0aPT zyg4uy!cJssU+!%E5f~U4;}0y2K5G5JvZKmO=Ajswa_g2oVU|Adm_9RXP7Wg%oV(YV zoHOI`1DE%}ECAu!DJF}rGm{TIy9Z{Wc=;;1kX_s}%N_*32WB#u`^?#?bIwfg2XPl? zV+aeHCuSE)WqW4wLEM4gn8abMVMZV1x}BvD;x6v9AQmrMJDbhqACOJF`iDVx4RLCj z|6^=8V3BaQoaVWuVNtqR>i-^#LDxIFIei&t0y}p6=VnjHtGC+!itfP9@<1AP)P)+% zx+@;5ta2%>^wx`+k`H- zAOtO$O1OJjq^0)LPtmH=+M3+3XGgQaio?T~hSGdGGi5y)+IeYuPwatFHnbq*N10-h z&wC(yYIZ>#_MwtDwLFB=(YhhGL&Kx;K~grgFa&7kk|(wWS-h1&Pacv-#={4OoUK9L(SF;b4!m^v8b=ev%D!O!ML4O3V@UnF>{hy ztx$L1Q4<|ySE*1TjI!HxbMB;Kjq*pO?v6^1&DfW(U#PtjyUes z4x`~zrtYOD&31#EG03U*agoP)0DCc`h{ue%_b49O&{cVpJjMi}{~=bagmQ1)YxkQ; zQR=zY#r#C(TUip9GI8$o{=()BdXzY4LbwOTOt~9$RAG}zwSt#zqpekE8hdwDlTzQR z9xH0@VV3jcCAyzFQ|je@TKfgK_doqAXR+b?-X0Yg6wgvVkE+w9!7*oIIG9qga5iFJ zMsnGfPM`bsWZ*cLDs`4Zw)->%Tu6t_cGH5i3a%+Q1P?J5HE2qF^U_Pd%}hL zgnfo^Q(>=RH*N=b(Kb7%n?+Z&^D+W&XJQU7@XKsWQnWF|mbr&yEw)nkMW>54>UDWA zva#*Ax&)ef84bHFH4jnAZ}M>1@p*R3s#v$CA8g8E|I?q{b-35XW~it|VJi7Xy!N2H zUx4m>yajk@riWn6bQqJ+8w;OoIHb_m|6!Q$WWU|`K;JS;4;0Gk>*TqAdkv#GI40&)~p=Ip4MSe-H<(_x6O zo$hHE5VX`e<#3nK{v{c!*0hL?6f^e_m}PdDw%qUf(4UBI(u7+qdD+0>sgViy1o{(T zeNk`WWn%|GL(RC-^qVw@6H&69W$y9w3DzmeQMC|`;Y&B&J)DleF+EQ3Y?Lx#Lb*Ew zEWJ}s@x|##72MA(e|071UgGD8ms`5%887&f*x6A=kHxxb;j}#9+IPM!TGKVp)w#{e zu6M^RjZZ$@j00FN?ghLw_XV8KAFn6iy4KUu#NP8&@>@Jfh*2Lp zaQV@uP8EZ`1dkGj-lqb%IW_iDD9MZ=pWkwgGmaUxZ>_T-{Vm0 z;n?9pm6b?ymAX{nJW1ukKT2fo)cZteuYL(%^Vrr%TE$PIEU@=m2>=@xYUTi(!FDft zeiE1d`7W9%c_NaT;CLcPJJ3=>a<^!(Hzy-_gUr3t`?2V%q9v=^l4p4ygc_X8WA|nj zFqoCr_&TwzhNfsAkJBU#LlG{Ls1WQjrJsuJ4(=yy#(ppFG3|!C>R`NWg&*t-)yMod zF_z>kae0S76bMt)eooFZ~5{Q|dTTgun z#U#p5=B~om457)g4#~yAM8#^*U1=ITM{$0W7($i{^iW<~6T2gVJXMKP&i1E!kSgG5 z&Rvn3KX_yoXRg8*;u$+T3bxUW>AFp^)-Ud`VpT1=sx@of>W18cs~nE^Ac8fSNaxPe z+aPXsTixwJ+R%;|Mj-_cVcnJFd78#ELHBJO4QYE+sZuP2h2LB-=@bS$1G$ATfu60& zIN?befb$=*Jc*rR?LUECp?O)kZ}^hcNUc`JWuAnQ+2V|G?lz=hV`{U;6~m2g@krFv zj=LmHQWk(IL6nv-=lJYTQ!#qE>j%844mqsD?8CC^O}Et4niN@_#=yA zXW5(85CO=3)JH`!+;LW&wI94Y%OTtK2w2?Nj=IAKVQgskYb7j%P{6vG&dqhdA?JH( z@Jg67TkRQgFziG**Wm4u51Y<33$xwSdSTCMWPPMb3|p#XmIjeT!;N@uL)~HpeXL7V zv8K8Tl&dts^11(6vKU(sT^+DL>8>2%mus7f`l8v|$ps)*ZcGP1KPrA!bv;tcxiHL% zISa0ylo>>-Sej;T&$U~b?kKTZ!6nw)>D|&in6ezZ4s&IA=Plua9LzB#Gj+5OBdIvg zB=bLV6pG`(6n6uy>S_yD8jCtz+wAnJXy9$=ne1zR@Bs#s0v%j})FKd-iIk-QxTaFX z>0H{Tt0q^npjbu_5Cq3OfF7d=<#L^B|L26vr>cCY`f>xP%4pFQV0%^jkC9xOhVe9) zNdVlW;4Dd;RrM3MZL2Z-+v>U|ca6p1WBGpqTDL?cGj7R&Q-{fFoUK1t7+zZ+$So1& zJjard@65pc&!m)dp2wb94{pULa`zU`Sfa83V(EydF?R}ao-rD%Dt|$*1fIw|31f^Z zi?i&qcTwt2gGX^Z{m7Y=N>!ZtA8`+KqXGHO!3&Au0Nn6+NdB|5`?2}hi$T%lFD;Nm`1d&MQ7^W zpsAS^=IPTQ9Ce0|=4B`FoY}fFAE)x>x2B7h`cc%Xd^&| z`Q`8ozWS%AE=roaqiG3|O9-wc7+9V=HxZtwA*4y_;vdBbFT9+E^`;6kJj=Ms{lC5>hi6lY%a%sh zu##A!W%-^~L@_!DN1ZAb4ocQj9B~d{>cyF4f2_O=#am4YOy&DeaUZE&qqr@s4hb$uyRGh{zG}9$ z{uDh{9lZu%kto#8^1gW>;z^dIPOXYFl7sH7_!;~~H(+|bCZ`ga#*7EilW2X!%kIZn z&I6ZcbtA=H7k1DE97g3kv54h)&aWMoM`GL4Bn2^IX<|jre81h$#3aAcP+wVD{;p^% z%J~nhaY_|{jZH=B%Y8aekdZF7WI?3xrAU*RiRvfF9(9Y`A8jN}*3wj*;vBs94RJD7 za5_4b;E&V}iTgu(vE22TTSQ4SL$6Jk$8bajFzYu-7+i7npQF2nL>7y2j?Di%4i3z0 zZnAxzU#H=BfL$P`!Wzk8z$DFi2v%qhP;t4(;7D;=%}`I9P>2D;a}#?F{ExUTvCHw> zGh*FX^+bvB0Qz`vHA6fj%H$@dKb5-gt4F;*CJDMJGG}3k5Xy|Zw`$C=J0_Z`5kqs6 zfm~^^x?Hw?imWLH-C?o|!n?L_DlolCH)Pq3>&W0<~T>Wv!qBcggrJQO~uSAq9egt4;%Q;e->kj z3(c2RuZx~qM4qWwun@*W?McZl2XnU3&L%P+iuzF-(rHYvH4(;86uOz&WjC|YwQeci zXR&kZsAq&knk1RLe4jOAX-?Df*E&vYqe&!)0kwx^2rA{+O0KfYrGr+Nof)csqTr*( zwi8pDnqar9$dw)0@V-B2n%KUa{Ax|xZ*^I%jb)2`AzV32vLHGT?6A${iQaD94nPP?GW}?`ik8*6jNqfD zSDryvQ3habl1m};%Y9rus_QTDbfoJnCOKnal+$F!uFPily6p}8MUS2BCoek8fYhd^ z28|0YL;!sVLd8raS2U%2y`^VXiis?d{-^LKLRaky37zGG|A_jxT~%(X0>iS3AUq79 zeNRszygZ)UBr^x^m!X5NZ%SM!(?`X+sEcx_3Tlp|g_!t%M%wb{HEFZ{L)A{Z?sT)o zksEX?Ps)NP`8r|{d7Pq9a{%s%h?!(p+)0Eusl*&Q%W<$&<6I6+%^0hMrb1A+u~c34utajjRIWsh3$eX- zJg0Kc<>K71*>&i165WqtcWuZ31{duNM|?ReW=Ezf+@}0ktgC5ggY1AX=KC$(HJH=vLGD%7{`WQ&1|dTzh$(ljiDBtVNY@p*2eN)K;;j87e3H@0`F@o_@x8iN$YX#IhtooAbR(2#!m^KgXY( z%#9c{Cas+X;7dxL=Ceh(E6{MLyDw{U`+h|xv4rY>riA5+^Vw3&JiW1gq-Jp{&qNS= z^?+GAJJGS-=+2JTj~!0Z1G8w`>2+JQCACBeQz}yd7#Xevh_ktH`x3C|A!^NVNOb8X zHGuGQamweL&o2_RJqTOV4^us-G|je#pN?QX+tN$}sAoq4mt4-pcIT}kwH`m1 z1{=@GZ68m9|%1)s_3X zk2zXzyVN;OlRS)70#XV!)4z3KwpRx-=&HaiXgYLSDuQkbT3HrA209W<ONl-GAVAL}|RPnommq1{V2;&$q}l!>o(<1}PcOnOht0 zh!%s0tF+#*kw^xi8_L1OPUdWI-JonxRMd+iTAEt7w5dS|n~4Bi6cIDQ-CB4X({DF$ zHZFJdy550*Y3k^2KXtm-@a6xG^nTy8m9hJ)>an7hZ{aFS9$sF2f7V4mcDjLU+)42J zAHVzI{T#sWi$(OS?gs+kB#Q-i$K{(&!(#>!L-(jr8LzNQJEEeG7F7qK!ZfW)4Hqh) z`kx)c{m@FKZf=0d)Mjm8albL;hr>iMj#{k@D$=8;(paHvs)=d^_Z<%*GY0n^oSn`* z=ZR!gz)6E6R+^f@Ntt2VA%MOj^uL@HpbA_Mu&WNfR!_A-mMO)Q)6f5@Go@bc#o}Jc z>GZi20I^iMcjRC>wH*rZHEgJ+=bK>PG!$cLo(IyS$E0FTTiT<|yM_sc4C!U8Bns~akn~4LA`#BfsF#qU2f}sjEJr`Wdw(zD5GyCnY`zm1 z?Pi254`OWXc(jH;#?TT}FXu|rQ0fDZdb zDrR*q1v^!78r>|qq9xa%_lrpR%O>V)sgOUt|LOfNbF8O#zCGXwn|-eUE)UOiRIKbC z91Nn1wpiPr9q~10*pQp;#+3mwgndSnTX`u0sH4^X)e=L5E@coS9}(oRAz4dkt3+uz-zAlNwTjFUOnbJUMeGalkVW~^C@SU> za;&NK?w}kI>W%n65*70-mCii}-sKFPj$tzgV|@Bi?lm?Mbqj832b_WZDH#N0K_6Tfj`Cu>H6 zmzU(+mQ>*SVxQ>}Mt{|V)iat35%*zu`xO2qaM6?$j(+_1k91S`aIXo^&q!P~idWku zRNGEJl561?X~u%+qGF0O_xil2d{7ytT}BJNGMz@{3b?}n%CU}#TLDVl7o9FzTzX^k zAJ{5x#(}OLugu_|0J<6@mZ!?yEcXnv?d~Vb3lqt>72W&NCzfk?dMU1+0Y8&RBlo;(JGs^>*Bt?tE zywT_KBY$cJAy@*J9?xePV#>>Qgj3^_<{5LIkv}ea-8~kcNofDsi&{s2YzOR5qksql zzM0Zz-xLvl*x2d9;bGgsFB?Vv*Y#K$_ie%AvxPt z^03l_*>+~oRU0*9JyhG;8eXG;WlNZ$z*T+DDQ%A!TI-w1TOz|1RtVbly_lSH?7|~l zXmV}=u05_!>u90DH`$C0SXa3*9o!XF8LdrQERC)ERMf3bIrrLlgAoT$ICGEKPZ%%5 zv)>B$6xoa>U6eUvGM~ypF>@rYy#czv3TJ8xmx12pt(ds#L_Xn6^H^N)NwLujqMhjd z!xp|~wbW6qA9YO(6+}ObJ4bUKBX$(3xqI@>fvzbA z-L*yiFimgJ#i!Ct1P3mrkYEN5J>A~uZ zn&ns$>>E>@Cn)CR`#QKiUuVv2hVM!BVo@8jq->)IF%4nDfU8U-&hP*ru2BGXAlE*Y zqU=flb2{L>sMNjY8{lkq%dSAtCTatUS<11C$ouX~z$3wauHqqG0nbwzg1!&15{Y#7 zoIGV^dxqd;=t-a#+>Ax7sR`OyY#}TVzzHQG-6jTs+G<(|jP7BpKQ2s1&5z(JwTeG4 z&%!UOeiK9$MQUyx&V&lhY2BHRXkU)WZDQmE#GW#Ur7Dq1Qnz%;iCa4k9YslGu&*=@ zKxuGlF?V+?V>`)lPM|2qK}Vg&1yie{s!`G6%>8)2l;g_v_QopZF>_B3d&XAAV1RB> zI{+1}i+<=#1uhA;FHEVea)|n|TO;w!ZfmThYeOzhW4V$jyz75QGX!cPb)TXA&=gi! zrfOFN6+RgRYbpRllFNj-7a1K8(G$5#@>Iwm5*;$m+_T$2DIC9CfP>>z}%{+rhSYUD@9PJyE7K2j|yy`gs?g0lNg?U1zuMG*;50VNhdQbETY3JYF(n3BS&;)_s3p0G+p-mjI=E^6e==h|35w(+L%M5-aYy1-+3qw0_E5 zJU)?nh;+5yfT=BuUG!M>6}1YE^(*7wKDeU=DoJLR0~|r=wrF&1^TgX4_qLHd1zDbQ z+`8d?u4{5EF9+iKQ_)oIekQ8ImgIe*X3~iwXlR(`51>$k@%QBm>>S-BlSh$O5aM_! zn2=o#4<4dbwIY6prOq0tPj?t{x||e2PF+9H=H#q&`o&4gYfd3tP#txHN`HGf5?Y{C z!t=`>M%At~#pwyAvLM{RXwikH3p26lZE<5ZG5m*@U8w;)LrAVDmHx{}UmksIxb&uf= zAPow)X}oO8_X-pk)OApgnz~7)PTfbZNI_I}l~nbKI;ZTn?+l>DDdi%)%&8x@Thk3V zJuz;nF@n1ZGZepd!I>5#%==x-Bn{-xJoPWo;iSjuS|(}OR2^|I!r4sf6DI*)`Q_O6 zu~^$-hh^25rdh%9M+_9iyn;E!bNtFwOjb3c^Khg^)spyc-xx~Dl2C1n-@qp7hk{<` zykN2IW%{izC5l$WGM?shK7?8HgC4r7jNrK%HrO`b<6nn;4u%l3L~!P`D({XxF2rmA zWwshMOCNRAZ%p~&OxmU~bzzq`ef#6jkuKpQf$Fx?>z3m57fUe^_P?2s=ZQ$?YFAqz zW2YW~R%0hBbw_lhQmBjtP`nokp3F?lWp1}cH;j#I*qInE1xJX;gBT5qQ!%53bKcDN>Vz!ol#wIdty^Fr;HM|XcdTgDZeu%G$QA=_uUPfM* zdoSMq^sAgTD16`BgMw>HuzW5jbpVAESzYxBH62QLLaR^2;IJIRj}YeU!2L_*)!WGw z>#?4?+Lszz2dSkJd8)X3D9bxul3hw=%<=jH8L+oP3f70)sJ&m$DdUt0dBwSRA-x}r zEC9=txa%^%5=XzpNIVT9bEd-BHX(2=^<{de@nm9@5=?~npBDy7vB=%q$xf8OeZD;J z|5lJ>?5=it(r+yjr9`Z*_$GQ=fdSb{%eJVfF#<2r&N48Tvj98~o~H4vD&ij4K5Jj^ zj_Mj@FRPSG7Qpn7-9a`#GkN4Tyl{`XD6VF<@zb|nw8*4UT>KeKIhD;9dt zebnf>uIP2^!0nYEk4E3|VcQ$$GaDn0_%^y&7UhQ8G04yt%mPsLjieO$Z2#L464BdA zDmV)LZw|m_j+kFN2~U(DMt(45Id+|Hhp51juW2#dIB0N0bkvPotEhcyy2AdsZY*(U zTwN>-HQhwTrOcgE=iZTyGj;vYJd)mn9gIz1)dlVXFR)wgkzA(%+87HXgJiMHlH&;(Kq?Xrm*fh+R*xO3k`hCuM2^K$|J&x6Ox3JJ z@Sf2Yyh^it7cm?PBnC==F=hTAhPHO5W)&cwf#L{?nn}q##>BDzjv-fqUn^E0NC}Fh zQkmE+vG=4P=#Kdnx9~tpQY6I$JZwQ+Q(2PSdQBx1NhL{^Iz@_nBL(*{pWW5>j8saI z6uf>J#5KjUOkBxC9Y86Hpy1_a0c_?INy>RXvw-$Qs?!g;tczxQLBRa2f~hoN8Ta3& z_7%-*hu>k;`2k+{SnB08Pdn(AV9G+q2|s2m0&oZu#bdW+{|-0I zDkbTx+{$xEl=FdU4BpbgxV&%4!5yYDol{-jbHip2Y6REeIf+Q)PLzL+MWrea2N?hyg*preZNwJs(BJu#J;@eKY zgd{1EWij_Z9>xTFCX!nm3Cu82B$XxtH!}O54CI_A*Tx<8q!dX~sO^}BkYE=q%h;93 zcTXxKNs4o(Lg?s~Ov&V$7}1_oPLfmtVXt$mhIgd$T#76GFT-ZnnF@bwa+tUZqXkCr zL|$uCI&@Y~soKtL$w?3?ma-sl#W}mGp7J=>kMOEDx+wiSGTj~FA7=OT!fB?iZQHg{P)Y&-bn zR`7}!wK2BA};e!=? z|L6gXaPrxsZB1^zm1h}OA?OXEgcRd*xxjN`@1oY=^;JCX9#*D%SVG)I4V%jIJPE)v zM0X>dUF$kgqpCBXgO8B~5EBEVJj*Yig-1r`ifqJqK?D-xKI;&G$(xM|cZI@nNE%uI z%K@y+P!i92iO-;!6$I5dWh`k{^*QI+u}vm`E)0k^XSy(OgC2VK#R8(R27X_IrFU@i z2UBYZ07_~NG(6>r3?Ma+ivkk&j8>=1YFlAeo}~Ul!g3yhEEEvRICmCLo)e<&d}Km| zfh(CA(0YN(>aM{n(UhfLEx8b;OVH1U|GCML9aMnW#NJf?Cpeg7aW-RECp;0@)#)#j zm@>ZqQ`HZsDnxj20mW!?6@sNPk)*M+#`3u+Nnd?{H4nj;WI{^!Hjm!|>vLuF(lpz; zA}I=tQF{ddwv_i_te7;5aMWdVd&@JJ^z|G&zb9%?JjNrKPd$3|FSTym>uYNr=-4dBU9YbWey4yRAlHY2rJ$xPT`xgtg>wrZVN0nLcsr zds9{gZvEN9vDo0|7&GXqjeZ~f?a%PuZy!xPHu~?VlJ<-4#s-T^KiLl@##LrARu3;T z7}v&xzW?#NAKuSl{k~X4zry`P0w>-QqdwX6Y z<}8`(jk?7W|I${&9i6O#$1;6**%R|9gb*2r*L^!M7eMc%im2JHG6N+L9^UZku8Oj;9@iFx{YMd+C3;2JHvaK3oR( zhs)r;YacI_*Wju1e?Sbp7M{-4P7mbHy33*;eso&XZ$#`bUqZ|(9eQ6nvAx-s9g-)+ zW>3X8Hn1$qg2oddq0_Z>^4ImQG(ACWBD}P~fe)Zw6z4LZ>#*FPf&&B`*wYR__9M9& z*d)e`vj2HWFe|3A%h%P|Le$*0U|5)09@~#Nw@0oyJ|Q3|W!2OkmBjc7#bX(SDk9JGL|ix_sgY4iWN8owVUp(=zW^qB z*emNl4KXU35Iu3ztIJF6|17E_sJS!q~h$iFO`sFh4yrb71+~g<;uxlQ*i+K zcEOb7Y{soFHmyMbGNMd zt^E3-s_TX6sHN&NTQv_LFk@21b7LV_5gND%CkveZOqHgH8Ty(b(B$#lJlAuY)eIbg|yeB_x=oyUaC1&zT5bbH9?hUA!LvRi)V{zR|($Dd75)3La@g;MMv&7n$4k2 zywx9(8MUYoZUz;ESIT6<_>Erap4C}&NDZ5iw%aj)TxQ0z^hQtggso}^lGr#ZW`xi~ z2iHJ0mx7+d*6U9+sWHZ56-J~GD>8!f?9@$>=m0H!CXB;IX12_l4yH{#v%3@;l z?ex_zE(Ceg84I4NTm^9ka;B2G>Fd2gO$+~snUlzqBo4x@U{Yms-TF@mMLc^DisU9M z!QvD5472@C!)>(Ho9dII~9cvK8LT9=Q~gQvviPCz+hvys*dE>uu3Z+7du= zTNm((hW%!o(iH2lp5D3CD_v3x;BcW8;{lM2B(R**8Qhb6fT*onZ-xjPY1R*1=J^_R zla3mp2-t>q7o)qk&6(g(N*=-qi$E_{u=neUSNeiX&mUq}vV7#xEoM;j2>r z&V~WtTMlCrHAP#jHBo{u>oXn^oJo8=B^b>Rw3>mXG2N1;C>GLt*>3C+y_wtWHv3zd zx;7sl#%;7QjgB6xzM3_^-@uXl5{NI;ntwgK+Iz+~<1^lZFWMI62RJjMul6shk2ZK# zJ>b73H96xyIm>ch7@}k<&F2>2O(d@_VR+LpO{9XSP5}~sqyri5g1Lz3B8XOgGpD!<_$0bKcJkcpiaObY8fi{@5Ni|&6b-;DL>2gxFbYN@mS1M047BJ zxZT#)sVB>cXR)*J<`E~sgq-W_nK;ozBU6_9jfQh3#9RP&UUb3g+0NL-)|MT_?qG8Tu5yayOj@ePQ|`d4G##}bT)kym91FB{i%W2K zcXw|fSO^~6gF|qqaR}}ZT$^Bx1$TG%;L>Pt4;u9Cea^XG?tiFys@7U_jsedJoqZO% zA0knP^d=9je;`2wMwZS4USiRPw@xWvy5J&{6+>*%5#MA9dqaMUcV_wCk^|VD0=UIv z91{sm4uVW7l(h=2n{GL}%M(lMBdlG{jdcauBY`Tf2+ubs)2<*Gb`E#{*UHe$tnRjiezd{9xEuGJ&3 z{i}H`?v>)Z@{MvG48rIGj7@!72264((MLY)6Ow*4(G()TU)ZZs!hu@^x6%?IV$o`E z7}73YLUi35Xrf&OHsQnSFm-xy9SU`;e4VZ^CB(Se@6);tQHqiez8UQ&r5HVGjxD-y z=G`%e0SIX6r@b+zoXOoK_L>fGF_0VP&9aPPj(!G0yAt>vPmw!)-|0OFE|L$1BHi1r zs>QEp;5b;bhmFT$+zIXOoiujaBUTQPIe_z75P;_tFHx zzq>FlZqcr45r09gZbO1=Lp|}h;ixo+HTz0+*WtCA6=5L!lNWRiQ}(I#3wOS)bXJ*@ zP)9d!lm39dqM-1o8)3gu>mQcZoQuX~+0(2VX+B|Wmc1hj-^)^2jSnJx`~uga-b`2T zPSj9`gD;~G%!nz}=~R*t^4;d=H#QE-741K-w%-aEGH@AY3Lq1vfy4U54KcJJeQ5)M z#s9L(3{7-DTp2V-KANNHKGl04T==phiDN8~vu&VRNX#0R^-O3I*oRf_J~Dr}%};(^yRRF>g6w6mm<<)BDl3 z3cO-FdW7QWecxH3V`Q#$`xT2xd(uwKoWK-=z|M_j%H)pE0-B~zRWWw(+tA(;XcU+K z5$@W;pf9Rvp7X`*DlWlXH;c2Pvg+J>xL{E2hyJZh(kAA;jv3-p5eI*22~rTJ zo7B$UCMkpTl z@3HJ5Rz94Z@M6vTTHffYtLCW@t6Hz7qbmA;;4&mv#aHY6U)guDeCG&WBWa($233q7 zhhBv3|2Z=0Uc)@SnqKqTwt1B2>Bo|CIiYQO7J7N0(VuqrT#f7ueI<)qUnqQtJoqEi zUOJE2dQZ3hfDL9~jj}9CiZPxJ0hoPS;8P!GrG5rA;j&t@rn?JdqIDMTN4ba1E%oM; zT?up$Hl6FR&0{R+@%G7~R6^YbTH{=PS!$-6Dhu&qvHl}W7HP~p^Xtw?#wu<<-rMqb zAR#sy@uEZ@*##&k}q$xR?Xq_kfa} z`Js;iby0zfuUGe1v^YvXu1RdHkTzv*iPnkRR#x-j;_54#2V2MJRrew@{wb=pj>+~B zWKPMtGwTXRi)){MKt5)gTM8$M{2a6@XZ^kfOV)zh@knG_LS5VRhF zrvAQk;dsWoI*p!(?~Wd=T*`kg9m*VJcKyL;RCONk<6}L&PJeXy^4@QLFh}r$7oS5+ zdwEPi%%lgM09AM;JCQ4K1HVywMo@hFx?S!9Ck>2A?~eX$BzSbwLkR-G&F{G$uF;F4 z#x+YX)D$_;#(%I=1ykMoAt*OgRZhU&I$ITtF148r2{ps@8v~PXMAvO#X*@w2@96RS zS*SKLEAfEK5eYdMp)!2HL@J+x`ybS;Eq>BMDPL$#t8*Uv0L3zwaXgRM)4YAl{)g4{ zqU+nWC2yC1oWzcg4Z07CBNtBw-`zUhz<)?!T&KZyN*2|59?DXw+FcPvlCA!V<#iA_ zQwfX~3T>hEpAh2)7GYc!rP=KIxN;ap8E-$=3qpMt_4bAdw7cn7p+>#YERJlZunyHA z+EU3-G-EhhKSG5`uF|3VsMp}MxE_m`-1;r6qY8R?F#vUnSs zTNR6DSxeoEF8x*@QYxZp6>kLIQdis~N+Z_^N2fu^1!JP)ddCCN&L1aHu^&dM7ZbC3 zg#9oeOCBO!MSpsDXQ!N3f0HiW{fv|er-{MC>0fLp7>+*}QH_vPeFd7UJj9Gj>`p42 zG4p<}yaNpw$|m|8Dw7@XG}4Dz+B405T3+~WI5Lxk3h4f(hHB2m;aPlG!#tSuFsXGH z3manY|0J`+J-jizt&@ETq2l!+&Ufq1| zMSj75OuK-oCbK6OagGVBHItfq0RM{FNit*+((W?Sg4EJ{;v--o-1nEHwc=HI65W2i ztkd(_YhIF(#Yu{3Q!_B-FMBgh-mJxQ!Q}+VtE|rRzEwkW7gc=Fq z>dZer+o|5Prvy8QaV(MF!&gTx&OR@eh1%XV(o}DnVXh^l$`4_WeS=@|%SrU|r>-mg z*e}WKc+2b5D%j&MG*Ep7W0@>M_g4w4m&DonhpMdDPZ;K+IZW__p|Q>t$)B>AjV{$e zwhD!_-1x2^toiI|q6%Zez<8=hS&e;G;9`suy~uI#bpE)F6AmPj=SFJ{| zL4OV9jL|Ot&ZMW)!)+Y+5l*Q~hKxXjwYw)yzN;{M(2emp0B_MCks{zZEQjBH5i5We zwLle+0_=*mEKT(CiEL(dmC3qnW^MhGuhzN@S&;?Do~=FYj`ErV60$2OTp>Pnq#i`& z^aeo0KyCnBB$v8VO#9M#cJ?PO@`Z88^*Mq6uP<+C+ojLNLkJ)V`zXh}*tP(RS44%_ zz~$@_v8!y?ANiFvTWqNcFLpI;EKhH4guicP^r2`%{?67-&L=Jx^Q*VdyQ-LEHQ18GAxKkrKG=hG#qTgqA8zQ{4QExS6?>knsjx?ErUI%|MFPB`MS zl>z6Wgv<^*{T?X~5GI|muntD#w}&#n7m-*w4Edvz&VquY>q!SgUk+wlP%*3n-^#;g zTj+8HMbyKl$e!vYidlYi$4daU2T=gyYMoWz!*I1YA25H6gzqVU(FHzo!6wIOg^n*yG|3WoFt`Ya=S9WYiy0Dz z-}kg6mpRLCcdB5jeR4JSz@`qOkBBO`U7(&Q(dmRHdJhjAg|%#g`dYNUo?n z+zP8;s{omf!+idSpQ zCcjyUZkR5t0$y2U9v88Ko)}oCG#*T5uKm^_``RylLj_Q0aX?$l^nDp<@G^UX3TVaj6Me^@_qu_f%XQ$1yd`R zj@h~NNkgPzy?_BunNkz@omtRP-b$gV>#j~uclyV+ILG%@JrNXGCWS{ zASiFG-_45vhTUOT-{Zi-4|&0|I$@#nK@}!PF%Ru6cufzkDD9I<*f8L?vLcw)6O+Pc zSfL)EGi`o1<69yoR^uXxi7c!J@N{y2=8X*1;S{j|9A-r6+xG4K6@Q+^fgj@iQKA}8 z<@|9BUvsQKz%}n9hp5YGWZIGv+aapWo~4yld|s8(nUzsd*Exfwhc1a-v~uf`+d-=R z9TKBKp0YbobRS`!{Rx&RC{6sHSW@TDhczhR3mOV}3jU*f&`%K!%lfA{wt6$qiesd? z@ZkGLK(yFC1u9n1=V-mc+maM5V}jTUiCgpm9Fp%jD_9V30OH)*bP!J1c3)k7ePo7! zFxK-YS_eC#Y5k6T0q=(^U)b$_bg~!9rd1upFxx%2!^4O&E>a4TRF)P`gsv*zhGMU8 z;A5e&iH>v2&z#9yUGFjpR6NL<66}?p2x{K(4`PJMQ9qTfrO)ZcHGtbWzdRT4%fw<~ zrEN(4Z!GSPP4sU5Ir#n)`ZvKnE$<7(#28z9&Yq6I2Ku)CbLnxPI|*Dl>Sish>D9PS z-U!ZGLQ2S472PzBJb6NNWZ_M9fDK9vmSr^8COgCvkhH77s6b)I$ud1UZ0vU8-UYASLphcMKSP( zSN`5=I`-#LXYU{|+}(DoCSK#v zQ^ztyuiQS*19H+kBs?XAnT`ECI!2&j(u7jMuo{m;hO5@G|BeuYZnbbmo>NT4&_FIf zhjLNpnddz>cB0<2=04`2VI|(u>24W)vzioqymQct$eOC*b48smOZVsvp$W+M+D=2$TW!FK?Cr_nD3ZJ7+Sz)Pp!r!_v_V>#vp4ODs z0wJ4*18@{Yh`f!4Kd0s3D*l{JxrG1tEy%8#Hg;kg7B-A0~zH-zs zkxZw6{hs?_3Tf@KS8=-=Y?C*lMIMQO@(A65< zQAcG-`xQIXn-;BXel1)Fv?~MlX;FLKL}J}VEZWu!Pd25nKS*+RT6=dDanLz=Eb9!3 z$wnIYTqO{6b{6&?OTV zp=VvLs7^Z03u}amkl4XZgt$EGKSn44h<)!u>#*wcm{$Vqkjv9seb(cPbqshtA;7Y- zK~^70-M<$?8SUbC)lxsWNf0%56?fi3=It0N?rPK4t(_)5cD_UtRCzWZFLLSh%4XVq z-9!@c%4V~+fYin(VkMZO9A*0>3Bo_)xhP_p?^ZqFzDCQtM!z&0M%&s_5MEt z@Plneo%wMZ3Zjh`t4wW63d@iyYDEu(I~h9s;lp5g2Zr`uR}}_wx*gha2328pW3WC9=QQ>mEGx+PXF%66vF`BU6e7L|RJjz25E2+{ z0m}tyZ7byN=cw-hdQU6vkPZto()vhIVz86$R9nCB#KijecMa)RSckN~52q=<>USJw z{lw(?!XAn;UGDyD)enEEB6g%UFreZ59ZpfAON3X8@xYBye@Rzqfs|M@_rTyM94vY4 z^OCXoXt6SJGugiyRwPOyyo;-jEgcuLET>35^m(j!n?L*|4|_AR0z_HkmM~p8+i~>z zf_UwDqu+fn@-F<0Cfd(jRy7vaRB5uWEGx8#4Sp-uX7!#U)Yv_{HdTx(?jZu{KkHxc z}Kt`9qha(UC!Uu`d%C11w4V zyf9cMyr2<2$~Qh)!L+R->$w8|Ir7>Th#)P#yhFENltx8dY2A8PP=cd~-Ps0$q=h=i zsj(Kj(3&+>^xD^$br)&kgRBI3VD}@5EPepn5<+;#xfF@CO;0XkjdQ*5eBSg}IZL~M z4M<|Dh)>%n8k?6+kF?38}6+ONuiap6)Std$7ge{!*eV>oR5s0xQdhI=jc!p@KEjQd4`n05VzOu zV5uvG7Ujnzn&12>$8nQ;1r19ErI3bpZ@(_kD~~j-N};huYF4yWErt3!3~#fC|S%ydn9sq`j2>* znZzPS@6#cu-??K`uPnj)7rbp^ttM8vRvQ1dwwgvB$LAjsI5p9D(F)cPq??4_ex)oV z=FBH!7UXaxYtWxHd{&}{B*ylc@*D(vmq!+EU_1PiDU8+>9*{5OGyGhQtrC1BzJo5U zZLA0yC4nC@WABPvv+Jnx{2zoXo1eqXW=gs!kGJB1!tVPgv>&XDe~ji2s?NYYL<4=; zMONWADHbZ#NfnvnnK!>*q*Y+tEL{yWhK}P(pHt8Ny;TEeh)6Rr1+~g^o#BCYtTi{?+ zxlujL8hB@S#)3yk7^3~;x<=seUqQUF)|blBggqTx_YcM!G4K1wFk%Uoc_U$_vR51i z>}YI0NKl?_449=I`ZjG_-M+pS!|BoP@dy9P{R8(7j5i5|bCdCuhiL$41H!(A>>qC= z@WVVtRbphQ0TZh_cIym&r*7M{;?p4vz&nxHG$0>pJB88tOmN?9*{`l|5^?83V+B81 zX5{Hq36PUq2FN6{Fm9cOe25f?CsO~JoFqXpY(T6vCl9PiXuWDNxSk8mE>(CY^}Jd7 z)E&M38CSMfB-^HqPdT4jyQ@6g+MzP&qQ$;ir`^B3FpF5!{|YyQG|%Kd{3v4fSjq1s4f)ZIXqQ;D|%-*(x`~QYY#fU{;TDbQDI7PmPn1KK7UbdB>2pN`TG@Oxx*YHnAk@;ZaS@6e zQx~c)@)^kG_qnR;)N`qY$A(1>34+ZWqDE|qmp(*k?UC<<=QMmx zel}y~wC`toQ8cQ5!@3AB|Hq3FjpBM~mgqXt}*Pen8$McEYpA*00YAeZwP)@W1W@O;EANk+H zHvRMw+hoRS=`di!g~lMS>qJDNp^IlA-P`P1ykU!G zxJ+uC*8|ZtzdaV72DRdDYNQ&Yt+M>2cLr^?{&mh`6P%WDZhtO@>}HhGc$2Q|W*j&< zUx|pJ@PPk}y5)DaX6>$5<4dRWhPmTD1htLeN`&qQoc(EVN#P!Tpl zlzvOhlkYiQCK|9|{g_1X}`;M}^&xRC$@=g~7L`Iiv5vGfV< zI=(qn%E*&;`nbMK=!&NkZF6~7sJ3-LPyG?WV zfW)0qLzn2D>tR;pL!9?PMejd1<#9dK>c=X7(58D=c_pm25$LP8pkmmKM>o@sV~s@G zf$K%gW!Lxdp}6c9+3czI%hx7f!6^=-Kd%1=|m2j6pk9s-oL>WP7-T zy7mV2pAa)Fg$vHSPQOH9Q2wfT9YJxuGOa!C*rYt+!M{^#Q`9DxM%3b^w3!URyr?sy z!j9-e`s#O!l1MJHs)2)6DR|m2%g4#*Vvr$FVm?P8j(u|Zb0}eiWrUFPa&gsV8{qyN zOt@A^R=GL8wS~+_62@JN%>(?@nV!`(!1~H6_KeXv)Z_0(OEg*s!0KC*oh)`|e2v?< z=smAv9;wSB{E?2pU~a{JR-t|gjj?V2mKF9x9yhQcVF;OR|S6aC8OrKAV9uUQ@7{Ycr;maksePs@72(@AdQid}b#XG6|caYT$Ww2$}cxN#i zO?GRkbS-Y2!;tP5=zNYvyP+sGr3N%BDVhL@4Mg(was(uWnHk~X+`lVj+NK$-18p3d{uI)u~*bIzQVNXQb$g0 zzk`4poUnu|KCdpP+z6f~`HWN($)jX~H?|BzxVZw%NC`w~$H+=ZDdzr{>#$6w8lr=p zb(jU=dY1$Km^TW8UhZwi#TtkKMX>pzQNkz7(~RinoRUH5MwipFlIe}v7MiIb`wCEu zd4fFJ>c6 zY5cd81Q{Bl%hNp{qGPNPAWT}_l>u0;L z;@+lWOD|bf?)&+~M1J?Ws^Myw-sG3WB&EUrZx)|{;KK_$;YU_<&bnNMma4XYW;Z6f zjRY^mHj4b6I5lKmf<5jy((e$Oyl2#G~l~s zyFO4EdjM>hJi6^qzRx6=9xG2(e-$Se)fN=XAv$%?8VP}!vjA+})Q1D-gyp+&wKz%He5B_|n-m*7++;VB$Xa!{ex4J!1x3+h9 zqkNpGcGNK4U8qF97OKkI5CN91clYD(tu{ZxHn=oWUxzg;=)+#2;Hs5mE4&$!EC;|l z^w>M3e5G<6kz16k>BgapT+l+%ZWf-t$(pcV*DY>JC)uO9bsrOs=WFR7Q<4SF(CUD&a&pc*}CVJ&rsaqEEnI4%;D~+8>||^$5LWINC5=P!2xh= zPd4=1<&nBa`J;XnK|yufO)GLe=oJ3&n%VW_eKM2;H>?WSJo z1yh2ch`J9LKnf9SfGT48=KyE89Bkp)xg@2Yf&T=ue;8* zoAvt`eW+C4rjFANf0wz8LHUc0u-L)ds~Y1-%#ahy6W!4p^fbW>=!F|WH>xZ|`nt#lqB3PpSS+kgX-ku@l4%~v# zsOa}L+AjO}bat87!V^Y?+y{UNpHmwmo#g=eEP}6F?8n=Svb{EaK5jVYR zng5N^Rxm{ZibTEexRQp#tW>(z&7*pX{bk&SgdbibEENDu-tMaL!VFuEXq~DkOExUx z=Rf1SpB^Hi(G@kj^$EQXJ8d2WVK1xbbZxoi2qN5$QwuOEKQxKs8!{EL9@uycZL|GQ z_g^I8V3%HSgo)46!YvYonSeJLlDS`Q6{bD%fA+2gDyhvm3w5adK_b8#;v+kyW>lunD=^v|FR=oe|1?1SKjCj4 zhjO232?eypFc+Zlc58iNi~hQ8_iz}r`Dyn7&tT)Pr`6uSwlh>zJ3-fgu?B3_iOj>~ z4z>*@qf=iY&y2J6&~zv)d;2IB-qaa-e!O@7Ub)-I*;&?lN|W+JK|(<-3}bAUl@ zN!mn-ZY=gmw~%Rjkf+9;*vnGM%ZL_V=8;s`|Isnau0ry0l8^`X`ZzrETx4nqz0r{y z)s+0>aCA1_vFDc#z790A&JWM$^;zFBm0XTunrl47WM$N)={HXdkpP=cm#(zlFc&d# zH>>5rYC4~)^v<}66tu*nY}i%9?2n!&8q**0yUILoN4&}+AnOgusDM<3vuTbX(qYG{ zNR}?;xF669AKaC=%a&MTLu~L9P+ff)XH7%)YQutu97*3dxBuaF4bC#!oNqvY$+F9q z-_hE~-}1mO1jo~+p503<7TMa*lasrt`w9O}Mtd1yt~|ALa@BsHh*z19^&*{pRVzj|d;RDzW{c*@cCLAsYIMk~2Je8*(Fok&JgALT0`X|LayMJ&ls7gE0@A3XTk zO2qf_ErXvylgAxcpflAhbly_{azZw#Vai$2MpbgxJ)X$WQyNzOyP;nmR$3-OpNqoi z0jnI*;NP9WpiZt!zd?eTkF6iB`dm{HF9_b!@z&<>QZIiloR=fJo1d03$ER7y*kBpF z3Abm(*jUbwh%DKJBO_1qaZjQhI#6nf^@fKYsf?SNjeq=6AM4E*wGJ}bbljY4WICLr zEQ>x!y)5x{6XlBv%*$QcwiFF&!vN>Ch?vjfYwDk!h26|F(t?-^a&0TH+M8qREAOc+ zTEybipaCTr-8c*Z=llu1Fb(4!MbW)_EK{A=6;JC%EC+d+=t-H+4m;8=2jsdHQzPH3C{jIbB;bApIQse; zYA&1$dn}d+zo-lik^p|dD*Kq*;bM{<21Ft}uQ_;z*{ith9f6Ok+{lLnOn47jA0(4w z!w?T98R%-utJbS2!<8`mNm{p&jNB4L(g>Q|d0YA(JQl~6TgG315*g10F&AFml~&|R z9I0}T3#S3x*C=x1?*_&_uqNORx9j$Dhy~N3By+PtJkK|cWAvVN=vopM3jtBfhB5Pt z0!oM_`~C)pmMLk&rnU<-6v%%SWEUq3TGc+-j9jEu-3|tVqg3pdjA5hN%Q#5wgz#Ih z_3y9hr%ntiuK%|VuKn@QWdEE->NeLZx&hBJ7Vg|iYtfg!`y+?iZ*02)?-PbP!w@el zG~n!VhppPZ{+}5j$-(34c^4@oE^_xFj3YlLaJfo*4W<<(|&G<5-HRSIUK5)#yQWr^8ho^_!@z*p2Mqf!|pl*UeoIK?w?3hi@%K zy^@M0<5}s=gT1duJx3tF`KMNaPHZp`>oIg3mN4)z$RKMErHWygCiwC;IXblcufyULuLRl%#jJl@ zz~)J(_koeS{#>GLHLc#pr=jU61zeHW%x}_EHO64RRI8$#z&(|uJgn?QW|7OC5qV=u zn*V@QSml$I>dpSN#ev@t);9D!^MxW8E4b-0d=Vqlq_TWJvhP~^Vk)KE)uKGPO{~Ck zSFl-bOZW9>hWz_p9;6^na#9D_WosCpP267EBBN#vNS9zMQJ`enfRqD=v43Jb;c36) zsQN~eqHT^W;7sscY(BON3S=Sbad>k$0^dA!l})*|=0}^V`y#-lF9`3EFmVY%%_Z`06L^NjM^Bv%qCP!DO2coW-#Y+?^HK)}(~S$6)AJhG1g> z%LgQX3VuJZH^2SO9xan;l9Ic#8MfR@_G!T%xhKFO!*|wLvk5!w2e{muRt7sU6#(66 z9Bitjbkls$8o1p;?u)-+SK!)miMm)NiP6AKCnKySo42)l(VFbfRKe%jyU-@#41AEr zYH>$|Nt7zv`&xUCK#8z8bB4u6g=K^*4)95b`i&9#_CXyve%6l=c=3`m;fnVvee8`f zd)+Pg)|~$d09DA8SeK)T_40WPH6KOP^=W#nYhPXVC9!uEd_*HHzI^?Gqnqp6g0%ld zz{1!RGMp?nY6c*IJXVlG^AmCmA96izD>i#Z^*TH8xR#yXZr@5DdM0uHQ;V$3M*p}_ z?49i+YD-KlLD?C$uoa}k=l3`WbtLI4zdA4L;Luz7?8pJ5i=8|HV-WP^x2-jdoe_Q> zG+h^i*csKG7}Gs61T$df=haqz!Z36Oo^*7Ze;x&D+~02pQ)&a^ z28R9xwB7_)f14_;5RTF|XS!i>Q<=;hbQg60hm>MPJCenJBcftU%kn$( zIsa=N+IKu)88_#WT-DCviKFLi<8dDwBwHsjPwFnUEi|pzq)20$$AY4_kJTJBxe z{rv636}L}MF4K&p9PtEw_ZB7&D_jmS2VOfdKL)-eaM?jfr{tR$XT_UB&VEOO@a$7% zF`ZxfA)He4CX-0rn11{E@UWaFzslVC1y{WqZh1(pvIC0igJSNH05grC7BEb$JQs2H zgtiUW=j;N7oT%&VQoUusRz+Xm<0)^ExW7nKlJHJAuhTnQP!8<^qnUh9%1E~AnDjBX zYx!wfum`#r?p6gU?c}4Y58^T6wd78*FN^;~y^?EHoBK_d-F-&b1uR_BNEsAC^Pn|o zGBk|{%0@E&!EsT<3`ugX-5n@h?kKA`9e6qGh_ZRK`sKihBycrk*P1^j{s9o=1HbiL z#7)xT=bJuURLf`4v9z#;bY<#&4&L(fA;s^x=SOcpcikF0tR2BR^01|>8#Bc)aX^$* zxm^rocQtj>5b8HcuqYpOq zop~E~@2i#aJy|S%P`=t&FX|K7{(PB5?W@E54njLs8h?C0aQ_~9T;nG^n-^B2(Rfc% z;A7c2IR$wxs*~icjvy(f#He73OiV zpZP{rcsn-|AAJ?-r&ZrTyQJo?NC`w zj1KsE#eeLkAuSm=vDXsfypVWTTSL<*02rwv!Mr4`@ERP!?-^JQV!BTqQkZ<-8`AW0 zjGr+E*sv2ifcMR~qc-kK_oxIr0%u)*qJvlEhCaNJr?n#+T``l(su$LD*F3>y?vchy zL7~X<^KL#yta{lc&7&>GR_;sdq2(H4`pJNu8poV&_+8!u0LcF8rPS88a@8H=VwCV) zZ?Q(kLECDNw{u{TsMC2najh49e*0zRhc$OGgMZi*)_D(&cwop-`JsUZkM1Og7hk_; zn+b7U-x$=)KcqQs=YOJi9|P&SHQxu9ZU-b_`iH(=8B%xn zfl6a+XdLKZ@1rwOfAj=*?Hil!?yGtiRYg+&mALj=-s(<$5MLGgiz$trrO;9F`V{Cc)@&l6hekYC8qt^^N6zuwpvdrA%%@`ZvzP|jE|@;D=8;>j!Z4L8~YQE;I3 zi`Wv|GduB${%h1}*7Qq}SOEa5zmZZu^t=6P`^*39DfwGM*_McmH-@}SzE z5Y$XEDXcy76KbABIbDMD4!-Aes7wA`{5GX=!ufh{(#zuh;N{|sRWLG~(-T2b&n6~$ zjh+sGu(3`DF_wBhi-b8}j~lp?52oJB@VWQ1iSxM=p4eFS>OsWy^_k`7ASD+!@B~Mv zYuBh>yKzC5i64cUf|=somDz-Ofy=%R)s}?l8>as|CJ>`LmVfc+n7P64FxOYVP2v!- zi46h%NyF30SGJX985&a2Ga26)Fzh%7SCnS&f;L$q6YP=lVubweTHe_>O!IqUl|Cm3 z60;khE(vqU2u_TI_fvAdlZjdW`a4O210JCN7#}-aTCpUfmAdz{ zC@^STV*sqNfkPEy#S(>K?DLbvfq79LM2_~;9+%v{q?JwMQ5&e@u_0OCj|0LCNZqkm zyuU0&Gzw9N_PY|LVvWJS`NN*-@Lk9Aq&7K@d^>)IZAM8k5@YpWg+)PRdUTJnbS}@G zp7^wr$Vakej#T2TIK$Q}0m%Ah5oU_X8j@1_w3-AV81=cOzX>iNAqf>b<@8h9F!18o zO);4r8jHF|kO@>)UQ8ib6e%iU2a%o+^(3bSYfDeu)-WiBvK3A2n9b;Bv>o789 zJPR0hTtm$j?SUVOisn{u)X?)~)j#AjC0b6Vu;+MkfriuX^+@@zmD{A-{#SgSA(-+jrLlbUM z*BE-o&OEd|TS$M=9^mpi%fA<*v=+Iih>wT7s;1Fw=<|jZYYrkjMmZt7nhSHp@lc5T zBa2okrCDg!OJ`C=oi!0^XKVHyJa{#mp4SUjl2owU>rlMPj4064JWad$$9=E3~A6S>A&2N$HY3Zao+$z#b~Yr#c7rjN-Xm1L|HDr zPdOEapOm^T8i%WhwJY;I$na!_%%`Q30%T127zmkar9x#;vB*SoMlj%nqE5RZ6-VSX z2$y(Iy*!C|xL7sYkIDh)33E_NO6d@6X`sZ!qh`8Dw( z3>V$$gN?`GAc9V*Yt@HAl$ER22jeSR2V}bh>)|~k)@AN)6YL_C!zIm@0aR=%#wc(8 z!r`fv+?!5n@xXnA0DJ9S;*79=`8#o%8v=JczbwrNUhs;-Bk^m zDj)-ivJH;b3Cm;&T#lipmy{dw?Z{%jjDm@WRn-zucSzyBy7K6p!%+AMbp8L!og*lP zS}lNmxrA1lTvnxD$=kfi=)S8N{+jrGrjyfuW~D(|F(rn+HHE(=#Pt};T7)>3pED zYti=0S$0001+QGQL;(|yD6p0yeFX}O%Ae~-I!<*h#LlZ%fbzMxAgsAUy)))#L2_N~ z16b3^VmIWw77JM+&r*es3i3+X&BJdFnLE%r8`?Az^7({SAASL&8F>>4F!5C6=LL}l zVD<3r_LsN|*GTn17lW_iowe=V+C+#^QOyu}$VsSp3?J}jKEo90Ch*tf$`-86FK*wU zeQA8U)^+!ar@#f%j3yPhDrICL`{!A^hN@V~_1iuxL5K$M^|EkxOjOH=TMNnpYO#A zCgFF)zr>X&ivn{WQ|wH6wWrCJ>y3^Iq69588*M(d2s+mB%OG!WyHrEd$kE^N+O*2} zU;nb+*`$aG=6~2xUQ#^*<*ZrZJ!2RMNf`d7em!XNrTPD|sEPpgN`Xz5E5qLSBc%_6 z^oe~dxim+zzo7OQK+dn=4xDbO#HlSE81P_&CxxSj6vw@?Wp&tyyPZY_JJI#akWi4S z`R?U$pG*|l1RhAWWIR)Z7rC1vYg)MqQMkEAjBiU3j`8(if9T#YH^W5-5@~o#5arrU)Zf2;z@es z^csNJB@MleEvQs=<_}9dQC5naRkL^#T0&)*yG=(SQ}rLpOg@2#UPXxb+I#_5ttvV= zynNE;j9GfGx)IDY+xtGVHz@P?Nq7^LpR4H09LIK-X`E_qbbt|W6)^disb6}5T^um~q> z*mp=Z)mLHtc^~$xjvGA#1vatzv0c=i+sVAb?1CY;iPN}wId4j~jl_)rd}bf-~b zYBlChq2OKdis=Tli3>hTKmiTI@}nt&qWBfKOf2O+pg*9e#?dXSQc4r;tWesXz?h+G zv~1y3^`)lGw@{H3C<&BqR3}mI%OZ!!SA~!e(oLZAZkc`sZmGnKoDp(E=w(wx&z>I@ z8+((^xnc$amd23Jbc$)zrZ=i+6y;V6^EhmR78EV%s5VX1^if7w-3pxsF@DkQ!Fdzk;MbS>cC9%sQhY$Vpzdl0bt+9853?bAQm{N+X~h|f@K=P4zG@I?VPSjKkVTw^+YH7C#Zi!!b|U z;c>=D5!d;phD%nvO&ZR;MP2jF$8$X=m#ehKFt%jHJjmy_SzJ^gmO5x&l%<7p%F8gc zTpfAjn&s9fVIq6=?D!Fv+|$(5_P1xH4?Me$^jAqD4Dg%h!trmTHQOzo&F~$}9Xe@YX}PSh)_;hhyz0P0$2~ z;C?z`SkWHJWu%*ZORvkRK`EWaIG*|0TFC*gk}4>ova0&cZz1#f(v{@gOypc~-rnAZ z-RAfE(h-VKLTy_yN}y*&WvEZWaV~Ye4)OPP*mxD3D$#i;JQ52MCA4@`aynSM)BFn% z_QI{E4ba6vbYRw~kjzt&EW~!SLQ(u2y>L(ZsK&0-8oEnc=V=^QVw)f?k;3|Dx}}Cr zmZ-@IpA^;1aXhv`{tvXiI_!9R+NW=H)J~Zrwp}KyrnMV%?@h|#O)ye{XwJ}@nW+(R zgXbiX%d`^G<3?qABaHR)og}h(*B>0yfNXgB=I{?reTyM2YVtW}wpqENjip1pHqdBc zuhar%*_kKa4fzujt`%Pfh_CVZz-a0S)^r6X_e{Am!Vo)fek+^Pm;7`jq!lB?aH=lv z_j7TKCCf%6pF-Lpj4dBt+jw2cZ@*}mAB@rF8Cmgpl!C@)x~Lo{=FzmUjn`JTc9-H? zbg0}SG$n?N?@`XIOxR4r-h`Fdf=zu48H~rB_O{WGzA7YG5W1;sa8Yit-vri$U-Pk& za=405oqRl+e{-Hbu)QTHyr{wMd|~6lc<`zV8}p=W1entt6q$y|eq5jm^MXC6i>-4z z2eo&8E;}k(qI&vP^&GHYK+LFicMA0WQLVguw4bVyN50}3n}`+b)m|H~NbDI{vV1vh zGTfk!^rAt=m&rFq)Dc#;zG@5_N?!}jFvow|t?TgnVX;t3_;M18w1wRSx04m^((-63 zP!a0|G_ZT&6!jm(l?FM*BWY`fX8s}Za~zn5eDruQ$(3@b=tdT03g$HLiPh0w#`0*< zJ|ubg;@~fRbm8MG-v4#rfw9w-oVfcJkzfBT#X>I6+0Lo0YSM=BZ+Qt*l|(ra^RJPNG+=zq>F|p;>TxS}NVk0W$QnK! z_Fg|9N{w`q6dc;P_rX0Iwit*5<>5-=cIJ4Yq ze=5-Ew%w0iVmSo;rS^ZO$9`ujo*ofa_P_hNQ$?h-oxU!an9Fv~$~{e@ak0i)C*3eJ zHF80@KkG4+_Sn^Gg}8?qRU@f(D3o(h2>2GeQ5hEl7+3&NyivaFPk1kc(u0O;uKM*4 zj&r78So2vB#Ye1`6SqB^iN?+*3zrsj@C@9hMW|;+3(#m&&_I4z_u30hU7NHa1H0Q{ zmbB=o80n)~eN}WU^C!{xOB0caP{WA?{ggSMa&Pz=)Fp!BxouQi3E8EoSgpe5@W;t>c6`0knC2@ zO@_vS4=)~9<~b5=Na4ue6>dSWU*y1t0i?_1Z9hcGCRMkRB#btwtL#{ho3M{g>B|e+6k`T z-9P$?ly~*x3nNkIhHy7 z!2>xYhC_3f-~+@3iyhg#KTcg?-rxHP9^j^8_vqtI+)lg5w?zleKILWP7Ap5YV~J3? z$ebBVC)5)&I7d%~owDfkyNNdj1UpT4MY%;Q0?4~y7UXo*H32EcX{m)2Bh&|!FcS753btH;t*i_vToQyR#aA7Awca&v22t*NsCuN?+ z%Kwvb56^jnS$KZJASmZNR!dxBixcrt z(X^GpHZ0v&)Y|9LL}X4+(wD9g&KXnA63tDx-bGb|$*XnLk6?L^l~t2PAEts2=uj4l zVg*j6xqR&kmpjm(m|(gx|8p=)+v3fGzbWYMfXmQA_`2 zS=^U-J15HA37_5iL33vE2qU%q%TBmBP5d%>~2r&r~psmDf>qsW*zQuKDwq@~C&CJN>#F16mGoYB^lAM|h+ zP+2O4O2maG3SY3sGRt^=%UxQv#I<3iOcU(W_16XgR+>9|DIBnftH1&+9y=G5ctlG{ zcFVm7w5Aj}VOSy&KEp~Ng6B7x))e+(``=hX^cOwq*7W3}Kn2mebSet?LM-KqWzLPf zv&1&Kpw?TaSj^JIZ_7%P+___5mQ%kO$*q!CF}O)SPb5p3#p*Wi0;TB3daz2RRQqeQ zB#CWwjXu1`<`v7FtNfNsrjy!PGNouuQ;^f1momvxr(lCW1hZV-6oOqN*pB7qP&ukc zc+upn5**14jnd<6SDMF4xw>H-G_g)swR(xkOLQlDyLNf{ZuH7`C>Y?a{ zYWlnZemv9ut^fNwIFuRp#2={uXE@BgOzzkiL3 z(~272-0VwKSnJo((v&0Wf6*-LXPJMSwWL&e%v0B#=h->%v?8pFuHKP#iaF1+?0A5C zdkIesIEhQN|NL;+QyTW7Fq7Ry7wzud(N|ucgbDRyQIGp~7b|$<^F(>{)&GOm{=Xt7 z_uCa?xIT70n7Z}VipA12cBB-3^v)FJ=6CQQm7AzoPQ9k^p3^?YufDI~i}%=(0I#67 z>BGYZ;wHw@ET^WTEqwo?!>4gi=4)b)qe5rUyJKT|`kdk@ck}f1aGce4ujur}j!z%G zC+O7~nY(#{t~odViYMsBv-AJ?{~uZ}A36Vgo&6(sA#Nr5$lcRPl$*_7gP^*J6ma62MrJND{lf{iu(OF=)>xCL5xPDO>(|aje z6t_>^Q}<3*tu8+hV+5^$jPhoA=B`ja#Wrkk z`w{lE^@Owaim@b|-N9I1X7299XYi`^W;n-2dtGe?F{bx79MWU?EjQdtdiS!xHdD@0 zv}YhADKhTXTRMW==*D#22K#^~m4ijqk?VXzDeWNYFtNfP^dhjWsdrd{0fYNUa4{-Z zY03gv&j_plm2jStEqtASjBE7zBi#>OW$N=8F>1t;I8BACH2vqNulb&PbA(7acb9py1zoD zK%6W)j!eIcrk8=EkmISb@vzYEUG#CITT}~NnT}rFCdsqh!`Y;XC%?q=4B#Z~fSQkG z(P=xix)0~5wK^iM*Dn3K16*)ys*JnMZ(A4bB#KK@MKOcd?!4W+^Bfb1K;2i{3r5k{ zerV0dHmX)pxvA=9RQ1tE46&&lfGo|EG;@u)_{NVh0lvSJA5Pj=s|veAAULzb)V8@t z&x;!W27bw3KHD#0d8YCJ$~JpwPN5JNH2B8UvEiJp_wB^EYGkM1fq6Bm^sTy2! zIDP|gpIrsu-@Ml6`0o85a{P!nX5wL4t)oR%V*%gl5fPw<#ukffCuFVHI2L^{x&7MM z2r=%JOm69md~-XD!)UN$Ja?;moe}M~2D>A*8T+SPadGUOaZP0iO?XkH@;G;AG5eud z)H z`=$t+Y^o&55)pvgfjhk5=X9n@I$gYrbgj#wGxcuJlSbaU9!mq?jBdG2N;oJ|*E(g7 z%55xRoH>s}TnSX{6%sLGX$oNZN-H9MZM+= zS3t!5kFncP)|(K@HcI->if6fWE8uo0;kWCn{@vkRe0Q$tNQ_vT3zfRk$Nrp)oWrr0 zIvx5WtKU75-Na>PaALxnAb6hM2DjcP{Eku8G-GRuzAtvv1`jbe`Ld344J7^gnoN0` zXYS?mNDz+1p)1M(hYR5{!*s`T)F`!kN+?H7)t5!rRmGZ`39>k2JeJ2sW#9cvY<14Am7-IosM;xx=@s?C#3z6dA*d@nz+}H=saQ2-mk807o}MXE>IgdfpJra-O*BsuMMQ&<5R8VgKBoa~LF9@j#Ll zGi{8P)t}z~XT)W+F=H3m!U{c55CMNqZRKuUbOAph7pc4F0~wu0V+iIaP*I7c#|>D& zb(6<_&KLX1{)h#^-P`lppMUqt3r@bo+34%bS_)fpR`U_>Q#|i*Bk5z+k5=QQwhKd> zZP8V|!IbT=F-wBAX6|FH84Qa_HCvqYfEdnQ-ZTQ&Yk5(U);lK6QI*QJjY|V%N=&b6N6;eH3l#Z zv1jE>3%+1Qmy|Po;U6g+n7xTqr~iA@JxM(ev?_;p?xETk@)AyW;+Ml_%}KTjzT~E; z4Fpv5IzJJZ=c~MvJk4i(i6@wvVi-G`yK1@LtDv#1%-xkc=&7{~>>v9$v4OKOZ3P~> zRebC5-xa=Z+t_2hyj``fmUP)>@sX|1g#kFC zoGa`0Y!4wpw9w#gg3meDHMpDg5jVsTkJTq)_?S{mIi(nV0cZ8SorTgpIQ{8ZEU@aC zdRz6C`4{i``2u}!_1e3BE@tHWP((bYS$ z0y&C{6epy8#}`S?GjY-AO5GQoE?TSyT$03ps{xBVPMoq3zBnOL2*#BAHk$|?F0pq} z1BPbTu=9 zUJdY`j8ifnn*dp=Vs?{pTB>_+cY{qPiaGnrd~u(!g;OxsFzNwdzcC+)QQ>JORS^2q zah@i^)$VtoGw7m=AUYgtn~$-jBfGC1-YI@Wig#Fe0Jn@@pO=nCbA>^;6`)N|E$JG?M#Gbn05bk{iM6t8U>$#9oi8*F}$VCQ)M`Ht1%GWADyN)VCMP-YWT{Vw{ij-`5mO zB+{kQ3w&)G|u-Z8AX5z z*|6zMvoL+tla9$5V=@Wh9+a`lvzdFa+eNkc7)=-3$4S1XYF7ol(H)hhEC9g`dnV@G znfXFmaEDnLUk#xhgbiqIMH``-!5TY|PjBKG@YEk>=X>5ZkC|p!5cz9dosu{=2^?q+ z8udi?%FKAf(KJ5*mS!%EX77OUJm$_EOJ!Hg*`YbS*owu{G`6Lc>NGJIisO)~_b$nl zb#|s$s?OIiPq2ig{x{D_t|S+U^FsW8fBgA9i@tiSh5{@x`hO$6HJ_@bjyjDpMTp#j z)}P)*{kRz0YKYj^(N}u?F8Ww>tD>vy8n|L%>Z)(Peuury8luCZ-huo24nMnrxZ@F5 zC$+;@{r+Xy~d2w~2I5vH-+rsWgwVM(BO%NwPH0-LnP?7g1op3&6NVD?pC+%4IV(`b)V zy9wU+5FVfj#xs{o^Ag$<6C?(V#n?6<02@u?5D!zH~v?Fh3?6>r|K*!#jsfL+O;rugog>9N>?oQU%IZRHlygV>MLrE zev(1t6}xQ58#Fx0Q|anoe~#u|#NueDi;kK|K0?9+&S#ZZupeh()B%ang(O@WXx>2L z309tNgT$i-93N@|ulBgh{kJ4n!omrOtR*?~^L|0P#a#eMf-WRyn%x^n)^TtKNiQKu zx{y*=vw&BS#Er*YLiSFAaNOtU$T|+r;ME0*tR*=o*gS$HlymOF0V$;m$tjoS5hS>i zZnPvt7gFy3ad)HRkkP%9xaW=o9CxlBH76vhmV`xkzb#2R_glV%L^$Cfea{NX{5C`4 zR-=F-BA?g9?t`S;(hYP|Lc%%P?hzxnk6e8aFB#Fz2;pi0uf1TXLmNV?Zi>a`u& z)aq>!65XVoNWH#~ETh}bI=bl~p72*#hLQEXZ;N4by7y7$H6v?Bx21w|x^~38j*o0E z=r%?~HJQ+kn9sF|NTrENZ}S=UjNo1x42r-mi(Ma?n%Wq>l;G!~ZXV;n&tF#p&?>67eOCFFxY)*YYI%kixlRz~Wo!rl>X1bCJb7iJe{IevJ%TNZEX29(6=c_rgm= zvvzb+HK%V;VMs|JuGw4bgo`??5L8{JJ8ITDJi#K&$vG$E87J$-=T1(WYS6g8VF$p> z$A>k}vqv~$tCvx2z)7U0&m!~m=>7Q)PR1ganR5Z$-~P|v|8Ql*_O15?C(^m&#uEn} z%6hdW3F(T(0~08k%6tb zh6(}bpRJyw735s#P4QTn{dxz}Ep^vNMcsRD3d0C|!sXZ(i9F+tLV#GR*^Liuvv<92(m=59IH|MU01{{P7Px9-M` zY~L5$5B<{TOEg}3EPJe!9rw$s-e(Lu(^chOzU20$&N{nBJ%D6LL>VMl0H{p*^YsVo zm;sWyFhGe3d1)fxwYSSDDJ4=r%!qmYPuS}2-)u9M6B_PXP0}}4&y5iiZNmQF)jH1> zby1dQ#F$=76NUwCqJ&e;f-+5`;!FQ~cT=^n{-~{U|NYBq1AdVI!@9Y4=)`-tvNY+o z(M$+IqHUvpaiE6<&MDkn)#8mew)1QJUMv0!9r9yKgk}H7KmN!6uqdSR@EZADYrpSaP?4c3K77tJ6XoEE(vL5F=AP?)#@Iw zjduoD`8bI6v@a$^j9P7Y>iWPG*N@77GH{m;M?;#A7guNiNj&50FRob7 zrAB&jMb%VN0~Slst5IHDP{vF;_6k+YST@Rz@j#RyU!A;T7#+Q^<2(?po`8WxN1N;@ z4@7Iy_T&ZSghxI3uV#zN1B1@e!=B@?;cQuL%Z016#ja_g%@i3lXqYlK;U<4@>WPXD zVB8^FdN{6j^R`;;LZfi$uG_51%T2MqsjjMOv#j=?M#hg5Ms3=9|3q3MV?F(M{O-1~ z{?}EVV`D^>(K7KpLDoM?A-epGZ;Q*mEi>u9ME^o8zqHbE43v-KX0sD<_vNHD! zGY{#@AAh=w06by%uOQ4*tgmx)F&kqr_A!A2lv5TjN%vCj2LI-z|3Fq;?`hAR59(az z8RyrqDY;rVu7v^Nj{oy{zwWddr&dNMyHmqXxwbl1Am}&l2cR#-`dWvzoPw|n9MvSM z+8L!;=PkBcsy~I4iYgSRhDva)%=ufjd$El_Lo@$6+&Twz%^c)Q;70X_>Ze5pQc`3YVM^gwa?_>j|f}DqZbkME_r|!FGu; zEsTuLV#FXXA?tkwWmX z^RWeLv|<9+prDEw707dT0Kfz_X0J%5&+oIYwV_-f7H(7Av zL+`V>pry+f*}SOd+tsy43D7<7+LfKGN?T<&b@jm?-d|?m-;$nt@0A-40BPb_a%cUDb2f922$3h;eBQOJAN5%9y&ZmE!@fs=mqB&7qvqRM&0R z7EQD55N=#~TQpgI9Rxb>dsxW0(y;0(_1jbs;m=ij4l599!g=cP<>h9XUtPPl+SFC+ z3T%~6A*j|C$?CNZi_CB}0M}&+Pr^-Kj=|?I4s#8Lr&Bl6jT5RWSI3xGpdjIy( zRUo-FWD3ax*fOr7vh81e{bR@h{Imq8a=Xd?{>yIT{s9i>*Dz6m%*?!la&@^D)!8Ay z@A6sp3#6f69}|cw@}3+|Rim{cO*oxE`x|VT^L}GIyV~J75pn+JU)y5svb=76lnz3` zw?(~$maDy}J2La))CkiFGJGv4&LlK?=+4_#Wo(oooBm*6ikDkt3Go5v}G4# z<{EE@?BTjy&5AO-jkc;AoG{f9=BI@RqlB4dj8LNE`O-bid9~UAywE(g%NF?xQe%IAN>=xT_HGW-h=dLXCY@V+RY%2ZSpO^CJ?R?s0I8JYeY3A>X zXsYe&AAf>hT=r*w`+fh_FW>z1!&l#B-~RCK+qYkZUnnkwKQpFItAOW+PXGG${o9}W zV0E9wK*$KG;uVLziB;Fx`+ND&x5s?wo2>hq>wI3gb^9j!Tajl!z>-TCB(Afs;B$qK zOUmrWO=v|%MwODUi2mRIbs^Vp-@c>d4BF%8k zdX6kW%f8xd>MEZv5uzji`+uj7?raL+47&HOo^Smx-a$hYVuU<>gz*yMg$Tb{FREr< zZG6Otn5Iad=Gidg49&mg^DQj59Oo5z8bhXqRh`Y7pTjyzoT*!>I-8Iig7e-%jF7BJ znJkRm>GL&_P}Mr->F_31DTjg9+KOk0ZTl~-@H6z@i`AO<;#IU%}TIbFF z{LI(e=FPr#fo@WcQA$))C^$Vt>qNzprAx7+eI#|=xRUjpPx!}f*vN!UQo1hAUbE^peCE~tAm!r{+(+vf8nwAf~g z;@Z3a+p@(r=%T4M(205qHo1{A!4#7{BWFjn>teGh-5IpV_zA`I6b?~NxS%|Gh|XQR zE9c9~zi03_9a7ZrT+y4)7n&RTDd z=IZk0FJtN07gTf3qZQ!!zqSR;VK>{^O<;M0zal3I&04c->)W@Z{;LZQMIB(N27x|?4&3bMYYM>rMIoMt2*hn&9+=s(CYJy zZqU~{6a`}pdYUMR=AY`Zr$&)l)ianIC_d;J%&x1ltUmOL*`iE?QBDHR)JY0PrHc0y zo+Y`e%KS(Y7Fa;V7VEgYrk2?By-*>wW;WhmxQE$niaKvAf0QnYrmZ2WKF6k0$XDVzDjTy|(w--(JPK z+4|RCt#U|+`Z%J6Y|L^OvZLWsZspHa|AFeJ+|B(Tu&sI0J{%Nc0yT(C_-EHf(=&@( zknvh%KA?9sT$eDQc2noK#R3~HK^1HoOa3a%1gDJHXq<6f%)E6~Hx7&|AFEGeq_%1b zGPcDgqBc1%)bl`+#O zGyo$K%~g9w9ibpe2};2qKtUf}3L0SPSad!RR^{L9$M$OBHXZ;xq_0nlD=B+K*o!)I zt65bR&FV1t2f{yh7aICIOc4b;LX&qMJBU$l33~)F?wW;bEMO5|*BXX#uS0>G%K^W~<`SRo97u z;zSS~*Yyn2tMuy6cjBvA;hm}4-&Tv>v}T?NI)AeR>=HS|J*b51m)Y~n&wT|tc}zd`PFHjG7*B_f00_~X!7e> z1gm<{rO1$BlY$F#b?Sj8!VSC^Cdnt?fA2x8w^}=-Mkhco@#-`UmJmHoOgwq=9D1b- zlge1pv7`-;SpMmThdXNUmz_vgeSYtGezMs;Vu#=Ldu=4p3L3Gc-{J5lsLs5H$- zke&4hicP!ehRL4w*iVAPeM)j_Ex$S)gGq>-_UN8V?$>qEj;JVNsix_g-M(!jx~bz6 z;NfrE5NW4wykGs?k(pDLUssDAN+T4)Qj)L{dOwr-|NCTcW9aqvPo_%S_?Y4R(+^VY z)n%4$yxv`c&+iO4VK=(wMV7ET${2;#v0j+>o2owh>d)^#|5N7wef1sBuIqf>O&~Va zbycr|I6_;2EG(#%eAc~2&`GGFTJQ1QfGYWjrmT_u&g6Yi zrMnGj=j*+611?%zNkiBq)aV4Ix**tr-R{oIyOuHY|J5u z@n2K5OIK(A+Ile81?b4SyoBAJdF?WPaa_9wmht+Z`&k9sTHWXH(c8lRHZ%9HZLv9w zA%`EjDf9V$FnL*3zg=xNZ~S*Ei&@=0eh@x&?+oGNcPfN4`p3^-H~vbEj@!M+|0}8lWohk&YNoMBhDNDHL$D>Tb~S=V~Rm1 zA;Pd;b1c@^+vdzJ@)y{E{Khikoa!lqG~S^J;;?=rS1M z;n6ZmrT&*csxnNz;E;MzIBl{+M%z?1{hqur)db zf@TuU8B){uWW>WO4f;GG!F5~B(N#*QGL%e$7IZ(Uv-WmJ3v=TW)3JhaaJZaOS@ zjH{%_IgNK=C%BiVS_Mh+?9DqqmnZ(+om$0q9w$aKxSDb8^hY#5=Br|TTpx^xm3K6W z;jzFjsmqQ(5!0PuIwmZU@q#U@Ji4MfHQS<6*todMLujSTe?u4&XbSb(^v}Rd2x{ds z&cLgc^WV4FuCk`h3ykNWWs~5=RnI1ZhrBl1a#gKiMeflTd6ejySF26w-yXti&68wS zO`z>Qq?yG4oSUj?$AME%Al?fD?erP0N;A*b*=NnhM|O3!SypYea&2AAu@&G9qvG=B z;1QJI1QW)_b?yVHYPHMq_E6Bl7NQAa4D|+eDh-iJ(OXaryB%YEpx1Sk*Ehu)Qj@ty zg{^gtX(g1LgqN?0h^PP8LE~uYe^%@2taUlIj$)>z;B*=;qj#pFKE~Ruiahfs4_T>W zJ}SG)X8CM~xth&Hv|%_&a?v3AJh^q%W;@s7CK#PNN{paj#1b2IGae9xa@uC=>W!-l zbRsL9`p1yQyp6g!yrQ&YUs7j*$=1y^Y};9MD06Cv_K8 z_@~k8xQx=;HU4;PJgG2@Jge$ZJKY@eKuz}9JLd_`Vek!GYLZZ^PEBn5vjLP)Lwh2I z`?%(=@%K}{KISOzHJGeHp!g$91D8NG^z+@o-~2Ma`zD`#S2S(bxJ_Prz9qCoXZfOg z^r2@3I`O-Spt@K=<>B~TWd1S*)m5Ai#i>J^#zPU`sr%GJQLRgCCoe!sajGXk>Ty}3 zke0iq^-kzKR2!h2S8ZEwtGjbni_j?ro~PGnB0QgQ61$I{BILXMw_f^R(meB)*F3mM z@ez}$9+R{ue{-Lh|B;ZtajgS|l~vI+J`#-hKlrez(;eiK#>VGj+G)Zd^+(0Kd?`Wl5l z7pv=RyP6f=ecbjQcP}vc|L#1QZ`Zf|U3}6&)jjnxpdg?;PU9J~>h_?@mSYv}5<+Md z70yVD6R6r)5ue6dS09V~P4G4RSqD?9Fz}zF)4t;*)LTxTpDT~$2lj*x8RP@Zm-GNd86n0M00pp}N$$01GffFO6;3N|6V}>Or#>OS_?l>{* zoQ$H(95>A3L)JEfHG#&^Mm@JJLe$ z0S2pzW-8L+6fb@pIgP{jv$5vWggAL`BHos9Y$15S)2?4$4P>3rnNN0CWl(b=bz zI8njQbJC;W#1i)U_TKpuoJJ8vfnI;wegu!N`nls|N5M&4uD(AuPUoX2F^XuH$&{DM zbeztgdjfs58#t--{qlG<{>W(*aW0E)N=S#3qBO32bmWA&_tFzmpdE4Q>HRosTz#9T z)HR_9i;FYHQNi+PoWiF-4cwyS)po$V{2RT98D3(OSODoSE>6!|*{rOpMRrqH+fCNY zYvtn-SzjQIoNV|-qP;6Bo_JtO)L3=ZbsK2)oGzwL2ZG+~CP zy3T5M5OrG>jsM!Z$ZxQnor+i?qGJb1nV=8D&bP^QDC=sK`S09p%NE~24@AxM54h$~ z#?6qOI$uD!BX;A~t`3vn`MeF;1B^GFf@y>aWETC=X_b81Q~3|@P1cKS<&6!lJA5*3 z;ku&}kTLCil;K3FycZEubgpU_o`=79~=Xv$5W_ zG|{mqx}#3ef$&N9sfEkiB}RPFJaMY{p7v25;A_0ql|jQBBe`fvCPi}6+8zPmUUJw=GG`}GP7T;c$ATTPlRL@ALtct~l;u=(hN_5*r zIQ0*miS@)K7smwyd!in?H?R=FAtM!X%h9g5)Dm0I$t@p(>}uP*$tp-RXYDdy!!*mz zKW-t?>9cE>g=m=$k1u3 zwT*5LPwc2<=Ua#m$QoEjy+FGIBv@K>ej+Vg+B~CV1CiOXsFBl(PEjO9i;ySgo4YG) zQ&n}gtX2-nY+VW+q3l>0Quv#H&AAN#BbLT)Cyx-&TkWPdz9CpLo>J7M`4 z=JU}+*N&x$O|Yj^Ape2cTMQRkbj&ub3ynR|uzC+vEU+ec18Xsz0u6m)3O53Ay9S6< z>fPiM7Y^MgMharXM~mv5;<=|aLed43|TGqJl~$gp7rBQ$9ypg_Mz_8cFi zspbXZvKgI3AM!p*drqBm>%VE;=EXW&bzuj4U9DzSH|%~~y^al^zp6N!ghGMPMx3v*_%LIRa=epE19{(+ z<&KP?Ps|XykFK5<4LtZ zyE6Y6-mG`?@&=tPX-bqz9ur|th(i3de3$tbP|T{u4zu)%f^_?7wLc|&2yM+1`fiYh z@IPYSR_KzlOe-PeACT}v8QMxFo)~9u=J`6?u0vSSR#54`F6tH93MBWpZrDJSzISdk zd&11H9)nD94Q1lf{A@DEAlIA{`9x~=PIc-|(kMs}ysJK}|E+nGeY5!BfBDV7WiVU& z-v6ELzcpF2TQ7W^jLxgqLc^QhFX}kWZluMQ^YazuUbY9OV?atNGsYg7p0)$0!?bGy ze(EkfFa?m;4nB5MS0CD?j}lt{+sBv+(Nr4}y%Cdv2RV8Ow=aOV+=9qUv081{)xupD z^TK&&Cc7xsPsyx6-1~e-PP5xAi_%|N9jL1=2yYxlAwW%{y^0Cuo5QNVCmfK6;80qa zvQgEDWGt-n6xI3DuwCX*4t1*{N6QLaLmd_UONQ0Hh;!bkwq;xAO|@Mw4h5VhbMv;^ z6m#5_oM;H0S|uj{JYUI)0W8-3W7`%q4ZPV7F7Uep2!{F0~hMy;;LJqiY-+PzKKeF`#Nl;JMa5HriFObnTj^p zC3rN-CpNL4Fl#fauNXsXW)QTU9*@bG8SMC>&-O_U$QZlYufoNKj1z5W;`^kbN%CT3 z_KGT$#KQ3y9g|6m*kzta{vj_~jQ*lhf574qjF%ZKfxPf!gi_k3YMKHZ--9=TPp@4t zDP=TUl9t6?=81H)LI<9I0d=*hi@fbN1tA^HRf@-alLWm=^TfXQ$1IyRZ_)Mlgax{P zglG~Der(Q8QXIV^noT>Mi$ zI)gU3%KsTHrPI0h(Nls2k)~IcWlt$4Q-BPQuvSKoz2sa!ZLR9-hTHS%+Vk^fv)p|w z&}o2Zr9^Z?Pim+rv!-_&-2+q@cVIEDIrw=mJzf3HEsl;HfAV?%?g>j;I)5Y8OMLro zxiDfH9Rh+A-IumFq4XxpXZ3dD-+#6#bN|ZP+=cwb;ZM*laEtFuRGP;3Cnbi{8=Vo) zH#&cZ1@%531$SGi=T&~QEjvkyg}ZihY(0&Eq@BPJb|!@P?w@e)?~&}mhgj{3S_7kX z>HCyml&rT6O}d#ENQZ;e-xWO?p)u_c+lm@YIwuGL`Uv^vyLDS4T;oqQB1a z0_vLY&SUy^eS0oGAXC^X&L}ae&u0NpVHnqCH)S>3`j>y~Y|Lh^{ovd>V=DNdeBU3E z-8iVmz{&a9``TT-tv^R*go0}G=ZoXM5v04ieynJ#>X$!czkd01S9qzeug~3JFJO1S zezM(#n%N(*S{$F{g~_ydihpyH*P&C6WUFGmZC#W7&x|57Bag~5F@Yn}gHj@%m5hQC z7(qoh2c`!~Nd0_J3L_{xfka8LC>-tpU0@@JpHN6Ng)w25AFmqM!}#avfZV_6iu?9V1mp9LCA_lMc zHfwBGlGd7vDdb?O;W9o|a*qzST80SCpi?;6G%-3VaDSf;HscXiib)s`qp&mg2|NrL z9d3i_Yx-3S${8n584pKB$9tY!PQrGCVEn0z2U~3xb{gqP1ggf6C+SFJbeQ1&Wlz9% z2&LLSb+Vx=mlHmPmRC=QdD~%6&_P!t=Wtt2z$+l$J2g+yL084|M;o1j?JzCWnSw({ z2U}iL2?|Qo$=gom4{#>pb%wRevoMqGvbFm#t7>eUWhf_Bq(49d>wx;U%LGW(^#M?} z*oIxAYqzbdvbqUxq*(uRTVqqi(u`Ru(}&kB?G|2kKg|AwvW|!`7HYdRvo=Q zBOk#MrJ|Np*Zw8CMV8Oo;?`xGW!?l_W$sT!WR#eIK8Ez$f|z%1rHH!abz8t*$Z$8o znv3<>y>%}z4)e)wp#8$0mh;Z5@_hUDorSOHLnW>j#Z5LV$`Tfe&8r0lwJX86<#EZs z%V52he3FrzC#|pPon308>AN_fY_`i5)f(UN$Ca_sw#al)F-_vTnEFvIx6RD|x-r6v zwi>4c%V1*CoH8@e0z8*ut1`* zN8dCK>rdV0rK`ECZ^4^I222{xPAgHP*J$i8MRS1XG3_^GA*6Jv&prZ5-a|Kr#iQT2 zR}pk{nvJVh*@wJYLbL%g5%YYL&x;nN7q1z3@d;mFlvA#wCt~B79P&!pO}U*{{%5Qn zrfv|Sf_OwmC#BQb|CkAGX}o1(uYLLk3M8OM6_W48`Z`Akig|ZQOrXvf(oL)fR#A6H z;@m%2Z3`k}*Hu|oAK*;f3ySSP9~#ny2+u`jzmStiLv;|Neg83t)pZ6w$hHYPL;Qao z@4l|8a(-{;>*f{ZrJm#{feJ>M714O@<$=Ch_boLxI`@%?+ajb^T=6H&(i1vae4Jg^ z)yhAM^?D1R_phMzUy!e}c00osH^ACKo%S9(=mv`y(4K=4H9c;$imRz6Lk~86%4k~o z0ll*L*VZ4NuKMv7`prAfKG z#u(*XMn@VCh}>#c@2YH>w{ys)yvbI@yslc0ZS5`2HQ8tRdgmkdc3Ca332qw8$fUr}=4Q&saF?0meB=}k6={vCg% zVe>M67UbgG@?YP+fBSPEt?rYrPRbh+hdS@&q#hoE56-~svv~ut*TD zvH0HOOECT^yQ!VW=0otMclRmT|1E44R8P^QSda@8*>H-bYnl$Bj|SYow%#jlE8I9Q zt%i>PXOb5Sz*ag~bmwzjK0zzq7rj=Il%;htvpl;_oIQ~I}yFsh)P7)1I~DjBs(m}pw1t=5pg^tiAu z+Jg{Dq(5lb1sHLkrftIyo;wg>J62;q`>=Gd>jY9OAw#x1d=AQ6o8_*7mY4PCp{K>a z-4^;^nl_&u{h@nvamb)sD|mv-ewm~~%4jd`vl+v*X^b;?u$BL0o&9USDtzIMIxk^W z7%X|-)YY~3c0KmI9P2ZoPH*JVKNEs#PHo)ocbjfLwW-32BlL)18q$ynOhXDrrH(_} zw$*+g)pEC~Zpz)+r>!nrb4VdkK<+*=KamgZcBXKT+f;)fDWK5nQ1!YuN5#3esb?&2&u(3A#;EJ1Nn=#t71XWY9JS6mBwgRLqFJD8M6 z|44;iHcF!l9Z!kg6|uCWHwcYTK)yBkY%2iKKrX*5V`94ZQjtF>}RP zx0AS!+H0@6HIhyto+sK+9?O&mcHK4w$jo8f*zO-XJq`V2@J*tAW}tM>uEZ5n=k4kh zT@p5dJ&#-ysu+t!cqgn-f}+wG{~n-FNU6WSQop|TzNGUQJR{M|IbL8~AAwE8qkl$zgJaG10x&+A>kDSLnAFek=()steF@l)6NoYJ z>=P%pH?e2r=Q-B=yf-msCliB(rW|IUbBU=djx^DstclB|r^YJOQl4X6IM2e+=|*Du zL&<@XM385s4mr-ee5n6NRe_TP^^ANx(xWecnm};82lbpp2F~1W05yru?9gA>3o6Wu zK1gM>)sxrN>vtED37A+0(s|K+M_+f!3NVE0Hcio>9_>`hPC(YA)1r*K?R8tNL3r7J zvnKQZTKeDC{BBx1NMO_z%FPj=PzeJp=_*uuA70y@^AW)PTXRH*R7I2%p`+7(i6DYa z=Pa&&@b%mOeD~L{v(IL*NOtKKSMz0Fth3*ozr^x+vGB;2yG32yxHTvrena16GuP(X zrYd(E|Kp2=`#k&1f#_(yDP7j=>g^`m!uFkPQ8do~rOz|}mtB^x^K$2p+BYCkv-0+Q zoBIRUzvJ$&|3nRc|0eqj)8^+l**Ai*|H3u|VxAJR8-v$x65V4My%i&szU5HD%R_5FNq)DO(lmss=^j z{I^Y2tlKx8WConuw+?hP{2$lt{?7>EpJu1W4?n~qJU)Wq7HzR|*{rOpF>L-}ni3^r zS8YO@e>kJ6ht|5dS!b?k{JR9tHq86BZry}U7Drhy(5^WMiGd*(<)WKv18Eu%x!G)8 z4U@uKY!hwN8Y|cYT;YsUK}oc3{_>Df>j8S;Q&+>3D&ydjPKURZ#-}wW~U8jVpfl zUa60$*VX!}cGq=2Z!2`!6~T#N$9|FIE2SOCXaVkNkfV4JvaV47=*Njae+!Vxe!J>v(l(1^&5Fj{@waLqkf7!5y zbA`=CVba9yFOe!<*g?%jw0HbS3bqP_wubwl-h>!Gh?IXQ{10z7ZXSfn`v|_~0&4Yz zy0j2G#s$<|DI;`rYw8`%+WEM?+T`tWx8E}zx{Qhzo9%JI^>kXyL3mZ$=-$-lunU`v zcdmg205>ipf1nklNb=an*&bW9o<`FG~m0OC=Dt0RbKBa;QsAmD`x}VyE(bk z)2n;D>}BvWkGEL2bsqi({LNy4Zha2`R+ACs+5?Uz0WJs3J>bB!OO%6x=#lkxF{`WF zyqRyyyoTj2WpV9ljHz>Y0_0?7moq_$CMF)19-e>)UU3Jvsy552#u?C90}b}c1~gnj zYpm))RzOeLZM7;wX$x(Cwr0$7K8ZX5qS3#%#@ zMSiocnxgsq(TZld|JK;jwZ<}=?1ttZEB)`mAK&ea`8h~%wX>i`SQ~98=<@H)X1V)_ zZa&mtHtbze37|?)@d+?6tRlVps zwUHqW4w6p4g=>#Ao@01`G*J9%bK}q7#$$8-Y+M!Vtv{6Se^6X0j3m_rda*hMk$5rz zNG`ku79}z|Fx5+=`(A#WHLkwRKatP=Z_i4XeFMWeI~;%%>G5*z05zfP_1n7ofGueB ztgPabnVpZ9ECJNg<%?`y)bs7?+IyY;8{;Eobo9&{HdBPusywWCRVxnb&b_CkU0yK( zORu3#xkSm)#^V2Brz2LIGyQ(ZIgA!CT7?>;iKcNAe5g#XE#S}UhnI*=ym~yi%Cr;`tlA&zn|Cv`kz{QU&2__zJz5H3Bvk1eD8RT%a=FPki-H* z>yMrvgOdPG;|6D^F_HvVSbz29F}N{=U6xNH^Xo0HKe6~2T)Qml1!8DMPogsg@>cOS zB7g?fF_=6;$Op0cN|pFnc}_}AK_^;JO=*0m+a8n^81tQVJrr%=& zZEaezC#~vw|AKK*5}HH)Hg$izTM142-G@D-yFO7#2sT!l5(+ySQ+Fpob=}f49U6OB zSJ_W)Q`Idxg*d5*R9C06%ul7=$LN;}2D@sbX{8bTZNU%&tA2mje0fAYV{Z{KEr z`SFLZ-u?K?Pd~o@_J{1VzrOtoHXZbzxuTbAEdTZG`?o*$;p{&7`V6^}-o1#Hwt@)u zysTOnWT?ubS!Ii@gCrnm*<4p;S$%*>H5et_6mztbP(~3I?}SRs9y^xNo9($QS5-IU ziUf;?fED$y_!ky2ttq&d9WC}WE%EPoNwH~6$^)tX>*`4A z3wgy*pMr7{O*U|2McWM@&|;pJKz$0T2{`o~t#}ILJ}r5rP_v3|1Wb;VV46M6N?%#j ztjsj-EYGSx@o`{vsDUBm#Ml&UifPGte^TSXsdTrl%&w4D!nl&KPcO1fF*RJ?6;$?V zTr1Zu(J420qcSF1150P0UU%+24G8b4N2idfpj=Avw2$7nx^URqXar@Jnb={Mj2Q`` z4cJjHpkm!g`Q6j;J7nCO4>_dU-6C6oY8Ys2VwACgX5Gnn?Y5`L3@Bj@*?(ktxmo5{ z*RHKLpb}Q#Q`k^aMpcIf4vJUn)_rWR7H;DqfZ<{wreW1jjM(>C(-t2`vAb8A_}-gj z4oN6uX|AK3s zQpJL&^zwy^&nXju={`s3AY?|fX8QnES^CtV7KeV#jye|B^ z`>es%kY%Wk0x!NeN1-=Nu(fzfU|JJ}(xEA(iB3ui{nGzEaH1+>zPH0qQ zz+ZDso4NH(Ro{fi5u6&FYVKSZm`<8Nx?d?KqY0HLt)sj7<(+T&W$7(0`}b_~Ww(a9 z59O<_F@l|GkRnUp{)FJ1N1G1L6Mge|IXDcXd9oN+ngC5Y1qE7vnrg+OzRm!eVJ%fz z+`1aw7)KyGg)!;KQsx_4?=DjClV30;UXJD(m^fwf=Xm&SNvz^af)A;zf+(DJxg9DYIw#xj^ zT;^q`Q*!)zbU-DafWP+(>G+9O;#a1#CT5R&>2da96-)E=d@Qfh8k zHbC6?(2~WvkkcuZ`3nFlN^v%8SNWrGRiRsXCWHlP(4zn?yjpk%ZvI$z5}=3-PA?9dlNodtgqok`UA19wl~X+GLLoLE}L*}-nchiW(4M| ziZ$%Kn;(7|O`Bg|XVu*UAEcA_UkHy!?I6J0M}0nE_iwfOSgc%I`=7mZdEI7p-n#JD z{2jX~{GTfC#=-~pKNenWy{TP$_XFy%h2T$_BH7CSpcb9lhZWkKhWh6V5F?nxW0V*g z?U#I;``grWDt<#eAYnG2y=h}x38K+dnF^rMy1d1K|>5msxbaKfs{3uT1I_Y2eZi~ zOl|m6uPdf^QOKdDjtrS4q3W9Yqy_|%N{iT9(gQN@=XUj=e6x1g_FZbmf=qqtVd6gE zKhLSY1(&ngHLY8v5dW(Q?1}SewItEb<{q%Cyu1b-#sK!1lJjv0Na#SIG4o&6)?IZe zudzj^RKg07$uiNeFfVrx(-$OX?}L4ib&E>K-ALZu^@L(#w2~?&u4c>=bN? z7{+Nl^SQ@#3z@QFz6BR#Q8cYvBOJ_QS__c?!7?cUlD38kWy@kjuWRwr#TC;6^h;zu5VB_VTrAaJ8BisjT(T?~7u*I%vD}>h< z*PKmZzjTlT5IwGYhsgi1YPE6x+M1)Q)@W`fPzDF#V9Mh?@G(lbXIsTYka4L8u;5}Yr1m{?Wm4y)#D0lnwlTdZmb3COt9s`u=hiyV=>wV_423WfF zjpx?P^Yt2%{&@>Su^*iK4O_=0V@C30u{<*o<0DdfNB)(C$wsJT9z-PUkY8RoJGQ znSh6J5(g*Oag~R+huvt$wgbFQXHW~9f&xycWA}9HJ;qh7OKgQtX(c_adXBze9jLJQ zDHx;j=3e1CZ(Fz8fF9UMS5SW4x*874+XDJ8=a0V^I=CvuZiEhQ+%Ne9;r=P>-a@!9 zy`#FXh$HN%1@4zhosNY&jmP&f?qdQbX@Wgof+|V$Szt?OVXvV*XocjD%Ab{lNawD{uEIN;m2?<{;pA1{8jC~mS@QI>E6&#MInaIin8ugB*RxU2hV zkv5EVAcGd7Y@L2mL@=Y7h->0JrgqTmC=RO5zhuoa_b&jv!J;{6F?gEjrox3Jp|o>) za3*rG?Kz%}%O7+6|BefvNP3e2wVFq_BOUR5sJ80`^l{bO4MNwETP4LLx=g4Qw5Lh3 z2i4Gm_zP^b{`EZ8^Bb)>*AqxMgISeaw&3-d9;SFpLZsQzkej>36>}$+e6IcL3}WD~7UB zK~SPtbR;SfFA{_>td1+!oKQNfgzl~|_Yv-`q78zI?jyD)bK(Dqx8@C8zuCRptA*Qm zF3?>6>JTA$EHsZcnnz3x<63X(y+xaLg5SpgGOmXj82$Ba_W#Mq7XqYA{Zmz-6Rzb{ zD45Hh!s20nU8<$=}z#Lp_KX_y|XU|0QahG#{-ke<|4M!&GQiOHAWZHtqb)$s|$ z12IYhFoxX1q8dIa^70ne?;?6$Oa)#7w|&XzX4@2bdHXuc>wjhpl+e+Vf^OB9u2|zF zYyBgN~5H!OqNuAu69ntw`(BEABg?^9f|3q(AFfBF>FJ4o9mX$Xv)TD&@1NvtWl7dE8(%+g9 zHjK=RdcIvNJW>hpLZC;-b34sQy|PYjimQO4-$E%|0EL+|Zt; zr6*3^k$Jfuq%~KkBPHpOB%lHNJd(w_&F7=^Z*{sZ5E!GfCfLn>GR^t6hcbQs8UHgH-yvY+Tz$F4s&%{`A-KVHC8^;Fh?0= z5S4b`&QSf_J8@(V4YkCOgbz^x@XqAr*2O%#5AaQvmz(8XoVa@Ud%#4Fz^G}gj{Fq6 z5$U-xP_K?R4aez0kbi|A9ydzH$0<^S*MDw4AKsg+*@V?)*X6eRePTly9b!rdC85g7 z{_M;t%6)u~*8;=w8Escg3Y!)^ou)Bt4{Z)Q7K=7-i(70Cr)MXKiYe@*!;Ue^&h_M+ zuxr|4wJkgS*-gH7<)1R|g4Ow=sLITT5Swc4U&=4bqUk=Jt$dunUl`~@3gEaj@;|a~ z4uA7a)>fdP|CwP*lk8*0GXMQ~wyCPpEwWizRg0|2SDVr`pCfxr3=xqfgHJsoBUm%o zJsbT2<#V152resFMOdxf#gE4?_y6)|##`&9|92^IcM=2D#xYaT($=G(H}qT77P47Z$;@DGi+z=;Tp12KOY z_t&=05cAdrt7%~6Yc^lj)v9W$6?`-=cTIt983O#@zIEP&)k8NvF3tTX{_oWMJEQ;pU;qAp`$N=iH)T~U z0@klq>!NDCVTLpjq}=1S?6TP|`}4Oy|26xef|VWEwiijwlWr98;S2ZCu9s3TUB+v%y0Zh4hQ4ig_bS04g_0ny~E<8#Oyz_ zg}W~1g~KOQ0CGY+TFXxBu;iK%BTW3TEc^ur5<4!hJ-Qm6$Nh45Y`7>T(vV}4HTBKk zK?#J$TD+MNbLT1d39<&dNX|uBUM?|z^bg~OCPjdp%vp)%uYaWM|fwF_vpt}t68xQ z(>HCMZ(E4bx(Z@-o7W&bhE*&{Sqti8$yX`7opH%Xw5jd@4=W>16^X9rObd}9!fizetJS8Q=k0y_I>czrw!R5(WLY$j=lYNA z0CctUF6F$fR@jItxasymfS?yAmw#}xI&Xf zoJ4tdp4+$U+kSF%8akWAhiyF$<(|{5c5c4J8fP=ExsSCYE=e+pNzEwZ@knitXug}5 z?oD=+ui#JNvhzQ$tTsW#w$9hhwX3twZi?&n^EcTXa$vPTWRao#SrB@9M4rd^*SGKA z{@h2g`y>{EJ>KL4g1_%>s&fQ?$4~II<2nI?{yMWHUK}_O^o|H*k!Pj%M~Y^i*FKWF z@nGTeMd#AYc5sU3I~N*U+{d|V8h@tV<*2dovHi3%?Pd1zwsXYafXG33UTx1p2e8fAet*s7R7^yvLnrFC>L>IuZqF;;Ec zJJd)inh69R!6%AO{ohf9x@=u#-t}pVviQB5ZQHv_>#EJFcIoO5g?|an#?6cC!Yyz+ zN0-hyjl?+;l*HTf4=77$1I$`iLo0Tmhfsm=Yi{baL47-QfoZk z^lKP`aB37in>V<3Ibx$E6@k{y(_W^uD0L1iJ$ny6c44wbzJmX5tAkHk)i?RN0RwD{ zrrA1d1Bc$`!ix3Np7`Ww!axMOjON&m&#(b*5{9YxWhjwG|G-R5<1potKl{q-m^}>i zy%8dh^Me7(^!=9rlf;)v_rhE`AN5yd*Xvu=3s)ng2d8K1UA#a~X>r-{S-YVBmKP;H z5sYAVb^_@&2nr23Tk1Fg*DR~~ZwP^@X-xD{&f{B755Pe9$^VjF1&Rp!wu|hCAERX8 zFTOzQ#joeFooT%Y;PfBd${u)|I^2xnsrte_V%{h$FR$t3TuCmji1gAz&8E?raP2Z|t> zx7oTHrfav@!amI?f$`eZ35Ki-@6Wp2BiLEp{seu>@Lu&6WLk;|v~hxltA0I$o4H-JlthLjK)1}c*`!DyZes8k* zvM3j`qV}Pm|J{EHNi(dMAVd?yP9h8xRMOrm{6mndy!8%Di_PZ*5j=1?C(&=npAP-@ zYrD`Imm!o+LVrha?_WOYVAie-?SoL5eJUz{)#(;X44Xn~47f4%)S1}aOR*fYV-T4i zQY`S_UGC+8wdgOgzbaUN+Zk#mKvr;nsrUE!9?3$~-nMSFY4`Ki)nYq8oUMnxLMXo9 zZddmngLvy9veOsT7YUm{SB0RKYt`qY*3dH10o|@eo9?rY}oui#vdkeBilcpce2`5UEG9*(C(}ZPAYDxK|!f9 zlZfa2Y1tE5?B8hPk=<71?ID5fuSIvW1zFldJ`FBRSLb1~f%kY0TV=wP3Hbe&JfYt7 zs$P&Fl87m=rdIQwxzeKw?|oT(xFTCugP8W6Fh14-qM(e*X;2iJ#FMAzDP~vMEboR& zp^)M4)zFQxshSoF$Ds^%ZYA^e_dr zbM4(DfRXYf+J(7)n0wN%cZ%r#_ghrAc{ATaHsR2tc&H}d&DA_MY-CiawM<2KGp0vX z2o|4^`edruZ8p#~lSu0d&cqY`QxDzd1n=Xr81B?P9L!`IU3Of_o;i-wRTb530T(aU z=6`7=)9G6#*W4vOl0D0v&>AMo?s>+Q^yWu9%;Zo8`d$Ixw>7MhqTEcglyV(N)= z`GD)N1O*u@YCxhRc~qdnMP&~vACLIoZJTX9u`FbAutD-MBveh(Z}1|Du%4;bN0_SW zH+*|eJSd2QBl)#qogbnk0m#`55A^$ zKAt#OwEqi>@P){j3(YvRyeA(x1lg*dQM?P82j0PivB6}P8l8UhFQk@Q_k|S)m~CBv z%Et-RsOZNi4rs2r&6yOG5z`My;O6B$Ie35!06i$Enz+1fvk>Z6Ct?!FAPQm(iRNU} zae!f7k?Qyq$~p+jg|Vb5522!x{bPPMokyU_qIA#BqqV=X_Ize_UL1FLca1mT$gHpd)65&$1j-eAZhhY8 zk=xwW4sxN})mY%^DHIpEA(Hnb0dBWtv!5Lajcqu$cN;CVn!t4i+txLSpO5|y%WF_n z@r>rbbpiYQZcY*zF=lMo-h{81k- zIe0?g2(E8R2ZM6R5J@iR6sqDu&!H!w`H0YiWluPdJ_<3(1d0pHpYN<^Q+K_nAj0y8 zUz2@yKMnc$n=D`NK+t=MZkAYDLQlsM&&OVG-~S?dnZf5?pHo-P>vbwR+X{Osep^>< zd*~a(YhchV1Y=6+d+xBFwEyNhkb8_PyTUw!WMFrC@`och9im6b<{Y~4fxA||OZblt=CIrp^47fpb0^B$iati`7Yxs_BPz zr+Lv$8~G3QL3)9%*iX(+$uIb+ft`o+?b~-2zM>D4xLOo9*{mo_cxdO<0s}AT-1Dwi zl-G9MxbRx9VF}te_DoX34UY+2Bw}D(6RNC?JCxgXXh!dBYgOH1468Nelts5@r&GdY zj4~CU*1OvHZ&ECof$L(kDP5K~4V04a zBCzA!IWkmSYC3`V3(8(x#K*FpOK$Jbw{1ROhWyo{xV|pt+Y+5fv!)tmIwJYt)HLxz z{}rRru7UGh%Y5Eqbm}QFTrqKMu9`rh3?x3HKK?_3#rnRI$3y83NO@r;3OO!2g%CSz z%Zg`_Kau49^w-@8?0z&7v2dDqNWm>lT?C{XN{Fwg|5V~5qbw#-(-Tax9^YwQ_}9Aj zP6a^z=eFLBpkIg)#kiP26N(QVeZUfJT&{N&WU3F|;GbYKw*S~?&F9Eq8O!A9K|1ob#v|NH`zS*Ke6_XEHX|%3&KxpLFYOB_3it&Klg#^KKc5j zp!(C3)U0ZsGj!EfBui`rrge}28O2QP|m?uM^#$; zyJ!OKbwv7qqIPtjlmCHuIZa_cQ7~mq+-bPasdTrl^a0xS{)OYB#gz;y49RyVbf;f5 zeR7{xCpm-+5||W-_$41F2R}SM^1Cg=4hNX}tmeDcc?bNBG|N&l|eHotLi?rH2H zgCZ?e37Q)0UZC;a?z^Tf=H9=U)fF@!2SZvp|IHz3SdH+Mror0E{pqfw`JsyEs zTQr!PdcxlJDXe*8TCkq;Zr4^fZe6XsefjSQ%(n2p{mcI>eB51qC>HMX%zr^$<#nC! zvfO`m=k4%MVH;IlS2xG@t;4tS!1v2KYyWLGyKKE(%|K9Uy~vsZ+GPDl=B2BkXT_hi z*&72vaVKDQ>`8>Upcea^R=v=GIkmiCeZBy(XKz8 zBhSyfeC038kmWD)1#Hr|Tg=(5VcoAOJM3pgd=^NS{?s>!l}a5wvG1X*KKOusq#!|r zS5IISnLp8)l~35DKe88DS={8IO=+Y=jg>m8&X^ies<{=hLeL%2y@>xvNy5zTM3y}& z5na`AM{?uJTaT)$Z*uP_?E!j+x!JmAtbBc33SIK4PoE1Wxz;L{#p~l6c1)eX#m-Z6 z&8HwawFi3MD|!yl&RQ|!gpDfc7p|xlGFl3`kFzcy*|)6yOYcaI_1J~SS54qr71VnV zPq@7MZLA|DsV(P|aCI3~+_1AG_j`@TN|H@OFhmf|L{$CnUEYQoR|%8TKK^XldJEI< z{@g{U62d5GG)8DWmApI8Yd>T&D_!=@x-Hrr3ShvguRZ|+Z^EZkAi#pCmbL^H>? z2E{**dJ6e(7%S$lvVS2u_@XL?m>v@YPb;#gu}GT8co;)GAEhf{t%5#!33nY zZVk(1TIhY6g|&3lM6*+ zO~>!tvVfmGcL!#RqN%r=L#yLq1>1)Z&+j)aptVn~D6v!6MH^048V6eDJ0C$DEb!wT zqQG0w@n6B%E|eXHTI;JWT-TOD@hJHjs*L)0n8eTE2Z$RO5%9n1-Mv|kd$f_6DC1O5 zK^zD&H!R*vyvOIi+dsGart*2dg@*BL?W!&i`DgCW+hTsIHF=XG7+yEOqKHR;=9CMXqs3A_$sRX^p_ zcB_T`XK_2S)EdJkP{V@3Jn!fNGa5sx7=~|Kkpd%whLZ=LcbFmgV{~@l5;ap0VjxOU+LK?q!?tqujlbV^qu@4$ zy~d!sK%$#h?{oXl!j&cD(2z!d#zNgY-7fD?*w^%&j|!N+_us#*tJS|Xc*8$S1dn!= zrh|%c6(1pc3RRb3L7N&Agu$-&OU3%egiae4pH8}mZdEKk6xZ0?dL?0PYRYy6n(t2@ zfj`gl_3zcX$X5BbDCT&c_LY#FeCge91 zQ=F!}*B1OhEuxF5j@afoz9~M?4p1@AA)RfuoKV^~(y%A9fF$lWO%?lYLO0_mu zr+KBP2z~eCw?DjnGT^=cU0$D+AlwLh_VB~G{ee=$=mh$ny(cS$Ialo5Wo3nOd!7bB zSEp|HAUpbbTi-eq33Z~VK5IGuk*%w)?h&dW_|7?H6^!aSBBm*Pvt@g`Ey=&sQFtghkML(GXPL!(uV zL@)_vG&AS353r}^bb1&sGa*UPVMw>LE$pwMPo0Cor|^if&lPBJa)e5>`mM+KU1v0KI_!ucy46TRNGdX%><^Q*JA2A<) z;9A5*o0B0$rRviO+LJ;YPccme2wa@zTnENe)!ILq?bX6<{4XCA5K)jKf}OpnI#T}M z>oq!5oDylGyF*h%<^4c@wpzHke|{js1a}ieQqRA{tDSjwQBTk;3k z5F$KWX-G>%TQI-*;oVUT1{oR6C@~Wlodi5e_jq<;pujD%YpB=mN6(wzwq&xHCxS^PqWcTqxq6i!7fnJSwRRt7RgKLl*W5;3zSKZb%e9QxbenD2 zR#1k5DP(MTEY&vslhC^n+E~t_eA=$BJf!<-|9brk4h#B8O1T@0>_xoSr$b9vD=q0XX7HFY(L{0#@I$LS zxke9WJ>S+fNG?OuZ?y;!CC0oASh1Rbsze7l8j}ow><#<20D!neq(xb9$*GFB z=Rc_~3y)oJwcRCZ^KgBSi%^D#)YbP-q;^K7}>R5#^r?p8&f zeemJqjSoVqZ9Ci6O^Z#9g{p8kc5CJYy?AlU4{lcH&2M@3o%>kKyDu7t*@cvyX3-+y z0p)M5t@3%XfOQ|pzzIeKh~=ifX(xkaP&}^58N(FjJH53**pIC~NGX*vDqNKqGw4g~ zX<{z&n|0LywNSHwhFEvTx?Vu{_LGw?@{3ESr@wvs&cavpq2gDI;wGCF-V1}ggbz~@ zz!Fq&C3@oVi(tLl%(PToCafF*WkRdsTGKsI;@F9BdtO2p7{BuEhj0k$a{+$LD2CfBy9+ik#>q ziUNdDBI88o%c}No6c%I@#|Fao1FW@0x*30H-5;W8+kqo`mud-Q5zrd*BxSEj(I&_1T-qs|Eo|mcF8Wr9bi~IjK1vJz-5T8D7W2$}J=8wh&s5UIN^EM2~?tdUc z(HiRA<)qd4p+`ZOc%SRtiaHn`aBbVI?X5F!aI0c{WcuH+w)c}mJNw1Og`Sbt4g75p z-=>WU+%0H&+EGIUyBSb)&6`++K=^cndlk&83?y3 zQQ~ANcQApiGJCPD?)Mz!&8DdDU8EyBiUBW(Q>1(pGe&y+rP|HgtXTi^PWPwTc+bdx zsI9X3uB|p@-mDI~T2f6Wsif|99EKb&PTC!BT!vsK6+<#3i4NsP%Gp0`KGED zuJ&%mZB^bvavoen?}WIUE%cgqlPRF6^W#rQ6a78$)}%kq)D$b!^C; z=eI?>J4lqR+-g?m=sGMkgJr`LV3%nwds>_B*mXS>J{WJRc>$YJy8`~5;2bh~Mo~M3 zv2>{U`dH@)dW+)5HLdscvu4+{ZUs^Jytszm_zL?W3f&jcP%bf&u*Zq2xKisK$-|&n z?Qg*nW$4Ydcg3dQx@3k3{S>b#5V1qv=ULVh{RYz{*v^p*SP0GW>?uN z|0k@p?i|g0wyx@x|K+vVtdLsEp}jNxS!ZgE=#gxH9y$Lh#2ZmWkUveGqK^@*Ry{Go z^C*TqrhkF1lZ^I%X;wOH+cE-BmcC;X6l?|UDG1fu&0V)xlh-a^XCH#-)yYzYK7Oy- zM8uW9EYuW+HYpdnN9*H0MObW6RBg4|UCQy*rXLJb(G~Tn5oCr@+2h#UBN&8|pc@R* zF#9&m+HLZpM$b|yO6^3BRMXcT5konqBb5qEC*iIN&P31Zw`Sjm=@wm&=55~0w-D;j ztNc(U0-QMOdt3;rCt!xc$BDWxo!!EU=&oPWpPhjg#vQiITbrFgRvXMs+n%j$O}njU zAUhq}*4=6Y_a3bEzN^W?XK-4ZGE$QC0dh^K<~<(h@4FlPx`3K;2?8(4-)u}X%0$#X zseF{4xtp78zMGfsjXxE`;!D^1|DNa21(ElUi@XxIpM9KuT2((kcJSA?@8AC1hphV~ z7EaN~JaB?W;=+gJVdTym)@{+&&|FlvMOpmb9gClJ(?39UHLG{k=eRjuD&Rj3j*QZt zlv%a$#^u?}m(|?=LW}CA&Ns{58)y;B%Qrq2C}A}ALw+0DB)+V`#ay?=dJ9`B!-qpQ z4Z6#`A6kY!iZb8*DLdFLGRR>z??T9L-~S?dk5~8{7R1q}z&{RgS7*H1Zn7|PyK#A& zc~@zH?qc=KFBPB1&s+#Yw2kk$+%w+vZ_DifxOP92tH zHgIHu`MAB8)O}D00dXoRm9gYXI)IoqLb9lvQRl^aFTV2CVbbf*u-)cOc5hQr$Z@{E zr{eMUsN(S^`*Gve*;kuQUFCCZ6Gh(rAmo4ldg1B#?b~;hoQVpLpGSf=zWwF}(7t!| zeCxqDh$9dq=E)-#Q8)9Y5r4B@gbi~3FCnHa(x)BGtiAy4zZH4*0~9_$S*y;zs#_Q+ zEMUF)#v$Ab0=RYZxMei4_uqm0p2Z_1Z&D_o3Bhc9{J!4aWDDmBEgV!V{ksi&4i4!a zhkqZH}SQ~^q&P5jz@h_YB`tEyePx~q>A z^KR(li1y7reTBo^2ikTzE+FL7zf~UWkaVj8+k7hHTEPH#^6dqJ zaAD&Uj*oCvH|1`Q6&0C)mWd!%84@j9_Mr;J$ZFfd0g8aC5e#in=O6rQZg%U14;9@rdWv6F z^iWa7qMIrbBPS@gGCr%Zy}sUMMN<{4)pmX8!rH4XBQ-aoIoA_VrV)h79+CU)o!v(MgOYzn8!8W5{IbtQ+%_3r=ntaRBo>lQ|(5kRAiX%=mQyax>A%jq|##ubD)|;6)$$pysGL&7$U@JQU-S2r(XsD zSKh?Wz+HnhKP8xAFjO{y{FEkIN8O5Dv+?iMg(lpUTUT|xbl5mCs+65TB11q3Nn)73 z$?J0G zr`zhjC_F0H6wTgi&+8pz3~!4zUlr@@KRrw6Mu4>dOSb~^%WsM~45v7lFFURZ0C88G zc@IssgF*VGl?D)d!1-m$kq4+}bV9JNmB+Olc5SO#U$RE~Oxb_uJQ|YT8X+x7!t@ zJkZV0QYE1_mb~ZBG-FIg@2tK-+U|o#DV}cc#v3SxmRVb@_G7fg3i4QsY93Y^?T6&q zyU*WrpZ4~8C~$v&wW=1NF)|Nj!wTz&+TW8IV=!vua@lh&6msUE>IAt={Y z#8RH{OdOtuW}dIJuRC_2h!LKS?53_hc)SSpE;zL|+N_dR`ZIopm-)&^8Q2mwRN6`0 zuHI|qCb|UmNCvgmvayy-q0K7<7qQ%Q6jOJRfdktG@^>xH=vL|kgmenwJcV#R8Xq1J zBGyC;oF<{ZOR3@_8Wuj_gmxByaH9A$^yiJ_=dZ4jor8P|yB3)h@%1_1>^D>0AKxe% zboQmSx3Kg*LqVC9Q5DYvr*HrA=PQbSdV^2EJ?!S9;z!{fD~6uc6h;(s%Np;Uw=%WI|AXPsIo=+$zT_1+I;yd>STXSahs#52()E$GK}7 z*pJ?A)5~u5BK&t#_J?#lr0e&s$iYW!-MTsB$-jOXl}*4;gxoG?(Npr}5Wjhx+q(C4 z_v*CIiSJ&w)7e@w1!Z~I0bn$ZP3nKM*zV^~^BE9_CbBBa=f&b`mN#LK%C&!4P`Fub zOKi@MrW{&PBW9gQttM=5&?Giy^_bke`tWZ}wkpcsU~^v^7T(s*WsAbK=&*UWny9*L`Zc9B#jocACYRR-8k+v5Ne5O=O%(oNXXgRm`K}WWFK4}1of`N@`aQ8EiX$~ z-(U;(E%Wd1sMLSy2AuI=pBJ>kT*C$??d zwrv{|+qP{xnb^*XZQJ~E|DSj3+w7`dJ6&B}>vvt}c^s-=t8G)~z*{QM&zoZ3e=HlX zxe3Fhv`gn-vg40R*;eV+60Wz6{pJ>Z0iQE7Hyk40%g3X5*g}|mk4Cxk6L-V#^p^?T_ zjRCU5UAd#3bwUO^H=Erb4!4c-tu~HfILK?4$P;}@!Y`Q-a!!9=V`Wu*oQwBP|920R z!Gdb>a0Fy&N0WV`<{6@;?1aXGhj?!3y4H0}YG*oI`X_RW8VIHO0Y=0eFKF%wr*ps2 zHtL^Jt7MS6ng88Iw`cva%BCz5!5GcTjqc;pdDEnc%EDnUzzV3B2a! z=wF6v=5%4LM8DD&GIofKah>zA>Mn=i&&y2$TzxGS`pQ=HGM7;C;O}EnBrO@@%@wwO+TG%l{&>FBbubp`2MNe=3!)N{fB*P>eKg!{M8FEX!Hp5BqMv%J#jAXFx7w)fQh$^7POe zvN_k_o&K>sh7f(=ga12qNuEl`$Ki@p(MJV-_l2iQ$7pgJ|$aPrOB^#)VXlX>wAK?UPYcFzh^ug zY$f-a)dlfH2A%Pd3?Ku2<37129F>QH>~lnmagYUC=tu_xFOL6UuX{idNkXbE`gEDn zL;~y3Rd5LZ3T5{?T*D!}&C}KfK>zi&6Tq^zIdhKsTsGY58cI`Enq5Fl@@(-j=b2jT zT|LrO1w&C2;z4jD4c0XJM^2WvU4RmPjy(btQz0+RBGp^<>k~;Z>|}Ayfyf5~3d9%S zl0wHX(WA*Wvn_pZ`H{q@qu7JZ!)3a6`-R&XN7eb;GFKSHo2|W7A!$YNNrB7y3^EZq z>*L%ebtlMH>if84tp^si7h!6PKf^memET-BC}=euB7}(#5@H;Vb@zD2|7wfa$XEZ zNuCH%c)Z8F?(w%#3&lN$cmUD95G*QV#^~3oSlO!D`A-b*tL>%ToNs8frv|O_;%7-a zt%Z_8nzopAQkJ#)_FQ54sdX8^;f#q&i`l$MT=JbO$5eJuqadz4^aQc`Q_~Cdw?S zb_znw^iS=AJ3y&o&$CQ!&!f7}fWjc#WxN+_i@;jrjhh~r4rpCMR@t*jLUn^T5#E4j&b~c<@sZg9as+?%fpEjCxL#2>Ll(h&oTZMyjKjYWE z-1QPz%f6Lz#S-E95DE6kTD)EyD&GuY^5nXBL7!GK^zPF34zE%>P6K4;Fk|o1W2Goj zD_qk9`)^=HLSR=TCF9ai3z^=Y9Iz}N9k{G}%V+ge za2C4M&NwkK#W?dHPs(=O5?o8W*8J)DS?)R zCt}*$;!(!>ns+aAbobierSLT=^u&%SaC%yp^f#|VU)cgx=E!@}&Q=?jJCCbQ#^09y zmowNQ%5VjNNQFrj;45Kr!Z9`3!)L#tON1g5LJI_dqHhvX@d9_hKh5ojv1QXVS}SA( zEj@5}{!w%6joLvPr(hgqne)}q+0ClO{EuBxyF*1~St{0gP|%B;6+RVBy5@6izw4TvbtF4kodVlJ-=5_$u(c3pJMGJReBTJ#vb0>v2D43m zxEAv|)Mn;ndF*ul1;VQ3;@bsBxhhwa(flK-R`8LHBJ1XpC=p%)%6EsPw z+V5mYN&?#Gz=}Tvv1(7)i^V>&67nV?#$kK0s>U_ONKa4IK&ZadzSeU(CB!i zLB%6JPpNDr(IbPPM&rY!#N73qO@={t+ZCGVb>myT*ILK>@qcZvgR9`8L)Gcn3sIeG zvvZP8%aDG!@N?-KAfsApp_#PL=(@;~ZE{oHT{UkJ*@DcQHr~-zGCbhR5}oZFEvAs_ zcjF09!u*I)gC?eYEiS$;7c$rq>7ocm!p!&a5cLEke~h`=x!@KBw@N4 zrzJNN4|kK5gGO}Jm;caP&C%n4%|=eC{{~;S=~64&7Wcmy<{E=7c}Qs-Tj9k$GjH z4UvDkHosV@EhK!$WWi^OPV4LYdl#E~%ewI!enLybv^pfkB@6U)BI?XG-)3Q*AK06$ zvzYRmNuBLls4MIWCI+N*k8dX6G(f!KF^-gyCt&734ag?54mqx=3b8~F+g^DbY*k8Q zWoa^oD$Hg z=(M92t(jQ~kOI_9RVdK91bEQkMMW#z^A*lM&osO1jm3{OBk-2iJ~F|a>jP17@(86B z`h+f1TkEKVJ##DnaI|Kne!S%!8yW^C zx|wYic^hqjUh6bhW;XG3mGg@aIVnlUmRJvCUzdfC|%~eq|FP zCikocTAdeQKM$GfMmg~Y8wNa!>X#lmQT%xl0zIt5rTOHNrnj=Tn|I`^o;&?~UG65A zjG`Emca{EnLQ=Gnd?>DhOCZVou>@c_Vm}QDVlDw_Iy~`|$74MzAA~L^F(b&cZIwNRFq!K8Z(tf-cw6j}VE{LnOeJ)MXh z{{HwRIx(;vNN6FP%P3CR6w1pz1N60i7>R3ueBe~Kew`u9W*wn#lltkUtH5WDdWM4x zaeHR6e{mK@`x=LV^3s<9ls5t;i<=wHODBav-snFZ@hf?Ak>Pj;6AR^A#&{r*6{%CY zes}w4{;-KlfPWlffGh79a*Ew^eO8MPEcp$OpO#u*O-rSQLdd>>E?|Ywt|lqFf7(g_ zC6RG!8D<;V2rp7oYLIycqtcV{oyv|YKehb~XK)y`*Xw;`No!{Y7Bv+ zF*_Tzj&^o>dRyWPXiaZBOH+ABArdBwozdG_lV&0Wb3R5YbI11yil$1(@5LU`unBz3 zN!@H$W0L*}Y)k-W$L+0!uF;)D*^S-(*`(Vn@w9P*12PCOS$4vx%nW)LzmCpcgB zMkWs%LD(GxKzX!sp-F=9SNG}b-(zGM_(DAjj$*=7s#uB5#BI;Pa~}ltw0#qi{F?-4 zm|t~!Lo;L={zAalM1h+CY~zC@RSN9%ov5%f?Q6UTL@4;jThD*1nNzn7_bFB( zNF`z)r1hQb`6S)WC5^p7=Q4!F=#ch6kYpKcxoqby@oYZVFG%^!n*H`yCLxrwKx5PA z{wa`plV$Urv6mj3UzT!WcgaMq@!3+d+Q;M2$g-5q0fPNpD{)%L+d6JW_&cjU&qI!e zu#DUc(?&=(6JQXv5*)U&U;3ubx?X8!dYtehJ)TAOf04Hx3?`UcGE|MfRAi}5R80DA zxx3*x{=1I&&(oIh9HHLl^0tpQYYGLO=jngwrT@F!(m1ONxl+JGka#9svcQ=6YK>+zY{3GYg5 zCGAgeJHGJDX%7O@0+$MzN zWR*bMx+roCbva#Ivaq4@wvA~b!BrQX>K{wa8#eNFAZS<$`#Wo`pwsg=* zTICH~9P6E($_26dKh@T@@w(khW>xi$7xnhnA*{1zJCB3!h5zfS*=B zQ(^U)T&ecQr1CoF+vLj#;k#GQmOt_989v=jka2Fc<7_TuZ#cD{bIL_;pj&&3NoOxt zj1|~b??yM@6GwmO#ogsap~vW((UKH?gR4g8%h4S5katvBSsc!BnFQMwu7J=f4YGP#ytI zuu?$=YpTQK3wC=Xz&XB`usl(rvI_j9-cs_1D>8cn0XWlisLX5+v!4siHF zX@~1T$R`X!u*u5~Lp?!MsuT07$YU0vN^z@jPOQJ%O{Y z3ci~S3tio6zJI$SkH2a%{c*|kmIKfsb{a)+w3We4p}OAjiEtcEyn`Jv!_Vqy{Ze|` zq2B6WQ61Py1|$cN1Y%!1ebKk6)4d7HbMHn$N4eAWHBsS#9`F7fYFByGZ-_mh@~@|{ zk-uBU&4DQqhKC(gmFgaR#9GStmz%{;m|o8w&#Tw9s(}92UJz`?o5w-LF==ITUc|2V zdYh$KHuj{xVD2RD^|Sr<_zE>00QACofV93Rw(XTu-xJ&SYwAVgaPN_fo!SD`bh_m$ zSg$kBY^&Y2#!CdR_@1T0hH+y7^`DRQccsHe2FUVaQZp>njS(3zlK~$z4m+w7tu(VK z*QJ;34;-!aUnE&Kr&X}1QU8AMgD)B0K8-`|6f%sJr3A)(7$#j}tk48H=#3qkp-rQi zpG#Y3ti2Q+PuU)qJ8HW`tm+Ks_j#t{dN?!9(q9%um2bdI>+ua@$rSaVXY-$r`1f2h2;h`M z5I@M{cZ6I);|N6Gdu?6u#5t>$%6UPxr8oExO!9cwhe8$^tFlBvZ9nS?-C{3|>)(4#H5|Qf9+onvteg+CC~IU z`sVTgkJ3wj#XHxbD{4<&#%rm5^;$vlwb_|4R#{UF#v57MHrd%!!3es8Sj%Ft)&+84yGl4{jgoONeielk*oS$+k{ zEKE^~)=iXlc-eJa>4JB6aNuXYpYHooDAUc^5gw(r45jagx-PSJ`9v_*ZEE4u$(xhM z=gGMDp}vFz+JgeR?dDFUJW$I*&Wv&0<8r~YzLV4S*b79_>WkmDa%J}YZ^@@sx1Tw@ z2b!#M5R6h4s9BbM$uu!69^*sQ|Kq9KTe|jA38%FY9}NvzBVKME2qR%{cVgy0KHGJ3 zY1mmVqhfvgE@Xe!K=w z1kM|4dud#Pxx~X-a$>8!mb@iSY0My6f6J9}zODd{NFdP{u~18|@15*f)lCg(92IRV zbAALBE%i(yy0mHA!Z*9m`J&TZ9X98Zzz6ay&j8mr&X&&c`W5|3X4Yy(%PuVPckaea zwf7Bg^!JAD)ur4YHP_<}V?f6s+KYtLL9v#!C<3GN#rr_dH~7<(D~QgJjCrmW9Uc!f z1b!fB@*ybdc$gV3kOAee(A&@9%(PG%bAXf~NhmTc;D3<+N^@HzN#Bd5SWV#9h*+BXv zG_MoUoKydM(B+!53KBO%mS@tz-Pn5*m3^rp3kn*kZ|bXIQ1@>QZ@k^?8~M11M+XJF zr7IO!BvR0Sgi5&xzamlgCPR|R?D61^y&~1W_;Y&UAOh1+PRU;XDKQQ{jdc64pI;7t zBQ?mR&j>8TYS}>)%}Xd>@-p}uINwEyD!}(T>e5uwXVu%P%Fk#Tw{FRB?gR-grOK05 z>Rf%6s3?4e%uBW>+_IopD4+>q_stA4@g)7k+7GkU5%>Z&tJ!ADWMRJnJk{bV`2Oay%de12OBKy zZ2gb%B;#5tNYIY-r|&(&Uf0iwn5=Mxp9}@$nE@wA7bgi#eqVW^x}#u+^d5Cjy-~XP z{>v=nEF2!Ni#WueCJ z6gQ8af}9`TY;{*@BRSS}!xJgGZgM5bxNHDrm0%b119!e=r>WB7OSxhVsiVi6(CK{B zc2|It>z6sp9B+sBc(D&lHM}5M!EjM=&kJq07&CdRb|{@~%i|P2b~a3xTxnd!^D~8t z+1ci&aK4+pUBUmbaM*#URHN1lfW6v2L2|?KklIKM2-y}Q7;zBj7kM1O+@tQss z{X1!`nU@Xg-aVT&aI2kPsLi!lzLvIKDx`iUt}3W5r$F!eM3hH91M-6PN*WX5)1&Jn z9B<#{th~Y=j(YFsPk+=+UO{Wb1(*>Z6t#lRmflLZX*)#R*%%8(QDhf<7_SwnF7~4T zLuVis-M%nq;aJd3SL&%Xe?!7v^`kLG$m|ND2%CR~{_&pbUjk)L>#U5^!7>T5eP$)r zVc;y}kChXsE-zfJ6~86!-p>itaq8AFqG1>SE?Hc^dQ#gh)^Pm3uLKM??<9r<2ja)y zE)1^xoS*&2+Z$3{wOr;2PMmBt8S)Q6B~^5c-7U0lu_x`(tfCGCg~iF_{~^>BWoUb% zrl_dzL?LP+C`oO8!&uBsC^1xaZ79ny1QeA8_2oSHq)KCZI4Gi!FV*;WX%cw&Az_(_ z&xHSd&^*iJ{#BZAF)y$p#=gy6H!rj;YR3cOVHO&M7=Hk}8cKkJ!bMBkYuCjY<#`wh zHjZ1rg^uJ6H78!i8X?u4&lU5f$5tl>jm>8lYzn+}k+XehI~Sj8wML@)7nxlCvXc!Q zV+UwwS9j1dA;iLxEZ*{wY-VU2Ni6TG&@H&dMVs-@v$qNE6mH8zv5@7&l z&Jk@ZF+Dcaed>0O5<_5zd!_(V5)~qPM4{akF(-9@BbN8h;8tV`xvEWADlmufIOcHT zG4!}BLQX^dQ^H69o|k!>T-qjssM#Rw$|q}?@9JTZHCjPZ*IgraG;ZH&ajAcf{J_-! zKtGEex$)ta&1*^vj6iC(91LlK?(ai_OIo~vcjS(|AM7+`aH!*VZbP)Jq}a5ox+b$l z_e!B(84W{vCuXkoZI7AqhEN2WelY62k3f=q<|VKLsg(Mxyp7RbGo5t$*?gk606xur z@p$I==D5dxC4L^9Edl-u(OK{QtRH}N3z&Tn_ju;yWW}wub(AA1jnNp6iGbx2d_`E0 zlduT+I7-{fb=0jc7!d@5zk_Ew09Dh=C(iQSokK2ftR1;P9|vdJmmNrQW#|0R!n)TD z^o5aY#?gLpWCS4a&1$3}^FuI#{rD`PJa^+T7-y)6CPpYXs`2s6!+jn~@#6ky zQbQ~-_SwJ=_Cg4*8n$Ag8mC=c4Ryub4uud9RUK~aU3h>8z%$aD`Zh*=elsHvG{>{Y zPVQmes3nzrUWj!^d4W8E%HwwOI+6YMT7Nb~PIyoT!O6h_yrnl_(Yd~dwiS+3@Li#B z7>85r6||vi_DW{5*d?uk+P31*R^fNJd)D2Jq$F4Tmo3d@F%RNzChA6!o^d;E)|pmV zYM0GueHV~hyanbgeOX@Ii}_dbW?j#=QHYRg6;dBM3gQF6kmk1=D0b`E%<;Q!VqT6Q zt3P7JWU+x%)J|XXkX7=qV6NcZGYN4Rc_(wLeJC?~)ABk2?$-Y%yr1zD8-FG=P|ewi z^|XPoQ6J``wi)177q43U*l%4R8}eWiKPafmR3G*nk8^g~Kb32X+xZ`uRq5=jX>(jw zl@H;(PRdr4(QF)jU&k~$|Eq{~xwHja!zRXQg9i&Lbd@_?B*azynk>bhu!OiAXg52_y zFW_fxWA7HTM6Gvm6m>FyG@Z&JT*fH zz&*NXaom1)+|iy1tM)QYz1NQ5`*jpXv=qrvpjrZJEXsQAq;tv*VR_4|b!uFGH$AoN zeRn+`ofwHX5evBdljirak-PJFz2U!G+78_!+f4D;gl6h2zYm@O6)iJ{x}r224jq}{ zl>Sb)`<%$>yy&P=T`kz!Vov{kU;K?VdS8X_niNXMnak%#^F6}FuXGZJ9EJQt2&(?H z&Q+%NX(q-|SQ!09PBUXYdqMV_2IpP}`fYoKvX2jyF3$k=yu&v*=9p94zWwl9<6d##O-_gM4RsK13~(?hwmx}0PJ?WQvc z-I{aVFvLnN#<5j$OZN`a=#jg%1(KGppWtoee{%)O#dP$xux!Ue1wR}3UI>-~UgeOq zCQ3Jbtpms9na6qq*|oI{*m%Vr{_|^yoa7>^-)%p)Qs%hMR0b~H>DzmkldG8I<6)!g zon+)!x6gOv2@BcF#(5$lDCypNZTC+K+2j>RQbC4ntm}r1uw@SB2fU+%V2_a154WwW z{qyZl5?ScX+xx+Mm*;&FezIawT3o-KoNXbvsnq@emQ~^9+=T}*#E0h6M2elL{5PUc zx!zl3Qf*%8E6-d~LXqrBi|kcFFpp1=pQ*{}-21Uv;&g-#q9d#2rXwdAqux^X~3XhJN}(XIjMJ<-3`c^H23 z$$z#0t+UIE7a2>{f45o6EJJG2Z2Lw!Ty$_^Jetv((NHQD*k-5~zK;B$XkkW`WezQP z<0QH{o4z}?8V1glvVvmtjyACXN}`?-dnTr@nn3t@S%3RUlbpa7VAFuu%!hs$KJRr@>E4P$7iV5tv@K^emKCZABi_~H+p;5O9`IHR*U{m&=XPTXU5 zDXRK_2Zc{_2B#4ny1Q4ML`Nk~D2R7HTqJV4Xs_A-@bLy`3(9iQpO^0qr9~f^CmB<| zD9;p40&OF~RGH`2;~%0r+?w}riD-9}Hn!rU-vuVf8F-cpJqIBp39x0{C&(3yq(V(k zD`x{&uLC!fzQ4nfdO64nxu;?bikBkndQ7}Co36;oGR0G40X|hq8$X7fyk!N;gBYdu z*EWZ$XqQylK@Mvwt(90VfB2*{tjbYV)1~quzxWb|gT*7y)#FQFH{5wgCGHnH>XS1tR zQCIVTUC{ptSAsBE*R$To_%@(xTzzg#DXoYa54Jz#F-! zt@=0f&GSo*pm1oyrB-=zjZTzOhk>7@r~FT~g6 zW?6v{C?7&(2;B^}HgXS72pCIf?B%Gr0n*`lg3x$V7+$f)y3}y}I-@W4`2ZB>HvSRa zoWlhb?S>DmNyzgh@$1J#i&3;Uc4l5=b=Ax%xD?NqpDIJ=V?mAT%6w!Na$Aw&GopyR z3+vpXPjaBKZOhm>_avV_k#O`f0*{`d3%m0TJ0UFo7>pj0nV_hY+_#g2&H5|566NwFI!eDdh;Pyv`Oc^XXme!0j{WDM;?|}AH&s;puvBpO zYb6id=BhxS}bcJL*-S8Ns+&b>N5lrU^rH6cJ&Ddb$xcg z`G5I@gZ0tX4y&cyo}L<6okCPfdKV5`R8J zU1ggJw1Qz^a)^H9TawM0=9NdimpqT^bOKuNAX!JFinnd~o7@HqLr-|DO~4*AEHAyO zS9Xp_FF~OSHbWlV4R-KalD|>W8x^t=>&Ue3B|wAvXWL39cpRtf)*EnuTI^-VDYWgR zooowlw|%U!SN;UzXCh_D7)~G~7nrF?XV>}(A z+3}oP_f%PaE2G_C{68Y-RD-&a?izJ?fQ%(1oef$)!X=G0M6b;%TBhSq+6IWQ+&%tn zHmPnOV%TDw3A0X~7M+=PSfkT4oyA5W1%s?sU`9(uz@Lzr`2i;zaBZ922lt=@b~Vz` zKHORzKxI@YF|K^YT7qeEd%8(ZFv{&p$D0}W&qkv^#LG?R6&|PODEd3ekAsC*B|aA{ zztr;gvBuZ`@kjD6c*DVrn(FfhesEdq{d#8U$NO?ad(SmTOxsgZp_$9YJi>)LBxx$+ z!uJ{o3fm-anewZ|HTE~%& z{&SIRSV8w>1i8XV;jt{6BP}&+w|Rw{{F~Om!Im`6O|~s!YRgiov7woMbPjV5=^4~c?Z*^(f@cSYdnB$S3 zLsG9kCMCz9$+uUlzq=6lMt?FARr zkXZRCL_@)b>u7An8*_HBT+`WJT7JL3Zg!#%y{)-$O*{vxnOx=nF)I0RAfM00`US6m zj2V5#X?zIBsuaRErRy?M`;TqAB~w2AL$eAhI2aGPxmb+FX{mrsB%=@yGv8Z@c%oO;?gZCN{{(Z> zQKRYta#26y3I+&cHb*?Qli{+_w@!k*{1EIqh@5<9blPjY32uP?)>O=cZ24t>SHZ&{ znX4RA6bH!Y6G(~U4^X-;(SmGq6~xUCYC1sHb+0a3!&qGFz#1Y>3c(eW&pgAr9{1 zt(Ofg8xisrx9V&^kFlsifrxxl8UL_#` zsX1MQT#5Lww{h_QYj{Kclx5`=E;GnSlBv2AV{IMN6-^#MGg83JB!yi7GxNZZJ0)X1 z9R;Ip7V1ze!5A5RUF7e^wlJ7%bERTQXlyl*EN|Yl4AYls3u4}slvg6R6*3hCS<|H^FDnQMp zigQ+wv>grio$$IxB|~qtl?Np`{qc@?>Pz82tIcTO?>d_re-?tUX#?4#$W8jw=M|feTD%;V2#)MeGsC} z?uiOnYUpf1at3HZ@-)O8c4}hEC?u2;FT$Ks)uwyi&^L&vLgA8HR%D8pN{qB|ZV^ys zWOasF_Ywy%!E+bss=*5m%aeaEjNf<(n6$I)iaUfz6bck2V~UL2Y*3Yvs8UWIXM)LZvs!rnAFiMWo6?h_==X(*@6A4g$#k`mK|bhpAwb?FJ>Gdr(8T?OiJ=j815 zL0tksB<9i&Wu_^?1i9BdcAU(pPB1v_HuT?*s36&a$^0Xj9CX`v;ZUc$66DdE{w3sk zf>k2PJq-Ns4vm6KVpm3>3Nth`%%2DHk`Zo;CCG}{ zrw0>Cw8t&-_C$G*QGYIwW`UU?YXc-+yDU*hJbqcm8RrBk38=)PT|iP~d63w&B_oe6 z^>?*~+ePw;1T)nNx2t+%sgk65=2T8Qlq5&xWyuiKZ$)2o(^U`tTo<+2tI7NWLW$yQ z)EfRYnVF+-!UDOJI(-j{qQY!tohj>}aC1sB zY)uL9i~lMX0VSe5YXHef4&1j>Rkg?H|2<2wF+bfImUNN32JD;zc<;#Q4E}zHAaKAx z)WUuQ;v!W$JNs;~WR>#MGJ$U0pgB7mu6Fvq|N5GGd)}n{{kZ78h4xe8es@e}o8r@7 z*p#!4_rcxiaWM(MWZjpBa&b9}C2nAWO>wZm+{S&CP`9ge>~tjhHPN=HRyww$+{P&S zS-k9Z_?p|or(o7Oke^Xaxl)9)#80zf!{C<7l52K9e^`gS?x)k~yqdf1lgxt6Mpv_o zMB(d3lTf9?(2nn30a1+#U=D;9b!g}cJO_B`5BU$3$_Hw=W2 zWq-6$>_e72$G54~bYGxo4K`Eu=v)hR^T!gDPOW9b0U{NsLfC^Tq4sWd(F%3{kXd>w z>~1Wwe!RIP>K`ITWM1Qri=m^00B~-_bdx32EkdB3+_TyKY-RCi2o?M4m()|Nwt@5|R0Xlj+C9SX;Ihi|?HN>xni@4ul1xi^2CLS;)IDn+ zgcL^y7msOsZix0chtuXrgqjbXP?&7R;Sy~5flbk&_UQm#$3~qeKufi%$2r=wCGF@5 z1MPgzS(h0hog;1RgKxVU*~GGzbI9@Bobx{LRW|(}8$GeJRU+hb1&bzq>P_}vaSpcA z$p!E6fGa2>hJj@1RE(_Hl(~tI1f!YXjH+MU((A#*@@_q#fd52ECc4-1AvRfv6$wu~ zZS@hbzm8^xG`8B1^b{2lh^7D*r%Zob4GFle1-2ePjRwS$57bIQm`-<$q$8ZNRZ3s9 zFMkM{rc)*A@81HR1NF{AHZ>5X!@5bwp3g2QLsX0nlA7@?77pcfoS54NHB;`HdlFnP zLE()$s&YG=rUacHkl)Y(;Bky18uPZq`5)S3`%Dl}51<|$=~eQ(s?p?QQf!J0fxb#B`HHhx~YW0eXBOT0;A`2)ekA?=+YM_YWUuLFE}@ zRlUPkx?>kh7*8rTl#M zsvYCp%`cr$%1s8wM%+&Q#U+-oTqe;_WRn2xps{_(kzhzXV%@)KK;LJy%0%i;E7$=~ zz*edk7FDCH{PW_8J%|aSE7~3PYd>prTq4zHJLc46hoEG|Oi=hiNd#vWNqaU$ddAVY z?pbaSFHAQg^&LdUGe3*FqM!JEF8i7MSZh;keFCff!FSG_Yh}}fj-MLh>zwT4TLdU1 zN#r_UBM<|PW@GM9B74G3k#)GP>ZztY;uz&&D#haWii1<7nYlU`07A?U>`8XZKE zk{D84OLWwQ_#XLrOpU}+$Ph%avz-lNAy~4`+VVV=iY-#vAkkBs|BB_sOez9du1TWe zQMQ}oJ@}lqu;}887h?;DIH@E=GJ^7TdUghUGF}I2Q}XIEo<_yw1?e6%^6r7rQvF%2 zP`A@s-jUmfz$b_-q7$$^G)dKuIzhktVhO`0PlQCL&bN?a@=^Fh46YnAA}qi+MSM9A z;cL+8xG4OXX004w6wX+@s$a0Gwp~bLLs4NoKgLChiM!Y43d$AOHJyo;`^5sb&3(Be zbn3KjL2DTHC0{K4xNgOgqMle2?ENpX z{>eSNmVcaHH)&WV4$bxP&nK33Czn6X=b#WZP6Z9#b-TimPru$XcbQSttEkWq-fs!930(S-|2i^PX| z2y9vU$+?17u@V@7gkHLK`a}q15*0v2pLM{%zlHBG#M`uRIE_2IV(RP z7H{FSI|Z=RB+^Z4LI`|q=3S$HiG(N1_T&)QVU844#5AcqiS7I(Y{se*k5etwOZ4Usm)ndN&FBUTx<^CpOG1fou^O@ZQPh{XUP~CAIx%zD@YvkC^t9s(;k#lX=dD!%+sK=QUUPWJp-jQ*6E5C zVyqjETum(0zz-c;gf>QT%2e6TR)_#$I9OF8@n<-C$zJly6m7xFod9W2@-84P;Ov4o8?W0k&35H*1r30eGVGbW< z>S>p*wjHo4TNdw}eb)0j#7`r&3u6Bjz^dgX@?LT!i`#^dhKm-d!VsNWn0i9{nokxKp1}4ichB-nrUot@2R^et0s_eH5@yN?2JUO+; z8(dlmS8RzK))gnY7iy&so|grrLfCiEzk zvj#rbbLVjfkiIn)@0QIvn^WH4DO|WHO3drR@WV6x|R9fH|7QR7ljZpwp)q>wKNA&bT48|J7> zYJtt_kspA8C>`ue_LC>Lt_CCdh4;|QWqE;PB645iN-E!{N@M-W^!;N6=vTQ3`bzKNHlhA8=ewZz2w(wmgGbf4l)(OmVG*$nJd~R zF*y|_`*GU_VXZa4{-rQQPR^JZ9CAu$5vruXBUJ43P(RDCKl}aidT(mZ?-+~koA}U5 zD&q}O7AMr`5fxPd8x>!K%pb6lPiPPo1wqyEFo@_0Uvgzh$>Z;`Sy#1aioC z5&OCkUS|`?-#&k-D)ukPknsbjTJbcQv*I16Xj~O0C&_8_g>tnP_CfZQ%3_g`zrf1C zMT;+C{JnF|wCm%=#HSn^9VSj6Ur514Pa4f%J~nr}{mXP|BN2CweYSY!fZIxV$ql@3 zee%gc>LU~1f|k}QHwC`eWYnMD;+RCB2_pmPkFhVVPnr{?mH|iO9aB~&NP;R6If5(` zaz@L0zyYPhmhS$*(Z#V_BptFO>|;MX?`oH>9QeL}eLqNhDJs*kYbFnb9C!>a2W1>) z^3QqgTn!W;q{1xcut#f9+C4D2og?J(Pu8E1Mqh}?Xue#_a%yM%7*e{ar<%`NW=&B) z>J0tS2C;=me$0ISP*!kqN3^HD=$Ripkl3f6QS?Fo+l+Y#B@I@(vo(l`C+*nNU)>_C z!FgaJk9qKLHfoEd{55wThofs*iCPwNZ?5r{8 zo%KI7@W!)&0j8O=K$l2c6msLeLv|^1s7W#6wg?^dx)3@nk&{@sP}7feN{kSroR^)G z9RF?lC>y_*>S{!NDlK>->aI~iWG=Q-o?6>o4wnq@jzaYU%RF@sze-JnmG0*w2HJS`N~r(Ic+&07Y|f3z(NU&kz?3oi-8+-?NebD`LXA8FH4FIzEZthf=R=+0Xwc zi$VGW@tI<)1UZvgPLdg0Js|u}xXV8#y$Jaw2>MM7K?FOcAFU&ZjoMA9`yzNiaYF^O z#C^WBChrX_!rBOt1>-13F%4bEEzOBPiql193o(zbQ{Txl1jf1BY1n*z_1x z(y0Z)IUjm~j!Nn+?SeSbf(;EqBRJ7|xX{U&u#N&(N?JWsUXzbPyf0x5#<2Zd4(Oba>G@flHELj41qc3dK@ z9oif=K1mamZpR5QwQ}gfGCn2=49=4-r*MC#yyTIKyd?oN6VlGrGEME!TF3&7kn&918TTPdw(D$ln%ZxM>oI1 z6YiewrhJEL4e>EGln^G9j#2~@eCXidX!=Q@KZvDU4(n7DhAz$F$W;_f(&uZ~b3PDY zjar!|?JZiKenEfM0IZ1n*!TWz=V3kaCQ@ThK^N_`*Nh4%J4V^F& zCkq47Ci_5-Fzu{7k-`k@6%ylW;A5$0hF;V@k>-Wcu3j^0hw9CUv1EmqL6-M zhwiWvj}OA;QE7ep&c^iY@Q9>2~c_bv}MnA+;Z7X(^v zUmPa#^Oc&U&sWNg8JH!IBkMmfNzbDYY2?7Nm>gUGLE1zik2lbzeMA)bl(nE-Cw-4{ zYs5gOR*tI`L8a^Dg47JNLkEoHNuCz1eG2a}kfeEX&WF~*PI;ou(|Q+BrM;(>Q8Tnv zXiWE~6lrf#CW4!x*XOv(C_G&UH!8HFb80Wo-s zLurm~d`zT0=P8J^gWcNEr22f=Nz!f)64bJxx!V!xAozch?!cr>4>wQLItZGi+YS_3 zXzkE;Ac?zHo$#iGeXV+6Q@b2dtvcQMH0g$PuKeiDIaDAwi&4L6iJj;i3cN`vX{h( zd)!u}tzb$7moItNVs>Sj6_lmj{$te8F)%f%JS7RJ=D;l{*E43@{T3l96}5q+VHGLRC;EV)5OPY?O+Lh zjl5+GX1_$zaR}9%4Xk(RF`cnA=_rI#JD4VFCzhnW-AzzERJp*6$ccr1p0xLxaLd?0 zr^k%Pi3Of%PmxH*hZejH?h3R~N&7oYXvKyC?9A~xZ`xvggA5_nM#-d|9N6SGFwY3PAE zDuE`Z1y8$KK(N8e`F31UWa1jY-bWvJ#M-gY1P@juU3un44(+nDo+3*+ zP88ONp&^E+7)F$@>n&1a6h;x1bjKrMoU<3=hxTX)@!--PzOfhXSh@qp>jh?TX*YyR%GG5FwYI9TU1-9Rk>@51{pc2wbkjmBH?7baOdYQRhyUDCa?W__y4ipwsp}K6}F>Mf^JXJ z&IlviUepWoYmKi*f^knNx9%q_f zreYFfh`k(35?9|N^s;1Fj3MspP^H~4$QiqAA$2c7v;{oD6s74x6huqQh99LE%Xf;h zw97!AoA{)Vf{iIKlr(L*Afni1Yo?AJ3KG7UU<)U(yF2()E z+E0q}`FLDZSXG<0k4lM^!zp4uPL+>`lO71AC-ut6W<{5{7DqWxGqJL zZm(ewL1dRT&qpa@K2E)NDwB>exDPTuDfNAd5c6@$Y}$SeBjl43sH5qt@qSIh0Y)e! znwLU|*${c!5>C`g{Yie!m^MJmq>E9^Qu0Yo%_&06hDZ`$G;7VL^bF5-*;m`PTIH=< zWUYfi!L}|o$nZ(-Z;PaFLnhQ^>aa(Azo3PtElaw3DA*@8BtBsFXgU|aDy$$z*rZ(= zZoOwZ94lKd#)VaqqyvA!8GQk)_eZivfK@Ugl1`5cX3ZyfuaB{cQAu+H*0e|91Sj$n zipY<#%F$s}Ngu*ovQO!mn^&IK972@qs?N6Sfb_cXe_m|s9N`E!mrAjuGq9X{m*EnU ze{<_<+hj9@>Oq34#AOhPP?vRc{HNLYcRzmq;m7a4dDlnh zeO=9+caI$gJd9a+cGu)RJZ~~~Z_02}``>wiZqm>gBNZW+$7&;jMulK!CD0#0!|2#^ zu7xJ#auKx=Q6kjvvorOll-}U2^idzF7;jjY7u-jLj7r!>^K4|*VuvyeW6D~lQop&N zAarg<@E$8jKd!2E(N=Y_zR4EuwwPnfF>-0O_Ruc(1;+%%HzXJcxhnu3fHV-n83%lpkoL@6A7&!*H?{s1s*Lg*E1xNsTwzw#Fyk&xy4n>FWwKIGB;=yQQi!ue0z? z*KOAbl`V?vYgaq}p`O)ikHp0>H^fP+ZNl1Bd&K7z$UX`2y#g9`zAW9c^q%ke8Ie!n z%f@8DBHg*WJ>YYxl}`iwSkMeRyFawYpks>P|Z#o8S(G%ywFP=8Ab!6lIZl0!>7Vd_n@&I`+=y_bwJ@jRO|`)kH@?Y z_VupF!}emF$D(B3??`#Dj!SNyaV$o_VKg)*Elqe^I2f9DJ)TO}JmmFN-MZQv8O{cG z>(Bb6{SHQiz0APAM#u>~j+FDDoJdKy9 zJQ*dGRweB-GAh|+KK>(Oj|)i%7y4156-hTU8FqwAGRW@W1Px!ja`+?wJU_wH4FI~# zvVKP5@wxoGP3r8c?~kHI$aqR?C{I|@ASC+M75LYLf76*de^oC+$H9I-5ulCY*5D zBYdja<#`A}QxhpdmULt&DZMnNsJyvh4C95iRwnLnYIa#h8g*8jKZ3GSA@pK!iL$SeJ z=wtp+t!G75RyV~QX^KU1Vnn*LO5MJb3s24WuJ*iY(C})?} z)>dohku6X=nnDYe?(7(&!ulxgh1lKsoQn^xEU~&R+DM-8x{^K9rv?$8&s2yR*aZ$-ILtjyzBPw}%uPEhcg&S@M=MzS=js{kXlC%$8 zBJJQ3wis7FL8jX_6fD#Z&nL)H#Vv-Wd*%i|SCGLuzdg`K>5CCP5GGM~5b_uv1B3@H^_(sb`uuv;U{U|;DW zQY}5weZB!7QYpDdnzV?8)oO4n(L3D=~{IRPNUf{G3MPK^Z#UG23gpXY=x##+a9J_e0 zQf915I2i5fYwV9;I<^X1!sVDwG+YeMIm9p{PC5v}Y4Uo27p}d3nkwdK6;w53y2ml> z(;#a2aIiepy}?{#OL)o6K30868^y0=BuUbTt|WT6977LKe37a*PhyjwqD~ z8m{1J#>6vW!JPe=|KKy%j>|$-(mjKM@!@`v9hYCE(@h|Cli_M`Y9U+XyD`9|mZd!u zuEp>LKKBNQDIu5#5n;@UCmn|}V$|Tg!abl8Jx`Hz%tF0KG`OPnm?zqvGT@o8Hdz=H z7Q^>z-Q$UT@S94Twl^dx8{TgJSb+m`M@rf|N2w&kH}^coiL=H6XKlhYmVNia;C$a> zn5bJ9(ry40M9IMofRA~i^@U*ATc_*W?pslYXA(xPUX}0>-0kolF46E9G48&4mUw58 zKZIX0!GLj+pRmNmji^-YC9?{clejQXns60#zh+`^71UE4*Om#Eu5T2^my{lwCt_q= zl~9xPnad4RLsJWkjESdCH&rB@Wnc&4O~JpYZA`g!v-!%ho8ga z+Q5~vmR#sdA%jOp*~m6HZ^9)#M305$`ypG!R>&c88;4^jHPRx`>OX~>l}H_ zTcy1{jaVuN*SznazatO^Ot@7As%dJtoH-j$4+8*AxQ79NYRLz82aczMfeLG7;se6N zMH$$b`WLiHx+8@uJv^;DlB6yiw>Dkt+>ZtiPBDzDcflm>5DBVY_Ws1(xd3uDI9`=SSl!=!`icoFLU!97kJIA!YI)_snm8eF-3BYazh#r1*j;MY{ ztx2~cx>t}J+*7n(j7&i;Z7Fl_4h>%P%txd*#;8r(7m{}HrU5=Gy)p2NSkf`5zenv0 z*ysbMxYM{kVxei5&bXz6oukK0v1f7(PuD#HGd0={&HY7@qD|&1p001SA4MBl-i`vr zoX=GWYj*~J*OEWv+(qjjK}t8_6577gXlSQyle4u$uahPDSrF(Xgjr>&bp z)$m2ZkEvo#K`{Sz)0VH|*85E_NVInNBO8%+CSOSTl1U}}I;|pMMTXEsW(IdP@Ug7+ zfmVBxv}eQ^9lZXTk4Z34vUE$~kVzuevcWvZq-m76h_b&w2M4HQQcGc!rrYKTK?{hM z4hA|VEr!Iif>e>gA^M2g$!FtK3 z5ew!VQQE6Wsg{E$U&a!F!f`9p&iGOB2hhY^BTZQ*d0!)a`QvtM1=6(VU<9Rna8x?B z(Wb;}-b|Rm)zR_9rBt!RPhmd1llOr0P!~nrO_p||o*OZEQxhLg?*fcCr9K^OhF4z3 zROq%k-TTuYxQZD)+$DPd{c&au89`|cmFXU_`=P_ZsoZ*OLx(!uWbS@D`%pJXjA}>? zwzG?*TZ*WlgNG#^Gew*NgaUBFq37O6hgMvoKv5fM+VP5a_y%VIA2Y>#mHPK9b-Eda z(E7&)%g2c^wTfw$^fd~;-%xi~jH^|QrQ7=_6yuVs!9eAhd|fRSPgo^6ECv>4@S!Wm zB*-8omuZV^NXmx0yK-cL3^Hk?jI+V1qbO3m&Jj;IZ`75~hW61%fub&OZ-Qpr$2Tub6>|y#+$NE< zopNjK&?YjGeTBCO&PCz`saAY&-hN!uFKHjLR2w_AaZHRPX%Ev9D(NB&bmB>9=(bzB1e8 z$l5wh(ou>KQn7(d<;c2=Ow#8p;f4+Mgyg8YixO5!?#8+Yhn;d<-9KRD(Cj%8_OLgjMM_ z`-Pl>8Qhes#*|Z_N~LS05P~u#hk8Y0k+z1EU&0C~UCQreX<|3dgnMrH9`4ZAYBjFj z1ex~rNyOm!P&K9)lo6WlfxGu{2Lm0QkE_!?b-UG*YN%k59$95O_5JH?a8JA*SJYyX zo+IQ&4^A!U5hdpdOMH4;z!tO@28!K86JGhT7vmh7DbkqdkgTC1U4r3|m2&VQJEl7` zaUC0Pl7o-f(S<4|>Fg~?lCyzK&8Qq(P124%B~e4qT!Z-5gjolkbgU_;qC@>2Ga`dj zsjHjt!8=*ZxKi*c=@XX!|H=Ee?#7KQ&jbA`csgURm9pa=fvGhQu5@*mPggl}Y*)?9 z=`{}^7$Q*y0X8nmWPSRxcYxG207{~26bR%@mvx~eNP!$EyY$jCH=UPT%i|S|8Z;9wzC_cRU7{Q=(U^^tXu~d@a9CxnEsH8N zcsSl^;!W%w>nE3bKtukg$jU=ogeG>1KCFzoYXn@Li;q-CaA&jd1pY}XVs}{erH5zu zcOYPlSj56@np5V|^bRKJC?O$>S7>lhP1Jc;qLjL{pTL1+E{cTb(sqGCM5iY1p?Ek` z)uq)+geZeHMkbXZkt@ku-Zy|8!&U^MB28njPC^j;1{_0QMx|xE=6ForT zi9232^5X8g2NVOGEYOOv$kR65Tson53o+!?VNypNH{v`2lNTp%P8@?>7ba8OVI6II z$8oLSn|U}hTM?$>77!NV4e!ga*MiZ=Niy*kxt*&36Xn=I7xCg$H$y zdxVL%g9px5u2S&|-{-@LA<+C|S=Z~pz-djnj5h{x;P`8*%TK_86|(yy0|BN7v__5C zm`lt=ne>H&A7KvCaTa?TPEsOXcr(0UBLV6zR9{G zxCFHpT+(<^4jPUxRHOR4t?Ir_RsjauJQaq-n;~&i-13Fe<9{!@#v-r~9Z3MDBi@2O z428bX^Z#GqlQe;Gl0q0Aufq?&9Z}LuIg)kX?R%Gyy8jCYgh;1MF-qJ&N?zXR`RmW0 z{`#jM$5?%C>fFL5ZQmc3+jC8(v}V5h{0ZzTYuo>u)Yr+6;gw1SQ)$GF@r+T%)kIIq zABODiX^hC#LBBcv{Py(WZv%s7SSnv0ihcb2n;1jpKKK5(Pjd`2PK5#u6mxjLfZ-^&msS638M zPP5TVqADeEABIFJGnt6;Qe@S7W)vgt9>C+$5c+b8yqO!txKsIzr&B)v2t_d~1v;b{ z@$?;16xvMYgS`~zwS^riMl3~#6s4LTwDVG&*Pc&aeFsZ%a@<1^U~KviY#jHhNSGpK5EddCQ`7-MFi!UEurU#Vb%YNAf;$O*~6C^Cg)4sP?a9f* zt#-j5xRIw5sN$C%xQ~$rf98s)tI>oDd1(y#7-`_gZrn))BF)84E}vT*8hPIjV;86W z_^jg4h^4fgiSp^e`seVRkAcD+D&w6ab$2Ku7azIvu}%@WlBhI#a#idzXo|UApmDcc zQljWf2TGnGosWS=p7vuzT%7iskuwx~(vLE8sdKC5bJ&72ltw-Fh1PkgbE{@#oh;%c zt`iH86Dj#WB>&aJPcOQxD{kzEL3k+n#(u>gku)~jz@K2i8lYr=c=??33?u^vg@=im zy+0&fU9S2r+ZAhzZ`&q=Z||h`!hZt zbv!@ePybjmJur|=a2faFCWta7ht}_S{^w6sXPbRv2bx~R`=7I>ac62^93@doN6b-x zJ1U;ZF~IYZQckoYo;*u-Mo{i`O9FLu?vMxBedX=V{Q$k)Itj~tl(Hofv z@c!@wm(B8RlC9Up@vd9hLk$-kzn#`#k7ZH8AD~SB4gV6= zCK!fOJy?$zR&}!r?v`}8z^8dypok1tBDkOM5S@@+wcwl(N{Tefh(X* zDhnLDy6Ja;QG(xu8(;Vx+3f{4bZY#*JeF$)J_EO72%UAws%W}xV8AG05;fGL_cw5z zsPJprd`|kR2o#S>4HXM8DDc#E%Dq|Q25T|9zU&IjO@#)?D5(|@__|1ndb5BBq-(PL)}eqFfu~`%-W6>d-l{%oxRAi^ zX{F@Ts2z24`Zug3FA$KC1^GV&5j;*v*II2fJ-nW^HSCMfM^2 z^D6mc)^y4Cux{#on_OG4(4tM+Lj@n$S$xEwlXcPBthL{MNWhe_kt-_?ZPES#UM9O8 z+?#M)TKt>0*c)^ME)e`Zh9CKB-FI8~+AjH_g^zwne%ofn2lxY*#lEQO56NFG;Ia*P zP!>P!o+AHFAKwz+vEy5ed?!C7K)3Din|oh(@A!f=l*uUjG!ssh@K)#kZ1IJ2d}&~7 z!>$I@4ZbG!c!+dhLE!n?O_jm%kD1Y;T)Tuo0(8Fr^h>huZL_yc5nRem8*aQEFL9kN z7}5~wEkFR=o5R(0-CV6*wfvN71OICSf9}$@EpEoUZT3u%V{qGCHA_)XDSC{IQ0mpB z`Lo6SA3d$QhW z+0Y%i_g+P}saxB1!I>ujjB=I^T}zUVU3ul9gLwN??YVVaKK*j*xEwReKm74iQtWnp zRs1sxFjC;m$Ylfyf-vf@+r5Bh(bgfuG+Gn60CyB@lPfZIbv~QsFWVmjCu&q`yvh)9 z0p$uDA?j^&^8!6_%lo-ikKZVgo!ZesFL6vJKp5DWw7{NlTc0He<~&C%+XF05)sN!(H#o7_Rp%rc1*Xa&_v|yANcN z*`UX>&zf$$8u+gKIKgyk^o0xLCpjB)eJ1#YIxu6X5ZJ>XIXHB2l=Kea-UEkyEbCKG z|2>B$;1sxKOlq@$Vmw%$l4E@n_W&M!m%uO?DY>_qKQc;!vy`O1L5zo#+TY=jg#SOx zQHPdQ6Pz+-7T`h(VmKYm%Q#$Tql0T)E!QMJ{RDU1b&(f#!pD3!B~>aG5)nx5UBCN$ zoHqrE99PMIgo~3hEL$uga#vL7u`(jytc!Jvr|7Mp>9R1v4l*!8m{`U*qEeKPRi8$| zp*7yYdpx#%H_0-da(Ukv9`H&Yf4cODcOr;?K3?3`FekiX0Wm({m0CUL*bVuhl`{St zl53tSJ#s@fILqmDjBV2vZHN0)T!fDUoL5-q-#2w4ScH>35`+4qL{RecpFRf0>=#DAdwQ8oO9XxT{PEY(7PY`kNmAoIA*VSx z_a7XPAWP`rQz_C$|269W=QF0o_D1m3q?|PoT|3k(J|Oy!aEo zoG|894tM05qW%3|DnHMf(E1g)QJgWKjYXpsiK$-3)u?&3wrUHvJ>ih_D4TMRScpp} zahI*eCUkT;-h7+k5jz|z$)9lF$Km|}y3Jb5cw2+!2vC8;t9^%KRB1v9QSunEn=J49 zU8pfK<}h^BQ5S!hyAL$b0--`cgCr9J+DHbH^c7C-8G zYKu1CX3Yj4)YLoo!*11>;j3Ks8J|T{!)I|fDLkOfb~Zur$L~TLp+?c6r?rA}_ip$T zxW|{5x3>DqmlquGw+~zw*`}&nECspBQDd_Xk4*H1H%+!{hgPPCFT&fG$;7J=e&71R ztMK9L>3CWdwhi)?^fdc0eOiV8I>LMdRos7z46h>~3qX%^ggZDMvZg7pQTYE&Y~gFH2ro(W>pm&DNczr-i%&+q?p7; z9&f$~N!=7}(cO385)FO222Wq2N);(&?vC6TlAp)!$4837z3=zIeZ$*!QTPTBUal;zinx1FfG>-eHgJUhvJkElKzJ|6ewS7EHd1eH zH&t(OU5ndSSlUyr2_Cw8m`DwXouM){|FYzLKsm-lFe912!G08H5i&ZZv2n_i6^@1( znxNv|O}mrK>b~3eUBKudNH=T|R+k8#660p!E;KEX6pZV8a`jP~?_Szp|I^1GKk+ea_{rq% z>)#z3{L@@=Zwnl59=vPTF4{dDj&Ak7r} zL>bOh5TpIr_O?0hW!yB`O#y%8;AYyXAgNfu6$ihjk>>fB!2bsi(o=O@C}cv(XKui{n&<} zf^mQD^8&86w0YN{P_s>n-6|_Hct(K{=A3J9RxL8ZC_*WW-*@#Ab_93e4z22AT+;Q; zDnNqR2E&%H5e*Si|LVb)A`CktKrkb)0E-kv`==RSf%93-YVV2E#2;Vca!{(qEp$^J za=R;Tm&V_fdTm)2U2tp24P&m>8@nlj2S61Uqo(+nTL&LZXz=*B(rJ3TEhP5q@d(i? z4Kxao%>beyaxp7koE`(=qXFg-VxHtp(cY!$LWhWR1X3*^LoNtdpkJQr0Y30u>Sk@5 zz&J6kWx9lw1dfw`B-zX9fh25r&=gzB>Ul2w1$z{8t=b-*^!+<-Xs}3*pQ*!J0b-0u zS^S~<5#4C^#e;4Ke={_l%N7Y;EyU>*~H8Y;s>_Z4ulhN8y??3phl9BC6axpW>f?{x|wV zxT|(FLzin2N#|4(|H_t8a3W-I*nn-~-y(3dxEI`f$B&?30sM@*378=oAH?K*5e)qj zA%2GKwr;v4-)6v(Ut!-%{q>OLhw>_~ZS~K?4mT1E4Kek`qFWO<<%MjSSL7ugPG9A9 zzb~=<_qeJBOAP^YGN0BvZ}hIz08Z*?p}`g9>%L2Vw_Tm( z#ky{TTlu0n98o%cyx7I2H66WBPk3=G8*!n67xt^!xs;Jm1Oxux0?HGN%1c1brM8<& zM#KWzOB2p0F{55mhXSf~b#IZNyEkt)(C6EtTo0>#o^B%yj44e`D(C_Z+k~b}rK9Te@z!$Dvl}5)FQ4wqJ$aG=y+L$ z-O+3K0#c|)ZlhIRKexGz_!{or+Y}kXL~w4#I(V^cG4v3^-~anhzhIyU!QrN|t@~(w zeUfAw!}qTHOte;H0SR%49+Z~;?X341qMAjhUL=l->IJNH5=?4l{E9!o3Ue^oEv#Zw z+Ag>lPOy{=(mpADrPrVQ-MUL58&(m_1f4J>HDg^dx9IZZOV(6QId9blsLYfKEpC;W zVh`GIQC!N$5-T2NoA9>XQ506bB^LbwIS?BOvpvL$-99Tqi~$V2Q$UNoEC?P5PBDx` z0`+MWB``)pD0X|3z0R;^d6U6ECe-9j79cH7m{BVJ5<5iIEEOZlS$A~iQp3S%1-^te z@KUSP_*Kk3*k&?PX$04|!+5dhvryVxbM;)yn@Q1)GNSn{!}w26X0#leioIh9@wKb6 zZNqc;m62GXi9T%wUcLn1_#CO$!Z(G#^1*eJ_2qS49m>A3q4_6FIANW^p@b0orB$1s z?W)Pz-?QW|_G^(351I!_I5#yTWAi9?B>O6ZsLfWmA7Ex@D1>u&XK3`bQ^AvHMm~dM1+aAPoN;)ih;P#b4$@iiE2X zS&w=KvJeVF_UOw4$5hMN!_wa1>Z3TEtIAiB8xOQ9TzX!&MDGL zcs82bLo$BHgcGCWSZmiD8qT@VDqVyR$*D18bCFH$cXw|3n!q>yLxwUD~I9o zs&C-Q!$r1zyoE0?fJ_kO-TF1X33xucEE&8&*@%~q*lMKqA<0(jdRO4;=5OrggQNHa z9X@JU0QPNQ6eTM7y%1se%bcCbiIJ?xExTcw6utav*jh5Uk3p)OQp1T?Oe_{_6O=QS zjvtZ(F?YAk>5v2u*t_{48f=W??m!Q=pR&$L*bG^afMqfvhL#JM!bhPnnKEAy=BJMz ze+X9yQ%b&oeavtGY6!!8@$ygWqTXlS7A&c2vZ^hx{8HI^m>AtYQV5a%?7ZeyYfAFmtE1eeQ*Ug zZnRm#bZJ6UZv3a{3o+XrE^-R)I%G-<9)D2|vtGEC^$kFxlLII5)zMmu>e>b=bpj3m z#t^YPI!^0E6JIFtQnC-Wt%cZ{LXE;xH-2NKDK5}?1Eh_`RLyl(l*iyJAetskm#`%W z?32mVSI~PY%n-X;6xEB^1&#M7XRkSBv6|#S+AcH;q^WV!;t}P|8$6HXb+KxS3R86frVlv7&fDm(L_v)d-UaN>gjh78#*;!& zvIslmgr{DS(`O>wRfUtXy)OG=9V$(3Qmop?Z;(VO#$JD_uFASzU*%=pg-Q}9PnMBa zH_Sf){XCL6{N;-*PqL=5ZFiFXJLB`btI(em5*tHfmzcoWKCUjX(cCsTWLzd$g^g2z z*{1;OT*8DVc41R>fqmYph6k5%)gsl45WZzfq}10)|2%}a83kjI;q!qOqSes69lz%T z?z+&gKUHmM^RB7OLuZp>x5`TRRA?;0Ay|g*Lm1cQRmIAIWwi!F>>Bu!gjR2+=^~`y zDbXo;y)j;A;l>|niU^~xMhcECa<9J}i>hm~o2<=yx0}lD;AjnS$rLec30*!AO%fwt z@2!>@L>;%ET$R~6yrQz?Oe|uQhA5S$ueZ!cEbA|}42&ezdg{O1H41vE3Fk zcSA31Xk1gN#1c+j#!~GS=6VfRoCOa~*u;-hogYCq*LCR09z(=JmUBv~&Fhmrk6{Lw?SXR#JMH3+Cn3PP z#KU=vGURlRGB~moy%ZmWlGu^{R!D1n_cKymV{Zuw@>hOAggpf;E z%!cZ?>VoEiHY@k=n*^B1!-VVt_Aeko2)th3OK>DuU)A+~TL+n2S9%!>YQPh?;C^iF zKD=X;Qmz-U5f~d`Me0?qel|QDj}6qb(YTIb37!q3sUoirHjWfSj4}-4SPF?h%Akfz z?`DSQA?%v~g(9S&QZB(8rP!17`s#9zb9T5rxXJP^T&+6pJk$71k-#rXNAE=VO?O#m z!&N001beEU1`x6BaKI&`n1u3y+U@MRaFpt{+h%s^E%)4yspKB_^m!cn8K`0ClMBCUCe8 zjTpn8w-8}^!@Y=L62>mI(4n;J?DM*;>t?Xp@+Q1I8s3uL4*zI?GBGw2x7+pL%vgx& zu!ehF2a)V-)?&0CU|$ZkSy_(+j6mu}SMXA?xZA?z8Yz zh*HeuMQ>a42Z^wz--PCHD57vCE&jew0&a)$=f0i|5ap#^ z;U`RWH_GwojK6xoB&B|l;^(8>)(v)#Dm?iy9k1+;7(ke2VQ{pLs$wy z)XQLkJ^uC6kN+n$VuIjioA@tD%9Z3VM^@EUy|Td>8fPxm5`TXg5o0~qlh{IJhBrG| z#8ftFnZ2A@s0|T}YlSj1@%tzQXH{MZuCr}ud1$Is%JdR?;0e=GzA#uA!o9l%)4_G! zQf8Q1LJ}>ZoHM_C#cmIA_@+*_w!ycqA$kk0Hm9WIOBlsu6s~PQrYbL5EU984b=_n| zg*(1)>#HRyJ7-dziOtII?|RAtBPy}B`~>H8rS;?I-^3_P{9FJ4A->Vt>-(Po z-s(%>hIRtd6vin7GYWnQmCsI?Bu zNWBHT+f}1U@w{au*$yoe*dB$r>SmKwuA600p9t-2bvsL!u{W6O)L-&@F=Sh22XJ`+ zs{NW3D%o)0hheWz5p zRquq-lrG|;G>o3}ekywd&g-hQ$*ySgtZ53&F5E%{+^fUP!ck7NmP_c}z}3XsFOv9D z!hwdPh;lKxBjwjfd@0I@;V7o_1CK`?kc*=NnaZf`enHD$O%c{(KJQ&vkV*jq`8QIDe{creYT=;|Iz$rG)w0&L@Ee zZjhP@;h$oRiys=KH0oIfIg`kfDNWNQsPO|jq5ayI&qX)mx+o?W7LbO=*4H!1g*dCC zL@i*>XK;tk)V*h36UDx%=vOl)aOFsTrnC}kMHDxwMz80Gw=GHE;I^GbJrw2Smf-uQ z+&>NUGNhqbLs80c3GOh^d{!hn&sr$;>T$+LQ7Ci9Bf6K}`xj<^etdoQM;XQAcV7j; z{Tb&9*Uy0UUPdJqR;d@!d?|!q(9z2&_;NJ-GEUGv{9x?Y^$y&ur_y zy=&T7_b#9a*XvZ2-gYR*9?_$$u_Wh4KW5Ufp+&0At-NvcHGM%fWpc~}!52YfV1!?? zvaG-0Bt8m|*)L#-p*fjMD^0yRxv_1Df|HY{%&*+&)EL`)Dm$gUv1MSWlwndWz?~F? z8#5N&9XW0LT~;MI?)$Cb`6rvY%GPz))O)bB5aCgdU6u>Ts0e0KDMr$rM|vd$;34Lu zT`TMYdeZpNA27}cudJ=j)=6G8dB3~15Ud5K&@WNnoeW-wps(0-__JL#S^ImI{KbAP z^5H=O^&4VKVLH&o7tkYDZe2_en~HdwFOpk#haqx1I_n#I9|J8BSbJYV#hi@!%RGWNPF~ufjQK zak^Iro87D9566CtV%QVsKAQuFuEX*My!Sn}XxwCZA7X@xFQ%97M4iox$)7Zs!Ha2o zXyIO}yLxv>zQKwnJmIlt_HBT#s2HV!-7Ctka5(vjIw?N4{eEA=tDtTQ3$G@-`H<|J zx`k7s%n<&!1A6$f+gWJT9maU__H1!qRc2VhX^JfJJMN{y#B5$f{yI+tFQWNhg)a?{ zX7ieRUJ7WwuQ}h1iCfR{S=_ziLcA+q8tTpEB{wp{?0L!g&x`O-iD;v)=cP^_qYC*X z7x4u(ToY=ze*@^ugg~h<{@tF_jHb&kcVGMNs05dsq$AT+XJkJg>Cb_QbvCJN4p(l` z;zQki7#LASQXxhB{jEo^Q(@rCz=qtk?4Zi{+ZP6?BMNjELp^%OWwGhO^$id)j=RP_ zLw>Z|smS};h_8!PQ&cssxZec{6r1{@?{*%5PKCA423j02DS4|$&ItY>mc@7sP4H!EuSE+btyHdgT}$ib!xC8}@7 zt`B;&+PAn|bKBs!Pzm;0e+@E^r07zBs<+5I9M{B$>m`|`HdJ(g_V!W&-OA)!A!vOQGmrrrf;zd|iw+WVLYev87nEp6U4b$P%oV7paTX5md7 zJFI*e)f&M17Umjou5bxk_l^heTSPSQEa9N-8u;Ucc#SHt7@BY4{a$B5=kZa;bRhuB zKsCQ9rMEa`kJ6@Bfh(H23JqC`ovOEJJ3FE5Ta-CP`JC{WN~giH2&U{UTwOOBc$2kx zUuKPyV=NDCn3t+rN^C0M;!-WM+%~rlJ9a<>h&44!$>p=RID;Qy#hQ75P?cUvKMQ+{ zzR*WdAC%5Rq-z$_R`~WNJEZzUq?#_JU4LW)?j=aEn#BA-^9W;xt{1Z~PYB z-47A>@MV37jxpS|i^u{4)wgIKeMohfR1c9VUCMDx-y$O%{00`6Z=y>%f7M%@zu^wP zNgP35NYwfk4NLp1$pWs|XugzgrAf8eXVV-q`vD)csdtM+d_W;WeT)3V5hw;RU0sE0 zqzhO-cZ^TpBI^J!uj?5kfUyR*5Jz`XE9bRb1I+;I1#E0RTI<`Kzz?Ygo&uJ*>S7uG z@1*GTEAa-K1J(;zntim|w+K)lVVy-1829`w#E+U(1b-#taI?S*SP^@~`WEGzM_9v6 z1214{^D$-kMt;=eBRJftDqQfkgp-)+HxXOf*KJqtUG3(^2D$gy8SE1FJ`d;co1`iF za#vSb6ZCY3Sxk!JO?0$^7p7!ON%v3g3wRmMu3xzp;gg(ffLzUTBAd6kPur~A!|xPm zy5B5D5{6%XJ|WZ{jUdx^129gFa)^Wi%yW66_6db{0qkS!zl7 zV!WTXNb&Vepvw+$8fF>!0`V4kpdOX38ZgWz%e$a;9a6fKi&MSDNjucE1FnG77$laZCUa5gYFjH?vaH9fuXVu1q}ozUYE#sfHR%~sPD*F|2yb=~y)4)+|w zr+0R@YO-qFxZYsvz^e~K{@sfY!k<3=nBpVG2#Tw9u}M}%S>i>X*XsaKa?L3dRh!HJw3(T@r zX_H;i=2_De;YA5D<*02Oe~>_h(waRR(-7*}E;L@8Xw7;2*)(uO6yqa~$Tj@bScQ^gmcEC8;C7Ggv)*clsm?)w@dwA+*v+S{sVx@};{m{yuBVA_pq zLQSeCkU`kIF0z%y-0-djn+xt_G#rPV2&E}qf;SIN@JPwr@oLNZ3vPw7EqeAvyGIE;w4s7_Q?VSx5wKJ{(z1dTjGa zvbL@B!ZjJVeDA$9J{sSt*clo^JRBF$=Y- z)VoUQvSej=aD~)TQ!^6TorPOwd5|@13Q@Uoy;(zACH6@KS97ByqEGiQ)~mKdiRnCP z`)1>Qhc9(sg;wA}jRGbY(1MU8T8I&in0wf|tv&fUfa3d4znnj810zaPtryX(K$wBM zV-o0sK&=N=L_&_Fd9thSP^_+)h6xU<`}|bO4?z|I`}2DVyj3~}&{PU9t zj+?PE-J|WR7#I#^pSuwdOjO_Ynt!;)^7vRd~nG%L7A(m6WrJSy8AHsyLBzxS#y{V zI5;?sWYQnbZ?iHxPV880K5C2XL$U*W*r(p&oZJpB!?JGe8va`}xbFIHG^^O*TywSw zPivnEhQiMAc55<8g&b+9g_kkB0Q0P|AJ8jJ)){y-*L9OvIK}!C?=^6)fSpUbVLGR7 zcJO7D{j#c?3g^^a>xH%Wb~3n2-8QR|ZQbs%NSxqU3LepJ5CgtTaBVbcD%4BoPd~9fyUIdspn0z7N1CDi*4+%5)m8~m*Z7d=`KzzEf&4=X6woV%R zUwzTo7AJ0P)uO;~eU}b}ABYdIu1gMH9yjn7Mo=HzPaR%TcVCFlHNmef^58}VQxuAi z^p!NSh~?2M>8Y{5%?T48X!SJ95eaC2Tgm?;&`Gx56&Kp}9^H<(0+3lB?homUWsY|A` zZFpAzOJC|whW|P^IuoJ34vx-7a4!X+o^~S6{-q$OqIx94$Ctvx_L}36QDA5Ur$%`- z9WE==hZOr^CPR-jU;N`y%UU(q(ZcM!- z>)v9KX(&W=P1Xn3>Z=)(*s>OT6?Y)V{T}p*9J?9;YA(8bk;IAyDKy>rTob+gH;dEi5- z)c9Kn6K-fK*(AOdR{QY4+?Vz%TzXj>GCIjMF5!s1A7(JTk@U`qoc#)M0ovW|)Za{O zk9dVx;vxwDv{uZ2-<7sY_O`sid8E2>!qP(*;ZbzahSrBh(^U9pZR4Ysn$%yH9icXi zKwuec=p$_ERcS-(GDCoL0qYzShCTDj@3GuXYr4kyIzM#5RVq!&;>=A_#;HH&)!ODZ z=e4SFyfzyI7u$ZnuiK)loA5GSQlNa!)2JJWBbXt41Yg(mPN}rK6?qPf4~hrtxcLxp@JG^-_xLn+SKnY{?JNydg)|D zps9CvZsT#MMPN9o)=rEdW}MXUk?pi?4_;D|Z?m$r)du1-+jhYbB0}SV__R^tuQqFO zlhLt9bk2-0>qAF8L&xaj)gG;CZIj)@-#Q>t#%SW*LK+V!aN(I4QDt$U{(yanq4gOV zF4@!i%Q-4DaNRi(DdQ7%^BvM~jUuNHbhV3wv&xpqfBvm1y7v2?r-V^dUOf$y&w>2Qr=NcQI7ad>*(&)Bj{N{=3c^U5`cuLVo@@FI`2=)# zm3Qzso+A()EU?#vA%Z_`7>eTFWK4`qP!8z+^RHPuBkRSDK36YyJm+G)xZPHXk&ygZ zyppRcN|J5eH?0!`PyYA+{@-_jUtlyTgNX0yX{tFUoOGly`XxAbMb$&dJ_DedP<{2Z zt{M|iKC-0g`9P_&&l%7J^ORB3q*UptY|L|Lvg2ucowZ$f&FoZa9yLP38S@XOzZ~H# zEK)@ry`V*kk=BRj0}&5UF6Csd?}b1c8#+&E;?1z*e(ltd ziSpI6c&fR$MN+AhL~Wjgs*AncbYABzkKH~;mJmE2C{DVE&k~K3UA??4JrkDBIOWL5 z`wLj!rG)0--YRnS@`A}sh#sx;Lid)MRiNy^#%eyR z&_ze>7r_gbT<90^*@Z4DZof!e9F6j3X0EOvQClh3CcV(r6>}=QFs&jVPa=Fw(dF4d z=j9cdtEUR9@$lqaj%;avKF^u;ajK}@T)09n^^3%;+}yaE=ZREfignM&IV6{K+9(7ipaY--iR7huMpepJRlnZfb zp=Fh|79JWLJE`N=BVs8X*$n$^bU5Nb2?;rCAmG7`ZJ)i*+GqaEgaXHPS+Zr0hP}VYTPQrjIuKY z?Dl<4L02ncP}$HOia%j zyclW7hpr$jC9&HmyZF$RGs_945s%d#bAlIpM>Eon!JJ^+=>|fjyxdCX=I=&*^m56; zRHx^Ho&ojVcB-&jeKg#pEb>x}I@1UHGM=FaFA=wj9BE#BiTY@U>J-5h8g+8l=*!v_ z9`OwM?u4*q0lA{-A+P7q96a2)*r$p&Pd@}L?BdMA1EL{YD1>lwu@2QDa;m!^vzGY$FN#X?%do%F}#!lh~Y8Es$1@9(Yf9A%m z*Dn}3BOm=jpn)H_fHU3$cd*aPan8&uiglo5^W#l=Y3MRaG}x;&VrB5-ReGs+G^e%Kc$Y@3zi>Qv zFHHlAS;eDgLWYZefu}qKaIaFOqXoVI}cuqPRsI z^x|>u`3Y#qc$ps0+)GVV&B!Z?Sq}v#Mwup;UZFEuWRCW!qQ62fjau}~++3Z;u5rUI zP5$W_c}1y-7bhOMQeT|>o7XmTJau)v`FYfeGeTWD?lP~1$;i}1-H<}HxOgYXymss& z(}=H9m#0rJo_Gm$$*#aI&X}v(iZOj@ta6>TT~TcUV<%GzK5V>)DJ6ua7Z+39`MI-M z85q5kYo_B3DzP0Nf{;ty8;m<@k1k_iFtHgv;<~0=R(@{D^~+#}?9oWL72{SO5{jg3 zist9WwidqQ47Py^!BZ8r|4Gv`Q}hpL{jK`Fs=ri8+pk*qgXf`H7d0$usWz!0#+{Ub zYHXHw#f?q2hkd;%54qhHS+eeJ($z_K*xQ69>mplO%)ISvSr%R221d~cuE0Sf6kIg& z)Cc`oSL>oHhF<#@Zo2*mf1@JL%H-b)_$J_XzdKVdA&MZA?ap9smK{6 zg0fUjjv3rBO0EVw`ynt`jB6#qte&2ZQNo%&Bp<{2V~DUAAx|B}$Y3!>nV1U1{{R

}GuY{F@kMgP(hU9)eI!(}~;Y!@vX69`}FOfY?wXG}_L~%RAH7^SP;W zyN0h1024UwaFS2vul`mQ-GiX{kM;VHT$lauR|^OjOBs)NyaHhSCe}=Ug&Faccugs;8yoUdS`>v{1zR(p>aOFK-UJ z2Q$d%lSW=sp^ET}o2u_Y4Eerfn(H*`I7KpPF265_z;hNStcu$GVd)uN$LHV#h^MGC zFo2RsLZi+Ef%j@I&bZ$L82%ZHX#*Lr+cS(InM?aJ*{sHp6pi|n<%(V0I{g@E$R>(z z5R2MGsgcu5Kb}K$UhRA)?m47Xq!*vLbLuEjBwoMBr4IPTnOZiBj*_^W_n08+Qva6C zsiVXw9&ZT+yD^0^m(B*VdDX>O>9r8g;hC(n!z^f~ zLdAW5DtfU<4VzW#d(4il3sk7O`2L(vm;#q)v|;D5!g+C+GJ_x`@;)y{-qt2VzBA#7 zWs%>R;L%>%L&BP1bx&nD=?CXe@)bc;38^y1`fGq=KK#CPT~ zD!G)YAal7iF)oQa;m+0N33oB8l9&(?Z;?A%=%v@D5HpdmKm(1~s}a>~F8H@AOanBGjlafn~GMydMi04m+91yuQ2eiss3y%#Ao>aob z-J?gq4Y(BEb=G!8wF!(JrUiJsP0wx>wY+%HB-CbS0pSLV+CLSkxVZHEpye*m0!SKf zdkx4fd)olu0XU)MD7*@g z!JjtC>)i?h^L27#n-+fSgr!4sl>lyPtVG`zrBy! zPal6w@eyO>#MQdkB&(t<@im**>tGNHe+YOEVcmD(Q+%4LRPeE`*2OCUeFU2- za(J2kTLIss+Pps}t|`@eL>;oTn6!kaTd&%#>D?)a9%W^}fK63kVK(XNWYcHWq0Bm) z@Bp=k$Y zHg_CXnkvoxlZ(i!$*RIdb-TK0w%Nv>PRv!&K!5-b>4S^MHDf7(i|=W05SOtX;f)*H z5nhRA=gey^@TAY=;(`a>rAWz$N;!}zi%o`^BlIx$jonmPczy_%3LVV&QE@WmhV0=o zgXf!PO=t;aZWQO>C_e2qiYQ8BsbShb%<>SW_#5X?eE~*m&J{3g0m;V$dy z%7&eQ1gDFm+Rf8Ue2kqjUH*B#8l$ZJDf*m zpD9U{@LgK57*>)1tdZ99`?%Wu_VBd`%_(HK2$;qnv*Gzilo@pjPngy=17Gm!l((|$ zz z<7MC|?@mGrIax~i+X!P(O$G-iS+CW)_&AeLJTsg3C~OjE<~tFpmz<0kdpW)X4I zK<-7{j_D2fd|j4yozyp3Q)E@LJpe)oqj#sYNBCwb6}E{yz5L?AE2J5jzj-6Pf!lAY zjBijN7QhKjHQ{H2yHI0rB{kEFXs=_$q@zyFO}25(t}}_jnRMPvyjI0DqfB}WazFp} z%MXA5;opDy`G>zGAOH53-~RT?pOSBW`uoRk1B3LdApB`%W*X3+KYsrB>lmNmlkd+4 zBf5z;gqy6*;eu*hJ*GUgMVnm1Jyw6gy9z!6p8*u#fBGe{c~|d?JlM05f#2!Pbj5Zy zQld2*KO1d@y>#$&``b?O$-$a87>fGaG_s$no6+dp5XNZKiGTPN^|(ukS%jvzGr?m? zG|={b!3@K6<r3u`M38_en>V=wzdiXaBGULap*Wt6&hN+lr1sbCMSB0cygxK| z7zls-I0EhXLQQf&XI&LAy9VpSuCrnoN&WzzgXaV9gcgv1@x54?XcopdaP$X@&*r$Y zaF*KHfP87k%q&1+N3LSeznvd6QrOKVyez6TN=4k>B!CttBRiqI#0HnAZ<>0O1$X&r zN+tHayi|p6HoOu+q+!AO6av3+CqRJ2XZ$HBK zElLdDu1=gnOLI|`3iB@*MG27<6;dhhrT6!L147RT+`?>-#wLo0Bex;e=H7OtDR3@+ zE1dIk=;}SLFMx~EA;gREC|df>Pal8%DYVW{h{jXm?P-dKsi2a-*ce~JbWqhfC0v3d ztWp|x{7wZEe$n-_gmKkRu>-tSH+*zsD~n>o>mu7!0qT7NPC<3VYPDF-H=6j;Xa8SZ zLed-p?L(6kQ_#`3HsLyEqP&^||B*F^x;yM`@}EB)i@>&VYnpyIX?S0keX&k{uCX*5 z+I}t0wdPT82o=J3w@i+M`?#$ec;x~)+=S4#Nt?lGX#*zcE7Zn9P*BEFZ+F^%*s@HD zN5Ou5opf6p=yA!oKoQjVwt&A_H_8+!^CwpooblJ2=2m@orAy|li`~kCRjQZ+9 z_km&8)61Z}!K~4b)8Hm%jTlivn?>Y8d8)Oq>*zmhS7&*#Mz8*a&Ru#Gz5SK#Y@6)h z94$f|JtA)Oc>#wdoR;2beUu)X0X?eyiY}4S6C{<)_@*;&>0uC%*Sp*DQRwWLVyRhz zL>Xha0`w*5W^;B@qP+`1<3nhKci46s;VceNBbG4Y#|f9*yT}z0RzT=KKR33u@Eu)v z{x{b+u{yW_HEFx1*awD=Nh)Gqn@mKiMk4agncMcTuQ%l($Ih|P*bsx-EYUlas5d92 zH)C0>*Yir7aH8GvnD`wMP9*n70%gD3|8B2-wEs8?R%J~#sJCQo$ZO9G)mkhd1Q!&1 zX751Re_+-G?yY`@?M3*k^LqFz2ZV`11WMBQISKGJh%sJoqpH8aLD(d1-|ns35i{(q z&Q?|3?6Pt~;p1H;breYjR=eMN85)r9?APvUZTCPV4Ds6}(Qp^|3Z(|591kN|LZVg4Z*^g27#%u4K6@P63w zE9!M!wFzaexrOr38kY=Z`so3EF0A67pJA2HbQSBAkg|G+39y^POpf7fBezvP7Yk$v@zu2!u zK0Ih1*ubBo)G%K~?=Noi9UgH*+<<4Z#=Tn34>`5J7e`)IaHD9t?S)S;BqNFemLMHI)=mW?W0VHjhcW>%_ND2I)rq1$hkhG{Fih1YP zW2424X40$I^MIE9nir?F0;erwr!AVHN-haWq~g9*MI<5wM|l3AcLZM3?@`x$eM_aI1Epq zga^X035FM(A1Sm;$45&MRd|G;zHY<^6o;)3Nn`Um#FaS;TuBzOx{e@Brj(p>^dDnN zzWM(oKmTcbZ|(cKlwerGJ6;b~M=}Y&i%mAril5*-V*PM`shC*}2V~+12 zZZO1nWp?jDNwOBg2AqJo$u>`KMQ3C)yA}mS7uA!Kjsz?wI++&J*W$r-h=d&SF|Jbo zq;4#nockiCFS^4A+-$SKa>wyXYwQk!_Hu~iEBh7Au50=nlV@%64SZpTV=i#d4gTzX zQ#{>(53a?~Mw4*AQG|CO(~L2%F6;kW+TSJL{Aj^X%Hhmj2ghFV7i($HfxWZzm$EHo+LXzMY5yAcUZL_h-DqA_XXpnP) zXmWa#`@Q;{8E)%dLZ5SDh&F5#*R}2XHp#Q&-jAZ)H#H6)VmNgluc6IU9}96n));A3uVd)LXi303`x z!p$Z{iZk4l!hd2%mk2I|evY5)(#K)!)X%>_%j~@wMtIqi+4}Y!rhccaDN)E?UJ3XFp|gX z%{E27POd0?be)BkFQtlV%6;YG%f`Ep{fcn0Cx5Cs6vPSu85cxrf2`M8I3jl##U<^b zS~vAByo{+-N-setn<}2B{(63Ak6K-8o1qi=DwVGHItbI0E3c_V2GIE>-nGUK;0^$; z>JodgPm1+`EX>O*1&?w8!8mSD)v3Q36o}PTYrA_9TY!2PRHZUqfP5&1Yj6?x!?jyf z>*D&lZ&7f|+Vv2C!*OZR)LIKaZH;ZA5DwfFUA8N#nypccZKsdpOJum-=^O*C431( z&A1VXGk@uI44vCe7Cyd(L<*^2W82}og@zgr=O)G8l^8di(*?-g;0l)1ugqcdqT3eL z_rLD9SPS1Bz{INLKYzixfoIKaV0RrAsa97n*G!(zDi$q_Klf#?A2r8^hDNKDdIcb2 zX%!sccr#x2-~`=w>mYgcD5HTyDNjcrZL+dFz!|sh;prwQPU#BWKY#Mlc%$3u^?M+2 zhdfIcuqFrGLrnRPF-tnz;4s*&?pL7G=sXofEy0_oDdXB(Q=7zvTl@C7F$X6ZR)=Jr z?XXLstCPJgZ*X9<*<{tJVYVyUwzr|>L@1?V5iTS^*2>>;`7+41%no?k4pi+|)I5iv z?k<5jnooJxP(d1^=_2H;1mj}#zI--kyTf8p8(M#u)EYNN#BZ)HMECX>y$IvRRz;VU zSH}~%s9fcCd>{OKUA3C0xCLYZNl&guinK4{dRNU|7j50F!z;ThzJRS*c&$pAdNZLf z;@Mbi^1RN9vJbAvE2LISIC8;5;{LYI7olvob^d!`2$`m80ox-JK@EEJFK0M3$LGD% zmkHMtCHQtM{%Si4H);7ATO2rE7ptbI+|t4DHe7Qe^df8#qAexZYZ(?zs4>EC1~;LWK(ziEoX10rSwfSr z>uBSCjiBc+JcW_rrRRhZd;vqbD6vhLzj5>#0I``HPdxNmw*$^4~!*c4A%$8A3id{mGr70JcDKV zU=QG`%+}!*9%X9eBGRkWaOH2}e>utei!DRrD7AMbQ*0O+RbY~DgR!Zzby60a?9@0P z5Kn<14Fq^3$OAs2ug{j1Vm%n`+C`o?x!OwkREu)#rPr~(y# zG)aV%{xR+sQ|;lweQ=H}b~7)a@k%fv7=Ig(g9?9OASJw1m(b}dm`a6wtsh&1x6?Pl zRXniCa|sD^Y-iQ}6}{)-p{!oOMGp?IO0oopl?X7v*QUz%S(62tV5L%0x{Nj*L0;|C z947*LCQ*ImL|eZl8$_B{hP++NXJpGRWjyx(KBd zK~p0}gg0IeGUW7}q^aafD1dOv_^S&bkBA1DpEFWPwglT`sS@(FjRB8H&LBevAthTt zNGXUi?DgTuL##oj=ooRi*7yTU&NOGQk4qkq3^GTjCGo4c$3~J!GqSAYIV5pC*WTq@ zZ)}+3k(5DLvV@)iZKQs+^V65Rx6wu*}a-bd!OL6#d3Fb#6QLhd9j|_v1ETl@8ATKBwlk(Nw zawzp2Tn~p4$}GY3n2_YvA`d;zJK|QGCd<2E<>e%H7%d>Y2ZuWy5pu<~=-aHX;EoG* zG?h}y(bMY-WxVJy*LjnhCnZXq~Ja%<@=R>l_n{fjX{>~=by4|A+Yw^$F zNqhqiYt{^#a*j&--v;)Qkw$rpd-m&tlSB)lyf+dgb#t`_Fzs!F>ah28mz7oT znjC}kZKz2FdNh=k&iUx?n!QJmdyIVB`z9=j&BBuwQ5I2l?Tm6d`F1;d4c14?K4ZJnJ z1K{0c<54zs0l83;GUiwLD{ibaqrk{8gQ>qIpuyNycqyJ9sR&i;YtwyB+RE(Ynz+w zwXo`{vtPTbwcP^%>}d{y7N;X#;s`AiZO?6+H5RO`4Kjg=1eII_LDb=g5N+%ZYi<`_ zAi_{rhf&EeJr?`fh^!RV-a(gfR?pev{9fGBl+q=Lvf&12<}aF0f_v5$=l6tXmXMSt zLK`*aku*uu?_C%je)Pf;WXx52?7Yx`B6?c0+^Ue?vSY%cs*{JASE*+KN? zJumBgTVzSLs_JGJoa@g_imCi1G-9%pDsOt~1gH&f>Jstj1@y@Zu%0xP-Ye^fr(A`0 zxCxO$V)L{F*ntG)U30nfg% zp*q%T8GOKZ^Y)Ssd>XsPM#bQ~0|ca(kolonj&!{o0rjgUw9tn^P>O0J@prYj<88ux z+8lm%kj~oz#)^(b)Zg(6n*A8{l_(Ht+OcIYqf;m2cxIlP-) zcUU|h3gp3AmPi@li(m#XO}{Gnk=eartsIWQroxuXW4U!*WGjnf1Up-nMHifW94d0C zWt8;rfb^T*mt$4@i^bUw96Zj#%R%57xdinF3>3BT-(+6~kyL!b&+V~%gMH(#p5_qW zJv|+#r`~@0_+yHX7~{pS*2M-V14}$(@_KCpASS4yslOThorwKyn%KmKc%GV(vGHke z(`I(}weL=gYmPZ`f0*?J{0&q&Eh-C?HmEEedNZ>&2HW&J0azr!gpibLF?Jwc*A0B9 z7BKC%@Hfgs^%s9(^t+cD)u+!Ne;pkH4hRwWh-Pdn@jXO=lA%W7=HaK=*+>is6)xq- z%#DZ6an<*}Xp6e5cfrxp*nt=C{WSQ0{>>%#XdNYh!}R;ucTXE3BJ}$PQs+*+TT;(8 ztoJ3i438a7M4I~BSiU4TS>E@%V6Q8!sTRJJZY(Dt#8XldZyB-A?cwUjrfBoJEJKyv z5?bK0$pthUNlq#Aa;oxe(iJSOcQEMM1ER<8eBdp{l6PFD^~rkRV_g%Tflq)R{}f`>gQD!s5{Xm`x0)s3frODqO(cY z;I@=i3GRN8Ct!Yn6_v@4j|$8H!S=-W{OY4L-@UZs@TZSIe&S;+@sr8j*S|YSH>T(x zwEF8k?aiykmd;;!(q=QO5&@V{WYtKeP0ec7;h`jCvoeCm9&$VMe>;K)@JJ@ z>mEKFRg#OU?V3Ko92usb5&Y9;xmaRDEa@0Ag1iTa_UpcUv=SGaMe^*X=nnVQ%tNg1 z$nTzZ&&62Xp_)kU_ktY6d$ERxXK)9uNU2DD$<0`-4jh3r^$N)!fi(~i-r!b%JI6G+ zZtC5gdRmy|;J{?WTMCK`o!`58g0898ecrh&_3>w*+06!|cZF&+AgQF>JDTwnWMjJw zZoPG=Q6e)87wSarrg(LEFM##Fp272`a$dmAHgUgL}L6q`PQvM zB1B{YV)s=0t3}Na@7=m25aHe6Bq)Y`Mb$OgDWM%|KHF%sgt9q@%Ue=!Pvu{;p@wAl zMczPEk7?0n*LT6ch+jBf@6Q394MLZ}KI z81Jh06T!QkjrRz`wOH9NxN{&pZ~_B_*ps3{z#-#b3Gr7fAz}a6qHVX3vCQjj4gX#B?WmXX2L9%c)2t?HxKyR-BGj>mZ36yC{75U$8jAx4 z$+|$n#dZs(cHGQY-?&cI(FDr7*5O_J!xv$3N^$8A^d2+Z*YH0_fs&^FGTw6b{^-OK zM9fG^Y3je=PUud*@o6#bu@9ygFZ;ZoN(oK1kJ@Fcj*efwDsA$o3U2*F0N@flHb)}$ zBe-?ZcGxv|tjt!Ot+LLQW^4FWf`jLJ%ocFt!D-1T_Xh)Ba#+9%o*Y}kJ%^{uNY&s( z?$CA^4g`isr&^c=$jN{=Ny$i{eI&H0D~zvgc6*)O+flX3RtLAJ>R`iOR;9c%{PEG` zWZJJBr}^RD{FZAt>$Wyr*TpgQ?%9luDW@3mO)*7D@pNmA_wOlL&wrqQNT~_!AkeFa8Smq?LJO5TCU#$H-v0t-YQH9u) z!HrPdE65&6^EP%qNg^gQ2zR{hflAhO72545grMBJ8SX+etKlyA+Fh;f9#G&UWDwjq zlarZrKR3*tXI+QCNN9<3aNIO{FHZx@DEUda5MIu&zP_HSdAzT(g%Bi7-@d>fC_o|2 zD-O=aUiaax+(vZFJ53!OI`k?99T}xRp*uA8>s?-_%vN<1q{(qj;dfa=ZC`LU9o3(h zK~z7<>%G#ZN^{}0u*gt>c^O6~)22xvaI#+1flu1xeTnjfQC5F- z8viwk3b7{TUdQ!rbAnT*FZbIFC!OkjQ+Ku)R1Y(FC7iVD^KDb_>bBll_j<^7RpDmv zugktzC+*(m1$?u>Knr-GQ|hzmXf{W<+_!(#(X$wD`(0K6-MWESJ@DMrRkp72fIdE; zui)AIqu;opVcT}_IMftQ;08n8?glkB+FcgzOMn{__wo>Y2@s>b-tgI%K%4Bc=6AT3 zao%xvD@9z{+HnnzCN(G*9XU;`+r5USGfNzS1aAv$v4zV#IDkx~-f@tq0HP?}d4Sg_ z%K%=}X$2GD>z!ul=`2n9)-7x=_9y}Vdw47fin&G3k}3b>>O+<%hBVpMeUoI@V0*V8 z%(q!t+G;aQm7hM^)un}?D2KPeRKtVIPy_s_YDzS4QH@q8Sl; z+$E%?zeeVV%VU8{`N+g&G;oJwSv@1LJpmK3z{PV}dY8&aL)VqJ)l1H084F!5nDi#5 zB7(~}^DohU1oy7`c2BkJm~1!&JUcolr}hxci6hc3==Lk(sp^`+Tvu3eV^OUW_rqnu?X!`o#Qw18TZ;sdM$(r7 ze~5S{KpEw10WAyQ-5CEC=v$sxLhazqF1W>SQe!J{{Pl0asU*T5J)R&{w%-K_$tZ;@ zhho19g)jtb^j=77_gw8wmiM-HwyyV}?f3h#fOo#J-)+A8knG`$F*}ggJ@~WuNBV#xVDR|l zrf7?<{eTvKT{OGfW8p4~08eR~!x!{r*JLexhc#{-I6fX5n4W&k*n{(W_uY5j1^Al$ zmC*F*!EvtL@XsGVfBbdqH936p{a=QHQc0yhZ#0}55a-+*47{Tl*fG!GoX50K)MM0I z(y6O^4Al&7X(4p#moJC~AMTN0{?+ofv{iO*)yHXXOZx?m@%oF!P07a&(p6d4q0L9A z)Nr~0MHoCRSt|W^_HNZ=6;3&XdO*_DC??`>&qY(iw6m8|)eX|xb+fk39H+`$A!`9s zWq{D%O8-oRGngr3DE1qFZN#DUr(z$XJU&ykhVz>WWQr{zdrK4% z%wKVS!1(DL@9cy~nbb=V2&R;?kxR4%rT`}o+gnu&usdAh!?nM6pvzWu36O4&*XtVN zK{UQyU1m)JRKEZ8OJeh`-UkemOGXwE9}<=dHqG+5)n|Kv!*Np{a=Qy|U>9DG%ZLM9mHdYNobS#`2uZmXUZIg(l3t zzls@TIdM_7q<+b|Vm(gDEhT8`Ah+gHt*H{eFfWqSbRw|p-*{8g_iXC~D=<8YNpvn= zYEd(yLsG7_|CV}6XD}rUs*Ad-ccIZ@(lD?5YBaQP%0hT^C3gql16Xz6g?jWcB^6J7 z{ft~ zE9*jY*99|l0U;Ka^~s1(XK_zYA!+k0xWkVbDQ_DGpGH=Z9D#yKE{#9C4~VcE6l^F^ z=S00@d!239wjJBH?Z#-5Hf-Fev5lF`*tQ$nwr$(C?Z$rRdEL*lyg%Xiv>#)PZCh6b zhu((pHJ)R!vv2%*;a2JQs#B#z+@;hSY{hrYSCV5^zV=4IMKHPtbx5`H! z#yWQkdLpwP7AN|vX})Jd`?Dj!4&9M?{qlZ(zZQOv3uPoGV1?|O78#=qf2D^1n=F&B zbweJ`z4||n>=_tiv{E4=9dBL^kHIJBoai65l`Kr47OX+U3YmA;+ zh(F**w7k5&rx0x=P=1&`RHAQSi(P^TS_#R>f3aYcXP15LS_P#fiILa}7(v!=n{Ak5 zC%Da(IvKeGt8PhM2nfJ)x*%rY|Y$4c8rU`8Rqayd8augsN` z^+og$#!$sO?Akvdt>3p^nbWDxF#>q-IBc!~<~C$p{zgB)y$Ueq(krj6dwRrx5GX*b zEIz7p>kv|CPYP#WK?y2C|>W~xEM-x!$& z_G31Ig%Wuv<+oXN&5fEfzEp4DUUdjUSp)lLYbR_+8(=mtLI%&k_#Gu=CoUen^xmW8 z%u3rN!m!p)A&W6ix(UqYNw=J36RF4|1o=3?-t+h8A1Yya^O%eGb+#7beqWfYV3O+@Nrx88?)!f6(; zx+##@Jbn1irO+%i)tihfS|@LX>^s|jRwns6HY~cHP#@A zgOy&r!$2t_6tT2q$^#p^SfLX_%h20^70J@uSRDMzsY+`KoDpd8B)4=Vcm`>dZ081N zOQ2$JnUu>Nn}_h^(37ZPbM0JMIc80)>qDtv(H40xL==0W@%RX*1tP%s{mhr1rw*Kl zKwSPL?lsHda%z$vGmOs^i-XKFqdFdM+2d85W}Nw6ki2g?UhSutzmiGNJ@^fnvReN> z5;C!&`xmrCpZJNQ4DbWT5=|lYDQBRKd`*T?pu7-Rhgvp38vepCm4Pl+DXa!6*wo1> z1|?nbDA_gnQfop49cQ`pgLJ9)a=;+`sN)Zai*bu7!SWBV!gk22NwzBGuF!kR{GslF z*IJ9qdKyGd4Qtmi9P;CSdeV4DPgyIxWpSU{@^ZA)QO?4M8%%n|e;SRJzD_zJS)=Sq zJvtqM@v#g-6t}LyTE3-BqW2VM98mN7)8XZ$qKJHn;)65RM1n#zt$d6Od;Pe^EHa42 z)!5yOx!*tT_Ua{9`V`Eh(#FIcqtIg07TSI9kow8)G*sFGmmoT1vV`ir4$zy}I5hdi zkJ-Jg^2b7B6Ek9J7XdEXc}_+FDp=^6_MM?GZfOWkHa#xBOQ0S4SeicdG*W&Xs~3- z&8c&HiM%KdJJAw-O>ko5&fOG}vmN!COzc~eIMO}4-z3HKLEwIepF0t|i5OFF4cs%~ zwACda1mbLQ@ep=J@(yXA-B*QCjV**qZq5!`k&HPwc}D#4B-$gdFkGzKvauU(h3+>e zd)8UC**GyqgOqG7tL0IajY~Y~SZca;k(3~D4%WQtA17i>v!>eMP#7+?=f2cG?n?n8(f^ zcKG%iB##e8-w(iFBM}OT_pfPsO#M}&nJOg25-VYq$AGsw`hOb?Cr(UUAH~>gRSz4a z?MceZG#KW^6M9EVo~PjPHsmsy8A1pCfs<%!UX~tG{_fNo;?n9nqNz$qQt|ls!0fJ) zAM?xKG$Gc%KnX=LJY{Ox;;k&z7Ream%4JC0$^y5(sUmbuI}vKD-2X4m2ky*nIY$4` zgzBT&*wi|zJ9_S*eC!;B;eL&R0PTv!u|-}l@VkUq=XjmM!NZV!qjr%f&Z|lOUmGe4 zq4dv}L)X0Cqa!}$(}$CDgx}yiJt2y#mG+iTg(d!-Gl8=7N$f_bgV8%3d_%B1&No}0 zGX~w>?_E@KAkZD4s`MtqI^z9ltSL7!o0_X-fx;c1#G1|I6R!=#5r*f^9g!V7z%Zo& zmeQhoW7-FnwIQa@Q9udvQj2)df20{7dZ+6c96jOj(o*x^_|@*wC#vhYrNzFMPij^~ zllDiwy!yiDCjh_R)%BbQ(R4Q5k>T-FuEWQ-8$e>7_lG;yZI~h1A_>9H{HxDBAx%=@ zFB%DEMB%5;6e!h=XC0@3239~FLz)dC9y0l6-1-U!wy5}Ocgk_#u`4;TP|vQKAza2f zx0Ur#(sYo9wzH+-Eh-kD^OnA4!lu(^&y%fP=}-IkL$7X`3$PfY> zMyyKlP&a2nHn0ZYZ>V~lSSXk;a10}M!XbsIa z|ED7nrhFjh=OP?!^lnjLYmpi&PgA$&>*;Zf8S2#A_Tk4jYKSY3uN=Th3fV<(#XiKp zK7Vu{y(dhufbxGM-{9ME6Vt_!Yz!-ow>=(ZLmf_~4o&f;ch-J)FKoamM3M%#Zf z*Y1Wg==_kxfkL#f41DSmIH=Ohtn?>p{h`Pn6btqvulhS{eE0ek3Z>TF&!ijj_gk_z zKC5U=<}c?moQ=$6pF4l|>3a0>6*YzWv}0-hdPhe5+)@{}`DwbxS?sTYV94hvfby|Z z*d7#KbMMPabBamn1#aXa1my^)gl#R)3vlw=`i=wd@b2O=ttn|-Q$M)ktEm2c!?#k! z+cz3X?=H{#i06-QV&43pZ8Ndi)#xYG@9KXa&Gup*V7v#;YdQk;{yu{2Z$Q3(cZE56 zeK8^CJ}tPckMhfu-N}5}PcI+*H;A*JH8@yrFJZ0NLz2&#L%;4AIFS)!&%~`k*v7a4 zt(DgNdJ-rSyIQMxYtaQla21waF04OBsPHwk+z+hEpD&-r+(q4OEQsYb$sFEoU2fN~98 zQ)|P|ZLGh!jMz~@OW~&1`XMy;5@2ywo*50!I5uO$=7PgwU`wE$e1j|DRkJ4AXmgf{ zTuBn%@=PJdS6U?d>_9B3UCuOIM&1Fv{Y>hW=rSnhYdPnOBw3Tp7DU%#9KSVGHo6o- z^f}NAZwNoO>!~i1!UXlLFMB{(X>1o&8!Ybzs~Z|SnAwmn%RH~c{Z&XhfK9<{y$X)y z1L{g3Fj{5=h2Qw|tcX-&wI37p?-GP1J!GZD*B(0ahO*k~O&&9Q1L1HsLxEWB>5c0R z(?2RJ0$xN&NO3#DO^nw*=t8lq_I5B8!kjD3&umRP#7zm?Era*q z$<|Fq+gup@Y{p0uAK!G$uSP zttW9A0a3iCah69p#gnYh5T+;AOmjDF(iDr?h<&)Bs<`ck@+$~^@iSV$wJrRaM2ky zw+xe|+TKrTknnNAs}=h6#N`5*Nx;^=KwY4n9I2rW!YCuZA-lr2`kcw3nco=8THhjq zQqj`namL;!Ah#|8%rtu;!KykCRO-JF?tcYc zU|t3Vmm|3aL*b(Fm5YwH9;Ve)!nWYN+RslV2I^pTX(ITUndGgSiGcIz0vv|74| zFRwb;2Ou_PtOl(BtCjj|gT6f?PT3u7UA72CtEy>ZV|PW=Nv*E7)xN8y*x+It18>f*R+ZQpt)|`=ulUa$pu(X|Etl<~8*K6JsvTE~&C5IYI zYuu%uQ`D}HKU?q0K9Nj^>g|0p+e%UWXe@c-ws=!T^!ePFI!Q61N@ViJh4W>Xn!I1s zFhRp^!@dK>Ljux^b4&ey2z^FlewQrVoj*3;#8K_s#xaSdZ3=3xlk>$U4Q0hLxpmn> zzI}HLsN2K^@_QryMVDEHINK7n`s?ENk2t@EIc(@!j3$Es61MsX<_$$!YdYh}iJ=<)3FiRmTcL-U|Nz!Xw>+>u}P5$s682NjQ^ z8}+sjy{Cix-?u1L)PcvHjW}-oxO<_|^A2U+sQ4N1Jb}QdRF0g(Ex1 zOQ1$ge3%M4eQ8Hy%k#rz%8s$7(9L%G#Zc21GV-J;z8jd>HE?bc6cSKsqx{#Kd7^;>(>faIVLc}kYf~?%aQkL*m zv+CaczA2T)??!gfQPwbU2ofBkEw(a`cTJ>$LSKD|%}VfJdrvIDPqd)!>HR*BvN9Lv z_{7{+|6m{>NnbO8LuxAJPkl3B4o9Hpfvc5%rw+kmPVF~^osaQ_AoNX)T^}tY!-_)V zf8}@RWku@LKU=wtEp*76e1>a7zDjCp;=!LeR(|WIleq}Y;xR(st3twr6hp_hE!`!s z=)I6<%6c^Rw1>8fLl2F6M~yM|n>a`(%huNhNJJbEY6~hlG5^Kxib%;1(Uj}B?6bF5 zAb;E0gTN&n@P5tZ%u$-J4EHUYaBly3*7VU?lJPlS_Gvi&Lxxtf|GLq)lTFkxBj|AKwz`$)csc|t zYkT&uh_!$G2ZTx!m`N|?0tZh%E(1cmK3!L>>g|aEz^oi>k&S2px4vIwtqzrh+im=C7)X$b6y}(|G%(X;<#v+{^Q{ zOOHcI58fg4g1kw#q-ua@GY9<&)v-YcDm*(K%EkGy-sXx-qx)KV?m|G7_tfWYOhxPF zF)^NyM8aP~cr!M1iP_Pmh>-WsPCB)w(@!lzPX0!)ZCJS&*>Q;PV$Id*ACEIoYLCDH z+4oTuGixRgQXK>oANySgJ47?#44l8VJBPX?YhnA6= ziS%U?-%A^P7mVho0o|G(JmO018gLb7XO`;l(W*LXdxM8`$XCC7f#0>GU{eXCp6#83 z_m5lvEBHw+bnD)UTpC@KXNJVQ632x|ct+Df_Hv~d^U&cQn`|fgS$jb4sgarrDTSl%E9JIj;I^?^@drhE(dQf>e#p6pe4wp; z{h$G?GL&*^6e=9`xNBm^0=Y65;6rS=PWzh*Q61<@upOC^zXHydkT*D0n0eW>+Ex|3 z*Vi`MWo)8k+I& zIUj(83go)c#U)|XZYT5@|GOSWy=cr`*XWUP+cqBk&c#^Y)cA$O@*J!mmD{3vVM45i zz-Dh>^9axN9Dm&$Qa5FXA=Ho`%a8}BHA6Atw`2TmShU8^mXz&>d@|(kngu*Ax6#HY zCY0@wTroWp|=#*8rz#wi=c*uO&e5h7FH8$eXFJj=g9I-svGF z(n>Qg>h_=>|p0^>rm1_iG0mGovVe^{c9?9iZ=8Fx$rjfeO9s${x08(4JJO zhU~cxK)26JQ8qn*C_#=IcW0mLI&bl4`OwcvrCxT@SkkMZcJ^7TN?uTfAg!Ma5X1BS zY3{~0nWEii?^>~S;@HMqZHu60>5y^7zW_-ofj?|%aS!e)qD($q)$WzrDA4Q=)nzbm zf@W8J!QD=O1|#f#rUi#Y+(vH?PC~sEXw(k#M)MY~rU!%G1B1=iJ6~l}`It#;JfA~h4cx3`FrVLVejm2` z2PJeb_)hnZlNdxgmv`IG)BZu=O5Ll__y#fMxcmvPfN6*uYC+&>f0gQ;?s=EL$-^y4 zons5>(Ti?)FuzrF3SIZVxmwTaxs^>woULGu}nQU*dw^=`R>w#1lL2~?XIyuxs9ysm7r|$FH)t+!;xAq<%Gh{SEHq#Z&5ot=}o!Pr{9?A z$4({N({$)e19Lw~K3M-}Ha6@wExGhq&>O~<+5A0J(FOjPZEMK=%r;^8+M2sj>E!H9aI3m5TrbKJknFBmyu*A*PFqWV)l77%Ap?izp&bFh z1t`+le8QYd>*UHaj75ZhLu(AJBw3zum1S+K&^%EIO7=c@r-h0Sks+}l@;ZSJ`NZ^` zYDe8z66w{P39n`5yRIW?oENem57b5qZvWp6>iTFWHrLk2WOeZp-^uNtfmq`Km3ziEj5zg}3;1^7H9)U6?5Q47{tTN79*V139;F+xswF zP!8*T(Ue&%+BMTnFZutG;8}-2z2Ywf$En2wi@I%+9aY68LNftB7MY%T(!|Goh2tHj zvryfIp7PrCu2rnfN}PTt*W|_oqPt=RD|_7Fuije>*#Kqsxg7hw#Ycem!NYb)hn$BP z?6KP}xAxVpqU#D3o)E5ybN525?d|)pHJT8d&@2k=^NlJ_R(ZMGfgsVncw!}}8|!-X z))jAcKM~({{pe*bhiSnupnR9*gB)0=!hQ{|eXMi+e)*==YFoGgGKB9cNg@x`o%pBg z0J-8!m~c$jo}X?PN1e7?2CNk~7fgJ7n%Tyj0%0c$H2*=1b!kgkH1PbZbkR_1y(;+c z!En*%+=Zii#OZ}HGljZ4GCM!B2 zT0bDzTV-#taaOxj?~%}V6;zUYM>xlO7B+^~HRj?i_1m3G;HdL$B)9py0cR^uEN5k& z6m*lr?=;`nyTYkOxTaBpud2e*Q;nuVS+A)7)Y(HO_#-y1@IqPXv+}9OB3X5?Yj_3E z8nNq`yC3QzzDm5=YcD}r7-rqY0=K5mDb5L%6eX6ctj%dhgJeD!ytY_Vd0%c^Y|b#? z6p#MB6VI0z&ZZ2BM~T~6egCb0u{(rcr7BQFHTpzhK@3jC`i^q_NlwpD`I^N_AYs6# zj*J_W&|7t%R4 z?pk|9qz|;+SwC@Q!pR^1DCSY4JMvkfv4xEWx?Gi4rM)(#3*6HfpoEm&XO_jfvWc7| zuyJFc(;z=5t7{GGz~VGV|Q@eEVn6elt`b;pe5|4O&`wV6gx!_X-pnaPnjZ--$f8 zZ!eem#$$==Z#3Y3Ket-n(eC59Y!>}n6OygrbYr7m9nFdTUKlJ8k_su|bf)*=us+W2 zC;~Mk$^k+Z|NHT)vVe$d$sM#%Y8$GRVM4nggF~%5jbY1Gd2gsu+br17qXE<0N!8D6 zFWJ}%*e3#n_TVkU4A<<#N<ff3y27~04*q86{_P1099EC_!%;h@Bh2vf4BPe)II)I-v=YOr<4A0 zS{16p`P5XlM$ACaFbpMZDkD!Hx7mfHVjV`rb2Q}5iNfiXT6H`-kg)vSoMksph8KGw zU8uG2lnNM9d;K;LEFY}(pi6fDQLIO{foPxKVIM_+*aJUnewL}}`YrgKc}_Pt)Z&)+uv`vNp4FCEysru;B;YA}Pl2Xx^4}vcgfM zevetIMsRAPvOb(O+f}Moh%BcGcK*vA9N;HumDwSlZQrQ6+(PB%5b(j$PcWW}U)@S* z9{L##y`M-Wh?&?0@y}WopQBnPhe_#j95YJ!@lDl%zd+;taLkCLZ@Jw|a%pr%7o=!= znL}4A-U4e!LCssI!FiL5xMfH-Tw~1&<}F7eA0C{&9sht^=JTLmXr)5n)A#{({>P8Q z>8J%@z2q#_WNBCV$Gm_uHjsH&R*tjA9lo^3R)jfeXNqbq^fX}`sxdV)#T~vb`&WXZ z-uy7#tQ#N4TKfkrcev}do6ESYaz+d@%TGUyVGb33jic|19mJA|Q-0v;mhk(yK%n#u z7p*~MJ#kg-$(gb3IN@`T@EJr_j1?(M1ai}NXYw~L&LAIScyHt)iz%v|ELaDeQ=VZb za)&UHy3_lYnC*{`c4Hm2Ubzjt<91h(UbtfnWSmQyZ>yQ&a;fh?o+0$QBBVGExBUZ8 zO)cnMi3kh5!>t2Z^FS>ssBo@=K|Ou!AAag(?Ce^0Hyu^6!sqX{TTrl|mV^ z@Y~H)k`|96xL>=M>3dcu$7d9lDAAjaHuK{)+%zqrA^|!6H5{0H?QINgZN0QaIMhW2 z{%W9p1@Q|00Mfh;i)!t5GPn9S&LUu)H@+D~O`5!ruqju4+os4n##EG=+CQS<7nQ3H z`iT`@8h$P_1{drqQ@1*4{jN)NQ}mDaus?gUU!9~E9r9ZJ$$xXfQ#88?jy#!^S#mz7 zezV`mGOh`gTc^G^LHqZow{Jbjw;b;*;p#1$X!!VTpLEmu44CTuSXbK&@vFJC{x>-+ z?EU^I8uy^n>42zLv*GbX!gBo+y{5`nc2-)zZDM`c9j9x;Lr5W505x zosBE}3?9!se4(N_hdhHpEcK@ZDS1jxb&vo@jwiT~ECp}i+5BNjG33DRtYOJbHE*Md z>Vs2%&_o-vRe)^g@P_1l^jr>Bg!F)K~Lk=T2xY#E-riilJv|7277FYipGdgxOCd z`Oj5vShdK1SoJ%!;4(3sK~}hCNZO4@`wiIOSunfdW5i3KP;}7`lOqm+Kc7#k@x(o| zjvjUp`(lZ9lrP^{8Mxw7EnE)7PC&S>Cw7{jnP9FRe`|sUYieJA&L6J`{xL0YgGWLh zjOD`q8swDy8%^T)1WyezP2WtN{RQm?*q#Y`Gd+0oj}m1zN)&=M0}_QLsobs;|DMfmc;(o|2GfprYgag*lNwNqa#5dVwJfaL6^c8GCHT7S!C1fCd3|?N@>Bbc zd%Z}M66mv`mb_af7^hvD4k(=+Df?PDIpK?`on(UyId5&2pQxTAyB!Do8!Kbn8X9}{ zHrhj1B{?-n*u{BPRatQm7xd z4>ALWHm$d@F5_$oH|S*I=00Frv51fDDWs5YW+YQh*vD-m=* z8gKPuCt0IDJ%Mn|<<;uF{=Tc&-Y#RfJfOJmJw{8n$w-?8T$4OyB ztgTUTC61!)x$%*77{89O!Y@Sw$>ZgMzW1sw_EPTKcDJJWx;$FBG&XsF`B{DU&w-IR zLe9NbTwmmI{!7j3eA8#uykGe5iB=Ma%~4R_XnFvr=m4c}5Amc-s4aZU0E?8#wfmxv z+7##SeowpX%W!YUfTmUd!_^Ch3LO+wW~tBDyP#pOq>*f@ihDB6@DL&^o6jzio8VyL zy{bn7IYM+=MD8R-oD$JuM^QzEZ9L&RQQX9#U%=pCGTHea5h}kO-Q!LFcmeaLMf_K6 zMZJyozx_?WS?UWh=f}h8rELgE$oz}&vV(}mZUN_9cFa?yNZB{1aS}FVwaCC}r1bdY zSVZ}cbJ;5nql54;J~l01;3Zmo?A^owHiv_L6Beu9c-X~WY-;PCHOj<*;T4B%@syWo zhR&@D%y+hQx`HU{&kVhl-=7-jN(x zz&#J9-l8tu&};1slbtn|rD#lQs6I+nFk1-X@J?vYdU@8KXccs(f(Tu;j0XfKWtIo} zu=YbY!~K*gqrPK}a9j}bk*^}O${cl)bT$Az`L4I6g`C;ZvKpwt&fT0|RL8m8^)0QXw$8^B zIfMVYMQ?O?b-q>rz(WK|{3 zEaXd)7aq9IP&QV6NUk>Sxx?pQ*lcD9m#XKzE83)MQ4i~E9~A;_C-jo z@w{-2C|Yv7Z};m~7S{XQMnSH)kRmrK<w{>4`4Q4%EoB6i6$S=4g~E4)G@w;Pubp5)?14nEj>M@+bSA~ zAv8_{!0JbK0{NhStb(hT%`Nzpyo*9Z%5g0Etfp~nBBeetd(7!T)h#H>6tYO+0g5!M zucgkjmQ<|5ESdBu1>>${>Tl!)F2zqllZ3m9hLQGHq*(ufz2YI#Wy7sp*I3rtKzIE1 z_VAyj*KHROGaI7u>@QfG$3;_@ue_BXP#eS3-C>H>&#h0A&@h9MhWjN1>C3!FM0hA= zT)SHm7Zz0WO^%@EpaM*^LvCU-R-JGW{f-DfpotKt02?UROYRz8D-uxj;-b)bZ=w7D zw4CVs|I>0J@Cx*tPo6u$oj^IY?d_k~RGc3$m#teXmsIi5P87mqKbne}nDw1MJ87*` zt(d{_U_TOYe{==VUe*Qt&(NeTvGXB2u@9|lYD6JMC~7?CH{(A~H zN0{^)EGzAl9Iu=(QmSwNUP;e8IwR09BT816Umn!WdT8qwB;#3~a@M!Jxm}a1#!8e6 zevtAbf6ug zFE?jl1lz;Hxvz94&=`uTIFmr|_51>M&N8Z~f)>52T%FFB5p63Q1MSLIRz$p z%~Je);E061!OH1nM{UY-d)G70s&gNT>nU?_F%q9{t*ipn%mNY%Z2!lDA}M!RUbg8J zu(9yGxoNxZakpdLS@=8d0dB_1+Bu2HODL>+?YlmQB13q0p+W+;B;s_?GvL~FfU-hw zWp7oQyJyI$sVxfZ8Lt0uX}Ox}_6V`iFCi0C7s2%BU=Quj7QZyW22(?Efo_V=DVsvF z1XmHW@`M};vmWCe!pC+n-`EN(nubaN%YbPd>G>SXL#~y-@lnF&Vyv1!c8x>J*X7#z zmoK-einK=bU7E<96k+E<$H>;4I#AE`;IlAypE^q*(&fav;^_@TXgL|JqZ#B?TJn95 zaBbaZ$2D9DW*Qayd?BelZlvz+9eCR=`YC6DX)Xt>Jd>F>s<%jU#3`a7kkOqu@BEHx zkjGVKlyXVT*&|J8ThHGZB+IEQ>6Za4;ask7voiZOCqu84fEpc>L^4408&`YE{WrM7m} z)K97MN4rq-MP-*l>ab6EGD`SC2#vo?ukWb?V1=YPsF1@1yw`#UBiwgC03+(<#uXIy zlld~loy3y0=ffaEh3ZFX;KZF^B_Ns{h1()~xW4ZiO`|CHR|QDPrLl-0%NGoEr$Qqg zf!tzuYp4h4fZfo8;!Pn9>>)$^C+6^k}jS<^j)))un)pKAwai^7;FcHkt-$lbhh-)3L_p_YeIIo)k zj(tr5TF2tSW6UfR+Pe1|QCC{j9# zSlH{OMEcg%hr4%5$b-<-_kaYXGj1jUj}Um<;(iu6aWQzZl4=Y5-P4-7HR)tK;>Lok8|PlX z7)uV@pS0Eva~;~T&i!Dcdfi;8(^^lUu|0=`ls?y2A`YU`QD$xbep3H=Jx-)rA*usC z))1#I6eBDnQ3E}@4F0yt?S|^3y{xie+TNM24QBY#WV7=mIXIoi^fqJ9f>m$09d!+Rvk+z%$a-Ffv=f1blf=;>gFX9dj zZ@!Xy`I*bcW8&bAt?f8_i&dm=4E7iN$p!|qOs!bT35q(mi zp&86oH@Zlq8;PVTa|^a!Kznmau2MSmz#P1Cpj!~{^|!MO1|J+@8Rq7ti17a(wNvjJ&9BaGF8Po;q3>*I`O~tJ4#{$--0Fg`>7lF1J1#^1Wa-2 ztH%FriweNB#?tHkpqBrgkAGWyu22F2P(f2+=~Hy+=Qb@U_?LoSgq~?NyKtCWpPPz( zbh=1Et=+8EgnL9+6n>)hK)==68LHi5mOi+R_yLYl=$I<$+Np8)sne}oR)avWA z0y|R5cmDI=$Hq%ARR0+ijLQUMJmYs5x#+uBBFj@Np^xFr#-Df&SUm0PPC+J{ae0Nd zvuxxb@<#GI8^VLa+L;1OwqcjoH1rUZMFp6A5g*Q?n3xx`qF%ekFXlidL_{g3)^%PPdPcjp zzB*(sL5*Y~;Dyqw7!@k0HJA|z546+8#2TiG6^}l6`Us;H$bH0ez)Zd?g#z!G6Bcmb(N1I@T z#9Rhgneu*u1xwzezqRJ7t}pCVmmc`V{AE^*`V;pk%R_D8lbY81d_D!w9kk86STxfc zbHxuNFy)ikNY3P?`H3f5B?OX3I>yEbwO})cptSbK@xn!T=4IPc1+>-}2HqlFo1-Np zLK*3!Qo5#{y>z$b#39^p%m-H^G`>3eM5>h z1%wg^q2OwXO(172rzRXqIdN!@QcIWqmic>&E=%Yj(Fw|uw72!m5pEcmG@-J{Du?e4 zNW8n?DQ9G#YP19#u3zb72D+3+I^fAbXM5Wfks0qXDFddYpwvvnnU+)i~VN%FP(Z2}3xv zdb+-UgkxI_s5$n*l@-0qAHiPeh=0gwaFV)uvGfOke7(|T_i>;Rfd9A7Ml@iEci$7- z3pC}G9pcNKE?xC=Fv_*YQhZ{4{y3@7A`!DZ_9iv2^R6z@rfE+*c#^11p##X!jw8McNq;JCAuPV`_+X_3?+);zUi>^=)LWzlid|DQy%(Tq?G)=J--jz`NZGOPRhV**s1A#%=*0S^$a z^KC~`*1Av~2|jFBfRUedz=sJ@C}n+X4A2)G8EX;|EM6&xtg4%obiwI@v7h;ctC;Js z|2CgYNp^Nd^S=7w2=7O#Dm{LhvfDx|AneGcZU`JyDRK)(tj%}%9%4W3XjipPLU7Lq zxf!$P3Npj3voQSKV$9%O4kzwl)JbTWhQ*71F?mQ-fW$;t$3+wu`-kp!?CBygE9ai` zA;1Pp39Je?Ot6LTupv?_R1A^#{h zLM;sa%S!NujCj9&z$ryC)yd=e^;1LoW6ibM{97om%sDY(*Z_s2 zD1OU|{R9k;KmxLKoqZzpd0T_($^uy+mnS$20&N0EH_ld*&65@{;c|$*GD%N&#rVPh z0hceoSm)jh)UX@Z^;93l&0lbeqB`8&Z$B1I0oyCY+WWfxJ}>w4)1<>-pVV5^-K$NA zU>P}q96s7z0H%%!GSEZ7#ISE-V<8#W2#N`jso)i`Q8 zkkDjS%s5*TmC=8sYLjLI^h0L~wFg3BcMZiDc5xIH8$Y1-DhA?H zceuTVq_h=n*`BMWHmbv)zv=*uLR}wssj&q($f*p{JhY&v*hN`^KAtN2?_?b~+w4H`>Zr!rFy|POdT`hykdi-tGN&G za>a8oPv9_K{T2y+T0L&3WrfpRtsw(_LhN#FzEVmJyc2|-NqRTMM-)&pJ99>-bfU6u zt$L z@KJtrLl(Aus_`bp`YESWtvTA76`-+b7g|J#OBCk-pjKOMDu0sOT+Neq_FBb$o5SCl zf*5De4<=H3a4T-0G(4%WrLqk}s;(9J4LCBi->QuW1?G;vK(|D<5Lm@0LT?+dU-z{A z18nx_C?1R!Rn<9No(YMc{3-7A0Oa+C27o%bk{7U%^EVqYeS+dF`S>hj2}-djhh!px zVdv()B-MSfX?>hC8e8FWYP8|-#nSNEH&V5;h4(~-6X{NySWCkkH67^p?`%Q%<>+VgIRCneh8vfxZD51~V?OT8drxAK zba?$U40A`@sS9nKcw?j7>}tE9*NNQPk*}q~TU$-$JbvY}7m5CMim5CpWO{MF6Ybf_ zSC8K1Qil7VT>#`?6j6~$Vbfm&o+6`y?ZH6nx9_YCV~tfY>C3}r;8wm{b%9Sk*4VIP z0T2K`X6b@;#AaReAV|O;9dHz8uy0hts88O&7+Hdvj}OQhmpPym`cWV{cT6j!3Da^i z`qkCA{FRQu<&5vMOImMr+XW?bl?*LIHi5^>r zGoV6q+BEeSv@g%(c3|W<#GYaiOH~prm0!B#j$74tO^A}nU|)(XKxuGjG52>YV>`+1 zoIsZMolP2x3#P8KqC`cDd+x{Mr5tCjw|7=4C)7VZ92r|dzySTCb^t2bWNp{f1-K;G zzA&V=@-AunW`o4HhkflNU3bC7X*AUWg?HocXof(IEB_hVcDu|8%M{ghfC`@!f;GJW zM1l!P{fmrFh{6-Old0lj5s3~#jDObq9-N~zQ*f(oAhe`n2`YEkf=ow}g|}oGqpAyD5qg#`OYbPI2?>$c+9p z-B}V{LJm_fD&<+C`v#mB90thizG}fvgVPD+sU({DZoz0|4V|Ad7LO04t`b{pwqR=O z?2z0PZ4p`p$N81y?Ss3pKuI~W9N-p|t+JghU7mPf;@-9(PeGb0hFdqH&vgxs<#Zr! zzh=9lI?hBD*phrK)C@XN0U8>n`4>>A!T5Xn0=tiHkjV>?)*{65P%yzvhX+^5b#Wc| z9j3fB(3tKp5Pk$5a*mixS*QQ4NASe97$N9v}EbDhf!45HpJ-( zs?8$Yz+qvde^K5oq|$Au$2K`q{v_ zE24&}bj*jSS8ZpzrpOa`U3FV*n{V;m?wErKh?(S!daWwDV~=q@8bH;1i<+f3HfgtY z{`);?n_XRIZh6!9pMFVf4vz$?`^Ijn5U0PW!az9wW`J)u^5D)xqY3s-$1jA#m=tu(eLOMR*$QpRW>>-e=u5G&fN(C%6~?Nl1j|{vAsXNQGue zl=G3*f$^j|a2q!tt>xcilhjptNWN(;d<=YgY@Hr{iEjg=CR4$mMqbms7au?WCPobk zKllEi;F{tz9m`3bK;cAIQ+!2Dha6s^#n-^#&=kUtCCu4@`=`X&+o{ereK~ZsuPwF? zhL%cXN;CgZR&=}sol0el@wz|;?7fhJ_2D+^=+|=!q9_+VA`Cz0AuuOrwF4Hq{ z^izz1r$IzY^)j|ia9m40P48|zIWS5R6Cv^Eg@F>`see1!9VKv|r|13O3z8uIYG)+< z)h&^NYNKG3sChyJvq{CnN+kwi@?@KlN} zYl=3w#A8a7T*CSRK^4=ZxK~f@&ygeZokcx!EMV{eT*}g$l(!fw@o?@{y{co7uzDPDI?``uPGTKDJhNeiWJ303hrYzx~uOIDHS3qc>ZD$*Az2` zpUFg>K}DJ7|4@!Qm~qIvG{JB>PD z!Sn8OyB_9gJ6i>qvJgbF+l<8m973ttsP4*%Uwg>60j4ZaKY_&G;f7fysYc~i9zzN_ zAE*d;ODE%sz9k2DmMfI86)ak3U%i8a)2_ zKCj^??QGWejRkmJXxs<{^Twy1@z;mXdA>vcz>Fy}Iw^7mo&^pcT*J>#uD}QfpFP=^ z!OgcaW0+oo-VjPiQ8tzfyie>yQq_2UWjBYb>$pD;i zRcAg0AHyslCI&{SNvF@kTSoU4*#hGQ5eUJ3)=K~;o^4dPD-@2yprI{bIe?QHl4R6N zd<3n&hM*d!j76ALea4u%ZIf9*7Y0O|BV8D{K@YwAYz0x+4*p)9qjz%iySlUx0OX-H z&@jcMSU_qX7X?WFj81D6~b(0YQ) z>8`;uu^~&nI&w>xE%rZ}WHytdEt^^Ln>0iy%dTF=}5# zS2rM6TAaNzUx+;PgbZ0k(*lK%-rrs~itf%N;WIxB>rxw=weYEHcnP>oKI^{0&*s~r zT(63z+Xe<0bBAIP+V~nZ9RF2(L#_;^G2Y%bIBDO97OryY1o`97 zGjK*nD)i6eduyN{?w!R>nKf9p?(SWHjG$|45`GDPpf)8helpu)x6cZ6nx7=vKP0<) zU0fINx&O5-I-7uB*232X#@aB9_ZLt*0XIvI1x^1N)PD>NHA-eKVhn-_X5`3~{I5a% zF*MZ1wIIZQfKwqD8_96}Yf%3f8fvakf?xr0vSDm21@f;!{cnMx793sf=qnIl(Ihqh zPmTKDehCaUcGJ=YgjevAmLmOs$~rvMPMj(FyE@T|3IB@E+kP_)i_0t@s0X`?P%xC1 z#uWoEsDR z%cq}y{y2v9FWD;j4ep;Ha8g0kSnA?AIQz0I_NB#!&~A$}Utp@$49L0}(W|EiY%F9U zbY)U_8+vb*Ku5`5{g8a~`G?P+uYUM8Fl{uAX*R#A1Jf3Nx~G{+8#;R`wdG1%?J38KJ!q;-^(>o15&F?#%z} z;U_}O)Fkku`w+ZP*O*PFy--&&h1+eLt-$egV-R)I+0kD5pU*-2xvs9J!TmT5?x*Tz zs=NlTy7&jgz-wV@taf@LcdxrF`T3LAn%;=m-!38Mln$dWow(lYX@}$ivC&iUoej(w zvxw{&lZ0yT1m-QSHH75(kWTrU?TRYIgo+k~dsn>1lSzSdaBSvbMw0)AV$WXu%>r<7 z$?1#hsz+BdFcVmAZo5EFf7b0_th7i+Y7EaU8Pd#B{VM+MVMcw(nD<3cS*Rs7NONkrRHop zRvxBdk1_#ItETR#42&PwjEF_3BC<4hNT+GfA!hA>G!1#&Ign@E9Ta#5%F>vwx8{)$=ctuY1MC9k!zCg2cv9F=GimbZ`xru@v+e zw$^?PlNzOr=w(C-M2j(P(=lvaQ-lbOrB07_0p18p^;l7Elo@)KfdQl3$aD#Pkkkn2 zU&-?n*sZT0Br+*5fwBlMM2)JeACVn3Uqh>UGs93aaslTcc=uY5Oj!(!z8}8(r+N`*AfsB2O=2{oDzkdS@B;` zOygF9Nm?Q9K~miCB{a_AX*bsKeZ;fBH(VB`db~(oPeSxja6(g|37e$V^n3ST%<$UX zs>!P0*3hDe<06(;fqP5OoP9oAL2q42mGo}uj*J~j@aQoaf(dpXj!Vb@V0OSEnFDI@ zG}%71@C!*UqBk6^aAb|(vw(rm7nNYf4KCf#a;B48KZ zO-6U`n=`?olynIvECQXZU?0~LU)u?p$aj@|0hd%PV8WLxr6n1gIJ}Q4$Q+l}l%`uRE~sr$AyYnV?QKWchwZ_@2D4O z+x8@-7Z9;OQ{TY#xsjv4IkNTAzuC;7H=@A;DyXpwkS@>$+KoDT;;kp0*oDL~rCad!GGW*JW9Mx$5`H zw%*y~rf7>%^LqnF@)C$o)0%%jJ=;0s8}S*RgD=@<`R{OMCf^*NRGVz^th&Pg6`{!) z|JhrXi^32E)hZoZfH#mlyM*Cg!!)iqQ(gg*c%%aoFrlR5QXyDgXnbw%_kd=hO$w zi5cQ8yhX%`Q!d6jdj?Knq7jOwaid|3ay}M--7mUe_3Ti)#nxSuRqeHHl5eu=knC)? zt=FMBdnRS_sk1kIH_c#k1+H=;Vk9lq;wg9HmDf#ZJqChI|7ctA_c9zx$^%SeXz(Y@0v41W;f>Uz$KW~9@000;*!Jk~nfUush161y zYUw+CLmyA!46VkscTKUgEqrR|C)hux?0IBha4FG>y8Z8j(v(JDojF1t$#*=2+--~I zS&Sb&Fi6DdE#m0!P^B?nGUAxtL+s@lB0MG*15XHTgdD4$I#TVv24}Uhb>Geiq)LsZ z3lJbb0vyR!P5}&_-U6C|P|py4(~-Q`O@YWx!tuwhpeOS2fuUoXEkL7J5KeJ5j~86A z%fL|ywlRoGMfd`OdlY+xvs(d zop#$o&~->t>IKaVrU?Olg8Ql6q>Ozi3jZnYBAQ#Q9Nax8!Cw^@1kkl1}u+I*Srl|2183t6`mIk}lvF zOlYdKnhFLUfeKq`!C+TW^rxYNCZ`f5kD<+FFyAn`j9EoaMwXBkyJFL1H^n-%Bat%A zl~_Px3s?G5GIDp_WSt!bYHlmstGfO@yoDMRB5NjIGnX-+7E1x%6dw_|s5gymTOfoh z+%~o<@Z4+ql`YFGvDFZ*)w=^w?26Fjp5Sya)H@gzo2@|<#zvZC?+E_?+55L9M~*8^ z8Nd%A5db_B(F{aDamcFdKQ&kL|F$m= z0Ex`>z^Txk9`0LhEmalrgnYu?*IK^T`>yM@%a&#Z8CVYK*aH+Oi+Nw>jm@abybEzW zk#f5NbpoEuStf}XDJa)vzHY&*zFCDGIZ~Cz*~XO^xndhoLGlcNVpG&jRu*g5@eD(W zpR#(^b`3ORR`)@6Vqz^x3O*Vj9>Yd@^qwGw*rqO_Nj-sM%@V?b`9sL(gu>nwRU%?c zl&g`x^cS=ylSj)mWa1@8BTYSZ31R;t^olT%f`f}t0*ed|t+6d}V0BkCHqdW75IzWd zUj*f|_~UweiqVnUun$?F13J{c2bn^X0i$f}&c%moGG`e}V7kifk68Hcqqp=zTwNR< zx&+QI`zDnbQ6_)l(?PSxdYQN3?uJUj*%kjK3&l!ndKlQQEvJBOaHtl8G|aMSyE?cj z3r)fN$@yd>cK$5lk7m~7?QePZgZWg!c8YcsMvg*1)JB#MocNqo2p@{C!ak%^Q} z0Xg=n6_p4}#K!Jm4)DqrJ)QT#Wn;~z0&TmyySnK@V~HuDDOl0l#U}+h9A!R( zIhm{*Jd0w-$B^Wbj`a4|ohb&n$ba6<@UCrSQf7bqQ{J{;Kh$NvGJm%R;5YT+F}o}K zBD52bgUs6P>+|nVCU5&@r^o$@;twCb|MC48#2@lm_N!^Tw}+Qe#Hb=8!O94{+w9M- zF>?0k-i2M1O|cG)8{BVNVqXB?GdO(vN@0|9K@cA>JA3!2hrA9-FKP!w8_#- zm~&g$4fYXwOE%V}@X>u4THB;15Kz0E9l8o%L5)V#6~Ww)KMIAB(Z1b`kPgO}fl(q< zW3bka{*r)UjwJPBYE8eWS9O(JQtM^6%*$1gZ%Sl!(}xzL5UDgpY0T0P<~RT9O|v#I zsXey|_{?sedAn_jZ0lxWnp5)gH+K9&lqOLKa}>SGF=tWSs5#YbxA76ESL?DkEI|KO zD-_sz9adsvOKrOAFLEAd`ywF>ohOOELgRQU>TL)+k>_;QCr#i4Wt1o-y+xWGPy7Ar zm9g1ic+()nMyDyv5ilgU^cP0Gn5KIyV&%1ti;pK};_x>5jOWA{k`&rr5Md+tw>ySw zQ$7@Pdm@%)AL29}CP*Z~ifE8BK800l)@^W{q_m(?5D}$RQ+#Yq*)6fI0$fc>VVS_y z5S(6w_(c|clqPm~f!=xi3k^{=;-dM4@UbzUg43S?LzhI_o+(GbI)? zSY>rn+!q0^D+0~6@z+OO$I;=yeiYhtvo@kq=$nRW2~|hVy-~Om1Bw$^tqj>6)^A3< z1KQ^0+WxcwhMNSrw)f}{!Xe!Bb|U#GO>3cHmBIiX!-&u$SA0Px-o!Qg#csVa)R+0; zuw~#gvDKA?hBg(P+rz+1uY|Uh<`Jw^>#}H9+fHfd|9i3$H1n=r7xQ47kd#0ILd-N! zV*h>IX((4U+_?q~((4c&8AwJ1rOaPo*@C<)W{p#{53a~U!S|2Hzuqh*`zD3|VqlA@ zsu!-0AzWPcZHS?f7K)b_G0Xm9oG@-a%=S(LpXDcQT(rmqodl6-~DcjHaLhF6Cn1A{ieheLe90rOy{lzb;Leg$PI@!gvbTrqG$my(&_B zghCB91ahq;(YJ7Aj4GylN0<*%*kj2Q3|68qXgR?z;Zv#f5}V3gBqa&7C=52>N8q(L zSzeYIEVC>?Wj(NlMiT9;p%aKSBxT;K)Mw0E5U&p#+LNDm>^+h;@}Sy3fV>B7vpL$u zc31aJW<&k53=p0a1pJMnzaj-8OKr*dp;a~!%R5+KtEYM0K|r<|j5WK>fa}&8dSi{+ z)s-0>;>t&;LA#OiEblUwEiLxe)uTNh7}!(5?0-Po=yl$3Y<_t%!>;xLPz-xB@-;1pwy^hp#wrD>bNj1@JvVTgcF*;?dqzf+e#T0j;2NbG z6yIOxqft@ih>aAzPoi3yz6pPQ+LKiI?hj)kX;U3EQg=OxWMg*ga)N7>fkRpBYn2j4 zE+^cYre9@slR4Y^e8)1w1ZAtD>cQ?jzw1nsNuJ#|Ief5v1h!vdzRb(gRQI82^xBPD z`a8a(f)6*8{|WHLrf4yM51+NoZN0|av9bP)qDA{y)ejShn!(7=*Vi8vN{-Hsnpb(- z9Lqp!eo>^7lwV(*iMFMUHo8CKr@>*0~;JtU=yfZpN&}ZVm{@xOr zM4yS;wJgNm*tKEi?=#tB7Ji?JJ%Ll|Gf@iplfNCby*?A*7IdG9_g*9}XdrMely_k9 z=R7z|D@p`mx36Q04>OxWKIEfR4yxAgpzME@HwWWNDah+Q@N*7=cG;|~>%}hP%4ZcQ z*_VM4gT8lY)rmdI0MT=by~1c-T&w3fK0;@hY3-dI{MqD-Rna;#qr18R2cyQ->7OcuU;OyTU$S|< zFzuIP{NC1^!|oX{A0PX)lck6$N8UW^1;xg6c~O}K%%?5-dDre5``7U6xUtLf-oCZY zG^?W8U9p8aJc_kaX(%IO%!u;!qn!=7UDuU`Vd}o!tm)t+fgIK(1m-bx8G7Ryn+|P= zPGl`ojJRL@`d9(wFt*KS!}Zj6?p`qnZj#y!*UN3*Hw|22=j+Nifys@pdtkVT6p|#M z9g}5JFrj?a{-4d__P#Nu%AiriZkfYvbzq=4bz31O499;@?O=Jk3M?#W;+Zw|$7%x9 zn3g+g(MKm1n-pGyKTEBjTSj*VG!a(yLzqQLL4|kdC^AkAYb3pw)jyj%)3|ws=>!}$ zcp}2<=Jt63M_9FFg^4DIh&gG&o%x=7=mGUwCZLo|{Rh_*s99sf`tHt{ zg_HBNd*iUm<|TBtE})n39@g7NLdG;j9a$B}?A^Avt|NdJI zA29}#-7bpz%s$~IobPa95(r8@l4|cz&P`)ulY5h`a?qWH1fi){@Xrs$r~kw|pNr|~ zuk`CQE=GD7BkI3q_0Vhk&c1tl@`1l|UYWLAnzqQZFYHQ%Lvm@CX<6ItX7nEKt@c)} zFMohicv!TkvO$dY z^`jgnHk}}b5hDF_G>5@GKMh@*a@}`ZKOFdkRcJ7kqEKBqclAw)C6h{f`@asdv@bP} zJA`$;Ue-;J1SO@++sGFSK?q^w$komh!A~$N+|R(PJ8=IL$-a7BBm2DIg@zcs*y9gT z?Z5VZ&aHQD2j=-Q42&9_dd}7%+I41mX+e%;eapv%&FdD$UEQp}-X^rfj$nJ7d51=$ z!Gt*_%74AH!{l!Z@T`TAz4$h3GIXBIX5~78RY*9M(re&x z7-Oj1B$X6|o?;&Wg7qiIZe#)6{t36|OFJ|^4Crq5T;H5;X16qZhh<=7u~wQTphn{Y zRP1&5z82Y_ZLgH(*w;)E8)XP+)%f{&70OlJg-x2K&<=|16YVtt8A#i-(mASDX5Q3J z>Uf$V6A^^+1XeD=NVAcZyUvT|#wMZm?b@H&{=B`rMqHYvD)JjZ2VKARg**G>WnVnj zeRaRR8KyG(Xv}YIc5m8lXjsfQvSVM~Kz|OD{GiDjYDmMP@7K_I#nI*yoi687u_?bd zH-l79-Rxz)3#bm1!&S=f?T<3gn>jR#44waN*W~ucF5&NiJz&h9|K}DvCU8qVJWu|5 z)byUG2HI_lS#Wh}cz7agae!i`8tD{+hsV{QH=}a9PTH)@-HP8#9?Z&oF?6gfGW)CO zmd)sx&l~m}N&b~crejPIf2s3Sq``KMS&HfO{i%`s{A7xCv+mo>-OdKeGKtFv@b=); zAHko>5_(r`P6m5yyI$I#t#do>DA%{TW#`(t4#j)RKAf22;nsf!%r`zZ(^#YwDhmFx z*{NJ%rwy+0MN2T$jC?_Q{ix3ccjF3PuG#uy(QceI?~3t6_KgqEbD2(aT_TCakqiZ9 zREj#l-cBqf0Ta}CyI~lXM2uVjZt+|paeS++pHS_!=86X&<;?2~e;nW8B=ODkjWqRM zyvIUph(E{6$Bvkr7dmw41x5{`%ySpnBu}#;t@rm-PnzD9;SCM(Rb2tUP~b6`P*Zd!K(L&g}#&~6mJ zs+f(qF!iV3?YgiBR^2?p48!oIVUHZ9^gjF?sOBP;iY3syX@e22)JW>~M9wa+t}$&3 zwycW=%$ADEbqa+Ej|nN$(2|xEk0fqS@QSMK@9v6uVc>w<5e!-Glv9y{RRYC|`z@FD z@O4c-@3N&?)lIVmg$N5S+@+_vAYRj$*w|sD?f?1N4H6z9*CdJJ45Z;+M<&rk{TOr1 zM?y#splo551^h_CX~Q{I(x=H74J-TR&`6)dRw5q?A5|AxZP@MtO0xtae1?feBN6@! zM6Q&-GOJkw@FP6qt9|K)` z0^D#?80HzaM}NKe1w;^i%kKje?sgkx3Z4CIn7lq|#nsKzJ~=c+SM^?`ALiC6B#|_Q z$_Qfw$tL#|z@$GJ)h9ZsFvJT>A-l&qMlF znFGL7379iEn9ASo{sQLB)6~h)jrOh1N{ks#!E>A;!SqP|a*J(nJ#%tMlRh@>Dr716 zzuKiZ+N$@QY5NT7W z64?k61mnZ2aSQFUqnx+jU}*xCxQt3Vrnb`+RlUx;<>ST-YL$0=6Q1}q*g@$8k_;+@ zVq!$*ag3Go)i8HmW*$S^HmOY}$WERt_TuS=-gzr+pI+8>u!&+<3s~jN#zD%y(GbC+ z9oX1)uQp))cY|kuB^GQ^bxq#DXW4hy6pP?O9ZIFvsjXRmd+r%%sYUB(4k3^exZYB} zD`rjokhk-G5V5Pv;x5ddY+$c;>|+mh2lnKA_CvdNh{r8qI5m9!cBqr^P3gQPRHsIE zBnv%*>_iS+LZ3F>G*XxjNeG+hvy%xc^lmv|^s*l1Sc%#6`f&Dv9CIx~j z5+{75BU-Te7*_ed6er5bENQ3PjKM)~pI(A1++EDjjjHE#HsSo1y zz-^2i#Yp1vn&bYO4H6yOp^N?qWmq$X4}?R2t^v`z#bevS@(YZZ)C?!kHf;}njp*3m zbW@mz!7I3~=Z~GqW=`*;YV+BmUb%XJ{Rx`dCL)31V@zo3ouH0Klz?(dN4o!-dX=wM zdGna%Gy7w-?Q}{3m@_02sLC-y;s1{DTY-RFS4;??(n69HvI(rkm`9og_yE?1i|5{B z_f7s#EW(uF$6$()!osuM6v3k#=TU9}XY!7ria%=Eti8`*IFwMU&V)Q44LBuApx_24 zJ|9i=PQ^KiB8+2-&9Hs`!tMyXM`UnLoE^4h$VUc-*H(7uWg%bX@tb68-3c4qLb)@fW6@ zAv%@bu*J`8Dq#v&H2xzE!W4}8fhE_@8)GWi9d9$-c6+-0ZEhoy(7G3~u&KH?<@=M# zTYExn+k7T`!VS#4cR{b2k!mpsX3|$)iHn)?t3tkJMw@9c^QPtTFr$c2?jLSkX6{Tg z*?n2hdb_P}_+@`9?8(-E!Mi){{vH}OirMY!*#8)_A3l8lzOBIz zs0o)6^9AtnP-2n`?;5K6uCQm*Q<62$o8STn3N8G;qQ>X-(FTPG6Pq0$LbPXw021zv z^Ro+#6j2K6xUH-)MihI+X*Qgm+#q2oWy80IU>(-jI&Z*M9$vZ0=BBm(n^)V))Z>jK z3x)i>j|&Vj*BqaV_x(@5ve7~ZycP&ozX-yA64#sTt}e^^qx%wFXI5*t*m=nBH-kpQ zr*6a=ZIEnUCan9L~$1B8NxH@Ou>_kLCg9;@4fz4;R1DCPbS-MDNA# z2Gid98jk7PejOMrH(rQ*Bfl}FMTiK$J9IxYWtrREugjsMJ}@|h+h|gz(7Z$>$Hcqi zZ3wL%YkNe&dk(GXQ!p6MjlW-zQL5~J4lrt-q!0pQL~P6jLKX2ZB$!2E-Y&p?YkChu zUST@R5+u0bzKe+HX5AS@jQeH7`!!gXE;9EctW38v%-GuZ4GIQbllQC8M!xJ`C|L^D zVGJfu4)KGDuX){s)+Z(r%)chlCZ?2sLg9(ert^7bY*uWtGPhe|*e!lqq!4L9i=WW` zXz(RFn_>*bk;SHXaWciXwG;xDEQNg%{J;ET2^X-Oh9{qc%hMR&v$^$Yo9qVe#sh4R zZ;QKA;GBC_GVT$omh#?BY-p6=4Np-Wz3)i)4zg=0c zi@eIZeio>2BBS7O8gU;7_|Y-n`S%>0i&`wY`e9H4vBX^Pa%B4J3h*v2YKpJKxi>f8 zzyDUlM~snUw~OK)Hk=Zk-+8?V0iiuN1oEnDZxA}+h^HotRShc3np|4%DWeroc{$7v5^8v%Id1 zi#l9YT>-IBa4`%M%KoqpgxKtZRaF1p+dR0dq3OF^Z|`G5)GsAcNR+}2D8mFP?B54B z*q{#x(%{1~Zm~FfgTvcr#wd%$;F{IcuF=AzJ+N#f4l;4r`slYNH4?buL0ymcO>JVCa~SKW`2t@rNbWVRDtztTH)9~WZ?eW>tSY&|gsOVG;LAG1rb4}QtfyPi>GBa{P`&OKEB=<`Lkf|-1{3*5T=eE;0# z2a06Bn8s%Db(8&6=Ituae#{$)Y92yUa%LK7a(lkl)?_?@kfI}v6M)W=+VjP5k7i(i zu;Rpjw#BEqXWysxnn!L~-5KBnzD;vT`GN$-7~;ySP7@z6q%<1YI0s;Rj@2Qug2e?# z-0Nf@K2}%>HF9B4{D7(L#*e*_C&<+fJ3`qpORx;O1&p!QImnl8tPX z7T2n-3cIE@lU%d1t{1KasdraG_hmn?+t5;OyH#TBtw6_PmTa*J#z$9~4_m;nsPEn< zDp+=n`Ae0rUEI}|yvo2VQi6N;($*B;d91f%{dwHN%r3A5?v;CdY5W+^Gfj3i(r zKsXh`>sh)%W@C|I5ZPq&yl*Y9*<{%BaGlB$#E7I7TfEX0{5%VgyjxoD$>VBPl^L+6I#t*~Y#m>lL5(P5Ei1fO04qfHscG5)=Lfgy%dS|L&N&t4 z2=Xf6J(FVUw5FooGZDj*_;YeVc$c@XpLrrDoL74&B3c9^=@-HuXu(AB%yfCS>{oVe zJ!z}o*Hyl#yQW?*i_q5`=&irrJ0qfKw@p6MRCy}J>FuQqnpZsCD^YP(YD8=UxW+`& zo{ZkvFC05)%^p35hux6TI1{7C5EY*OrYs zZL&T}>3Iij_Qf~1e|-PXp}Ch~VbgQwyAX=U8HN!yauejiw62E+=ny%j(Krj0l<~L{ zs+IL>DydxjTcCwCz6EwQ^vc?8FK|x&=C61-f#?$(={^C0wT(+p-maIApMo1yde3WjocR&5}yPq?3O9KN&l+-E(@m?FKQ^x(Vg@>3;v-0(Q-em2(wl9{Z zZL@A^lVq0VU52w&QT1JDkp~egs5a4_9Gw>=J^%j>?$9}4@+4ovi5OH=3fWVh%wT{Bvl1CQ@RGQfSb#L5s#Cs_2g6lYH00*j&49 z!;@vUi;jYjb^>?ZL@VaMD18BI-9FBjwLR)WWR<|Y736G`kND~gtQvD`=4HNGx51@s zOh}PJ%4Q*f3+aiFf|fK_8XC%@-vTW$jYgb04-+-qH#4B^kfXCbU z9&<_(2v-==qf-H&oQzsNdxTnKpz1+HVZ^C#==<}umN%b0D^2!Y)fL_2+p}WaK9n5! zYs;UyeqEYwC@%-bNFu^`0mv)BuapgW@!@&}7sW*c=byVTm^Q`UAxSq6ws3L>z#*D5Y#P-c|G zFIloIntJhD-u%xto7*GT{owWwHrBrn?&6aQ&7?2bh@~|yV~h}g6hGw|U!f^W!e)_C zMTmE2T-Hrz6Xhnf5(n2(^8^wti^j(8-b8DMCg^G~41vTS!viO&{pP?=oTeiE3B;n0 z2kn0pVt(_5W!;wx(`1XswyWoX-?wO)gn&<$NiO`t@UL)9WuZxxLKJVw5$eAw+mgF4 znnh`L00SeXG(_+5UuiNd5%zbX7OQnzSN{|AbQ}Bi+F%R2l4GHLS6{K@S`1-EwD+dc zK1JoW;1pm%*MdHe#zvSr<_3plD~kJ;R`d1LY_YX{H6 zz$n^OpAoMR&u7|H*7m&q)ZH%3+OmOBnKuVX1vFp!L&Ot6KIHdB<=Pd4+$yn+r*_rf z*JoRFG~LcQ;sZ6%9O}KH?wsBVVq80?TX0N_A8uV;jjy@Dph+wh@^-?-x3n_CC6(SX z)o-SBM%hL6?|t*Q9iJHHnYt$LSD{7wgdv*B?Fy01o0t7&msQ(0P2Ia6HtScjq8#p6 zppeye{c4@9i|V(~*eOjR#EiZ!Y}pCvZ|XjYU3i5ohb{rTC?<$v6nlFIe(TE#ZIqe~ z8o2PE_4UsXkl&criXu9}(O>rm>e^W7WY@f&kraYlEX*V11c?SgBvR<1EY)!y%beXqK zIW9z-FQ$pq@n>=wb-=u}WB@j_bvx@(d&t>z#vX7Tn4CjRt#Ut_ zS(CTF<=GGBQ!yVtXd)OH5{xMCy0d#@d3#qkw~HL+;GyF?Fl<PzB+M8Q=5J>lqgGTlhM(K8 z9xQ+YMo1I~o!SI4X3ey}>uL;PyLR{00mGA;>lDfzgkVZXjyTh-vZAd^cO3tIm|{1d zV2EO!ePQlzvY$*duS+OsUOd6T`IOdFU}k z5Q|wUjS<9&zf*6Ip@r6&Poc(-cBf~cu@HSuonftr-|=-_cOBf$*afwj^M+U?R3SUC zJ%k?11nR~bGryJc<`?_IrZ+TDoM7QCSHP#mQ&zs3j#--L7Ebvl1k`aNGf9Bp#GyH`}K@Bth7z7;WF&BqVI6(Je4+SX+#|Xc@O#D_EK7Lc72ku-6z{57x@f)l?gJ+ZK7wZphK5hvMbn_%i>m+1? z?BTBc%{?Rhra(_hH;x*AYnDy!*s-JU)`pwERrSXzE4DW^3zNG6p03H)dDHbP*hSY( zVgI|UgS>hJffiVhvG+%2L=sH=8kAkJ>dPGNZ5+9+9LBTJjW3G6`0^&3gTP4>-mUj9 z4AIwT;^DiSKfeFz{V!t#hZo--8w4@Te-qF(_KQrTWJyyv@vu-MLP1?q|K?goU@Cmw zn`UiSSRa}#0FgE&X9=|afTYvN08~HA8{?d!@|pc1+BVDE7K{P9t$X%-S(J+qtD8)_ z;%5Ar0ZiA35qk4}dy{>acUfiTO+AhIerOlxDJ;H>O2wHs4(Vt1thPTa43YYJ?k3QU zj09FHg(5Yki2EglwiG7?4hltZv6{f{sX6vHD362NPw4Wh{#4{!u}bJ<{uEpjGZgW> z&0Mj;#ENq5P18LvZT#u3iXbNsQ<{iTfk^!26=w*{{i#AfyU$Bwe_FFHwwgArjY`*b zW%{ND^^~!VHORO|3PPY_oxsLQ5#b{z;%!kq)MY=2VBBR;Vd+Cl)UnOe6Igs8EK2bh zsIvc*Zz;8ptM$^U6s`MN(LQUlyxGeGUA!7}W{ND2AR*Qj6T&B@#tF2#Fe0f&{*J(Y)|!9xrs|$-%I0}vZk)yt zY@OyIFZ*HVh23u%Ah6Ll+uy#4g@F)PY) zJ3o7q5d~ky$>u^*W4~Bw&*$JC1)^V{z*Bz|hQ;llo(f4*qwbh*%zCs&}>#O9-DCLG~gP>llx z(N!B-KahP4RD24N_I!W=oFkFkRUZRzW*L&{4f`X{1%?Lcp;t4!XM*Txw+8QkV|dR* zpnHXk@40ZXBt!p|&jk#opZ9P;IBCC1Ub$x^%q`<}ZEot1#%9Ynnq~y`XoR|R#Q1n% zgcUuqb694Zgu^}^*+bD57UWNxfBZ80+vdk_|3BF#MQO8-%Q}M(Zb8Y;iCAazZKW;i ztHunyu3f!1k?-1+_rH@9Hn&ejzlI0WJ~->5$-CM` z?1s|StH&(AvwzO!rnR{2qp$$bKrg=)MajPSp=dkH9BeE)11YTCnih+lso=a`7>9h_ z6s~5y-Y(V9b{4KVIk#l|21dTO#{zqMft!7UMCt!~Ix??&TEh2l?a_Z;fwpKXw z=l$*`wlQ7qMw;zHTG)?p^`Xr-438hhNJOqBg^0v{v76o=mm9-~B}{hJtNf|)=)=!} z*7-4#(EAX7^DToLa{t160@p2@dNr%p%hJr;RqKA|!x`NUZ>+y<4*?SYwJThkYoz@Z z{L7hUx7&EfEW+iRM8mw}>(v9f65pYJVqLf0CIJFtFZ){v)_a}^NmL4MB$hp=BPsG{ zuy?$3D7;LBH>~v(MBWG9{`OM8=Ggkp})FyhH6ZrAT2aQ|MN-N$iM3 z;ZQW}ij~P`WnC|_`?85`-E&1ORpOJcx+A}ra+Y-n=_-)H%3QLmh}UZ}$H z9A+lsyO|o;`9qKs+09M!03UcWoPAF>CE*cd(Gv8}?w&{xT3#AA#RL?$a$8Rsd}IF6 z7p|Y>^`&%pkk8iLnha!rZg(ZfL*NSj>h_C4W76(a4RSgdK*u=#;6VEeFeifU`q|Jy zQa|KPkykf+>$lCzwf*01KS{Ot8a}RGFYC>6zS%p9>#d*IRBc5q*h+_^c)zBQ|L`ZOjGKQD)&JaP+=H~q@nMim@^?$Sc6y-!F=i7Dd<97c#;b(6By{RSt~`v zSE@cjZz?+|Rm7eUDI|S1VAJF%$W>o<#kw@x;mFX+WLVmBAcYeTYf6YeN#EzS!Ib@@ z&lgQ^!F8b#lL}l&;@>GL6-XbCHJ^YLRTm^MB^0752y|nuF*|;?ZHcw!Q<%UwVJe9| zks?XFQ!ajBT~maJOSuy)f#oF?k-pa85n2#928N0w$&)y|2<-UBleAqFA0{m_bf3ge zOH1OF%m!Lpm)yb7I>@Uws)V50mvzN57h&^eB+%IAHvvRkN}a&eGgLQ_9=QzlgW5>3 z-4#vSL5Q(3&=DUPJ_e!`F;5;bM7UC;;e{96kKer?!}O*S16T@0u`eWy1s3#5>XEza z5m6gW$eVqeh-zQJ+oK}MW+l?8zcGy#DU>p7*jXF$=@(&I!)nj z3oFgN5}>~>O_Q%p56%1CSfnwtA^jk!4KK}Y#ME{9eQ4csRNHsyjW;3*5}j);LO!jI zQ!#>&a`Pkz0Uy@{X9$jw6g2MIhqe#u#T?iBzlMOgLD7ogn5C36tf`{jNPk&0i)>-; z8)Lu~qo~ZYZsWjEVMK5WvTp!vz=A6U24j&MI2Nkq~`B-*VK* zEAem!#~12jb{n0QCbW>$A;k&Aq!y_ZWPEA15MqKXecd$6@S;s72^H~YcT`erPYQ2# z=fz}KodH`Fn0-ZIiwr&oU~R5(#XO793*SpSAD6t%`P@H%$>VlcQJ(;nz%fB4^{sRo?ZD83L1l?-1aKLvU+n(c!b{{b*)Q-u{+nKbTL&eE6V= zaLjC$>X)ZH$PpaELuCoKBw$7yd&okC#FTg?@_?Pm7IurQ+Ck2+p4rXPZkqF~FFX6N z)>VDq?X#*M|M^cIn-pBT?uLkdmO?Sjo!Sgno<+I0- zV;cfil{x{8ib;P`e>z48Qy)#xp(=q}qUdWhF3s>7fSrQ#*+%=?EI34{JdLeZ5&yWJ z2kOR<;+dcO^SyS_?DP;(bfy6*FMjKYxH%PQ&4?yTe0#tKYb2nySyKYx^E}I z8EzP(KXPprLy13fD%!R;c3qaP2y|CB_GGPYD^st_yoEM>8#33;!Zhvgv;3JIDi{pS zmvv)*OZJ~0in4@pHdB_NT_h_-JhpJhY*NFw5y}|C8hPFSesxxTPi|iOrhP+K)T}5$ z^47k#@r0^x1NMQ!SYYP$IEkm!fSHiq6W6hvnJ&+k{VK2a7TtYa<%_y&EI7M4m*&Bg zfq|o%Nl==8eU!%I?eG%2LhHuGk_O_dbM->LfB&t9j~D|*Zx_Wq zoGJFV0FLO35Qs5?>|*n#paZeSnECR>WQ9E&?Kfzl`P&J=%wcc6&z2?+E%)S1OB(T< z8e>vvipCGV@qH2sf6q6bfVg4Ji5RXb5%yFLV%svkm0Aa|ug=>u-%0{TeD(TZyT*PA zo2AQ_!`Lq~%rN!01k|7G`m%eZ%?wwg^Dl2|yv3CSo&D%c}rse zY;Kwdw>z{s+!NcS1*Oav>_UV_d}Yl@pxO9eBkrGf0cdxoan9(gS@T%Kao5{WGCWL_ zV!Vs?qwRkh8sKNXc( z1*c?3zy#JS;~yI-@eiLkveK5h#IXK}I+gTpT{gcIeUibFz@ajVWSFJ^LXXXKJq>>O#crrv!JOn*NcdyOzd1tp&s9T$L8(b{v zfTpmcGGtRc|3unrpzFTv`mzoW7Ywp!l0fPJK1E25-rhaO)eR${^T#g8Q;>lEMgqO< zAY!EbtwhI}Z8uKyX}-+uX_$5H{>a^@hsF~L4!1?|d**<|1358&9|Kw}ih7-Q%VM6b zppmSaz=8$9IDxw*Sh13k&jj4o#cI`8#eamD`a6~hIMHr$|MA7z)y-p8$?~xSi6EN?HnRYmHZjr2JIoayJ4*4%?5agQ2V<6n* zSzYc8&yI0?Ti0QXnIs9|WJqGkPQ~eNBYw-v03#C{Rx%LWioU@GQUpPcL?+LP**`Xc zB2x)S7D9l6ksiN1dW9_1@E;-+;WcBAj95kq7Jg@yCt_Vbx2!6YhnoUO&JzeIU0IB= z(QEeAW4!_~NvN4jrwN`h#lc1T_4XJ``#YnA3ID7zV0y^!-8@j$&zCUx8nlEfkP_Z* zqajhiYrZCAie+#*}p{~j7Q zt2^lT3r~lGF#+uko-{iWs-P7>v0q=_Q8kVI!ewECp5)S0kQ8odGKDE0yMIqjVZudN+pjamGy(HS_7;IX0zeDzSRgNcT6P7+ls$Uyyo`cg@4p2gh3fF58KQSc1 zgW@2u`!et6^=jASGpK@h?)AX15hMspKqA_;r1P;k@(s5=$8Ct~ZLl~qW!bMLz)=#y zC6B*)Jd75c#j&U?vAGQ~p`>j0PkZvgJi*$=E7Jh0kxroh8HToy9=XNYfGthCXTA_< z>>?N-i~b~ZEt7I=%5DR!?Pq2GX_vyaYbc{kV9`-7UF9-zhOXSK<%k{tqz#snn`t%n z6tutTuj?jz=*x#Z@HJ?|Y69()(HB)17WO>Ut+>1SvuuG0I=9kIe;Tx_K0w;!vLNW!XHhahkF2+MkM{EM8 znoaOn0wV$hY1`K@GO?}^(*8SCPokiuQ<{ob{46oXB&}1#V zTvzQ4+$_MA9_R$vH<5i|(~36hmU)#?nSC_ow>G;s?dIko?}kYA%NsaI@9Jh{7DF|4 z2w?j)JU%#kG`VY3f~@lkbAPk{W4st;fG@SIyLwOZ#hDN_kIu_8Ux)VK3CKcUJ$929 zIR<@dN{&8g_8Wp$pnYaC@D}f!Ms;32KA9TdWZREe*p#QahXqxJ29axp&uw^`3`Bqb z#U8{}(YBV(6F?ua-)DD4({|yyRcl2e6dNB9`g@+vN7x$sy#sa}w+vt37e~U-pVaIz zZ0*-8=0_NYM~p_e>X^;e$cPpsl*+e0QGo`-LNns67R1xrBq<~QD}CT&SJOj2@1d>} zCLt^(mR>{mco1oZm_PO?U|Sn@l00Hn)*q1@U-*$~IUar8)ElB530D#1YZKbcIkla@#k+ z4Arkh*awj%aUTou1UZFJ;4ST7mK=Rsv|UhAk6Z=4#O3Tq;5gfeWH$AzG@)4&I&$7Q zpvcHU2*UV*$i21eD=$lTyk!9ni`yVX(KIA9FlQr!TRT#9Wd>4kU*3JJv$iYBGE{6d z{ySI3C5MjN1K4h|wqBWV7Z{QP39$S8I3`?yWS#Ty@pelj?7NZ~oW2a=pxN@$DZ> zSK9!xGez~k-a8Z5`?|^(HR$NufBLTN>_3%X^_BhM{=L6<gq4>?_3(LA*{2g-j zKLj{V$s{4<_WaV<4gEQ9 z6}qKmRu>D`K@#SOr9B(@*Yx&1S6`ibMt=YP+YfY%8@!l3eg2!%gCSUqls^*fP4*iU zEG?#fH7iQD@yzQcwA7qP0Tw_B^hFbi{i+=O4Ca6~a#9Lya zgLYn)-#LS<>ORz?IUoi@bB^Gx%?oCa!Pfm@>I&-q(NFMLZW8%N zA5Y@;Ysub5@gS<-#g~B{p=EdrQd{8(f6XYRfCwJ`#o#y|{Gz6-j1uPrKiHp*^lmM)Ry& z7R|y28TZh@1)T)VPL^#e5EU3a#Rn*XiW!fUN_Bp|+@YeF!-j98|)kdqEMGWgWKII=Osg}~4di?o? znbvMYh92j;(mnwe*us1YjT2T3wDezJi^p<~GNcHnhqm5l$n2up^r@`u+U;tmkr}8X z6Jgj{i@z?@L;}y<+i`EZpAX)!o6d^b{zL1c?{!n(6{Q)f*i~KKwq4@{Fu~f+M&)7g zq?&=W*ys>mTvUDcc;{2C`)(Rw$pQI|xWM|xDt%!8(c9k_L@zM5_xz}QsLOt3f}@Br z-BFCzXwp$62MYyb6c@&r8Shu1BOL8jTsiV89X^@X$@%~wEy*U zoBd@ErmEZEvOsCGcji?Th=rIS5-YDG?UYp=(^D5rMW2WKTO zkqwh#o=9d)A$eMK0aEmR**T@sQ2T2Y=g4K(5W`2jyb#kw>QgG2UTS;Al)S1}d2rhE zjBzErf(`KyR9c>tf*m7R_4DQS=BVuL4;|d9w1K38MHz9mOK2peuN%fg6YlAX$}FIG z3E^bxY?p`c7T)z82*N3`+f!fnRY$@wqljXBs1)7X#Cnl;p_Q#DIMCm|4*8FbZXHyQ z+BGfhf0Z|9#E|4ddzHkV7~N!Lu_`)a|M2g10sbpZ<_yN*a^N9v=Y5$sV58O;`(ck+ z+cl8WHRg-<%fZ5I_%vsg?cC3b+q~(D;qyBC_Uh_y?cZQ0g|KFvGgb4z9bKU97x# z5+*bcdD(AX&hP9$zAThyU;J-a?f*}P*~VQF+2iA}wM*T_YWZwYuiQwfed|q~&zHZq z57K;@<%^-$)V}iM$N0q$h5h0!bR^iHpmgQK?FWJr2i2ZhOd+Q zZWX2Hv3u+eXJ(;3b`#pMaI`ztfeVw*cywNzWTRF2Z1tq){_07w4~F}ft;|q*8`il^ z3zK>34m1OW`_xTozdH9$Vlq$8fyUd!H})nA^RR?x`E2_zwfJXT#Iu zhR!zpviqj~2s*BI*I60+jazqadOLhQU%qbcK?m>AKD8^TxVL?~HgmA*aPw}JecV>| zFLwKynJk}Gb+dv8)$VNYb{_(K{9+wa^@^c<_T#s?oEaXzU58fFS=_nZptf!wWmeYn zXTjOJZikc2a{T&~nE{(XVtA-lbz_F1EfZYBo_%~`tz_~4l(NG9aTOrUa~oDB0Fw$X z{ia)c_hIeaZtBm5)r&5)doYZJ)K3>-=Vm$6xd>x~N=gqGlAnkL-3Nx0O$;LL9C96Ua2;R@u$6I?^EY0@VbX^I(Z_pM-Zb+>k(m9IpMmk zEHnY-%xH%^Hoy)izb}D36gl|Mg%@;KS~TX~*NkCK&`I&(ZC1~0+TS(BJTOW`CbJu0Tg%m_-N>k9f2U?POvn?O3%9ur)HD*;mgr_9qpot`GtZcmN zPmz7l>btuTNhRS);Fgy+6!ej5&3qGBg$64L|5Qdf^^a)3fEBJwBU5%~h+it*ZGk79 zTTruri~FZIKA%1Q&lYaoW}#hv!Aiqk*RlBM*=_NJ7_seoyDiRg`+bV)&hC-HxgxpU zk;LyTF);J$+xwZ7d2l%xup%kAjSaiw2`AaWYF?T=w1dp;g*t)ShRc_c_iob13cQ4u zCNINGzp%FqA0aX6S55X2tLy&=6IKeA&r}G>g*+hx8(?jFheHc9q$EyXHHD+gE-vq# zvX|G&lqKke+?lE^9zx8Wq3RoZ?hNu~TKR7%pJVHm;C=)>ZEe8SdWkVl$2%CVm$AP) z@ddo%e%b9~3)`+%*&H+a6AtKMeaZ>9Rz(T($S{zVmuvfMnR!>QMmuwU zJO=5f6JhzONoe_d%gF^IgUqQ=&Vvx@vo3f9h@*W^Ew=?GT6|tdY0k_=;G4 zTi5Gl-2_ZdDx1#u*4XECzlF#RJe8>bCZ;Njw%bkj7oZdflV!V+>6>i$F<=z3e`;*p z8v5O2AD5;AwZOZ&3Gd#9Yo#NcO&WNTLp=8Y4$=;w`8dxT0D^7j)3c2)2|8O zvfHLq#J~L3WnK-UxM8X&D*Lm0Pq*kIM{YAv|Izk}QPx+#RrSXzEAF!SvM3i>(PkeZ z#SU!)#6okSd}A)L@xz$f*x$ky^UV26qJ zt9$JcZPzt)N1D2CpK}G{*oko!EQKb#ERz~(e-*Rs@>yxJvIy-GTnWlkxDEg~O8Kjn zPjJG%GNp_qusvE*gvyca@rl$_u16_M>PEl!F+y$XVd(%VAbm~PqRHsk*HzIhB;Z-PqKC>cL1 zqBQd>;5H!P_t+Ng&30eB+1GRojF`|=3Sap+o_&!JyDbWDK)+-4`)9J7U}k1_O#4qZ zc^>}Fo_e3)J7&dd)mL@iw)tadgNIO?e0`5|3}pECYfKQKmEU|G2-+>NYw~#q!-e)R zgL22BHz2k9R8Y=VMLW-%rpWI@TY?xVOc2{OD#spQLaQs`;|tP*^C@x(^kUnlZy4hQ zsw0fp|MRDBN7+p(>ZA(8!T9>-AU2?w38uVvJtIJiDqLtta>`PmhB#;bK^;rYJjoSj z_jQ#oYMZXFmlj;O89IisbP;(&EY^hk?^OqC@St_34UG-em_c{>>&PS~HXO5&>Itw} z6zjGt=D#^@&P`$$7$%64rH&kv-T1Whw%R#N+fw9wX%o1))7^*pnxOYR?jPZf3z{Nh z`P&mT*!r^nC;MOFAp&uS6nZ2XA%1~;NU>t1jnT3CD$B|K0z1HR;LWilZ;weOHn;qUnXMo*(L0oEr#Q3;Ek1J<>hJT`N_&`8XxdBJghobGB#!Kl8Ls#p(DcTxJw%xK`1bEj> zV!Ug%3kx$jdN~;ZIgFUyJR)y}Lkz2tR;t$!Hx{fx2J=a@+&has|7@qj)y^AZD!4)p zx%jR)zsKu%$`K5G5_dI8>F5GtSV1*9--P8@S@&u;+L(n<{(>TzvMD6YnxDo*ZB#+BDeD9 zTIi8j;u)q@-t|qGUbQ4{D`;pd^LOQTW@s(5>mT|!p@DN%SA~txo#I;y|6Raq{pKUV zA{z3QY@T;Z(}foug0c61!VVb{PpALpZ^YP8G7tH@cW>2AV1nUX*MXieWXQ|Mg?(vJ zfMg$ZU5Az{a}e-2b1_b$bSN11`}G{7R^J5=jbM&7@vXaPc2UGB=7&}t%oEj(4R;;G zo9wP=+Adp|`^E%^i*lq=2>OWK6t*_|8Ke?4-5|x zc7KS!yM}Se<>8&M%;%=bH?x*a$dh?U3gmjChUv=adqeHoV)$S#&=&tO#ECZGFm1Ld z;C^Kt;5ZkfNK>y!eq_ujB2@YX!7Q`B&Hm8a?+(5p&iv)qe7zG}2@Dy=HaojL{}Swn z58waz{wT5i4Dao!F-#Qp8@LbDit3>*`|yg4L}>~AHwj!U6G{B8oX-da>Fg-MyDawO ziZQ7XR=y(eUu>@2ud=*d7n?}KX36WOUi9;>9Rw}iw{b(}O})zcf$31wx+~460$TRw zc~$jgaFHa@@~LC-TnmHArvk(Qo?QTktw>9-SHpuL@D=%D`TKf=UsuE}*u?acl%s2k>m;4?C$aXD0 zVBvF{&GOk}xYUG%+wSO7aw;*>3j5>Iftn32&0^Rdw!-T6FD7rw$6y6=B%uN(q+`dI zF+vnQxaj7l%^QgoMOn^3-l5ig!gx*>q8rVkwablEgKVbW1V6?dw_}n~h0-YuUVt?lS zpN{zVdyb*&y6x6^)7j($ye9*sf9?S~75d()wwL~-moM|kBSZr5l+fpFfKytW49D06 zh=oM>q{Zo|Zoo|j8{-mt`^sVopP+@4V&5?87GS%qKL$pH2*qR)`qM}YPJQiuTRNS| zo6Kg1ed+2k?&`>S_|A%^TZYDs4dXtsca*`Zk_`K~HHDLEdN4)hF8=OKRdn_@mOH8G z-ZVDtFUIGI-%M*-VaijeUo%FC_UDr?(Us=DeO?cJl3LgZzaIyBg}bD04?{gLAkGCz zL2|)D#bTsB>V>+m`tF7ox}^!7B}fb*?`&RtGzsGVgyIsKr(7GpJz1~XMs#GU4eZGE z$i8sH{4X*E{!G#;fgRaKNR;UFNKar7c3~1rfS=uiDe;;+yymxdjrh?0W*6u~Uq0lQ zp097%2B1g+`ptI#{7a#{p+0p}^6x>zQ$Yf~b<(^A*t4h7vQ zaaSp5Qe!5mKCK@0;3|v37o$`n>y?XdEQU_LJXSd(JPnNOwH@^x*Ld+FRT zy}FkQLRVI}2%&z5;%8`sP>MA7hM^-2Lq%q@9;VaqVMBUE5nw>pEt`5ZtJ|UtIw!{% zGoHdZ$dJ@(7R(QJk4*T^F41{#}rB>QNIT36z+8r*wX9_=!tHWnc;*BbNN|d zLiseBqXR}XBHkKH;VkCd&>S3W`D{_ITuW=H)5L^I0z<0Nha^MQ*;`^Mnpo33ia8eX zH_tI58KK;JApXA}etwU$FCL06w<|IGe>1bLKNSm;H3npg0J#HgKHX$(KkKWa%kY=k z7v}yZ`#)IvS=1r*Ay#o6KS4R z0Rp2Xg+_2k82!}~!$NEStihI^U6z&kIIEk`WFMGv)9JBqx~_IAz5ca3MgcD+jVSRd zgvCXPAx_}`Je2+xuK0~v|ryXI*TO>5NpnT*~SiF zUws5}i{p#!jj0K$lA%VJ!oDUKOYNuU%>7}?o{hepo34ZALDySy_uFtK02&pmGV_~vU4QD4_mblf(x z7v7nDXw#jZ!lF##B7$L?kRE`xxkPtu*UtT5m3Q?jf9W_9{1gRrGJ)-M0!XPM*jpz( z6X}b_`6C@_Z%;Rc85x_g+cU-6dp*$IqiM3P-rV|vx8y1~jdmoQ6MXC`yoE+FQNEDo zHMD0-Ffd>kLEC%^yfntz+f4C-S5akUKC46XX9Y3Ucg&FOV)$shP)T-(Q(Td zrq~7|9&Z0?f3q1x9wu89Ym2Lx|K^HePQ1e>G(}v>9a&MO%c{=*O_lypV70M1zKK zEts!={Uw^445RGP&@2M%_-^Yy5CA%(h<;1WLWmBhUMmaicNTyS8qSB029Z6Oh-Q4k`cm~CP= zNz!TMhHy(l)H~W95hHsZ`T8JUGYYpN1l9skN8fglyAeOeBy!#$5w)QsFZI;|9>!(B%>>io#nf=*);s3sGv zBOLSHL?#87;N2!3dd6&=2fBHfSbp(_5*8hm-ucdPbWb9_ zLE}R^eDSV4X5S?BdJH&xcV?BBCeVEmBf^olOFXWTK?g~VH|B+o$QxcniD+~kJ*k?9 zzoOERk^o$zr`8j$&|#&Z>N1>BqtW3LtbjRr=VT(|$0|kQkai3)5m3{lyNBA*z}38o>SS-~RsXkrCUs_6z3B>v0oFfDUqwOiHg@ z#J~Oh`|8fjx6V;>(>fXVtlj+E$GWc;*KNR)G-l1+5rfIXhZR>fFgIumtD0^=AZ8Pk;%Z&ZWJ}!+t59g)*c&A4Z zByy|?lL-Vc7C9Hvo4)~aD3GjD;!cE;AYUGP-tNv-?U!@?x4-`dT;1)PZKtwB!&xg) z{L9sHBS?9hu>V?DdA4YZvOFNh^j4ZM#Ay>nTxw>RNbD6~`s?F;-GTj4*W~u=m-QOr zAp4i9y)(gy_fVm6)NP{~V+?uQM*rD>9u@?raB|g)8@t#J+xWdz{^vU6r&b8d{^{?( z`|rQ|AHVx=|L6by?Vqv>)N_T+H9XkfZRD##2N#T|HcsyDO9!j@uN73sUT=p%6TED( zQQ_Ma-_7bKSUeI@?Cn*I3lDT3NaSt(-Qsx_+<*6v9^~lqrn7q_1c(ns<186B$$ns4 zCB=%ln{Mz;zVN0e`wRGl7F9mPzLR3>i|>!IT|(;ChR;>*xL#HSoibNnzCOyeU(Jfr zy^XGJ+Av{?9n8y$Y?FkUWdva)ef?iMm^-snOB0+q@>PEC1mxGId?@Bw-Q3$uVr!Uc zcjUG=VX7!oNi|Br#yG=T3Vd+ueM!}n`J?^ghNAg2H*H%yz+Swnn`UW|2ZmE18u`%E>ewP>JruGpWJdCh^ zVm>Z*5cy~u%^za7@mBe!>F1^_^K711MQGIxSaGKE$k;I-C-Wtv~AAW{k zT=oZh`u*wMuiyRr@P*0{RquZVE55v@8Gq<<|SqJVSUgs;>~)Y z-XZzde>;=w_wT>O=m6T?>w(bq3Z0%p_Xp?6*%bLy$^L8XWDnI@50M3E*}L_+sq=Yg zb9#Ud{q?W0qdQmvIDqaa)69GOi#K)OhK!KLkI;WNbtb~^szu$->$S}o1E$I1r+F~V zI6(6+`Migwr)eIM=c?RH4XZdg?sIVNZNveRRWXyz7(?>#ort^D z+STd8EvjPbm+g(KFz1Ldud2>7Vs+nz4~=6r!QQG1im8&qOoNYEW!i3OTDwJp#bCZg zxZZ9sZT7{tX5AQ9BL6b5?Ga%u&h0XN|I@E*6dkX5UIRRyu02(_txki`mzwc!gl|bC%_~ZV}U5mWU|f)kyfJsOL+w zanjL%#|P59M0x_`6?#4rbDKdHX(ZhRcIh zU5<7ry_r;*mO6oS8Zku>_cczu4}E`Qj3XuDpLm8IPKlUre|x`8nU4kVZ(5oX8iRRJ z3Y;`jzW8s)si@3D(dDz!K#60XH%$Sd;7C`s4GYidsD7)13`t3O8s%avi1#ErkFQzH z>au8qi%2X;aDt0IU<8nw_|ok&L2i2GVJLpyIiZnLyXN0=t+M#znv7v4r1Yh3#}J=$ zK zpgFbeQ`ohc#=;czJd}Z^jKEB!v6)g%Pd@SnX3w)jy9fhM4&4Ie@y9O?rhR75g1Is_ zRkTZRz7r4)ke=|Gx5YfWSl&{wo+$ z>XqW!0c+QFwVeUm^#K0(!Ak}{@d_7Ff4=x4%7K&d7q}UhTuR};si?Z5>Y>S|YYJev zS98hlI@9=()^}N54XwGgGu-L=Hn?Pv3N_e^LEamCjm=pCOYc!sj+E@Q8ng%~Z?nf&{ybYkyF=d)b-?8~^aqluh z^N`Q`UD3O-sYOv))aMBSznSPE638pt6iXj3Si}0|M!qe|fg0?i`%U$4(!YCoAVjoK z#Fufzf)HA55*_fPG4LB>|5OqOQzvwD&7eR zhN+UwS9m*-rlaROB(uAwUTx+nLc=OJ5+rJ@NHQgSIx?qY-5Z5zY>@i^0ta{7InZzu z6)f%k6n8Xa;S#TL&q25kPERJwpC+HCxOM@rKWB*q?@&eXmWsaJ+;ae|2UAp&DIC}g zCH`h)sLg7xFDxj)tW4LuutA$rl>o(mqih$RjrF{8G2d1HQP*8D4|Ob?a)R|v2>7yc z&NPL98KN+2=wo)Uq7!sMhftwFJLX&&i^-gEcCVBOd#y*FV+%3_A(CUb*pD^@p_17A zhmA} zjAP2YnhcKEd`oC$s_=Sn{srT&UiViWM)TpP_rI_Skg@q6mX?i&%pdZi1R1=pGpluX z;P@Ka8h4BCuI!6Nu-*Nbah8BYO@=iS-dft3SOcCJ=32vSV*GVcqOed`VA&7Vsm=68 zs52WvC`}URlgl#6g|~P74+c7_7AEhOH(7q?Fu@f?UfEQ`9+9s2wyL{jcoQ285pNex zZ0s1dnZGY{*kiX%3MUeU3P~~bZKoe*t!WahLbY$Ax|Ki^BeS<%HdCcGno8Np5qm1NY<=fo+0Bm{+@bkDV*N zOk}NrvOS5p#loh1AjIb(_I-IoCgVhxZHwjWU}yNLl918IK9vJ$236kM!*ekQnlBO| znYVv2Hjs>hiq925o@=)KRx4CejS{$|f}NO3Z<=u~+3@GZm4ID0{>6$lsES+xX~;w5 zN^6lqrH+A{y6+PCT$mvamJ2L-8opapQ?F6NF^V^PK0$%O1NAqEexfhMG0Z5|7j3A+ z-N(G|OwgMtr5yAfVxJ&)<2b}Sw{arLyJFT9Rc)hKvnuk?C=w8+ivCDsSaIf^sX7s2 z(S({$g8FL`>yRR<)n_1_#BDNF8u1hsBocy<%XigTS=Wo(d0BU%k|bClmOz|pw^qWL zZ#L>Ql5_i;FY=Zy&2gQ?EkHCk0kG zjZ_3-CNJMrO=;#`QU@!v z#eEK)=Yb(5nyVx>S|lZr7d7#CkPgaLfuY38i3UX9ykoNvuDqiIm!MpmrU1>kB~o6n0y}w7l99eaP?ahX#gHQld~2t5OK!l?pfw zWo-kWz6tI+L}0KyPM}(VIK6C&#L-*lO&(~)P7#7q7({1;+RgOx62WGS0OFjkt^x$9 z5#tGnJKC($V!W*Bd;_w%t3xmLD8y(Ica(@@>6H|?3}%4U9=q>Ar(OK{q)o6sC&GD& zGURfPP$&g;0h>xfNBXsp23hV=@D3B0khSrT#$MThi&%zV?-2?sox)`_I1YI&u`U7| zWWh&Dq;&%B$qXZkKPS(8&N9e~58)itvf@uT;au_BnxDwBZo7Kz>UR$&$eBvYBt*9H zuS$XhE4zN?ntm!XZ|d-Ren8_ig?N@? zB|f9Mpv}v*eJ24H@}MB=H6@6TAXsC3F2VY?uGh;t$l5w6)F)6TKsFNijPtQI>+rTw zj42pK#y_q_3DaJe?33Zacx<4Njl@)>Ag;s+)&gCgY-}iom}MwJ;VLBlECVab`Q^cB z-vlTW!5QW}g=iE*PtxVL%hOQArqo5I(J#e8M9CY_>?D%5wpho8C`VL7gH;T5T1#o@ zol&WYcgda&*_8RCSpZbyF=Yyoa0+93mat;Vd!n98IMDDGP(ssB^yllaBYXQq&PBP= zh20#rcF6`V5bKsJOCS>+7<lqHkz1UD3S!pB;ZL*{RQ{a;RUbLgoTr+L>OzF#6hVDJ{J8{ z=D`N9v(jX%qMheWQ$Tg$rBlhI(ou?}ljcr=u#o=du5$?onvMd>WNJsk-`jOA%IE1Q zSVsk(k2=T+gh)`+7t*hFa1=6}t##jpe7ri2>7<}X7VD6(Z0+=h*r=+(2YNTXa01FJ z2+aQZFwO%4vyi)B9zRej!9mfl>3tAr;0sa`#=tfxc7CuRxe_NW$cbd0L`bYtm?E<1 z*ocYOspuwrFABwl1j_IXjdZ)8iFi_JsN*XVXcZg6p(FR+6TcI+0YdzeGT?d2>5;3I zSZ_o@0V;()B!=`APTNV`ha#Ou?5im~Qs#}}HWaBe!eLAEq)c?0ccF0q68oJtLoiBq z>@IY#x)&NJF5u!biGDsN)RD;b1Ws>i1BHbWG>tTaF?=MAd|5INxjbjzj2lFWKd*qs zXnHQWDHe1DTvjF!q%auUIG5+tsyBkA;9CNV6R{&H;VYQomTCk~LC877n$t5P%*obe z1azvWP?sU+1ftU^!U&c~grkKzasl~@U*HuN0sZIE3&z@D28(0$vsdT>Ew2ccfDjrZ zoN|JXge>j4uI#Vb)P4KZw6W-2LJ@A%DKOr3D92uYVfJX?=-BATL>e}n2QZ)mdhy@s z6G<>;UQd|Kl)!e)-DFt8njhv5T7BP`ybCTH z15B^4!(+f?W2Uhy@Ryioj~NC;HUKn(=k9I3s*1XEWsrX#${=m_h5JYQQ+K8<+S{jB zzP!nXAKae9*|KieuAq`HY=+Q6hywE#4@Fya?G02siwDy@Lfmp^ItWDVtF4*$aEu36 zzvf!;bC1IJKmE!^!xnfgl&6DC?&BCIGo#A+&+FqkRqZCpOg=a)dZY>V zh&s~?nGn0gIP6pN#mfm^DRJ-e>j%w{e*$RP%d zH36rw0qe*#=XqG?7DAEFv%G0c+l9zeq_XLbNC|%q&+R?yk($z*Y9YYM3X*GSlnce7 zmdA4;2U{xSAd(onjMHY-UgL0`o5su{spgcAZJ39uNF_Jr*Em$md~TZEhiy6_0>r9SDz$uajXn4UR=6_{ z5UP-=^s|s_^o72F`t0gFM7k=Ow!-T#*`d@QB2}GAyZ(q#+2>GQo2G#2!zJ9x4fXv1 z5o?`HY6X)4`H2i0Ovra4sh1KwygOCuz*8R|9a4;!G6 z#B_BP>LN|RC1jJIUZd(@VcyjfC;-D9Tq1#dy<>D_efzfAv2ELCC+S!nyF0e6j&0ki z*tYGCZQHgpb>GkPpPBa^tW{t3$68fu?`vPb^E{4Ap~?*DR!9wyWEgBq>)&Ti&f7;S zU`!y6fy!Y%Na1q2q2HHrYh-%X?CLG5<8r!yAzxDFZ-haj1FcB$-;G?X{K%73~d2NhCWU1m2a(Oe^>#Q8O7E* zRTmzx4eQnMaiaN4#}+F+6}D&YofRUTX1_*4&1NjM0L>-@$8vy3i$$^Y7s6;_I$Vc9 zK%^CByEvZ@82dcF3I%C#;K46DsrNQ#YVM?4_AGg(HUQ<=z zbxqzDRQ1GWRjs{E&u2Gy?{f!RnN>zRK49XA8{iUII7y!@fX7?eNtBxZC9Ov#TEgDO z++5|S!qAM2qz2DT|H-|{laP|yljovm_Ak7r!e84PvkARaC_h(Uk{NVQrVbKhWn5LB z$mzA}N!1*|`9Q0QZF*&8I7JMY zzsUVYyRW#1{uubA`@Y7DSc0BZo8bWHXoa8rq#h#lOs<5m1WTK)VyIaJ?I6-&dtN`QTm?2dD_hU2@Y6$CRj5h<*59(`33XI_YOGYV)Q-j+l$FI!yCmtBLpC$S zo>T|npBF_tbnq&FN!_^#H?06wk%ko*X+NsP3`r%c)Xv z3CN*745W62q$#ZQ=?ad>s%#R1gv+S&;ckCR~!|)k!@n07trN}pJ z&zYch`oSHBuAN>Ln6jO)3<2o=6nYz`k_O_8a>W0=qi2qUFVHhxNay+$q)&q<9uwOc zkDe(yppMvi?NbnCbml=xTvU}YZm57YMW<-Ru?s6xwk&afqWjKWXAcFM#Rb+Yo?jupa7%zWx1sRH!6+6ERN1Y}PunP&3 z<^kmu3}`@!!xrz}tA_aY^GfaX1;76ZA#V9ngvKZ#)V_+bb2i;qmp$0#5FED}TPV`C z5-|YGg^hlHqi!`;zr@XYJ|!?3TDA{ z`9=yOzU%^NGyFO*Y8s=C;39{aXWl%ndbzi;6-7w zC#`s@P^74KruPFOrg#YhnnQaM%S3rea~M4cJ7a$xTTkX2M#|8Z3}k<6-4^Z zYQ1}vB`WMx_gsQ#-ZPp%|L4Rh7g&Bu;UWvqCl5YA{u@XTLHm8$yGFOsW=RZf)tUt} z)ZOb(em(`p!sh8MVP)RvWq8p=T@}r5$V);_ zHZ_S{&r^LSSEsQ&7%VJhnHzLa#P*JsM<=cGy;Zi9)uy$6V>xx+Kqy2%7e`R9HE_cN zYc6~cEC>D}>-aonHERjx%Y{)-1O_uWX8%&YaV0flnbq+-a=o2bFBnm9`J4{hCoide z^D#@*O&x5KtN~4$7o*>)(L2KS5@d769BC4Qh@1?4X?qHk*W{BiXnt74b#9OsK zPKX3X;obteS7k;+bnrVlP|P~6!X991b46Q8+G}=(6XuN}+6ebMizsWj{3>R#UK2&C z|3R{#LLWOBRgxH}^J3nxy6iwVcUxC|g7C1fbwi+C`oqlko8^3X7H`zb!Vw}u>nfAT zx0U`~F>+JzV&qlBpcbx0Ck~PXHaV8i(*a$i-gJG>SsG4=pKN8da`_#$%@Pi??r>XO z@Ni+u62&-T8t&G|(L!+Q2fosVN zC_lUq6j~11ymyJ3TezqWEe(+NK$ zhvY0O;kMi&B;|}z9hcSEcIvI%5g7ge7{r+6`v5Q`70;3w36icB`jMd$xw8j-RS7LY zmN^u;JxP7~MeGkeg)z0T%k0)yG=rstKOW?KW zn3#1pL*|uyARapU2aFZUp-30bKC_(I1-%$eAh~k65a5d8asZNy;7kl>2d0^=JmWNU z85Du$MS4)q`aak6+Ab=$PsC!C3HXO}(q_)Wk3m5)AJ&+$-MqpIVsX#&$Z%OYrF zd)ta$z4Z0S$w>s!*RwQdHCEAwL*&X@x-N8BZy}dot*{LD?Zc0*0@s218%jDPjdI8) z_S)Z4u2CJkVB?`K$rn~Vz%2^}C6<`XOqI;`4CFX_p1Bfdl0j?3LIW3j_qN5zKaAX39{54>ui95_Vu^ZRo2j)?YmaF7;{p_DtCUJ~ZK>a!=h&#_W353Mknx(j z`kqd#s5-ob`dJ^fR}Z2x++9v&GZ%RG@4TVTB@~I7BbhazWihJfzRdE}^C)f}lRtQ( zlEjmc=RHJ-kVs9kg}037MUm}kdSTffSs0KjgjRoq@j_Z8SO;2z{UukN|6zhP0&AG4 zT+k`PpT8}<#E&Jxc39~*)Of7r$o}+b``N}W+r`QEM=dfaN>3c{qg>``7T<)T{W{*e ztd{L2y0uI^cVeH78S|HA`URaaA`w=W9E!NobV~q+HPL(och!>*0*HM8b%NU!h#|;N zX7NPV{PCfEf>6$Hv~LJI(`>+-+sfv0;>Qh*d+SIOQSI<*S8K>!9y}xY0&MqXC;#{@ z(8UtXIoq-%?00M#W3TP7^KrLKm_?GX9?NzpaH|MTX$LT z?g7_5moJF1*Faek`cd6#_)MWA#`^ekz1Q&}xolGJYF$bxQ^Cv4F)x&yB_}$p`?^(r z9w;$OD9glF1&Pz2IE#T?$`R1Xa&@tIN9JD-Xp(lL0K8fqVoUaVmD4u3kyk zQ~hh`PlKddO|TcsS(-C$bWJM)A0IAXz|Wq`*TvWSR`-Xpa~LFVLKkdryZW#1bnQnO zOIkNY35uNl^1@AhRq|sKz_G%`=>9#^8k?&aF2vz`qGNg#+U({aOtY zIm@PVNQINa?zUxlV`FO*tbFdVT@SM=JV9Z$?d;rxU2>T$(E+|!+B%6)xPLaCQAlM_ znXfh_q+S?PUCud^mTl9$ZAMu`US;iY^NE=UU1lbYLw4Bn2}r~Em^wHzZ28~eyIanY z9`E1g+I73%UjDiW7y*;;7f)APt-5Av&^{!h8Jf;-|67!WF8L~1%`4@jLDkHoo67pu zMpylm@=ZF$pPLep)+6!7Lby-64JYvl_qy6ncq+&Lbrb6avU>-9wwJP@c&jp; zI_p$h4`DOQVhT(Im=A%Z_gCJj#0)$BtSky%_`&Lex+u9D>6H{70MRggL3OXlo?5Sr&3h$Lyv0aIB~g-jd!hLS z=1aj3Yn00(m9_H-+le-oDpCG2-VgCLvObLtoAUJc62#u=gX1Wjti4rB;VM81n4`zP zah3U@|Hf4y3#-jzdA`f0g3=hpFkd0x{D@H+%KE+5mpB+;PFUaB$;xab>@zskSycm) z3xqiJ57}T1dU4W?qI$#V2_t_K6=$9qZ(J z5UzRQ9=l!VzBXr+7ERRadfx`*Wid^R4i4oqatTxDOUhuP3DvlWJ^<=kbcF?EKBhws zze%+&@_b%m9_;jtDOgN9E6WfQTgiuYc}Z+M3IG$`Fl6!&&g z`y9pIUrHM^!?TIgsWt3e<^`TNThYpjX(4%zMeH8=i-y_@ob$%gMBWWMt{A#wjkQNH)V<^=gzEWK-1{lfIo0{cu9meM_ShQHzd z&TlKJNMWDH8d-2vXZq7#sViYpjXh35Lcdz*BWydk{MH;oIEOf>^AOU0#yHe~qNaN8 z`~y5Nu%$**3YN?e`9ROs;wra6-HuGTO(BP$H}}oiQqC@n5x*-7T~;cP^k^ny^^xX$ zRmM;s)}3%vP+44$a&}pUrkIMz4XplXC09Gpk1E6l2SB?@!8L^` zrujW$d%kr;N%ZDSi${!OWO9vP9yi!$%s8b-doD+8r%@aa>R;~#2q@S}_VJ*I;9Ht| zVT*H52Wzi@_jSCVyr(0L9?2e)9UEh7VxNz)qLbKyNP_GVde3!IcP5s(SIWY|bh_qu z%62yGEyxsjC6?g`9>48nORGpb+CmrF&o$Xim+`9a>!eWyv*K&!R<)6?LE_zf868*p z_?V?$58Zj@*KGUV4N3!R-*5?(i_-2109%+(jAR)dV|A)cG|BurCR@3>Hv4ON_$9sk zZCff|lppOWP{N{cVxBlZ>7jEm0HxO`-r{hND@}=WR=q>QidSO0h~!quMQ+smtP!r0{q!RXbbeRX!60;wUCQIsvR6I8xA zm|I=ihK6OPn?qp4nyWy~dA3cw=&P^IQe`}BKNUE2-?HSa;SlHUb*BRNROdEL7w&<7 zZ|jWO+ajnq2G^b@QK6oW=2jgtU^UIyprh#1Ig2}5_J=dRjRmdXLj1zP`HGz0L*HfwG?V9H=492z8VShsjnqW^HZ}I``y;Rm} z$^bIXEmVy(+77}DpWf&4rH@}BGoH^tK(!U9k=18Nq46HcT}TJD5M=e)xWxtmS66V; z&_>?BJ1Hv{0h0_0V#NggiNNM$XUaui)8N)cW&pO2b|N+XJcin%h?50dC(7w~FtStv z`0IY1jKj_a!B>D^bXm|y`++QwDI#Mh7N^R&Q1i2ZuB-CY24`~sQe!uRF z-)aAV?bi=JZteBA-t%gFbh!1K0UI3RX7Ow5XFYswVtN2#l*0v^O~a#bCNy=+94mPP zo7x&0BIp~pP%mA=xDl=y<28d9o@E^GGIFE)TKNOPbfKiD$7`)|zrzSoiNg!sNCfiy zoLxtV*rRmo?giK+m3(l#RnBLaE_) z(Pg_RKbA>ozyYXqR`3<(!n|doUF7aWmb`-AwcrOrUiPuHJv>|ZgBaea-4n~z543v| zDH;RsaRfy0B4&2+*^kUdXvh+JDr!Yt{k6i0~wfyg>!1WTi6)5jTuT-@m4D zk;Q%RMyPYg*KE9T`|?iH-~U6Tu=!T*X%(OujY_loOCc6`o0D^fJfKJ*gjk2$W2co?2tAr z3R6;YUrd&lupprBmmYPkLmtS?_p4?4Kp=Lehk|;kh(^%S1}3RJ7mJgSdIxmYJdOF5s*f$a$pWRzn4Fz&9Qv=&Cx2R!t8YN;9J+p(4~a5dy3+x z*4EmMYy0EE1uEhxKulu4yo!Y)~a;cUpE3^9E##uVdAXc%j1cApG^aWyjsgL zx7BlG1u`7DXqBl6?7Fum&51*LN2{`1i?T<@0X!X9MAKZdBw2-OVN+&|WEo~P9WPlq+SA#8BmO^l^tU&9i` zn~^IsA)c8L84CtYC>@J`qhJaZ9$q+!2~M~|3v8IcSWmcvHxQxn9Rx_R59XF9!5y4V z`15jc%Z^@4;}mCpFKv&kcnit?Bdnm3VX>BE6lGyr4?`q#Q3==GRK;RfyUtXE)A-X2 z^V@=}OqwuxMqg?cMMdguR>=`6B6|l!;`BY*#|zK-@FstpqoU0p{qH|3wd?%g2HFlr zQHMpLhBj-D9dSack>M16fi~uXlr_tEFwVysBM`_}r+Fpvc5b8`-NM%{Z*!eKBdH7( zDxeZYL{T1Mg_8@h!nmR;`}BVNaqT^0*WV$hMH#}SvR9z>j}a3{a;xb*t6*O#Gdpsd zLs!stJyBsT{gX&~QqZbQOkdF5dZyLqSCsF|nzkBu{p6e(aqGqdyQt`Ql#l2DN`g9n zA9Qa?fFA^JYPsP;LR1}X$U}1+H^@Uyulb{sgtN@z+HX^qDZ}>`7PQ`nKl0AEhkl z(3~^sQ?5iY%A18$Oro1%3xXJJl-=?yFAZAep*Hn;_keft1af3NK|9<=`DM^h7+lM< zOkQ>jj1##7pWhr{RZu?{T$XG?51vSpOgDL4gmG%+`yQm??i5`POL~^HO*jMrNJ

Dgp4?`JDNj&oqyCd^|~FvaQ>JYCf`Ss#pWE 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 z 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

R>GW!2th=_n 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


xbO~HMY=*)i09|jBDSgbHaVXy_l z-;m{H9-Ew(f#i?8n8rf6QMKT(Pv%}y1X-J=W8B)&n?bPyVAms{_QfynVwTk=b#5f0sb_aK=?r#POuhizmp?-^*WV7!18g^eEXd$65t zzbi@FLpS-OWWPNV)|^IhTa4LcsCD?&h54$~%kc(k$XiM+J&a(XHRL_QO~s~T;(qk( z_2LiNcAneWlq5mHpx(w&GObF!4&R$6DHxhvJ^X801oaeVC?XHmbHCU0Wpr$l(0I-2ct~TrGH|D)TDok`VZ(!VFP7JYn*85@Z7!NP7$k3@YGJDsQdv1sozkn zc*TNDPu2tvk2PJRZD>s7>24VvHp>ndm^-3Ku9}0fL{#2v_(&4<2^_f+efWh1Jth(` zx@=ZcGe#l2|L8HWG~L0{Y-4FA2G8^#)X?Hg(NhYoHV1p?HIg}H6&n7sAb#O%vv0(k zV8PL4SEeaa*1h)t_~4l{;-)`|?XnHwcKqGz7uqI@=}%R`CYU+U#ikcXZN%x2;<^Kgp#QGT zMa&feR@L(M5w^CFd8r*-ENE?=n=BOM>U=(%+)$n@>ttOUnFAY=#@cb797{&Ko2b
`K!H)0o2kf_9;NR5n`vKkn@d5%#ee~#PZ94 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
#nQ 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�^l!YnxwN+WWh69Bxuy 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 ykeT(@sr_JpzrLb*tQj(d)z4#s+; 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

^AM4qq>7 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 M6M9c?|7ZLE0k!Wz=Kufz diff --git a/inst/OrcidLog.csv b/inst/OrcidLog.csv index a174464b..74525027 100644 --- a/inst/OrcidLog.csv +++ b/inst/OrcidLog.csv @@ -17,7 +17,7 @@ "0000-0002-4449-8598","Jessica","Shantha","",7,0 "0000-0002-4949-7236","Gowtham","Rao","",653,15 "0000-0002-6662-5850","Rupesh","Agrawal","",7,0 -"0000-0002-6976-2594","Azza","Shoaibi","",84,0 +"0000-0002-6976-2594","Azza","Shoaibi","",88,0 "0000-0002-9612-5697","Brian","Toy","",8,0 "0000-0002-9976-8989","William ","Rojas-Carabali","",7,0 "0000-0003-0755-5191","James","Weaver","",2,0 diff --git a/inst/cohorts/1431.json b/inst/cohorts/1431.json new file mode 100644 index 00000000..f9abda41 --- /dev/null +++ b/inst/cohorts/1431.json @@ -0,0 +1,151116 @@ +{ + "cdmVersionRange" : ">=5.0.0", + "PrimaryCriteria" : { + "CriteriaList" : [ + { + "Measurement" : { + "CorrelatedCriteria" : { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "DrugEra" : { + "CodesetId" : 109 + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 107, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 107, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + }, + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + { + "ConditionOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 63, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 63, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "DrugEra" : { + "CodesetId" : 109 + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 107, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 107, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 20, + "ConditionTypeExclude" : false + } + }, + { + "ConditionOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 64, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 64, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "DrugEra" : { + "CodesetId" : 109 + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 107, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 107, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 21, + "ConditionTypeExclude" : false + } + }, + { + "ConditionOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 65, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 65, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "DrugEra" : { + "CodesetId" : 109 + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 107, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 107, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 22, + "ConditionTypeExclude" : false + } + }, + { + "ConditionOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 66, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 66, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "DrugEra" : { + "CodesetId" : 109 + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 107, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 107, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 23, + "ConditionTypeExclude" : false + } + }, + { + "ConditionOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 67, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 67, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "DrugEra" : { + "CodesetId" : 109 + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 107, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 107, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 24, + "ConditionTypeExclude" : false + } + }, + { + "ConditionOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 68, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 68, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 107, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 107, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "DrugEra" : { + "CodesetId" : 109 + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 25, + "ConditionTypeExclude" : false + } + }, + { + "ConditionOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 69, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 69, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "Observation" : { + "CodesetId" : 107, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 107, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "DrugEra" : { + "CodesetId" : 109 + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 26, + "ConditionTypeExclude" : false + } + }, + { + "ConditionOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 70, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 70, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "DrugEra" : { + "CodesetId" : 109 + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 107, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 107, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 3, + "ConditionTypeExclude" : false + } + }, + { + "ProcedureOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 70, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 70, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "DrugEra" : { + "CodesetId" : 109 + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 107, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 107, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 3, + "ProcedureTypeExclude" : false + } + }, + { + "ConditionOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 71, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 71, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "DrugEra" : { + "CodesetId" : 109 + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 107, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 107, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 14, + "ConditionTypeExclude" : false + } + }, + { + "ConditionOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 72, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 72, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "DrugEra" : { + "CodesetId" : 109 + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 107, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 107, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 17, + "ConditionTypeExclude" : false + } + }, + { + "ConditionOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionEra" : { + "CodesetId" : 73 + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 73, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "DrugEra" : { + "CodesetId" : 109 + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 107, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 107, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 18, + "ConditionTypeExclude" : false + } + }, + { + "ConditionOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 74, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 74, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "DrugEra" : { + "CodesetId" : 109 + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 107, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 107, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 9, + "ConditionTypeExclude" : false + } + }, + { + "ProcedureOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 74, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 74, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "DrugEra" : { + "CodesetId" : 109 + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 107, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 107, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 9, + "ProcedureTypeExclude" : false + } + }, + { + "Observation" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 2, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 2, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "DrugEra" : { + "CodesetId" : 109 + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 107, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 107, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 55, + "ObservationTypeExclude" : false + } + }, + { + "ProcedureOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 2, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 2, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "DrugEra" : { + "CodesetId" : 109 + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 107, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 107, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 55, + "ProcedureTypeExclude" : false + } + }, + { + "ConditionOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 2, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 2, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "DrugEra" : { + "CodesetId" : 109 + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 107, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 107, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 55, + "ConditionTypeExclude" : false + } + }, + { + "Observation" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 2, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 2, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 55, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 55, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 55, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "DrugEra" : { + "CodesetId" : 109 + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 107, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 107, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 7, + "ObservationTypeExclude" : false + } + }, + { + "ConditionOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 2, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 2, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 55, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 55, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 55, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 107, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "DrugEra" : { + "CodesetId" : 109 + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 107, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 7, + "ConditionTypeExclude" : false + } + }, + { + "ProcedureOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 2, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 2, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 7, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 7, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 55, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 55, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 55, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "Observation" : { + "CodesetId" : 107, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 107, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "DrugEra" : { + "CodesetId" : 109 + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 8, + "ProcedureTypeExclude" : false + } + }, + { + "Measurement" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : true, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 2, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 2, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 7, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 7, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 55, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 55, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 55, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "Observation" : { + "CodesetId" : 107, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 107, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "DrugEra" : { + "CodesetId" : 109 + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 8, + "MeasurementTypeExclude" : false + } + }, + { + "ConditionOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 2, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 2, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 55, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 55, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 55, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "DrugEra" : { + "CodesetId" : 109 + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 107, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 107, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 113, + "ConditionTypeExclude" : false + } + }, + { + "ConditionOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 2, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 2, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 55, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 55, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 55, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "DrugEra" : { + "CodesetId" : 109 + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 107, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 107, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 111, + "ConditionTypeExclude" : false + } + }, + { + "Measurement" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 2, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 2, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 55, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 55, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 55, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "DrugEra" : { + "CodesetId" : 109 + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 107, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 107, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 111, + "MeasurementTypeExclude" : false + } + }, + { + "Observation" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 2, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 2, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 55, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 55, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 55, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "DrugEra" : { + "CodesetId" : 109 + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 107, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 107, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 111, + "ObservationTypeExclude" : false + } + }, + { + "ProcedureOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 2, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 2, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 55, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 55, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 55, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "DrugEra" : { + "CodesetId" : 109 + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 107, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 107, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 111, + "ProcedureTypeExclude" : false + } + }, + { + "ConditionOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 2, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 2, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 55, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 55, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 55, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "DrugEra" : { + "CodesetId" : 109 + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 107, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 107, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 56, + "ConditionTypeExclude" : false + } + }, + { + "Observation" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 2, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 2, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 55, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 55, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 55, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "DrugEra" : { + "CodesetId" : 109 + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 107, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 107, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 56, + "ObservationTypeExclude" : false + } + }, + { + "ProcedureOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 2, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 2, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 55, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 55, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 55, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "DrugEra" : { + "CodesetId" : 109 + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 107, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 107, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 56, + "ProcedureTypeExclude" : false + } + }, + { + "Observation" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 2, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 2, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 55, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 55, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 55, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "DrugEra" : { + "CodesetId" : 109 + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 107, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 107, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 112, + "ObservationTypeExclude" : false + } + }, + { + "ConditionOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 2, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 2, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 55, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 55, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 55, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "DrugEra" : { + "CodesetId" : 109 + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 107, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 107, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 112, + "ConditionTypeExclude" : false + } + }, + { + "ProcedureOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 2, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 2, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 55, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 55, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 55, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "DrugEra" : { + "CodesetId" : 109 + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 107, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 107, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 112, + "ProcedureTypeExclude" : false + } + }, + { + "Measurement" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 2, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 2, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 55, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 55, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 55, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "DrugEra" : { + "CodesetId" : 109 + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 107, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 107, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 112, + "MeasurementTypeExclude" : false + } + }, + { + "ProcedureOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 2, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 2, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 55, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 55, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 55, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 7, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : 1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 7, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 8, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : 1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 8, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : 1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + }, + "CodesetId" : 107, + "ProcedureTypeExclude" : false + } + }, + { + "DrugEra" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 2, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 2, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 55, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 55, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 55, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 7, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : 1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 7, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : 1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 8, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : 1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 8, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : 1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + }, + "CodesetId" : 109 + } + }, + { + "Observation" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 2, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 2, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 55, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 55, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 55, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 7, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : 1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 7, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 8, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : 1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 8, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : 1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + }, + "CodesetId" : 107, + "ObservationTypeExclude" : false + } + } + ], + "ObservationWindow" : { + "PriorDays" : 0, + "PostDays" : 0 + }, + "PrimaryCriteriaLimit" : { + "Type" : "All" + } + }, + "ConceptSets" : [ + { + "id" : 0, + "name" : "Delivery (DELIV)", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4130321, + "CONCEPT_NAME" : "Abdominal delivery for shoulder dystocia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "236989008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439402, + "CONCEPT_NAME" : "Abnormal glucose tolerance test during pregnancy - baby delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "372055003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4155282, + "CONCEPT_NAME" : "Abnormal glucose tolerance test in the puerperium - baby delivered during current episode of care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "372051007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437936, + "CONCEPT_NAME" : "Amniotic cavity infection - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199677008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4248954, + "CONCEPT_NAME" : "Amniotomy at delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "408817009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432968, + "CONCEPT_NAME" : "Anemia during pregnancy - baby delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199244000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442923, + "CONCEPT_NAME" : "Anemia in the puerperium - baby delivered during current episode of care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199245004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442922, + "CONCEPT_NAME" : "Anemia in the puerperium - baby delivered during previous episode of care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199247007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2101814, + "CONCEPT_NAME" : "Anesthesia for cesarean delivery following neuraxial labor analgesia/anesthesia (List separately in addition to code for primary procedure performed)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "01968", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441649, + "CONCEPT_NAME" : "Antenatal deep vein thrombosis - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200232006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443133, + "CONCEPT_NAME" : "Antepartum hemorrhage with coagulation defect - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198917009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4075168, + "CONCEPT_NAME" : "Assisted breech delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177158008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 76761, + "CONCEPT_NAME" : "Asymptomatic bacteriuria in pregnancy - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199099004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 73526, + "CONCEPT_NAME" : "Asymptomatic bacteriuria in pregnancy - delivered with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199100007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4078138, + "CONCEPT_NAME" : "Baby normal at birth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "275735001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4075169, + "CONCEPT_NAME" : "Barton forceps cephalic delivery with rotation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177167008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4147974, + "CONCEPT_NAME" : "Barton's forceps delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "30476003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 314103, + "CONCEPT_NAME" : "Benign essential hypertension complicating pregnancy, childbirth and the puerperium - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198944004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 320456, + "CONCEPT_NAME" : "Benign essential hypertension complicating pregnancy, childbirth and the puerperium - delivered with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198945003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014291, + "CONCEPT_NAME" : "Birth detail", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169811007", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Observable Entity" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4016064, + "CONCEPT_NAME" : "Birth details not known", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169963001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015277, + "CONCEPT_NAME" : "Birth head circumference", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169876006", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Observable Entity" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015270, + "CONCEPT_NAME" : "Birth of child", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169836001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4192676, + "CONCEPT_NAME" : "Born by cesarean section", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "394699000", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 77624, + "CONCEPT_NAME" : "Breast engorgement in pregnancy, the puerperium or lactation - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200418007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 81086, + "CONCEPT_NAME" : "Breast engorgement in pregnancy, the puerperium or lactation - delivered with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200419004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3662128, + "CONCEPT_NAME" : "Breech delivery following termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1147961000000102", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 436767, + "CONCEPT_NAME" : "Breech extraction - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200142000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4075165, + "CONCEPT_NAME" : "Breech extraction delivery with version", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177152009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 73537, + "CONCEPT_NAME" : "Breech presentation - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199354004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4235752, + "CONCEPT_NAME" : "Central laceration during delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90532005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3662129, + "CONCEPT_NAME" : "Cephalic delivery following termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1147971000000109", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4071629, + "CONCEPT_NAME" : "Cephalic vaginal delivery with abnormal presentation of head at delivery without instrument", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177179008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441369, + "CONCEPT_NAME" : "Cervical incompetence - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199482005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435607, + "CONCEPT_NAME" : "Cervical incompetence - delivered with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199483000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437942, + "CONCEPT_NAME" : "Cesarean delivery - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200146002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110316, + "CONCEPT_NAME" : "Cesarean delivery only", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59514", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110323, + "CONCEPT_NAME" : "Cesarean delivery only, following attempted vaginal delivery after previous cesarean delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59620", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4165077, + "CONCEPT_NAME" : "Cesarean hysterectomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "41059002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015701, + "CONCEPT_NAME" : "Cesarean section", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "11466000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004789, + "CONCEPT_NAME" : "Cesarean section of other specified type", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "74.4", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "3-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42872492, + "CONCEPT_NAME" : "Cesarean section through inverted T shaped incision of uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "450483001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42872493, + "CONCEPT_NAME" : "Cesarean section through J shaped incision of uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "450484007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4152029, + "CONCEPT_NAME" : "Childbirth examination - normal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "268484008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014738, + "CONCEPT_NAME" : "Child examination - birth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "170099002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4223536, + "CONCEPT_NAME" : "Classical cesarean section", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84195007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37208486, + "CONCEPT_NAME" : "Clitoral tear during delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1105801000000107", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4034145, + "CONCEPT_NAME" : "Complete breech delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237311001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 194707, + "CONCEPT_NAME" : "Congenital abnormality of uterus - baby delivered with postpartum complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "267215001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 315013, + "CONCEPT_NAME" : "Congenital cardiovascular disorder during pregnancy - baby delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199266007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435879, + "CONCEPT_NAME" : "Congenital or acquired abnormality of vulva - baby delivered with postpartum complication", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "267248001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4129041, + "CONCEPT_NAME" : "Cord beside head", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237306003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433270, + "CONCEPT_NAME" : "Cord entanglement without compression", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "11209007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439092, + "CONCEPT_NAME" : "Cord tangled with compression - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199880007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 75882, + "CONCEPT_NAME" : "Deep transverse arrest - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199774009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441361, + "CONCEPT_NAME" : "Delayed delivery after artificial rupture of membranes", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "35347003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4075190, + "CONCEPT_NAME" : "DeLee forceps cephalic delivery with rotation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177168003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440793, + "CONCEPT_NAME" : "Deliveries by breech extraction", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "271370008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 193277, + "CONCEPT_NAME" : "Deliveries by cesarean", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200144004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4106406, + "CONCEPT_NAME" : "Delivery by double application of forceps", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "29613008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061457, + "CONCEPT_NAME" : "Delivery by elective cesarean section", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200148001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4066112, + "CONCEPT_NAME" : "Delivery by emergency cesarean section", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200149009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4232028, + "CONCEPT_NAME" : "Delivery by Kielland rotation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "89346004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4234710, + "CONCEPT_NAME" : "Delivery by Malstrom's extraction", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90438006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4223638, + "CONCEPT_NAME" : "Delivery by Malstrom's extraction with episiotomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40219000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4278225, + "CONCEPT_NAME" : "Delivery by midwife", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65243006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4100410, + "CONCEPT_NAME" : "Delivery by Scanzoni maneuver", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25296001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4189205, + "CONCEPT_NAME" : "Delivery by vacuum extraction", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "61586001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4096145, + "CONCEPT_NAME" : "Delivery by vacuum extraction with episiotomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26313002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038495, + "CONCEPT_NAME" : "Delivery finding", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "118215003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441641, + "CONCEPT_NAME" : "Delivery normal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48782003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40551541, + "CONCEPT_NAME" : "Delivery of cephalic presentation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "384730009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4056129, + "CONCEPT_NAME" : "Delivery of face presentation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16819009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42872805, + "CONCEPT_NAME" : "Delivery of occipitoposterior presentation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "450798003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4130319, + "CONCEPT_NAME" : "Delivery of the after coming head", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "236982004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4293034, + "CONCEPT_NAME" : "Delivery of vertex presentation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "384729004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443012, + "CONCEPT_NAME" : "Diabetes mellitus during pregnancy - baby delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199225007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4062685, + "CONCEPT_NAME" : "Diabetes mellitus in the puerperium - baby delivered during current episode of care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199226008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4309425, + "CONCEPT_NAME" : "Dilation and curettage of uterus after delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "391998006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 198486, + "CONCEPT_NAME" : "Disproportion - major pelvic abnormality - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199400000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4134722, + "CONCEPT_NAME" : "Disruption of episiotomy wound in the puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "398262004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442915, + "CONCEPT_NAME" : "Drug dependence during pregnancy - baby delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199252002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 133816, + "CONCEPT_NAME" : "Eclampsia - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198990007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443321, + "CONCEPT_NAME" : "Edema or excessive weight gain in pregnancy without mention of hypertension, delivered with mention of postpartum complication", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "199075004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440794, + "CONCEPT_NAME" : "Elderly primigravida - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199718001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4075182, + "CONCEPT_NAME" : "Elective cesarean section", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177141003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4075161, + "CONCEPT_NAME" : "Elective lower segment cesarean section", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177143000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42536960, + "CONCEPT_NAME" : "Elective lower segment cesarean section with bilateral tubal ligation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "736026009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4075160, + "CONCEPT_NAME" : "Elective upper segment cesarean section", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177142005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42536952, + "CONCEPT_NAME" : "Elective upper segment cesarean section with bilateral tubal ligation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "736018001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4167089, + "CONCEPT_NAME" : "Emergency cesarean section", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "274130007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4127252, + "CONCEPT_NAME" : "Emergency lower segment cesarean section", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "236985002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42537021, + "CONCEPT_NAME" : "Emergency lower segment cesarean section with bilateral tubal ligation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "736118004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 46270991, + "CONCEPT_NAME" : "Emergency lower segment cesarean section with inverted T incision", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "709004006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4032767, + "CONCEPT_NAME" : "Emergency upper segment cesarean section", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "236986001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42536954, + "CONCEPT_NAME" : "Emergency upper segment cesarean section with bilateral tubal ligation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "736020003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4272812, + "CONCEPT_NAME" : "Episioproctotomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63407004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4311671, + "CONCEPT_NAME" : "Episiotomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "85548006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44513763, + "CONCEPT_NAME" : "Episiotomy to facilitate delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "R27.1", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "OPCS4", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4211824, + "CONCEPT_NAME" : "Extraperitoneal cesarean section", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57271003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45757775, + "CONCEPT_NAME" : "Failed attempted vaginal birth after previous cesarean section", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "38451000119105", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441924, + "CONCEPT_NAME" : "Failed mechanical induction - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199694005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443521, + "CONCEPT_NAME" : "Failed trial of labor - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "413339006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 193535, + "CONCEPT_NAME" : "Fetal-maternal hemorrhage - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199577000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 72697, + "CONCEPT_NAME" : "Fetus with chromosomal abnormality - delivered", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "199526007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4063296, + "CONCEPT_NAME" : "Fetus with damage due to intrauterine contraceptive device - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199560000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4064177, + "CONCEPT_NAME" : "Fetus with drug damage - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199549009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4064171, + "CONCEPT_NAME" : "Fetus with hereditary disease - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199533007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4064174, + "CONCEPT_NAME" : "Fetus with viral damage via mother - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199538003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 192978, + "CONCEPT_NAME" : "First degree perineal tear during delivery - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199916005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 199088, + "CONCEPT_NAME" : "First degree perineal tear during delivery with postnatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199917001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4217642, + "CONCEPT_NAME" : "Footling breech delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72492007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4075187, + "CONCEPT_NAME" : "Forceps cephalic delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177161009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4114637, + "CONCEPT_NAME" : "Forceps delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "302383004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435022, + "CONCEPT_NAME" : "Forceps delivery - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200130005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4032761, + "CONCEPT_NAME" : "Forceps delivery, face to pubes", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "236977006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4324549, + "CONCEPT_NAME" : "Forceps delivery with rotation of fetal head", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "71166009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004702, + "CONCEPT_NAME" : "Forceps, vacuum, and breech delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "2-dig nonbill code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 194429, + "CONCEPT_NAME" : "Fourth degree perineal tear during delivery - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199934009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4244672, + "CONCEPT_NAME" : "Frank breech delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "38479009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 74440, + "CONCEPT_NAME" : "Galactorrhea in pregnancy and the puerperium - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200446009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 77052, + "CONCEPT_NAME" : "Generally contracted pelvis - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199405005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4091200, + "CONCEPT_NAME" : "Genital tear resulting from childbirth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "249219008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 81357, + "CONCEPT_NAME" : "Genitourinary tract infection in pregnancy - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199106001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 80778, + "CONCEPT_NAME" : "Genitourinary tract infection in pregnancy - delivered with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199107005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4009879, + "CONCEPT_NAME" : "Good neonatal condition at birth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "102500002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014452, + "CONCEPT_NAME" : "GP unit birth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169814004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434110, + "CONCEPT_NAME" : "Grand multiparity - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199714004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4032764, + "CONCEPT_NAME" : "Groin traction at breech delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "236980007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435323, + "CONCEPT_NAME" : "Hemorrhage in early pregnancy, delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "81448000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44513743, + "CONCEPT_NAME" : "High forceps cephalic delivery NEC", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "R21.2", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "OPCS4", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4075188, + "CONCEPT_NAME" : "High forceps cephalic delivery with rotation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177162002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4231702, + "CONCEPT_NAME" : "High forceps delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "89849000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4035778, + "CONCEPT_NAME" : "High forceps delivery with episiotomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15413009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 77615, + "CONCEPT_NAME" : "High head at term - delivered", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "199375007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4075170, + "CONCEPT_NAME" : "High vacuum delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177173009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441630, + "CONCEPT_NAME" : "History of recurrent miscarriage - delivered", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199087006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014451, + "CONCEPT_NAME" : "Home birth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169813005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 73538, + "CONCEPT_NAME" : "Hydrocephalic disproportion - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199427001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 436173, + "CONCEPT_NAME" : "Hyperemesis gravidarum with metabolic disturbance - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199027009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4064834, + "CONCEPT_NAME" : "Hypertonic uterine inertia - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199838008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004771, + "CONCEPT_NAME" : "Incision of cervix to assist delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "73.93", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 77621, + "CONCEPT_NAME" : "Inlet pelvic contraction - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199409004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4128031, + "CONCEPT_NAME" : "Instrumental delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "236974004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40760193, + "CONCEPT_NAME" : "Labor and delivery process Narrative", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57074-7", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Clinical Observation" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 80782, + "CONCEPT_NAME" : "Large fetus causing disproportion - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199422007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441082, + "CONCEPT_NAME" : "Late pregnancy vomiting - delivered", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "199032005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 196170, + "CONCEPT_NAME" : "Liver disorder in pregnancy - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199117000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004786, + "CONCEPT_NAME" : "Low cervical cesarean section", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "74.1", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "3-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4161944, + "CONCEPT_NAME" : "Low cervical cesarean section", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "398307005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37312440, + "CONCEPT_NAME" : "Lower uterine segment cesarean section", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "788180009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44513746, + "CONCEPT_NAME" : "Low forceps cephalic delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "R21.5", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "OPCS4", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4088084, + "CONCEPT_NAME" : "Low forceps delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "18625004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4075735, + "CONCEPT_NAME" : "Low forceps delivery with episiotomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "17860005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4075191, + "CONCEPT_NAME" : "Low vacuum delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177174003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4071505, + "CONCEPT_NAME" : "Manipulative cephalic vaginal delivery with abnormal presentation of head at delivery without instrument", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177180006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4069969, + "CONCEPT_NAME" : "Manual removal of placenta from delivered uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177204008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 313829, + "CONCEPT_NAME" : "Maternal hypotension syndrome - delivered with postnatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200112003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438206, + "CONCEPT_NAME" : "Maternal rubella during pregnancy - baby delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199192005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435606, + "CONCEPT_NAME" : "Maternal syphilis during pregnancy - baby delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199156006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442920, + "CONCEPT_NAME" : "Mental disorder during pregnancy - baby delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199259006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442919, + "CONCEPT_NAME" : "Mental disorder in the puerperium - baby delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199260001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44513745, + "CONCEPT_NAME" : "Mid forceps cephalic delivery NEC", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "R21.4", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "OPCS4", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4075189, + "CONCEPT_NAME" : "Midforceps cephalic delivery with rotation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177164001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4266683, + "CONCEPT_NAME" : "Mid forceps delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "62508004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4093774, + "CONCEPT_NAME" : "Mid forceps delivery with episiotomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25828002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4143647, + "CONCEPT_NAME" : "Midforceps delivery without rotation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "265639000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42535817, + "CONCEPT_NAME" : "Mid vacuum delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "734276001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 72970, + "CONCEPT_NAME" : "Mixed feto-pelvic disproportion - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199418002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433260, + "CONCEPT_NAME" : "Mother delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "289256000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4063163, + "CONCEPT_NAME" : "Multiple delivery, all by cesarean section", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199331008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4063162, + "CONCEPT_NAME" : "Multiple delivery, all by forceps and vacuum extractor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199330009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4059751, + "CONCEPT_NAME" : "Multiple delivery, all spontaneous", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199329004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42539267, + "CONCEPT_NAME" : "Multiple liveborn in hospital by vaginal delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16089691000119102", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442082, + "CONCEPT_NAME" : "Multiple pregnancy with malpresentation - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199380003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2101016, + "CONCEPT_NAME" : "Neuraxial analgesia/anesthesia for labor ending in a cesarean delivery (includes any repeat subarachnoid needle placement and drug injection and/or any necessary replacement of an epidural catheter during labor) (Deprecated)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "00857", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4071630, + "CONCEPT_NAME" : "Non-manipulative cephalic vaginal delivery with abnormal presentation of head at delivery without instrument", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177181005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4127248, + "CONCEPT_NAME" : "Nonrotational forceps delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "236975003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014720, + "CONCEPT_NAME" : "Normal birth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169961004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4063160, + "CONCEPT_NAME" : "Normal delivery but ante- or post- natal conditions present", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199314001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4071507, + "CONCEPT_NAME" : "Normal delivery procedure", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177184002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442053, + "CONCEPT_NAME" : "Obstetric blood-clot pulmonary embolism - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200301007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 74433, + "CONCEPT_NAME" : "Obstetric breast abscess - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200374003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 78494, + "CONCEPT_NAME" : "Obstetric breast abscess - delivered with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200375002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 75326, + "CONCEPT_NAME" : "Obstetric damage to pelvic joints and ligaments - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199990003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 193269, + "CONCEPT_NAME" : "Obstetric high vaginal laceration - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199979008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 197048, + "CONCEPT_NAME" : "Obstetric inversion of uterus - delivered with postnatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199969006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442080, + "CONCEPT_NAME" : "Obstetric laceration of cervix - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199974003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 79897, + "CONCEPT_NAME" : "Obstetric non-purulent mastitis - delivered with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200382003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 201368, + "CONCEPT_NAME" : "Obstetric pelvic hematoma - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199995008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 193271, + "CONCEPT_NAME" : "Obstetric pelvic hematoma - delivered with postnatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199996009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 195025, + "CONCEPT_NAME" : "Obstetric shock - delivered with postnatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200106008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 199087, + "CONCEPT_NAME" : "Obstructed labor caused by bony pelvis - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199759007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 196182, + "CONCEPT_NAME" : "Obstructed labor caused by pelvic soft tissues - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199769001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 194711, + "CONCEPT_NAME" : "Obstructed labor due to fetal malposition - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199749006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433274, + "CONCEPT_NAME" : "Oligohydramnios - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199653002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004767, + "CONCEPT_NAME" : "Operations on fetus to facilitate delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "73.8", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "3-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004802, + "CONCEPT_NAME" : "Other cesarean section of unspecified type", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "74.99", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004765, + "CONCEPT_NAME" : "Other manually assisted delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "73.59", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004768, + "CONCEPT_NAME" : "Other operations assisting delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "73.9", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "3-dig nonbill code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004783, + "CONCEPT_NAME" : "Other operations assisting delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "73.99", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4191809, + "CONCEPT_NAME" : "Other procedures inducing or assisting delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "73", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "2-dig nonbill code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44513736, + "CONCEPT_NAME" : "Other specified breech extraction delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "R19.8", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "OPCS4", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44513756, + "CONCEPT_NAME" : "Other specified cephalic vaginal delivery with abnormal presentation of head at delivery without instrument", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "R23.8", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "OPCS4", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44513729, + "CONCEPT_NAME" : "Other specified elective caesarean delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "R17.8", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "OPCS4", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44513747, + "CONCEPT_NAME" : "Other specified forceps cephalic delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "R21.8", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "OPCS4", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004731, + "CONCEPT_NAME" : "Other specified instrumental delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72.8", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "3-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44513740, + "CONCEPT_NAME" : "Other specified other breech delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "R20.8", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "OPCS4", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44513733, + "CONCEPT_NAME" : "Other specified other caesarean delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "R18.8", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "OPCS4", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44513752, + "CONCEPT_NAME" : "Other specified vacuum delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "R22.8", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "OPCS4", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4145318, + "CONCEPT_NAME" : "Outcome of delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "268475008", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Observable Entity" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4127249, + "CONCEPT_NAME" : "Outlet forceps delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "236976002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 73824, + "CONCEPT_NAME" : "Outlet pelvic contraction - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199413006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42535816, + "CONCEPT_NAME" : "Outlet vacuum delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "734275002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4234421, + "CONCEPT_NAME" : "Partial breech delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "359943008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4023797, + "CONCEPT_NAME" : "Partial breech delivery with forceps to aftercoming head", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "19390001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4307825, + "CONCEPT_NAME" : "Perineal hematoma during delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "83094001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4073438, + "CONCEPT_NAME" : "Piper forceps delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177170007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 193539, + "CONCEPT_NAME" : "Placental abruption - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198910006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4172142, + "CONCEPT_NAME" : "Placenta previa found before labor AND delivery by cesarean section without hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48888007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 193264, + "CONCEPT_NAME" : "Placenta previa with hemorrhage - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198905007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 201359, + "CONCEPT_NAME" : "Placenta previa without hemorrhage - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198899007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014292, + "CONCEPT_NAME" : "Place of birth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169812000", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Observable Entity" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434427, + "CONCEPT_NAME" : "Polyhydramnios - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199646006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435031, + "CONCEPT_NAME" : "Postnatal deep vein thrombosis - delivered with postnatal complication", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "200237000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441363, + "CONCEPT_NAME" : "Postpartum coagulation defects - delivered with postnatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200030007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438220, + "CONCEPT_NAME" : "Precipitate labor - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199833004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 200160, + "CONCEPT_NAME" : "Premature rupture of membranes - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199658006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37110284, + "CONCEPT_NAME" : "Preterm delivery following Cesarean section", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "724489002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37110283, + "CONCEPT_NAME" : "Preterm delivery following induction of labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "724488005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45757175, + "CONCEPT_NAME" : "Preterm labor in second trimester with preterm delivery in second trimester", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10761141000119107", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45757176, + "CONCEPT_NAME" : "Preterm labor in third trimester with preterm delivery in third trimester", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10761191000119104", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36712702, + "CONCEPT_NAME" : "Preterm labor with preterm delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10761241000119104", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44784550, + "CONCEPT_NAME" : "Preterm spontaneous labor with preterm delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "698716002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44784551, + "CONCEPT_NAME" : "Preterm spontaneous labor with term delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "698717006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 196762, + "CONCEPT_NAME" : "Primary uterine inertia - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199819004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 72692, + "CONCEPT_NAME" : "Prolapsed arm - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199384007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440476, + "CONCEPT_NAME" : "Prolapse of cord", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "270500004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441645, + "CONCEPT_NAME" : "Prolapse of cord - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199869007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440475, + "CONCEPT_NAME" : "Prolonged first stage - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199847000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434431, + "CONCEPT_NAME" : "Prolonged second stage - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199857004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442419, + "CONCEPT_NAME" : "Puerperal cerebrovascular disorder - delivered", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "200330000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442418, + "CONCEPT_NAME" : "Puerperal cerebrovascular disorder - delivered with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200331001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4065749, + "CONCEPT_NAME" : "Puerperal endometritis - delivered with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200181000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434713, + "CONCEPT_NAME" : "Puerperal pyrexia of unknown origin - delivered with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200280009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438481, + "CONCEPT_NAME" : "Quadruplet pregnancy - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199325005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 200157, + "CONCEPT_NAME" : "Renal hypertension complicating pregnancy, childbirth and the puerperium - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198951008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442078, + "CONCEPT_NAME" : "Retained placenta with no hemorrhage - delivered with postnatal problem", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "200037005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 198216, + "CONCEPT_NAME" : "Retroverted incarcerated gravid uterus - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199468005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 195878, + "CONCEPT_NAME" : "Rhesus isoimmunization - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199582007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4127253, + "CONCEPT_NAME" : "Right mediolateral episiotomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "236992007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4121924, + "CONCEPT_NAME" : "Routine episiotomy and repair", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "288194000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 198816, + "CONCEPT_NAME" : "Rupture of uterus before labor - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199960005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 192699, + "CONCEPT_NAME" : "Rupture of uterus during and after labor - delivered", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "199964001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4064960, + "CONCEPT_NAME" : "Rupture of uterus during and after labor - delivered with postnatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199965000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4065618, + "CONCEPT_NAME" : "Secondary postpartum hemorrhage - delivered with postnatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200025008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 192384, + "CONCEPT_NAME" : "Secondary uterine inertia - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199824001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 198499, + "CONCEPT_NAME" : "Second degree perineal tear during delivery - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199925004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4264738, + "CONCEPT_NAME" : "Separation of symphysis pubis during delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "61007003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438490, + "CONCEPT_NAME" : "Severe pre-eclampsia - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198983002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439077, + "CONCEPT_NAME" : "Severe pre-eclampsia - delivered with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198984008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4092760, + "CONCEPT_NAME" : "Sex of baby at delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "281053000", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Observable Entity" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435020, + "CONCEPT_NAME" : "Short cord - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199889008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 80474, + "CONCEPT_NAME" : "Shoulder dystocia - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199783004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4170152, + "CONCEPT_NAME" : "Simpson's forceps delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "275169009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36713074, + "CONCEPT_NAME" : "Single liveborn born in hospital by vaginal delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "17561000119102", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4073422, + "CONCEPT_NAME" : "Spontaneous breech delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177157003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4167497, + "CONCEPT_NAME" : "Spontaneous unassisted delivery, medical personnel present", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48204000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4205240, + "CONCEPT_NAME" : "Spontaneous vertex delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "309469004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110318, + "CONCEPT_NAME" : "Subtotal or total hysterectomy after cesarean delivery (List separately in addition to code for primary procedure)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59525", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439094, + "CONCEPT_NAME" : "Superficial thrombophlebitis in pregnancy and the puerperium - delivered", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "200224003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439095, + "CONCEPT_NAME" : "Superficial thrombophlebitis in pregnancy and the puerperium - delivered with postnatal complication", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "267283002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 193275, + "CONCEPT_NAME" : "Third degree perineal tear during delivery - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199930000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3186670, + "CONCEPT_NAME" : "Threatened premature labor - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "480001000004104", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "Nebraska Lexicon", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 136755, + "CONCEPT_NAME" : "Thyroid dysfunction during pregnancy - baby delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199237009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 138207, + "CONCEPT_NAME" : "Thyroid dysfunction in the puerperium - baby delivered during current episode of care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199238004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4204679, + "CONCEPT_NAME" : "Total breech delivery with forceps to aftercoming head", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54973000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 137940, + "CONCEPT_NAME" : "Transient hypertension of pregnancy - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198965005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4063171, + "CONCEPT_NAME" : "Transverse lie - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199362007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4174854, + "CONCEPT_NAME" : "Trauma from instrument during delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "42599006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4267072, + "CONCEPT_NAME" : "Traumatic extension of episiotomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36497006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439093, + "CONCEPT_NAME" : "Traumatic lesion during delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64229006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432975, + "CONCEPT_NAME" : "Trauma to perineum and/or vulva during delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "267268007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4161678, + "CONCEPT_NAME" : "Trauma to perineum during delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "397952002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3655718, + "CONCEPT_NAME" : "Trauma to urethra and bladder during delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "866229004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4134431, + "CONCEPT_NAME" : "Trauma to vagina during delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "128077009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4326563, + "CONCEPT_NAME" : "Trauma to vulva during delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7504005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4290245, + "CONCEPT_NAME" : "Trial forceps delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "69422002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4073424, + "CONCEPT_NAME" : "Trial of vacuum delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177176001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440462, + "CONCEPT_NAME" : "Triplet pregnancy - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199321001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 196181, + "CONCEPT_NAME" : "Tumor of uterine body - baby delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "267221002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 197049, + "CONCEPT_NAME" : "Tumor of uterine body - baby delivered with postpartum complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "267222009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4101844, + "CONCEPT_NAME" : "Twin birth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "28030000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42535052, + "CONCEPT_NAME" : "Twin live born in hospital by vaginal delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "151441000119105", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435018, + "CONCEPT_NAME" : "Twin pregnancy - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199317008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060157, + "CONCEPT_NAME" : "Umbilical cord tight around neck - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199874004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110342, + "CONCEPT_NAME" : "Unlisted procedure, maternity care and delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59899", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004742, + "CONCEPT_NAME" : "Unspecified instrumental delivery", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72.9", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "3-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 79889, + "CONCEPT_NAME" : "Unstable lie - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199344003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45757158, + "CONCEPT_NAME" : "Uterine laceration during delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10760261000119106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4075171, + "CONCEPT_NAME" : "Vacuum delivery before full dilation of cervix", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177175002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442069, + "CONCEPT_NAME" : "Vacuum extractor delivery - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200138003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 193544, + "CONCEPT_NAME" : "Vaginal abnormality - baby delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "267240008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4228344, + "CONCEPT_NAME" : "Vaginal cesarean section", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "89053004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4331179, + "CONCEPT_NAME" : "Vaginal delivery, medical personnel present", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "22633006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44784097, + "CONCEPT_NAME" : "Vaginal delivery of fetus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "700000006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110320, + "CONCEPT_NAME" : "Vaginal delivery only, after previous cesarean delivery (with or without episiotomy and/or forceps)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59612", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110308, + "CONCEPT_NAME" : "Vaginal delivery only (with or without episiotomy and/or forceps)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59409", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4167018, + "CONCEPT_NAME" : "Vaginal delivery with forceps including postpartum care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45718005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442059, + "CONCEPT_NAME" : "Varicose veins of legs in pregnancy and the puerperium - delivered", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "200206000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435610, + "CONCEPT_NAME" : "Varicose veins of perineum and vulva in pregnancy and the puerperium - delivered", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "200215007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435609, + "CONCEPT_NAME" : "Vasa previa - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199895009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 321367, + "CONCEPT_NAME" : "Vascular lesions of cord - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199900008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443246, + "CONCEPT_NAME" : "Vulval abnormality - baby delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "267247006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441087, + "CONCEPT_NAME" : "Vulval and/or perineal hematoma during delivery - delivered", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "199944006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4071632, + "CONCEPT_NAME" : "Water birth delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177185001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40394878, + "CONCEPT_NAME" : "[X]Delivery", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "200548008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 1, + "name" : "Livebirth (LB)", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4092289, + "CONCEPT_NAME" : "Livebirth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "281050002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4307044, + "CONCEPT_NAME" : "Live birth surviving more than one year", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "390959009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40482735, + "CONCEPT_NAME" : "Liveborn born in hospital", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "442311008", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40483126, + "CONCEPT_NAME" : "Liveborn born in hospital by cesarean section", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "442365008", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4163851, + "CONCEPT_NAME" : "Multiple birth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45384004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36713468, + "CONCEPT_NAME" : "Multiple liveborn other than twins born in hospital", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "717807001", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3174212, + "CONCEPT_NAME" : "Premature 28 week quadruplet", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7550001000004101", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "Nebraska Lexicon", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4097427, + "CONCEPT_NAME" : "Premature birth of fraternal twins, both living", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25192009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4147043, + "CONCEPT_NAME" : "Premature birth of fraternal twins, one living, one stillborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "30165006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4142021, + "CONCEPT_NAME" : "Premature birth of identical twins, both living", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "34100008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4310910, + "CONCEPT_NAME" : "Premature birth of identical twins, one living, one stillborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "39213008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4069200, + "CONCEPT_NAME" : "Premature birth of multiple newborns", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "20272009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4145125, + "CONCEPT_NAME" : "Premature birth of newborn quadruplets", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "34089005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4082863, + "CONCEPT_NAME" : "Premature birth of newborn quintuplets", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "24146004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4008884, + "CONCEPT_NAME" : "Premature birth of newborn sextuplets", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "112075006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4107401, + "CONCEPT_NAME" : "Premature birth of newborn triplets", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "29997008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4029786, + "CONCEPT_NAME" : "Premature birth of newborn twins", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13859001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45765500, + "CONCEPT_NAME" : "Quadruplet birth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "702452007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45757166, + "CONCEPT_NAME" : "Quadruplets, all live born", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10760701000119102", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45773428, + "CONCEPT_NAME" : "Quadruplets, some live born", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10760741000119100", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45765501, + "CONCEPT_NAME" : "Quintuplet birth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "702453002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45757167, + "CONCEPT_NAME" : "Quintuplets, all live born", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10760781000119105", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45757168, + "CONCEPT_NAME" : "Quintuplets, some live born", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10760821000119100", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45765502, + "CONCEPT_NAME" : "Sextuplet birth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "702454008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45772082, + "CONCEPT_NAME" : "Sextuplets, all live born", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10760861000119105", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45757169, + "CONCEPT_NAME" : "Sextuplets, some live born", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10760901000119104", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014295, + "CONCEPT_NAME" : "Single live birth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169826009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40483521, + "CONCEPT_NAME" : "Single liveborn born in hospital by cesarean section", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "442423001", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36713465, + "CONCEPT_NAME" : "Singleton liveborn born in hospital", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "717803002", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4227728, + "CONCEPT_NAME" : "Term birth of fraternal twins, both living", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87662006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4330570, + "CONCEPT_NAME" : "Term birth of fraternal twins, one living, one stillborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "22514005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4049333, + "CONCEPT_NAME" : "Term birth of identical twins, both living", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15467003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4243026, + "CONCEPT_NAME" : "Term birth of identical twins, one living, one stillborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "38257001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4066292, + "CONCEPT_NAME" : "Term birth of multiple newborns", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "17333005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4193224, + "CONCEPT_NAME" : "Term birth of newborn quadruplets", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7888004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336090, + "CONCEPT_NAME" : "Term birth of newborn quintuplets", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86803008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4199146, + "CONCEPT_NAME" : "Term birth of newborn sextuplets", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "52483005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4307237, + "CONCEPT_NAME" : "Term birth of newborn triplets", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "8333008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4178275, + "CONCEPT_NAME" : "Term birth of newborn twins", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "50758004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4094046, + "CONCEPT_NAME" : "Triplet birth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "281052005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42539210, + "CONCEPT_NAME" : "Triplet liveborn in hospital by cesarean section", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16089571000119102", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014456, + "CONCEPT_NAME" : "Triplets - all live born", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169831006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015422, + "CONCEPT_NAME" : "Triplets - one live and two stillborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169833009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45757165, + "CONCEPT_NAME" : "Triplets, some live born", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10760661000119109", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015421, + "CONCEPT_NAME" : "Triplets - two live and one stillborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169832004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40483084, + "CONCEPT_NAME" : "Twin liveborn born in hospital", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "442327001", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40483101, + "CONCEPT_NAME" : "Twin liveborn born in hospital by cesarean section", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "442342003", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014296, + "CONCEPT_NAME" : "Twins - both live born", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169828005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014455, + "CONCEPT_NAME" : "Twins - one still and one live born", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169829002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 2, + "name" : "Gestational age (GEST)", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4015296, + "CONCEPT_NAME" : "Antenatal 12 weeks examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169712008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014149, + "CONCEPT_NAME" : "Antenatal 16 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169713003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014150, + "CONCEPT_NAME" : "Antenatal 20 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169714009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808979, + "CONCEPT_NAME" : "Antenatal 22 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861281000000109", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015141, + "CONCEPT_NAME" : "Antenatal 24 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169715005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808980, + "CONCEPT_NAME" : "Antenatal 25 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861301000000105", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014151, + "CONCEPT_NAME" : "Antenatal 30 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169717002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808981, + "CONCEPT_NAME" : "Antenatal 31 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861321000000101", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015297, + "CONCEPT_NAME" : "Antenatal 32 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169718007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015298, + "CONCEPT_NAME" : "Antenatal 34 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169719004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014434, + "CONCEPT_NAME" : "Antenatal 35 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169720005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015299, + "CONCEPT_NAME" : "Antenatal 36 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169721009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015142, + "CONCEPT_NAME" : "Antenatal 37 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169722002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014152, + "CONCEPT_NAME" : "Antenatal 38 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169723007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015300, + "CONCEPT_NAME" : "Antenatal 39 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169724001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015301, + "CONCEPT_NAME" : "Antenatal 40 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169725000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015302, + "CONCEPT_NAME" : "Antenatal 41 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169726004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014435, + "CONCEPT_NAME" : "Antenatal 42 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169727008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4178165, + "CONCEPT_NAME" : "Gestation 14 - 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428567001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181468, + "CONCEPT_NAME" : "Gestation 9- 13 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428930004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181162, + "CONCEPT_NAME" : "Gestation greater than 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429715006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4324063, + "CONCEPT_NAME" : "Gestation less than 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428566005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438542, + "CONCEPT_NAME" : "Gestation less than 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313178001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45770261, + "CONCEPT_NAME" : "Gestation less than 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "925561000000100", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4322726, + "CONCEPT_NAME" : "Gestation less than 9 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428058009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4242241, + "CONCEPT_NAME" : "Gestation period, 10 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "38039008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4174506, + "CONCEPT_NAME" : "Gestation period, 11 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "50367001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4197245, + "CONCEPT_NAME" : "Gestation period, 12 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "79992004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4266517, + "CONCEPT_NAME" : "Gestation period, 13 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "62333002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4248725, + "CONCEPT_NAME" : "Gestation period, 14 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72846000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4283690, + "CONCEPT_NAME" : "Gestation period, 15 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6678005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4049621, + "CONCEPT_NAME" : "Gestation period, 16 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15633004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4277749, + "CONCEPT_NAME" : "Gestation period, 17 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65683006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4097608, + "CONCEPT_NAME" : "Gestation period, 18 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25026004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181751, + "CONCEPT_NAME" : "Gestation period, 19 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54318006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4337360, + "CONCEPT_NAME" : "Gestation period, 1 week", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87178007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4051642, + "CONCEPT_NAME" : "Gestation period, 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "23464008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4185780, + "CONCEPT_NAME" : "Gestation period, 21 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "41438001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4274955, + "CONCEPT_NAME" : "Gestation period, 22 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65035007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336226, + "CONCEPT_NAME" : "Gestation period, 23 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86883006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439922, + "CONCEPT_NAME" : "Gestation period, 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313179009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435640, + "CONCEPT_NAME" : "Gestation period, 25 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72544005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444023, + "CONCEPT_NAME" : "Gestation period, 26 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48688005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432430, + "CONCEPT_NAME" : "Gestation period, 27 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46906003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444461, + "CONCEPT_NAME" : "Gestation period, 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90797000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444417, + "CONCEPT_NAME" : "Gestation period, 29 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45139008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4220085, + "CONCEPT_NAME" : "Gestation period, 2 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "82118009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434484, + "CONCEPT_NAME" : "Gestation period, 30 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "71355009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433864, + "CONCEPT_NAME" : "Gestation period, 31 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64920003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442558, + "CONCEPT_NAME" : "Gestation period, 32 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7707000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441678, + "CONCEPT_NAME" : "Gestation period, 33 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "78395001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443874, + "CONCEPT_NAME" : "Gestation period, 34 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13763000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444267, + "CONCEPT_NAME" : "Gestation period, 35 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84132007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438543, + "CONCEPT_NAME" : "Gestation period, 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57907009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442355, + "CONCEPT_NAME" : "Gestation period, 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43697006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443871, + "CONCEPT_NAME" : "Gestation period, 38 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13798002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435655, + "CONCEPT_NAME" : "Gestation period, 39 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80487005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4326232, + "CONCEPT_NAME" : "Gestation period, 3 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "74952004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442769, + "CONCEPT_NAME" : "Gestation period, 41 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63503002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444067, + "CONCEPT_NAME" : "Gestation period, 42 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36428009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4195157, + "CONCEPT_NAME" : "Gestation period, 4 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "44398003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4290009, + "CONCEPT_NAME" : "Gestation period, 5 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "37005007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4313026, + "CONCEPT_NAME" : "Gestation period, 6 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86801005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4270513, + "CONCEPT_NAME" : "Gestation period, 7 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63110000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4132434, + "CONCEPT_NAME" : "Gestation period, 8 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26690008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4245908, + "CONCEPT_NAME" : "Gestation period, 9 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "931004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 762907, + "CONCEPT_NAME" : "Gestation period greater than or equal to 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "433601000124106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336958, + "CONCEPT_NAME" : "Term pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87527008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4180111, + "CONCEPT_NAME" : "Third trimester pregnancy less than 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429240000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444098, + "CONCEPT_NAME" : "Gestation period, 40 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46230007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 3, + "name" : "Gestational period, 8 weeks", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4132434, + "CONCEPT_NAME" : "Gestation period, 8 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26690008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4322726, + "CONCEPT_NAME" : "Gestation less than 9 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428058009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 4, + "name" : "Last menstrual period (LMP)", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4072438, + "CONCEPT_NAME" : "Date of last menstrual period", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "21840007", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Observable Entity" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4088445, + "CONCEPT_NAME" : "Date of last normal period", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "248993009", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Observable Entity" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4058439, + "CONCEPT_NAME" : "Last menstrual period -1st day", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "161713000", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Observable Entity" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 5, + "name" : "Nuchal ultrasound (ULS)", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4186424, + "CONCEPT_NAME" : "Nuchal ultrasound scan", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "414880004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4324606, + "CONCEPT_NAME" : "Transvaginal nuchal ultrasonography", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "430063002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40489798, + "CONCEPT_NAME" : "Ultrasonography of multiple pregnancy for fetal nuchal translucency", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "446810002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2211754, + "CONCEPT_NAME" : "Ultrasound, pregnant uterus, real time with image documentation, first trimester fetal nuchal translucency measurement, transabdominal or transvaginal approach; each additional gestation (List separately in addition to code for primary procedure)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "76814", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2211753, + "CONCEPT_NAME" : "Ultrasound, pregnant uterus, real time with image documentation, first trimester fetal nuchal translucency measurement, transabdominal or transvaginal approach; single or first gestation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "76813", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4237339, + "CONCEPT_NAME" : "Ultrasound scan for fetal nuchal translucency", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "408815001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 6, + "name" : "Alpha fetal protein (AFP)", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 40480490, + "CONCEPT_NAME" : "Abnormal presence of alpha-fetoprotein", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "441772009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061810, + "CONCEPT_NAME" : "AFP - blood sent", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169688006", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061809, + "CONCEPT_NAME" : "AFP blood test not wanted", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169687001", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040768, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein interpretation in Amniotic fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "41273-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3038294, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein interpretation in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "41274-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3010296, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Mass/volume] in Amniotic fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1832-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42529192, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Mass/volume] in Amniotic fluid by Immunoassay", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "83075-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3027634, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Mass/volume] in Cerebral spinal fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1833-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757479, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Mass/volume] in Cord blood", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54348-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3032506, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Mass/volume] in Peritoneal fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "49761-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3033080, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Mass/volume] in Pleural fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "49762-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3009306, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Mass/volume] in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1834-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42529190, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Mass/volume] in Serum or Plasma by Immunoassay", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "83073-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4197249, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80152001", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4099476, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein measurement, amniotic fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "27220002", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014768, + "CONCEPT_NAME" : "Alpha-1-fetoprotein measurement, serum", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "104404005", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3012116, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Moles/volume] in Amniotic fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15019-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3024289, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Moles/volume] in Pleural fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "19173-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3021607, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Moles/volume] in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "19177-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3046154, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Multiple of the median] adjusted for diabetes in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43998-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3044142, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Multiple of the median] adjusted for diabetes+weight in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43996-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3030180, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Multiple of the median] adjusted for multiple gestations in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "50610-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3046979, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Multiple of the median] adjusted for weight in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43997-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3022269, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Multiple of the median] adjusted in Amniotic fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "29253-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3016670, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Multiple of the median] adjusted in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "23811-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3024370, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Multiple of the median] in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "20450-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40761829, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein panel - Amniotic fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "58735-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3044397, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Presence] in Amniotic fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43798-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3025053, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Presence] in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "31993-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3027505, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Units/volume] in Amniotic fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "19171-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42529191, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Units/volume] in Amniotic fluid by Immunoassay", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "83074-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3045958, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Units/volume] in Body fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "44910-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40762626, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Units/volume] in Cerebral spinal fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59564-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3028331, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Units/volume] in Pleural fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "19172-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42529189, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Units/volume] in Serum or Plasma by Immunoassay", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "83072-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2212200, + "CONCEPT_NAME" : "Alpha-fetoprotein (AFP); AFP-L3 fraction isoform and total AFP (including ratio)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "82107", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2212199, + "CONCEPT_NAME" : "Alpha-fetoprotein (AFP); amniotic fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "82106", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2212198, + "CONCEPT_NAME" : "Alpha-fetoprotein (AFP); serum", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "82105", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4147940, + "CONCEPT_NAME" : "Alpha-fetoprotein blood test", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "268468007", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4269851, + "CONCEPT_NAME" : "Alpha-fetoprotein level - finding", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "365802003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4041177, + "CONCEPT_NAME" : "Alpha-fetoprotein low", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "166562001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44807243, + "CONCEPT_NAME" : "Alpha fetoprotein multiple of median measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "816011000000101", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4042555, + "CONCEPT_NAME" : "Alpha-fetoprotein normal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "166558007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4059689, + "CONCEPT_NAME" : "Alpha-fetoprotein radioimmunoassay", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169188005", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4042557, + "CONCEPT_NAME" : "Alpha-fetoprotein raised", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "166561008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4078285, + "CONCEPT_NAME" : "Alpha-fetoprotein test - antenatal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "275833003", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4057158, + "CONCEPT_NAME" : "Amniotic fluid AFP equivocal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "168108003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4269860, + "CONCEPT_NAME" : "Amniotic fluid AFP - finding", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "365827005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4042936, + "CONCEPT_NAME" : "Blood sent: alpha-fetoprotein", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "166557002", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40761828, + "CONCEPT_NAME" : "Collection date of Amniotic fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "58734-5", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Clinical Observation" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37396772, + "CONCEPT_NAME" : "Congenital deficiency of alpha-fetoprotein", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "716698007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37396771, + "CONCEPT_NAME" : "Hereditary persistence of alpha-fetoprotein", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "716697002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40478936, + "CONCEPT_NAME" : "Measurement of alpha fetoprotein and analysis of chromosomes in amniotic fluid specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "444311009", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40483704, + "CONCEPT_NAME" : "Measurement of alpha fetoprotein and human chorionic gonadotropin and unconjugated estriol in serum or plasma specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "443883001", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40480870, + "CONCEPT_NAME" : "Measurement of alpha fetoprotein as marker for malignant neoplasm", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "441825001", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40483600, + "CONCEPT_NAME" : "Measurement of alpha fetoprotein in second trimester", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "442495004", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4310471, + "CONCEPT_NAME" : "MS alpha-fetoprotein level", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "391516001", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4210719, + "CONCEPT_NAME" : "Plasma alpha-fetoprotein multiple of median measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313867006", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4161969, + "CONCEPT_NAME" : "Serum alpha-fetoprotein level elevated", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "399643001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4275335, + "CONCEPT_NAME" : "Serum alpha-fetoprotein level - finding", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "365804002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4195345, + "CONCEPT_NAME" : "Serum alpha-fetoprotein multiple of median measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313868001", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4078287, + "CONCEPT_NAME" : "Triple test", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "275835005", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3051868, + "CONCEPT_NAME" : "Trisomy 21 risk based on maternal age+Alpha-1-Fetoprotein+Choriogonadotropin+Estriol.unconjugated [Likelihood] in Fetus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "47222-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 7, + "name" : "Amenorrhea (AMEN)", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 443800, + "CONCEPT_NAME" : "Amenorrhea", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14302001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4184965, + "CONCEPT_NAME" : "Amenorrhea associated with obesity", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "413487000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40480713, + "CONCEPT_NAME" : "Anovulatory amenorrhea", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "444769001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4242590, + "CONCEPT_NAME" : "Cryptomenorrhea", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "58851004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4211822, + "CONCEPT_NAME" : "Dietary amenorrhea", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57260004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4070773, + "CONCEPT_NAME" : "Dysponderal amenorrhea", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "21669001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4034017, + "CONCEPT_NAME" : "Exercise-related amenorrhea", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237119008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4034018, + "CONCEPT_NAME" : "Lactational amenorrhea", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237122005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45765512, + "CONCEPT_NAME" : "Normogonadotropic amenorrhea", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "702466002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4211227, + "CONCEPT_NAME" : "Pathologic amenorrhea", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "56561006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4261326, + "CONCEPT_NAME" : "Physiologic amenorrhea", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "44811000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4219015, + "CONCEPT_NAME" : "Postpill amenorrhea", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "39931000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4138554, + "CONCEPT_NAME" : "Premenopausal amenorrhea", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "32590007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40318194, + "CONCEPT_NAME" : "Primary amenorrhea", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "156035004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4230947, + "CONCEPT_NAME" : "Primary physiologic amenorrhea", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "8913004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40318195, + "CONCEPT_NAME" : "Secondary amenorrhea", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "156036003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4312727, + "CONCEPT_NAME" : "Secondary physiologic amenorrhea", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86030004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 8, + "name" : "Urine pregnancy test (URINE)", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4055287, + "CONCEPT_NAME" : "High sensitivity urine pregnancy test", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "167257008", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37392366, + "CONCEPT_NAME" : "High sensitivity urine pregnancy test", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1003171000000104", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Observable Entity" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4250175, + "CONCEPT_NAME" : "Pregnancy detection examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "74036000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4091293, + "CONCEPT_NAME" : "Sensitive pregnancy test", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "252161000", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4091461, + "CONCEPT_NAME" : "Standard pregnancy test", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "252160004", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4055285, + "CONCEPT_NAME" : "Urine pregnancy test", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "167252002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37392365, + "CONCEPT_NAME" : "Urine pregnancy test", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1003161000000106", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Observable Entity" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2212173, + "CONCEPT_NAME" : "Urine pregnancy test, by visual color comparison methods", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "81025", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014769, + "CONCEPT_NAME" : "Urine pregnancy test, by visual color comparison methods", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "104405006", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 9, + "name" : "Gestational period, 12 weeks", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4015296, + "CONCEPT_NAME" : "Antenatal 12 weeks examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169712008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4197245, + "CONCEPT_NAME" : "Gestation period, 12 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "79992004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 10, + "name" : "Gestational period, 37 weeks", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4015142, + "CONCEPT_NAME" : "Antenatal 37 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169722002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442355, + "CONCEPT_NAME" : "Gestation period, 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43697006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 762907, + "CONCEPT_NAME" : "Gestation period greater than or equal to 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "433601000124106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 11, + "name" : "Gestational period, 36 weeks", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4015299, + "CONCEPT_NAME" : "Antenatal 36 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169721009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438543, + "CONCEPT_NAME" : "Gestation period, 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57907009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 12, + "name" : "Gestational period, 35 weeks", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4014434, + "CONCEPT_NAME" : "Antenatal 35 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169720005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444267, + "CONCEPT_NAME" : "Gestation period, 35 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84132007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4180111, + "CONCEPT_NAME" : "Third trimester pregnancy less than 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429240000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 13, + "name" : "Gestational period, 39 weeks", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4015300, + "CONCEPT_NAME" : "Antenatal 39 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169724001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435655, + "CONCEPT_NAME" : "Gestation period, 39 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80487005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 14, + "name" : "Gestational period, 9 weeks", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4245908, + "CONCEPT_NAME" : "Gestation period, 9 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "931004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 15, + "name" : "Gestational period, 40 weeks", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4015301, + "CONCEPT_NAME" : "Antenatal 40 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169725000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336958, + "CONCEPT_NAME" : "Term pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87527008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444098, + "CONCEPT_NAME" : "Gestation period, 40 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46230007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 17, + "name" : "Gestational period, 10 weeks", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4242241, + "CONCEPT_NAME" : "Gestation period, 10 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "38039008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 18, + "name" : "Gestational period, 11 weeks", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4174506, + "CONCEPT_NAME" : "Gestation period, 11 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "50367001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 19, + "name" : "Gestational period, 13 weeks", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4181468, + "CONCEPT_NAME" : "Gestation 9- 13 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428930004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4266517, + "CONCEPT_NAME" : "Gestation period, 13 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "62333002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 20, + "name" : "Gestational period, 1 week", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4337360, + "CONCEPT_NAME" : "Gestation period, 1 week", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87178007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 21, + "name" : "Gestational period, 2 weeks", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4220085, + "CONCEPT_NAME" : "Gestation period, 2 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "82118009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 22, + "name" : "Gestational period, 3 weeks", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4326232, + "CONCEPT_NAME" : "Gestation period, 3 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "74952004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 23, + "name" : "Gestational period, 4 weeks", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4195157, + "CONCEPT_NAME" : "Gestation period, 4 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "44398003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 24, + "name" : "Gestational period, 5 weeks", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4290009, + "CONCEPT_NAME" : "Gestation period, 5 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "37005007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 25, + "name" : "Gestational period, 6 weeks", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4313026, + "CONCEPT_NAME" : "Gestation period, 6 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86801005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 26, + "name" : "Gestational period, 7 weeks", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4270513, + "CONCEPT_NAME" : "Gestation period, 7 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63110000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 28, + "name" : "Gestational period, 14 weeks", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4248725, + "CONCEPT_NAME" : "Gestation period, 14 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72846000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 29, + "name" : "Gestational period, 15 weeks", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4283690, + "CONCEPT_NAME" : "Gestation period, 15 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6678005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 30, + "name" : "Gestational period, 16 weeks", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4014149, + "CONCEPT_NAME" : "Antenatal 16 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169713003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4049621, + "CONCEPT_NAME" : "Gestation period, 16 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15633004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 31, + "name" : "Gestational period, 17 weeks", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4277749, + "CONCEPT_NAME" : "Gestation period, 17 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65683006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 32, + "name" : "Gestational period, 18 weeks", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4097608, + "CONCEPT_NAME" : "Gestation period, 18 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25026004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 33, + "name" : "Gestational period, 19 weeks", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4324063, + "CONCEPT_NAME" : "Gestation less than 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428566005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181751, + "CONCEPT_NAME" : "Gestation period, 19 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54318006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 34, + "name" : "Gestational period, 20 weeks", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4014150, + "CONCEPT_NAME" : "Antenatal 20 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169714009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4178165, + "CONCEPT_NAME" : "Gestation 14 - 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428567001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4051642, + "CONCEPT_NAME" : "Gestation period, 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "23464008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 35, + "name" : "Gestational period, 21 weeks", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4181162, + "CONCEPT_NAME" : "Gestation greater than 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429715006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4185780, + "CONCEPT_NAME" : "Gestation period, 21 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "41438001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 36, + "name" : "Gestational period, 22 weeks", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 44808979, + "CONCEPT_NAME" : "Antenatal 22 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861281000000109", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4274955, + "CONCEPT_NAME" : "Gestation period, 22 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65035007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 37, + "name" : "Gestational period, 23 weeks", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 438542, + "CONCEPT_NAME" : "Gestation less than 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313178001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336226, + "CONCEPT_NAME" : "Gestation period, 23 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86883006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 38, + "name" : "Gestational period, 24 weeks", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4015141, + "CONCEPT_NAME" : "Antenatal 24 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169715005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439922, + "CONCEPT_NAME" : "Gestation period, 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313179009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 40, + "name" : "Gestational period, 25 weeks", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 44808980, + "CONCEPT_NAME" : "Antenatal 25 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861301000000105", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435640, + "CONCEPT_NAME" : "Gestation period, 25 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72544005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 41, + "name" : "Gestational period, 26 weeks", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 444023, + "CONCEPT_NAME" : "Gestation period, 26 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48688005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 42, + "name" : "Gestational period, 27 weeks", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 45770261, + "CONCEPT_NAME" : "Gestation less than 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "925561000000100", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432430, + "CONCEPT_NAME" : "Gestation period, 27 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46906003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 43, + "name" : "Gestational period, 28 weeks", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 444461, + "CONCEPT_NAME" : "Gestation period, 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90797000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 44, + "name" : "Gestational period, 29 weeks", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 444417, + "CONCEPT_NAME" : "Gestation period, 29 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45139008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 45, + "name" : "Gestational period, 30 weeks", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4014151, + "CONCEPT_NAME" : "Antenatal 30 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169717002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434484, + "CONCEPT_NAME" : "Gestation period, 30 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "71355009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 47, + "name" : "Gestational period, 31 weeks", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 44808981, + "CONCEPT_NAME" : "Antenatal 31 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861321000000101", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433864, + "CONCEPT_NAME" : "Gestation period, 31 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64920003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 48, + "name" : "Gestational period, 32 weeks", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4015297, + "CONCEPT_NAME" : "Antenatal 32 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169718007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442558, + "CONCEPT_NAME" : "Gestation period, 32 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7707000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 49, + "name" : "Gestational period, 33 weeks", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 441678, + "CONCEPT_NAME" : "Gestation period, 33 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "78395001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 50, + "name" : "Gestational period, 34 weeks", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4015298, + "CONCEPT_NAME" : "Antenatal 34 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169719004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443874, + "CONCEPT_NAME" : "Gestation period, 34 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13763000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 51, + "name" : "Gestational period, 38 weeks", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4014152, + "CONCEPT_NAME" : "Antenatal 38 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169723007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443871, + "CONCEPT_NAME" : "Gestation period, 38 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13798002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 52, + "name" : "Gestational period, 41 weeks", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4015302, + "CONCEPT_NAME" : "Antenatal 41 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169726004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442769, + "CONCEPT_NAME" : "Gestation period, 41 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63503002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 53, + "name" : "Gestational period, 42 weeks", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4014435, + "CONCEPT_NAME" : "Antenatal 42 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169727008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444067, + "CONCEPT_NAME" : "Gestation period, 42 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36428009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 55, + "name" : "Fertility procedure, condition or observation (NFERT)", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4239302, + "CONCEPT_NAME" : "Artificial insemination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "58533008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004542, + "CONCEPT_NAME" : "Artificial insemination", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "69.92", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4130186, + "CONCEPT_NAME" : "Artificial insemination by donor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "236896006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4127094, + "CONCEPT_NAME" : "Artificial insemination by husband", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "236895005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4187819, + "CONCEPT_NAME" : "Artificial insemination, heterologous", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46249006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4280831, + "CONCEPT_NAME" : "Artificial insemination, homologous", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "66601000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110196, + "CONCEPT_NAME" : "Artificial insemination; intra-cervical", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "58321", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110197, + "CONCEPT_NAME" : "Artificial insemination; intra-uterine", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "58322", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4238828, + "CONCEPT_NAME" : "Artificial insemination with sperm washing and capacitation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57233006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2213350, + "CONCEPT_NAME" : "Assisted embryo hatching, microtechniques (any method)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "89253", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4272937, + "CONCEPT_NAME" : "Assisted fertilization", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63487001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2721246, + "CONCEPT_NAME" : "Assisted oocyte fertilization, case rate", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "S4022", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42739500, + "CONCEPT_NAME" : "Assisted oocyte fertilization, microtechnique (any method) (Deprecated)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "89252", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2213363, + "CONCEPT_NAME" : "Assisted oocyte fertilization, microtechnique; greater than 10 oocytes", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "89281", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2213362, + "CONCEPT_NAME" : "Assisted oocyte fertilization, microtechnique; less than or equal to 10 oocytes", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "89280", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2213365, + "CONCEPT_NAME" : "Biopsy, oocyte polar body or embryo blastomere, microtechnique (for pre-implantation genetic diagnosis); greater than 5 embryos", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "89291", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2213364, + "CONCEPT_NAME" : "Biopsy, oocyte polar body or embryo blastomere, microtechnique (for pre-implantation genetic diagnosis); less than or equal to 5 embryos", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "89290", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2721238, + "CONCEPT_NAME" : "Complete cycle, gamete intrafallopian transfer (gift), case rate", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "S4013", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2721239, + "CONCEPT_NAME" : "Complete cycle, zygote intrafallopian transfer (zift), case rate", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "S4014", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2721240, + "CONCEPT_NAME" : "Complete in vitro fertilization cycle, not otherwise specified, case rate", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "S4015", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4309021, + "CONCEPT_NAME" : "Complications of attempted introduction of fertilized ovum following in vitro fertilization", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "213202009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40482399, + "CONCEPT_NAME" : "Conceived by in vitro fertilization", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "443633009", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2213355, + "CONCEPT_NAME" : "Cryopreservation; embryo(s)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "89258", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2721256, + "CONCEPT_NAME" : "Cryopreserved embryo transfer, case rate", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "S4037", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2213347, + "CONCEPT_NAME" : "Culture of oocyte(s)/embryo(s), less than 4 days", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "89250", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2213348, + "CONCEPT_NAME" : "Culture of oocyte(s)/embryo(s), less than 4 days; with co-culture of oocyte(s)/embryos", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "89251", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4022096, + "CONCEPT_NAME" : "Direct injection of sperm into cytoplasm of the oocyte", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "225244002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4024589, + "CONCEPT_NAME" : "Direct intraperitoneal insemination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "225247009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2721247, + "CONCEPT_NAME" : "Donor egg cycle, incomplete, case rate", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "S4023", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2721248, + "CONCEPT_NAME" : "Donor services for in vitro fertilization (sperm or embryo), case rate", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "S4025", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4327048, + "CONCEPT_NAME" : "Embryo transfer", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "75456002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110275, + "CONCEPT_NAME" : "Embryo transfer, intrauterine", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "58974", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4072852, + "CONCEPT_NAME" : "Endoscopic intrafallopian transfer of gamete", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "176996001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4072863, + "CONCEPT_NAME" : "Endoscopic transurethral ultrasound directed oocyte recovery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177038005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4074569, + "CONCEPT_NAME" : "Endoscopic transvesical oocyte recovery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177039002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2213361, + "CONCEPT_NAME" : "Extended culture of oocyte(s)/embryo(s), 4-7 days", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "89272", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4127892, + "CONCEPT_NAME" : "Fallopian replacement of egg with delayed insemination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "236913003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110274, + "CONCEPT_NAME" : "Follicle puncture for oocyte retrieval, any method", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "58970", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4032737, + "CONCEPT_NAME" : "Frozen embryo transfer", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "236894009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2721243, + "CONCEPT_NAME" : "Frozen embryo transfer procedure cancelled before transfer, case rate", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "S4018", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2721241, + "CONCEPT_NAME" : "Frozen in vitro fertilization cycle, case rate", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "S4016", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4127104, + "CONCEPT_NAME" : "Gamete intrafallopian transfer", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "236912008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4072421, + "CONCEPT_NAME" : "Gamete intrauterine transfer", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "176843009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110276, + "CONCEPT_NAME" : "Gamete, zygote, or embryo intrafallopian transfer, any method", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "58976", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4309019, + "CONCEPT_NAME" : "Infection associated with artificial insemination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "213200001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2213360, + "CONCEPT_NAME" : "Insemination of oocytes", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "89268", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4072715, + "CONCEPT_NAME" : "Intracervical artificial insemination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "176844003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4030829, + "CONCEPT_NAME" : "Intraperitoneal insemination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "238312005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4138741, + "CONCEPT_NAME" : "Intrauterine artificial insemination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "265064001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4139858, + "CONCEPT_NAME" : "Intrauterine insemination using donor sperm", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "426250000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4139060, + "CONCEPT_NAME" : "Intrauterine insemination using partner sperm", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "426389008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4137390, + "CONCEPT_NAME" : "Intrauterine insemination with controlled ovarian hyperstimulation using donor sperm", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "425644009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4145843, + "CONCEPT_NAME" : "Intrauterine insemination with controlled ovarian hyperstimulation using partner sperm", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "426968007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4020898, + "CONCEPT_NAME" : "Intravaginal artificial insemination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "225250007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2721255, + "CONCEPT_NAME" : "INTRAVAGINAL CULTURE (IVC)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "S4036", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4199599, + "CONCEPT_NAME" : "In vitro fertilization", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "52637005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2788842, + "CONCEPT_NAME" : "In Vitro Fertilization", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "8E0ZXY1", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD10PCS", + "CONCEPT_CLASS_ID" : "ICD10PCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2721237, + "CONCEPT_NAME" : "In vitro fertilization; including but not limited to identification and incubation of mature oocytes, fertilization with sperm, incubation of embryo(s), and subsequent visualization for determination of development", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "S4011", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3049700, + "CONCEPT_NAME" : "In vitro fertilization pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "47224-1", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Clinical Observation" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2721245, + "CONCEPT_NAME" : "In vitro fertilization procedure cancelled after aspiration, case rate", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "S4021", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2721244, + "CONCEPT_NAME" : "In vitro fertilization procedure cancelled before aspiration, case rate", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "S4020", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4138627, + "CONCEPT_NAME" : "In vitro fertilization using donor eggs", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "425866000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 46273065, + "CONCEPT_NAME" : "In vitro fertilization with surrogacy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "711544002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4145664, + "CONCEPT_NAME" : "IVF - In vitro fertilization using donor sperm", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "427664000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4138633, + "CONCEPT_NAME" : "IVF - In vitro fertilization with intracytoplasmic sperm injection (ICSI)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "425901007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4141534, + "CONCEPT_NAME" : "IVF - In vitro fertilization with intracytoplasmic sperm injection (ICSI) and donor egg", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "426914002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4142402, + "CONCEPT_NAME" : "IVF - In vitro fertilization with pre-implantation genetic diagnosis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "426417003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4144415, + "CONCEPT_NAME" : "Laparoscopic oocyte recovery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "265082003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40259107, + "CONCEPT_NAME" : "Laparoscopic oocyte recovery (& NEC)", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "177040000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2213351, + "CONCEPT_NAME" : "Oocyte identification from follicular fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "89254", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4072862, + "CONCEPT_NAME" : "Oocyte recovery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177037000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 46232934, + "CONCEPT_NAME" : "Other introduction of gametes into uterine cavity", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "Q21", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "OPCS4", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44513468, + "CONCEPT_NAME" : "Other specified introduction of gametes into uterine cavity", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "Q13.8", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "OPCS4", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44517168, + "CONCEPT_NAME" : "Other specified in vitro fertilisation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "Y96.8", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "OPCS4", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4075024, + "CONCEPT_NAME" : "Other specified oocyte recovery", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "177043003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44513634, + "CONCEPT_NAME" : "Other specified oocyte recovery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "Q48.8", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "OPCS4", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44513516, + "CONCEPT_NAME" : "Other specified other introduction of gametes into uterine cavity", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "Q21.8", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "OPCS4", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2213352, + "CONCEPT_NAME" : "Preparation of embryo for transfer (any method)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "89255", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40490338, + "CONCEPT_NAME" : "Retrieval of oocyte by transabdominal approach", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "446934006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2213358, + "CONCEPT_NAME" : "Sperm isolation; complex prep (eg, Percoll gradient, albumin gradient) for insemination or diagnosis with semen analysis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "89261", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2213357, + "CONCEPT_NAME" : "Sperm isolation; simple prep (eg, sperm wash and swim-up) for insemination or diagnosis with semen analysis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "89260", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110198, + "CONCEPT_NAME" : "Sperm washing for artificial insemination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "58323", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2721254, + "CONCEPT_NAME" : "Stimulated intrauterine insemination (iui), case rate", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "S4035", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4022098, + "CONCEPT_NAME" : "Subzonal insemination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "225249007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44790511, + "CONCEPT_NAME" : "Transfer of embryo to uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "233111000000108", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40490447, + "CONCEPT_NAME" : "Transmyometrial transfer of embryo to uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "448543003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4073406, + "CONCEPT_NAME" : "Transvaginal oocyte recovery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177042008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4127106, + "CONCEPT_NAME" : "Tubal embryo transfer", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "236915005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4020897, + "CONCEPT_NAME" : "Zona drilling", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "225248004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4127105, + "CONCEPT_NAME" : "Zygote intrafallopian transfer", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "236914009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 56, + "name" : "Antenatal GP visits (AGP)", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4014433, + "CONCEPT_NAME" : "Antenatal 28 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169716006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014148, + "CONCEPT_NAME" : "Antenatal booking examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169711001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4173786, + "CONCEPT_NAME" : "Antenatal care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "424525001", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061786, + "CONCEPT_NAME" : "Antenatal care categorized by gravida number", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169572002", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060243, + "CONCEPT_NAME" : "Antenatal care: elderly primiparous", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169588002", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530904, + "CONCEPT_NAME" : "Antenatal care for woman with history of recurrent miscarriage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609442008", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061437, + "CONCEPT_NAME" : "Antenatal care from consultant", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169615001", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060251, + "CONCEPT_NAME" : "Antenatal care from general practitioner", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169614002", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439656, + "CONCEPT_NAME" : "Antenatal care: grand multiparity", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169581008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060246, + "CONCEPT_NAME" : "Antenatal care: history of child abuse", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169595006", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060097, + "CONCEPT_NAME" : "Antenatal care: history of infertility", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169589005", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060242, + "CONCEPT_NAME" : "Antenatal care: history of perinatal death", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169583006", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060241, + "CONCEPT_NAME" : "Antenatal care: history of stillbirth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169582001", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4059989, + "CONCEPT_NAME" : "Antenatal care: history of trophoblastic disease", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169585004", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060247, + "CONCEPT_NAME" : "Antenatal care: medical risk", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169597003", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4147564, + "CONCEPT_NAME" : "Antenatal care midwifery led", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "310248000", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060239, + "CONCEPT_NAME" : "Antenatal care: multip", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169576004", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061433, + "CONCEPT_NAME" : "Antenatal care: multiparous, older than 35 years", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169605007", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061426, + "CONCEPT_NAME" : "Antenatal care: obstetric risk", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169578003", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36713461, + "CONCEPT_NAME" : "Antenatal care of elderly primigravida", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "717797001", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061425, + "CONCEPT_NAME" : "Antenatal care of second pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169574001", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061787, + "CONCEPT_NAME" : "Antenatal care of third pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169575000", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060098, + "CONCEPT_NAME" : "Antenatal care: poor home conditions", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169592009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4059988, + "CONCEPT_NAME" : "Antenatal care: poor obstetric history", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169584000", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061789, + "CONCEPT_NAME" : "Antenatal care: precious pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169587007", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060248, + "CONCEPT_NAME" : "Antenatal care: primiparous, older than 30 years", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169604006", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060101, + "CONCEPT_NAME" : "Antenatal care: primiparous, under 17 years", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169603000", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061793, + "CONCEPT_NAME" : "Antenatal care provider", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169613008", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060240, + "CONCEPT_NAME" : "Antenatal care: recurrent aborter", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169580009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060244, + "CONCEPT_NAME" : "Antenatal care: social risk", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169591002", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4059987, + "CONCEPT_NAME" : "Antenatal care: uncertain dates", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169579006", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4190427, + "CONCEPT_NAME" : "Antenatal clinic", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "394574007", + "DOMAIN_ID" : "Visit", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Location" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4147941, + "CONCEPT_NAME" : "Antenatal data", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "268469004", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Observable Entity" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4047845, + "CONCEPT_NAME" : "Antenatal education", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "135892000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4084186, + "CONCEPT_NAME" : "Antenatal exercises", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "183329005", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4062361, + "CONCEPT_NAME" : "Antenatal relaxation class", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "171066005", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061521, + "CONCEPT_NAME" : "Antenatal - shared care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169616000", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4081196, + "CONCEPT_NAME" : "Antepartum", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276986009", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Qualifier Value" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110312, + "CONCEPT_NAME" : "Antepartum care only; 4-6 visits", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59425", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110313, + "CONCEPT_NAME" : "Antepartum care only; 7 or more visits", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59426", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2108689, + "CONCEPT_NAME" : "Anti-D immune globulin received between 26 and 30 weeks gestation (Pre-Cr)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "4178F", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015159, + "CONCEPT_NAME" : "Consultant unit birth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169815003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060252, + "CONCEPT_NAME" : "Consultant unit booking", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169623004", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37016958, + "CONCEPT_NAME" : "Counting fetal movement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "713120004", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4076939, + "CONCEPT_NAME" : "Delivery booking place", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "275816005", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Observable Entity" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061795, + "CONCEPT_NAME" : "Delivery: no place booked", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169620001", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4156955, + "CONCEPT_NAME" : "Delivery place booked", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "271402002", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4150421, + "CONCEPT_NAME" : "Delivery place planned", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "310585007", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4059478, + "CONCEPT_NAME" : "Estimated date of delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "161714006", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Observable Entity" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4128833, + "CONCEPT_NAME" : "Estimated date of delivery from last period", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "289206005", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Observable Entity" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4226978, + "CONCEPT_NAME" : "External fetal monitor surveillance during multiple pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87663001", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060255, + "CONCEPT_NAME" : "Feeding intention - breast", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169643005", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4084439, + "CONCEPT_NAME" : "Fetal heart monitoring", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "281568006", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015304, + "CONCEPT_NAME" : "Fetal size accords with dates", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169732009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060104, + "CONCEPT_NAME" : "Home delivery booked", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169621002", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4151190, + "CONCEPT_NAME" : "Home delivery planned", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "310586008", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2514574, + "CONCEPT_NAME" : "Home visit for prenatal monitoring and assessment to include fetal heart rate, non-stress test, uterine monitoring, and gestational diabetes monitoring", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "99500", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061791, + "CONCEPT_NAME" : "Late onset antenatal care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169594005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4066354, + "CONCEPT_NAME" : "Maternal care for poor fetal growth", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "200474004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4305717, + "CONCEPT_NAME" : "Midwife unit delivery booking", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "390782000", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37016955, + "CONCEPT_NAME" : "Monitoring fetal development", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "713117007", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4084521, + "CONCEPT_NAME" : "Obstetric D.V. done", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "183760007", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038747, + "CONCEPT_NAME" : "Obstetric examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "163497009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4140250, + "CONCEPT_NAME" : "Obstetric monitoring", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "265642006", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038420, + "CONCEPT_NAME" : "O/E - breech presentation", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163514003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038571, + "CONCEPT_NAME" : "O/E - fetal heart 120-160", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163548002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038945, + "CONCEPT_NAME" : "O/E - fetal heart heard", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163542001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4039088, + "CONCEPT_NAME" : "O/E - fetal heart not heard", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163543006", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038943, + "CONCEPT_NAME" : "O/E - fetal movement diminished", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163540009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4039610, + "CONCEPT_NAME" : "O/E - fetal movements seen", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163537009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038938, + "CONCEPT_NAME" : "O/E -fetal presentation unsure", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163518000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038760, + "CONCEPT_NAME" : "O/E - fetus very active", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163539007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038418, + "CONCEPT_NAME" : "O/E - fundal size = dates", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163510007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038749, + "CONCEPT_NAME" : "O/E - fundus 12-16 week size", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163499007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038751, + "CONCEPT_NAME" : "O/E - fundus 16-20 week size", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163500003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038932, + "CONCEPT_NAME" : "O/E - fundus 20-24 week size", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163501004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4039602, + "CONCEPT_NAME" : "O/E - fundus 24-28 week size", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163502006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038753, + "CONCEPT_NAME" : "O/E - fundus 28-32 week size", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163504007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038935, + "CONCEPT_NAME" : "O/E - fundus = term size", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163509002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038748, + "CONCEPT_NAME" : "O/E - gravid uterus size", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163498004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4039609, + "CONCEPT_NAME" : "O/E - no fetal movements", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163536000", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038759, + "CONCEPT_NAME" : "O/E - partial engagement - 3/5", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163531005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4175225, + "CONCEPT_NAME" : "O/E - PP free - not engaged", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "275968002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038424, + "CONCEPT_NAME" : "O/E - presentation engaged-1/5", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163533008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4171428, + "CONCEPT_NAME" : "O/E - presenting part engaged", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "275969005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4039608, + "CONCEPT_NAME" : "O/E - presenting part free-4/5", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163530006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038941, + "CONCEPT_NAME" : "O/E - presenting part free-5/5", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163529001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038939, + "CONCEPT_NAME" : "O/E - presenting part position", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163520002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038937, + "CONCEPT_NAME" : "O/E - transverse lie", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163516001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038573, + "CONCEPT_NAME" : "O/E - VE for pelvic assessment", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163555000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4039603, + "CONCEPT_NAME" : "O/E - vertex presentation", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163513009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4194143, + "CONCEPT_NAME" : "O/E - viable fetus", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "312354009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4016475, + "CONCEPT_NAME" : "Placenta normal O/E", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "169954003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2618150, + "CONCEPT_NAME" : "Prenatal care, at-risk assessment", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "H1000", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2618151, + "CONCEPT_NAME" : "Prenatal care, at-risk enhanced service; antepartum management", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "H1001", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2618152, + "CONCEPT_NAME" : "Prenatal care, at risk enhanced service; care coordination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "H1002", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2618154, + "CONCEPT_NAME" : "Prenatal care, at-risk enhanced service; follow-up home visit", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "H1004", + "DOMAIN_ID" : "Visit", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2618155, + "CONCEPT_NAME" : "Prenatal care, at-risk enhanced service package (includes h1001-h1004)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "H1005", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4176966, + "CONCEPT_NAME" : "Prenatal education", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "363266006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4112701, + "CONCEPT_NAME" : "Prenatal examination and care of mother", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "18114009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4311447, + "CONCEPT_NAME" : "Prenatal initial visit", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "424441002", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4172038, + "CONCEPT_NAME" : "Prenatal supplemental visit", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "422808006", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4313474, + "CONCEPT_NAME" : "Prenatal visit", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "424619006", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060105, + "CONCEPT_NAME" : "Private home delivery booking", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169624005", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 77619, + "CONCEPT_NAME" : "Reduced fetal movement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276369006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4081292, + "CONCEPT_NAME" : "Referral to antenatal clinic", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "183860003", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 46272536, + "CONCEPT_NAME" : "Referral to breastfeeding education class during prenatal period", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "710916001", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4084693, + "CONCEPT_NAME" : "Referral to obstetrics service", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "183548008", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4047564, + "CONCEPT_NAME" : "Routine antenatal care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "134435003", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4083415, + "CONCEPT_NAME" : "Seen in antenatal clinic", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "185226003", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4260976, + "CONCEPT_NAME" : "Seen in fetal medicine clinic", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "440580005", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2101831, + "CONCEPT_NAME" : "Subsequent prenatal care visit (Prenatal) [Excludes: patients who are seen for a condition unrelated to pregnancy or prenatal care (eg, an upper respiratory infection; patients seen for consultation only, not for continuing care)]", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "0502F", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40517216, + "CONCEPT_NAME" : "[V]Pregnancy examination and test", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "308165008", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40525253, + "CONCEPT_NAME" : "[V]Unspecified antenatal screening", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "315976001", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 57, + "name" : "Confirmation of pregnancy (PCONF)", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 441092, + "CONCEPT_NAME" : "Advanced maternal age gravida", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "416413003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061424, + "CONCEPT_NAME" : "Antenatal care: primigravida", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169573007", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40760833, + "CONCEPT_NAME" : "Birth plurality of Pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57722-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Clinical Observation" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4139126, + "CONCEPT_NAME" : "Braxton Hicks contractions", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "32644009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015590, + "CONCEPT_NAME" : "Counseling for termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10383002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3011536, + "CONCEPT_NAME" : "Delivery date Estimated", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "11778-8", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Clinical Observation" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43054893, + "CONCEPT_NAME" : "Delivery location", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72150-6", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Survey" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43021054, + "CONCEPT_NAME" : "Dichorionic diamniotic twin pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "459166009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37017322, + "CONCEPT_NAME" : "Dizygotic twin pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "713575004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441085, + "CONCEPT_NAME" : "Elderly primigravida", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "29399001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 192380, + "CONCEPT_NAME" : "Failed attempted termination of pregnancy without complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90645002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4210896, + "CONCEPT_NAME" : "Fetal gestational age", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57036006", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Observable Entity" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3006722, + "CONCEPT_NAME" : "Fetal Heart Narrative Activity US", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "11616-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Clinical Observation" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40759953, + "CONCEPT_NAME" : "Fetal Narrative Movement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "56834-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Clinical Observation" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 195877, + "CONCEPT_NAME" : "Finding of gravid uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "289675001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061522, + "CONCEPT_NAME" : "General practitioner unit delivery booking", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169622009", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437937, + "CONCEPT_NAME" : "Grand multipara", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "18656007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4030415, + "CONCEPT_NAME" : "Illegitimate pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14080002", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 197031, + "CONCEPT_NAME" : "Intrauterine pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65727000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061672, + "CONCEPT_NAME" : "IUD failure - pregnant", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169488004", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43021951, + "CONCEPT_NAME" : "Monochorionic diamniotic twin pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "459168005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43021952, + "CONCEPT_NAME" : "Monochorionic monoamniotic twin pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "459171002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3045823, + "CONCEPT_NAME" : "Multiple pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45371-2", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Clinical Observation" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432969, + "CONCEPT_NAME" : "Multiple pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16356006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3000119, + "CONCEPT_NAME" : "Narrative Fetal presentation US", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "18850-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Clinical Observation" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4217975, + "CONCEPT_NAME" : "Normal pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72892002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038942, + "CONCEPT_NAME" : "O/E - fetal movements", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163535001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4150948, + "CONCEPT_NAME" : "O/E - fetal presentation", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "268952006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4148890, + "CONCEPT_NAME" : "Pregnancy benefits", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "270471004", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Qualifier Value" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4094910, + "CONCEPT_NAME" : "Pregnancy test positive", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "250423000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061785, + "CONCEPT_NAME" : "Pregnancy unplanned and unwanted", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169567006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060237, + "CONCEPT_NAME" : "Pregnancy unplanned but wanted", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169566002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4299535, + "CONCEPT_NAME" : "Pregnant", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "77386006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4059982, + "CONCEPT_NAME" : "Pregnant - blood test confirms", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169561007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061686, + "CONCEPT_NAME" : "Pregnant - on history", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169563005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4059984, + "CONCEPT_NAME" : "Pregnant - planned", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169565003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061411, + "CONCEPT_NAME" : "Pregnant, sheath failure", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169508004", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4059981, + "CONCEPT_NAME" : "Pregnant - urine test confirms", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169560008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4133029, + "CONCEPT_NAME" : "Primigravida", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "127364007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442594, + "CONCEPT_NAME" : "Quadruplet pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "60810003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440466, + "CONCEPT_NAME" : "Quadruplet pregnancy with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199326006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061423, + "CONCEPT_NAME" : "Questionable if pregnancy was planned", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169569009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4214930, + "CONCEPT_NAME" : "Refer to early pregnancy unit", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "417577000", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040000, + "CONCEPT_NAME" : "Reliability of last menstrual period observation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "53661-5", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Clinical Observation" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 196484, + "CONCEPT_NAME" : "Retroverted incarcerated gravid uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199466009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4042412, + "CONCEPT_NAME" : "Serum pregnancy test positive", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "166437003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 198212, + "CONCEPT_NAME" : "Spotting per vagina in pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "284075002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4129023, + "CONCEPT_NAME" : "Teenage pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237240001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4218813, + "CONCEPT_NAME" : "Third trimester pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "41587001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432375, + "CONCEPT_NAME" : "Triplet pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64254006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441919, + "CONCEPT_NAME" : "Twin pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65147003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4307820, + "CONCEPT_NAME" : "Unplanned pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "83074005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4059985, + "CONCEPT_NAME" : "Unplanned pregnancy unknown if child is wanted", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169568001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4239301, + "CONCEPT_NAME" : "Unwanted pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "58532003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4041878, + "CONCEPT_NAME" : "Urine pregnancy test positive", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "167256004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3023791, + "CONCEPT_NAME" : "Uterus Fundal height Tape measure", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "11881-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Clinical Observation" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40519557, + "CONCEPT_NAME" : "[V]Other unwanted pregnancy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "316385002", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40524802, + "CONCEPT_NAME" : "[V]Pregnant state, incidental", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "315903005", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40524805, + "CONCEPT_NAME" : "[V]Unspecified pregnant state", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "315906002", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 58, + "name" : "Gonadotropin, chorionic (hCG) (HCG)", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 2721180, + "CONCEPT_NAME" : "BLOOD CHEMISTRY FOR FREE BETA HUMAN CHORIONIC GONADOTROPIN (HCG)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "S3618", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3019145, + "CONCEPT_NAME" : "Choriogonadotropin.beta subunit free [Mass/volume] in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25373-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3011465, + "CONCEPT_NAME" : "Choriogonadotropin.beta subunit free [Units/volume] in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "19180-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3011996, + "CONCEPT_NAME" : "Choriogonadotropin.beta subunit [Moles/volume] in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "2111-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3010164, + "CONCEPT_NAME" : "Choriogonadotropin.beta subunit [Multiple of the median] adjusted in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "23841-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40758989, + "CONCEPT_NAME" : "Choriogonadotropin.beta subunit [Multiple of the median] in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55868-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3011149, + "CONCEPT_NAME" : "Choriogonadotropin.beta subunit (pregnancy test) [Presence] in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "2110-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3009417, + "CONCEPT_NAME" : "Choriogonadotropin.beta subunit (pregnancy test) [Presence] in Urine", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "2112-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3038136, + "CONCEPT_NAME" : "Choriogonadotropin.beta subunit [Units/volume] in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "21198-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3004303, + "CONCEPT_NAME" : "Choriogonadotropin.intact [Moles/volume] in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "2117-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3036988, + "CONCEPT_NAME" : "Choriogonadotropin.intact [Units/volume] in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "30243-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3002091, + "CONCEPT_NAME" : "Choriogonadotropin [Moles/volume] in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "2119-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3008714, + "CONCEPT_NAME" : "Choriogonadotropin [Multiple of the median] adjusted in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "32166-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3003191, + "CONCEPT_NAME" : "Choriogonadotropin (pregnancy test) [Presence] in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "2118-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3018954, + "CONCEPT_NAME" : "Choriogonadotropin (pregnancy test) [Presence] in Urine", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "2106-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3018171, + "CONCEPT_NAME" : "Choriogonadotropin [Units/volume] in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "19080-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4018189, + "CONCEPT_NAME" : "Chorionic gonadotropin, alpha subunit measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "104595003", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4296540, + "CONCEPT_NAME" : "Chorionic gonadotropin, beta-subunit measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "386558001", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4296541, + "CONCEPT_NAME" : "Chorionic gonadotropin, beta-subunit measurement, spinal fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "386559009", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4016953, + "CONCEPT_NAME" : "Chorionic gonadotropin, intact measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "104596002", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4017479, + "CONCEPT_NAME" : "Chorionic gonadotropin measurement, qualitative", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "104406007", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4263011, + "CONCEPT_NAME" : "Elevated serum human chorionic gonadotropin level, beta subunit", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "396700001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43527960, + "CONCEPT_NAME" : "Fetal congenital abnormalities, biochemical assays of three proteins (PAPP-A, hCG [any form], DIA), utilizing maternal serum, algorithm reported as a risk score", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "81509", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43527959, + "CONCEPT_NAME" : "Fetal congenital abnormalities, biochemical assays of two proteins (PAPP-A, hCG [any form]), utilizing maternal serum, algorithm reported as a risk score", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "81508", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4096237, + "CONCEPT_NAME" : "Free beta human chorionic gonadotrophin measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "250658009", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44807244, + "CONCEPT_NAME" : "Free beta human chorionic gonadotrophin multiple of median measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "816021000000107", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2212633, + "CONCEPT_NAME" : "Gonadotropin, chorionic (hCG); free beta chain", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84704", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2212632, + "CONCEPT_NAME" : "Gonadotropin, chorionic (hCG); qualitative", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84703", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2212631, + "CONCEPT_NAME" : "Gonadotropin, chorionic (hCG); quantitative", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84702", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44807240, + "CONCEPT_NAME" : "Human chorionic gonadotrophin multiple of median measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "815981000000104", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4285271, + "CONCEPT_NAME" : "Human chorionic gonadotropin measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "67900009", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44806337, + "CONCEPT_NAME" : "Human chorionic gonadotropin output measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "800821000000104", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038817, + "CONCEPT_NAME" : "Increased human chorionic gonadotropin level", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "131102000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44812174, + "CONCEPT_NAME" : "Plasma human chorionic gonadotrophin concentration measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "911491000000101", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4210718, + "CONCEPT_NAME" : "Plasma human chorionic gonadotropin multiple of median measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313865003", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4210722, + "CONCEPT_NAME" : "Serum free beta human chorionic gonadotrophin measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313872002", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4195509, + "CONCEPT_NAME" : "Serum free beta human chorionic gonadotropin multiple of median measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "314070003", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4198892, + "CONCEPT_NAME" : "Serum human chorionic gonadotropin multiple of median measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313866002", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4041161, + "CONCEPT_NAME" : "Serum pregnancy test (B-HCG)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "166434005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4042751, + "CONCEPT_NAME" : "Serum total HCG measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "167037004", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4214677, + "CONCEPT_NAME" : "Total beta human chorionic gonadotrophin level", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "394721004", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44789306, + "CONCEPT_NAME" : "Total human chorionic gonadotropin measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "195261000000107", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4055426, + "CONCEPT_NAME" : "Urine chorionic gonadotrophin measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "167376008", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4055954, + "CONCEPT_NAME" : "Urine HCG 24 hour assay", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "167391005", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 60, + "name" : "Stillbirth (SB)", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4129846, + "CONCEPT_NAME" : "Antepartum fetal death", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237361005", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Event" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37017027, + "CONCEPT_NAME" : "Antepartum stillbirth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "713202001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4079844, + "CONCEPT_NAME" : "Fetal death", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276507005", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Event" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4071603, + "CONCEPT_NAME" : "Fetal death due to prelabor anoxia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206258000", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Event" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442338, + "CONCEPT_NAME" : "Fetal death from asphyxia AND/OR anoxia before onset of labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "44174001", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Event" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443695, + "CONCEPT_NAME" : "Fetal death from asphyxia AND/OR anoxia during labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1762004", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Event" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4034159, + "CONCEPT_NAME" : "Fresh stillbirth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237365001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45773593, + "CONCEPT_NAME" : "Intrapartum stillbirth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "921611000000101", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060687, + "CONCEPT_NAME" : "Intrauterine death - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199607009", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Event" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4028787, + "CONCEPT_NAME" : "Macerated stillbirth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237366000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4222915, + "CONCEPT_NAME" : "Premature birth of fraternal twins, both stillborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84382006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4242724, + "CONCEPT_NAME" : "Premature birth of identical twins, both stillborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "3798002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4184594, + "CONCEPT_NAME" : "Premature birth of stillborn twins", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54650005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42539377, + "CONCEPT_NAME" : "Quadruplets with all four stillborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "762612009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42538805, + "CONCEPT_NAME" : "Quintuplets with all five stillborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "762613004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42538806, + "CONCEPT_NAME" : "Sextuplets with all six stillborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "762614005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014454, + "CONCEPT_NAME" : "Single stillbirth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169827000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443213, + "CONCEPT_NAME" : "Stillbirth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237364002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40406337, + "CONCEPT_NAME" : "Stillbirth", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "206581002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4287409, + "CONCEPT_NAME" : "Stillbirth of immature female (500-999 gms.)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "68509000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4217655, + "CONCEPT_NAME" : "Stillbirth of immature fetus, sex undetermined (500-999 gms.)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72543004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4261819, + "CONCEPT_NAME" : "Stillbirth of immature male (500-999 gms.)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "35608009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4321563, + "CONCEPT_NAME" : "Stillbirth of mature female (2500 gms. or more)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "70112005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4301269, + "CONCEPT_NAME" : "Stillbirth of mature male (2500 gms. or more)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7860005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4103876, + "CONCEPT_NAME" : "Stillbirth of premature female (1000-2499 gms.)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "28996007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4300979, + "CONCEPT_NAME" : "Stillbirth of premature male (1000-2499 gms.)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "77814006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443463, + "CONCEPT_NAME" : "Stillbirth - unknown if fetal death intrapartum or prior to labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "408796008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4306288, + "CONCEPT_NAME" : "Term birth of fraternal twins, both stillborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "83121003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4192641, + "CONCEPT_NAME" : "Term birth of identical twins, both stillborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "75697004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4203001, + "CONCEPT_NAME" : "Term birth of stillborn twins", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "52942000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015163, + "CONCEPT_NAME" : "Triplets - three stillborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169834003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015162, + "CONCEPT_NAME" : "Twins - both stillborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169830007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 61, + "name" : "Pregnancy markers", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4198718, + "CONCEPT_NAME" : "120 minute blood glucose measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313545000", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4209254, + "CONCEPT_NAME" : "120 minute plasma glucose measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313627007", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4197835, + "CONCEPT_NAME" : "120 minute serum glucose measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313631001", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4193852, + "CONCEPT_NAME" : "150 minute blood glucose measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313624000", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4198731, + "CONCEPT_NAME" : "150 minute plasma glucose measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313628002", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4195213, + "CONCEPT_NAME" : "150 minute serum glucose measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313810002", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44805579, + "CONCEPT_NAME" : "180 minute plasma glucose measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "754261000000106", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3016704, + "CONCEPT_NAME" : "1 minute Apgar Score", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "9272-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Clinical Observation" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4234906, + "CONCEPT_NAME" : "240 minute plasma glucose measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "440576000", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4258832, + "CONCEPT_NAME" : "300 minute plasma glucose measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "440620002", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4198733, + "CONCEPT_NAME" : "30 minute blood glucose measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313637002", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4193853, + "CONCEPT_NAME" : "30 minute plasma glucose measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313625004", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4198732, + "CONCEPT_NAME" : "30 minute serum glucose measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313629005", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3004221, + "CONCEPT_NAME" : "5 minute Apgar Score", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "9274-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Clinical Observation" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4209122, + "CONCEPT_NAME" : "60 minute blood glucose measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313474007", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4193854, + "CONCEPT_NAME" : "60 minute plasma glucose measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313626003", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4193855, + "CONCEPT_NAME" : "60 minute serum glucose measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313630000", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4198719, + "CONCEPT_NAME" : "90 minute blood glucose measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313546004", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4198742, + "CONCEPT_NAME" : "90 minute plasma glucose measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313697000", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4198743, + "CONCEPT_NAME" : "90 minute serum glucose measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313698005", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4130321, + "CONCEPT_NAME" : "Abdominal delivery for shoulder dystocia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "236989008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4200678, + "CONCEPT_NAME" : "Abdominal hysterectomy and left salpingo-oophorectomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "302191001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4059050, + "CONCEPT_NAME" : "Abdominal obstetric X-ray", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "168759005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4198125, + "CONCEPT_NAME" : "Abdominal pain in early pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "314041007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4149783, + "CONCEPT_NAME" : "Abdominal pain in pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "309737007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 193525, + "CONCEPT_NAME" : "Abdominal pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "82661006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442631, + "CONCEPT_NAME" : "Abnormal cerebral signs in the newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63814006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 314478, + "CONCEPT_NAME" : "Abnormal fetal heart beat first noted during labor AND/OR delivery in liveborn infant", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "22271007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 312733, + "CONCEPT_NAME" : "Abnormal fetal heart beat, not clear if noted before OR after onset of labor in liveborn infant", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "231958008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 137974, + "CONCEPT_NAME" : "Abnormal fetal heart beat noted before labor in liveborn infant", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "655007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 314099, + "CONCEPT_NAME" : "Abnormal fetal heart rate", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "312668007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437688, + "CONCEPT_NAME" : "Abnormal findings on antenatal screening of mother", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199732004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438557, + "CONCEPT_NAME" : "Abnormal glucose level", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "102660008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440216, + "CONCEPT_NAME" : "Abnormal glucose tolerance test", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "274858002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439402, + "CONCEPT_NAME" : "Abnormal glucose tolerance test during pregnancy - baby delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "372055003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439403, + "CONCEPT_NAME" : "Abnormal glucose tolerance test during pregnancy - baby not yet delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "372054004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4162865, + "CONCEPT_NAME" : "Abnormal glucose tolerance test during pregnancy, childbirth and the puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "372046001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4155282, + "CONCEPT_NAME" : "Abnormal glucose tolerance test in the puerperium - baby delivered during current episode of care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "372051007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4162866, + "CONCEPT_NAME" : "Abnormal glucose tolerance test in the puerperium - baby delivered during previous episode of care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "372050008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4306804, + "CONCEPT_NAME" : "Abnormal head circumference in relation to growth / age standard", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "422695002", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437342, + "CONCEPT_NAME" : "Abnormality of forces of labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "35882009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 197050, + "CONCEPT_NAME" : "Abnormality of organs AND/OR soft tissues of pelvis affecting pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1639007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40480490, + "CONCEPT_NAME" : "Abnormal presence of alpha-fetoprotein", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "441772009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4136368, + "CONCEPT_NAME" : "Abnormal presence of glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "31649001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 436477, + "CONCEPT_NAME" : "Abnormal products of conception", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "39804004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3003694, + "CONCEPT_NAME" : "ABO and Rh group [Type] in Blood", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "882-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444365, + "CONCEPT_NAME" : "Abortion", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "70317007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42597053, + "CONCEPT_NAME" : "Abortion associated with Equine arteritis virus infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "318481000009103", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED Veterinary", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42597052, + "CONCEPT_NAME" : "Abortion associated with Equine herpesvirus infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "318471000009100", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED Veterinary", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42597051, + "CONCEPT_NAME" : "Abortion associated with umbilical torsion", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "318461000009109", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED Veterinary", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 201076, + "CONCEPT_NAME" : "Abortion complicated by damage to pelvic organs AND/OR tissues", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "373908001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 197612, + "CONCEPT_NAME" : "Abortion complicated by delayed AND/OR excessive hemorrhage", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "111426003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438812, + "CONCEPT_NAME" : "Abortion complicated by genital-pelvic infection", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "373891000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 195319, + "CONCEPT_NAME" : "Abortion complicated by renal failure", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "10123006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42599848, + "CONCEPT_NAME" : "Abortion due to Brucella canis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "360051000009101", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED Veterinary", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2721147, + "CONCEPT_NAME" : "ABORTION FOR MATERNAL INDICATION", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "S2262", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2784560, + "CONCEPT_NAME" : "Abortion of Products of Conception, Abortifacient, Via Natural or Artificial Opening", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10A07ZX", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD10PCS", + "CONCEPT_CLASS_ID" : "ICD10PCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2784559, + "CONCEPT_NAME" : "Abortion of Products of Conception, Laminaria, Via Natural or Artificial Opening", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10A07ZW", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD10PCS", + "CONCEPT_CLASS_ID" : "ICD10PCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2784555, + "CONCEPT_NAME" : "Abortion of Products of Conception, Open Approach", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10A00ZZ", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD10PCS", + "CONCEPT_CLASS_ID" : "ICD10PCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2784556, + "CONCEPT_NAME" : "Abortion of Products of Conception, Percutaneous Approach", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10A03ZZ", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD10PCS", + "CONCEPT_CLASS_ID" : "ICD10PCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2784557, + "CONCEPT_NAME" : "Abortion of Products of Conception, Percutaneous Endoscopic Approach", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10A04ZZ", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD10PCS", + "CONCEPT_CLASS_ID" : "ICD10PCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2784558, + "CONCEPT_NAME" : "Abortion of Products of Conception, Vacuum, Via Natural or Artificial Opening", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10A07Z6", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD10PCS", + "CONCEPT_CLASS_ID" : "ICD10PCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2784561, + "CONCEPT_NAME" : "Abortion of Products of Conception, Via Natural or Artificial Opening", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10A07ZZ", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD10PCS", + "CONCEPT_CLASS_ID" : "ICD10PCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2784562, + "CONCEPT_NAME" : "Abortion of Products of Conception, Via Natural or Artificial Opening Endoscopic", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10A08ZZ", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD10PCS", + "CONCEPT_CLASS_ID" : "ICD10PCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440776, + "CONCEPT_NAME" : "Abortion with complication", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "371332008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440454, + "CONCEPT_NAME" : "Abortion without complication", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "51830007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4050827, + "CONCEPT_NAME" : "Abrasion of anus, infected", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "211060000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4052366, + "CONCEPT_NAME" : "Abrasion of penis, infected", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "211064009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4052365, + "CONCEPT_NAME" : "Abrasion of perineum, infected", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "211063003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4050829, + "CONCEPT_NAME" : "Abrasion of vulva, infected", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "211066006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36713476, + "CONCEPT_NAME" : "Abscess of breast associated with childbirth with attachment difficulty", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "717817006", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4262542, + "CONCEPT_NAME" : "Abscess of nipple associated with childbirth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46273003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3034139, + "CONCEPT_NAME" : "Acetylcholinesterase [Enzymatic activity/volume] in Amniotic fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1708-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4173330, + "CONCEPT_NAME" : "Acquired subglottic stenosis in newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276635001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4034308, + "CONCEPT_NAME" : "Acromion presentation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "23954006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 761075, + "CONCEPT_NAME" : "Acute idiopathic neonatal pulmonary hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "142221000119105", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 196490, + "CONCEPT_NAME" : "Acute renal failure following labor AND/OR delivery", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "13010001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4215648, + "CONCEPT_NAME" : "Acute renal failure following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "71909003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45772947, + "CONCEPT_NAME" : "Acute respiratory distress in newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "707540007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45768986, + "CONCEPT_NAME" : "Acute respiratory distress in newborn with surfactant disorder", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "707541006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37397030, + "CONCEPT_NAME" : "Adult onset non-insulinoma persistent hyperinsulinemic hypoglycemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "717044000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441092, + "CONCEPT_NAME" : "Advanced maternal age gravida", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "416413003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4312095, + "CONCEPT_NAME" : "Afibrinogenemia following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "85796009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4129840, + "CONCEPT_NAME" : "Afibrinogenemia - postpartum", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237337003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061810, + "CONCEPT_NAME" : "AFP - blood sent", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169688006", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061809, + "CONCEPT_NAME" : "AFP blood test not wanted", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169687001", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3655216, + "CONCEPT_NAME" : "Air embolism due to and following ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "860689000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3655215, + "CONCEPT_NAME" : "Air embolism due to and following molar pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "860688008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4030070, + "CONCEPT_NAME" : "Alcohol-induced hypoglycemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237641009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4029428, + "CONCEPT_NAME" : "Alimentary hyperinsulinemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237647008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4029425, + "CONCEPT_NAME" : "Alimentary hypoglycemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237639008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040768, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein interpretation in Amniotic fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "41273-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3038294, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein interpretation in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "41274-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3010296, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Mass/volume] in Amniotic fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1832-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42529192, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Mass/volume] in Amniotic fluid by Immunoassay", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "83075-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3027634, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Mass/volume] in Cerebral spinal fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1833-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757479, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Mass/volume] in Cord blood", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54348-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3032506, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Mass/volume] in Peritoneal fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "49761-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3033080, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Mass/volume] in Pleural fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "49762-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3009306, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Mass/volume] in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1834-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42529190, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Mass/volume] in Serum or Plasma by Immunoassay", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "83073-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4197249, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80152001", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4099476, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein measurement, amniotic fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "27220002", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014768, + "CONCEPT_NAME" : "Alpha-1-fetoprotein measurement, serum", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "104404005", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3012116, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Moles/volume] in Amniotic fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15019-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3024289, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Moles/volume] in Pleural fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "19173-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3021607, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Moles/volume] in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "19177-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3046154, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Multiple of the median] adjusted for diabetes in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43998-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3044142, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Multiple of the median] adjusted for diabetes+weight in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43996-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3030180, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Multiple of the median] adjusted for multiple gestations in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "50610-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3046979, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Multiple of the median] adjusted for weight in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43997-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3022269, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Multiple of the median] adjusted in Amniotic fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "29253-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3016670, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Multiple of the median] adjusted in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "23811-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3004943, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Multiple of the median] in Amniotic fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "29595-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3024370, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Multiple of the median] in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "20450-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40761829, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein panel - Amniotic fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "58735-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3044397, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Presence] in Amniotic fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43798-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3025053, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Presence] in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "31993-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3027505, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Units/volume] in Amniotic fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "19171-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42529191, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Units/volume] in Amniotic fluid by Immunoassay", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "83074-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3045958, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Units/volume] in Body fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "44910-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40762626, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Units/volume] in Cerebral spinal fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59564-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3028331, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Units/volume] in Pleural fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "19172-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42529189, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Units/volume] in Serum or Plasma by Immunoassay", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "83072-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2212200, + "CONCEPT_NAME" : "Alpha-fetoprotein (AFP); AFP-L3 fraction isoform and total AFP (including ratio)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "82107", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2212199, + "CONCEPT_NAME" : "Alpha-fetoprotein (AFP); amniotic fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "82106", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2212198, + "CONCEPT_NAME" : "Alpha-fetoprotein (AFP); serum", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "82105", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4147940, + "CONCEPT_NAME" : "Alpha-fetoprotein blood test", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "268468007", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4269851, + "CONCEPT_NAME" : "Alpha-fetoprotein level - finding", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "365802003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4041177, + "CONCEPT_NAME" : "Alpha-fetoprotein low", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "166562001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44807243, + "CONCEPT_NAME" : "Alpha fetoprotein multiple of median measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "816011000000101", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4042555, + "CONCEPT_NAME" : "Alpha-fetoprotein normal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "166558007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4059689, + "CONCEPT_NAME" : "Alpha-fetoprotein radioimmunoassay", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169188005", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4042557, + "CONCEPT_NAME" : "Alpha-fetoprotein raised", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "166561008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4078285, + "CONCEPT_NAME" : "Alpha-fetoprotein test - antenatal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "275833003", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4207608, + "CONCEPT_NAME" : "Ambulatory continuous glucose monitoring of interstitial tissue fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "439926003", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2314093, + "CONCEPT_NAME" : "Ambulatory continuous glucose monitoring of interstitial tissue fluid via a subcutaneous sensor for a minimum of 72 hours; analysis, interpretation and report", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "95251", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2314092, + "CONCEPT_NAME" : "Ambulatory continuous glucose monitoring of interstitial tissue fluid via a subcutaneous sensor for a minimum of 72 hours; physician or other qualified health care professional (office) provided equipment, sensor placement, hook-up, calibration of monitor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "95250", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4208334, + "CONCEPT_NAME" : "Ambulatory continuous glucose monitoring of interstitial tissue fluid with sensor placement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "440404000", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443800, + "CONCEPT_NAME" : "Amenorrhea", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14302001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4184965, + "CONCEPT_NAME" : "Amenorrhea associated with obesity", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "413487000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4146045, + "CONCEPT_NAME" : "Amniocentesis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "34536000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110279, + "CONCEPT_NAME" : "Amniocentesis; diagnostic", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4140734, + "CONCEPT_NAME" : "Amniocentesis for possible chromosomal abnormality", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "427230007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110280, + "CONCEPT_NAME" : "Amniocentesis; therapeutic amniotic fluid reduction (includes ultrasound guidance)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004824, + "CONCEPT_NAME" : "Amnioinfusion", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "75.37", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437936, + "CONCEPT_NAME" : "Amniotic cavity infection - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199677008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435880, + "CONCEPT_NAME" : "Amniotic cavity infection with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199678003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4057158, + "CONCEPT_NAME" : "Amniotic fluid AFP equivocal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "168108003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4269860, + "CONCEPT_NAME" : "Amniotic fluid AFP - finding", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "365827005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4231903, + "CONCEPT_NAME" : "Amniotic fluid analysis for hemolytic disease of the newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "359878007", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435616, + "CONCEPT_NAME" : "Amniotic fluid embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "17263003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3655206, + "CONCEPT_NAME" : "Amniotic fluid embolism due to and following ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "860677002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3655205, + "CONCEPT_NAME" : "Amniotic fluid embolism due to and following molar pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "860676006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4057149, + "CONCEPT_NAME" : "Amniotic fluid examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "168083008", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433880, + "CONCEPT_NAME" : "Amniotic fluid examination abnormal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "410037001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4154997, + "CONCEPT_NAME" : "Amniotic fluid leaking", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "371380006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441959, + "CONCEPT_NAME" : "Amniotic fluid -meconium stain", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "168092006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 436768, + "CONCEPT_NAME" : "Amniotic fluid pulmonary embolism with antenatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200296007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437948, + "CONCEPT_NAME" : "Amniotic fluid pulmonary embolism with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200297003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2212210, + "CONCEPT_NAME" : "Amniotic fluid scan (spectrophotometric)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "82143", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4248954, + "CONCEPT_NAME" : "Amniotomy at delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "408817009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4173032, + "CONCEPT_NAME" : "Anal margin hematoma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276465001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4170460, + "CONCEPT_NAME" : "Anal sphincter tear", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "275431006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432968, + "CONCEPT_NAME" : "Anemia during pregnancy - baby delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199244000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432967, + "CONCEPT_NAME" : "Anemia during pregnancy - baby not yet delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199246003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4209094, + "CONCEPT_NAME" : "Anemia during the puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313291009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434701, + "CONCEPT_NAME" : "Anemia in mother complicating pregnancy, childbirth AND/OR puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45828008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442923, + "CONCEPT_NAME" : "Anemia in the puerperium - baby delivered during current episode of care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199245004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442922, + "CONCEPT_NAME" : "Anemia in the puerperium - baby delivered during previous episode of care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199247007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4099889, + "CONCEPT_NAME" : "Anemia of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "27342004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432452, + "CONCEPT_NAME" : "Anemia of prematurity", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "47100003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42739743, + "CONCEPT_NAME" : "Anesthesia for abortion procedures (Deprecated)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "01964", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2101814, + "CONCEPT_NAME" : "Anesthesia for cesarean delivery following neuraxial labor analgesia/anesthesia (List separately in addition to code for primary procedure performed)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "01968", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2101807, + "CONCEPT_NAME" : "Anesthesia for cesarean delivery only", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "01961", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2101809, + "CONCEPT_NAME" : "Anesthesia for cesarean hysterectomy without any labor analgesia/anesthesia care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "01963", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2101804, + "CONCEPT_NAME" : "Anesthesia for external cephalic version procedure", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "01958", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2101811, + "CONCEPT_NAME" : "Anesthesia for incomplete or missed abortion procedures", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "01965", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2101812, + "CONCEPT_NAME" : "Anesthesia for induced abortion procedures", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "01966", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2100998, + "CONCEPT_NAME" : "Anesthesia for intraperitoneal procedures in lower abdomen including laparoscopy; amniocentesis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "00842", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2101808, + "CONCEPT_NAME" : "Anesthesia for urgent hysterectomy following delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "01962", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2101806, + "CONCEPT_NAME" : "Anesthesia for vaginal delivery only", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "01960", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4118417, + "CONCEPT_NAME" : "Anomalies of umbilicus", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "205840009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40480713, + "CONCEPT_NAME" : "Anovulatory amenorrhea", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "444769001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4149405, + "CONCEPT_NAME" : "Anoxia, in liveborn infant", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "30828007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015296, + "CONCEPT_NAME" : "Antenatal 12 weeks examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169712008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014149, + "CONCEPT_NAME" : "Antenatal 16 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169713003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014150, + "CONCEPT_NAME" : "Antenatal 20 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169714009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808979, + "CONCEPT_NAME" : "Antenatal 22 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861281000000109", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015141, + "CONCEPT_NAME" : "Antenatal 24 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169715005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808980, + "CONCEPT_NAME" : "Antenatal 25 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861301000000105", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014433, + "CONCEPT_NAME" : "Antenatal 28 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169716006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014151, + "CONCEPT_NAME" : "Antenatal 30 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169717002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808981, + "CONCEPT_NAME" : "Antenatal 31 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861321000000101", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015297, + "CONCEPT_NAME" : "Antenatal 32 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169718007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015298, + "CONCEPT_NAME" : "Antenatal 34 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169719004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014434, + "CONCEPT_NAME" : "Antenatal 35 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169720005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015299, + "CONCEPT_NAME" : "Antenatal 36 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169721009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015142, + "CONCEPT_NAME" : "Antenatal 37 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169722002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014152, + "CONCEPT_NAME" : "Antenatal 38 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169723007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015300, + "CONCEPT_NAME" : "Antenatal 39 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169724001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015301, + "CONCEPT_NAME" : "Antenatal 40 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169725000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015302, + "CONCEPT_NAME" : "Antenatal 41 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169726004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014435, + "CONCEPT_NAME" : "Antenatal 42 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169727008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061154, + "CONCEPT_NAME" : "Antenatal amniocentesis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169646002", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060259, + "CONCEPT_NAME" : "Antenatal amniocentesis - abnormal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169653006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061530, + "CONCEPT_NAME" : "Antenatal amniocentesis - normal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169652001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014319, + "CONCEPT_NAME" : "Antenatal blood group screening", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169703006", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015139, + "CONCEPT_NAME" : "Antenatal blood group screening done", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169705004", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4207466, + "CONCEPT_NAME" : "Antenatal blood tests", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "312404004", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014148, + "CONCEPT_NAME" : "Antenatal booking examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169711001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4173786, + "CONCEPT_NAME" : "Antenatal care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "424525001", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061786, + "CONCEPT_NAME" : "Antenatal care categorized by gravida number", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169572002", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060243, + "CONCEPT_NAME" : "Antenatal care: elderly primiparous", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169588002", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530904, + "CONCEPT_NAME" : "Antenatal care for woman with history of recurrent miscarriage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609442008", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061437, + "CONCEPT_NAME" : "Antenatal care from consultant", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169615001", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060251, + "CONCEPT_NAME" : "Antenatal care from general practitioner", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169614002", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439656, + "CONCEPT_NAME" : "Antenatal care: grand multiparity", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169581008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060246, + "CONCEPT_NAME" : "Antenatal care: history of child abuse", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169595006", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060097, + "CONCEPT_NAME" : "Antenatal care: history of infertility", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169589005", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060242, + "CONCEPT_NAME" : "Antenatal care: history of perinatal death", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169583006", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060241, + "CONCEPT_NAME" : "Antenatal care: history of stillbirth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169582001", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4059989, + "CONCEPT_NAME" : "Antenatal care: history of trophoblastic disease", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169585004", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060247, + "CONCEPT_NAME" : "Antenatal care: medical risk", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169597003", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4147564, + "CONCEPT_NAME" : "Antenatal care midwifery led", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "310248000", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060239, + "CONCEPT_NAME" : "Antenatal care: multip", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169576004", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061433, + "CONCEPT_NAME" : "Antenatal care: multiparous, older than 35 years", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169605007", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061426, + "CONCEPT_NAME" : "Antenatal care: obstetric risk", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169578003", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36713461, + "CONCEPT_NAME" : "Antenatal care of elderly primigravida", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "717797001", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061425, + "CONCEPT_NAME" : "Antenatal care of second pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169574001", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061787, + "CONCEPT_NAME" : "Antenatal care of third pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169575000", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060098, + "CONCEPT_NAME" : "Antenatal care: poor home conditions", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169592009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4059988, + "CONCEPT_NAME" : "Antenatal care: poor obstetric history", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169584000", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061789, + "CONCEPT_NAME" : "Antenatal care: precious pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169587007", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061424, + "CONCEPT_NAME" : "Antenatal care: primigravida", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169573007", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060248, + "CONCEPT_NAME" : "Antenatal care: primiparous, older than 30 years", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169604006", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060101, + "CONCEPT_NAME" : "Antenatal care: primiparous, under 17 years", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169603000", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061793, + "CONCEPT_NAME" : "Antenatal care provider", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169613008", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060240, + "CONCEPT_NAME" : "Antenatal care: recurrent aborter", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169580009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060244, + "CONCEPT_NAME" : "Antenatal care: social risk", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169591002", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4059987, + "CONCEPT_NAME" : "Antenatal care: uncertain dates", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169579006", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4190427, + "CONCEPT_NAME" : "Antenatal clinic", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "394574007", + "DOMAIN_ID" : "Visit", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Location" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4147941, + "CONCEPT_NAME" : "Antenatal data", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "268469004", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Observable Entity" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441649, + "CONCEPT_NAME" : "Antenatal deep vein thrombosis - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200232006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4047845, + "CONCEPT_NAME" : "Antenatal education", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "135892000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4084186, + "CONCEPT_NAME" : "Antenatal exercises", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "183329005", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4170305, + "CONCEPT_NAME" : "Antenatal/postnatal care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "275305005", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4062361, + "CONCEPT_NAME" : "Antenatal relaxation class", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "171066005", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060266, + "CONCEPT_NAME" : "Antenatal RhD antibody screening", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169673001", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4079835, + "CONCEPT_NAME" : "Antenatal risk factors", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276445008", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4152443, + "CONCEPT_NAME" : "Antenatal scan unable to confirm pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "370381000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4087235, + "CONCEPT_NAME" : "Antenatal screening", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "243787009", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37310544, + "CONCEPT_NAME" : "Antenatal screening blood test for Down's, Edwards' and Patau's syndromes", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "747731000000104", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37310338, + "CONCEPT_NAME" : "Antenatal screening blood test for Edwards'and Patau's syndromes", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1128891000000103", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36713463, + "CONCEPT_NAME" : "Antenatal screening for fetal growth retardation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "717801000", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4191703, + "CONCEPT_NAME" : "Antenatal screening for human immunodeficiency virus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "390786002", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36713464, + "CONCEPT_NAME" : "Antenatal screening for isoimmunization", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "717802007", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36713462, + "CONCEPT_NAME" : "Antenatal screening for malformation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "717800004", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37016744, + "CONCEPT_NAME" : "Antenatal screening for viral hepatitis type B", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "712853001", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 35609139, + "CONCEPT_NAME" : "Antenatal screening quadruple test", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1079091000000109", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061521, + "CONCEPT_NAME" : "Antenatal - shared care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169616000", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014320, + "CONCEPT_NAME" : "Antenatal sickle cell screening", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169707007", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015137, + "CONCEPT_NAME" : "Antenatal syphilis screen-blood sent", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169700009", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015294, + "CONCEPT_NAME" : "Antenatal syphilis screening", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169698000", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37016760, + "CONCEPT_NAME" : "Antenatal thalassemia screening", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "712871008", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4152444, + "CONCEPT_NAME" : "Antenatal ultrasound confirms ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "370382007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4152445, + "CONCEPT_NAME" : "Antenatal ultrasound confirms intrauterine pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "370383002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061131, + "CONCEPT_NAME" : "Antenatal ultrasound result received", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169231003", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Observable Entity" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061803, + "CONCEPT_NAME" : "Antenatal ultrasound scan 4-8 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169668007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061157, + "CONCEPT_NAME" : "Antenatal ultrasound scan abnormal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169665005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061534, + "CONCEPT_NAME" : "Antenatal ultrasound scan at 17-22 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169670003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4141415, + "CONCEPT_NAME" : "Antenatal ultrasound scan at 22-40 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "307813007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060265, + "CONCEPT_NAME" : "Antenatal ultrasound scan at 9-16 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169669004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060263, + "CONCEPT_NAME" : "Antenatal ultrasound scan awaited", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169662008", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4143115, + "CONCEPT_NAME" : "Antenatal ultrasound scan for possible abnormality", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "425551008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060264, + "CONCEPT_NAME" : "Antenatal ultrasound scan normal and appropriate for dates", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169663003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061802, + "CONCEPT_NAME" : "Antenatal ultrasound scan status", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169657007", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060262, + "CONCEPT_NAME" : "Antenatal ultrasound scan wanted", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169661001", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4081196, + "CONCEPT_NAME" : "Antepartum", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276986009", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Qualifier Value" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110312, + "CONCEPT_NAME" : "Antepartum care only; 4-6 visits", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59425", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110313, + "CONCEPT_NAME" : "Antepartum care only; 7 or more visits", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59426", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435887, + "CONCEPT_NAME" : "Antepartum deep vein thrombosis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "49956009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4079969, + "CONCEPT_NAME" : "Antepartum fetal asphyxia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276642001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4129846, + "CONCEPT_NAME" : "Antepartum fetal death", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237361005", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Event" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434089, + "CONCEPT_NAME" : "Antepartum hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "34842007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4143074, + "CONCEPT_NAME" : "Antepartum hemorrhage, abruptio placentae and placenta previa", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "267197003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438489, + "CONCEPT_NAME" : "Antepartum hemorrhage associated with coagulation defect", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "267199000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443133, + "CONCEPT_NAME" : "Antepartum hemorrhage with coagulation defect - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198917009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438203, + "CONCEPT_NAME" : "Antepartum hemorrhage with coagulation defect - not delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198918004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37017027, + "CONCEPT_NAME" : "Antepartum stillbirth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "713202001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4129039, + "CONCEPT_NAME" : "Anti-D antibodies", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "237301008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2108689, + "CONCEPT_NAME" : "Anti-D immune globulin received between 26 and 30 weeks gestation (Pre-Cr)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "4178F", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061531, + "CONCEPT_NAME" : "A/N U/S scan offered", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "169659005", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014312, + "CONCEPT_NAME" : "Apgar at 10 minutes = 1", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169924008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4016469, + "CONCEPT_NAME" : "Apgar at 10 minutes = 4", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169927001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014579, + "CONCEPT_NAME" : "Apgar at 10 minutes = 6", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169929003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4016470, + "CONCEPT_NAME" : "Apgar at 10 minutes = 7", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169930008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4269556, + "CONCEPT_NAME" : "Apgar at 10 minutes - finding", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "364743002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014304, + "CONCEPT_NAME" : "Apgar at 1 minute", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169895004", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Observable Entity" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4016052, + "CONCEPT_NAME" : "Apgar at 1 minute = 8", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169905005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015431, + "CONCEPT_NAME" : "Apgar at 1 minute = 9", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169906006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4269555, + "CONCEPT_NAME" : "Apgar at 1 minute - finding", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "364741000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4016464, + "CONCEPT_NAME" : "Apgar at 5 minutes", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169909004", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Observable Entity" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4016467, + "CONCEPT_NAME" : "Apgar at 5 minutes = 10", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169920004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4016466, + "CONCEPT_NAME" : "Apgar at 5 minutes = 9", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169919005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4266765, + "CONCEPT_NAME" : "Apgar at 5 minutes - finding", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "364742007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4167905, + "CONCEPT_NAME" : "Apgar normal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "275307002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4299090, + "CONCEPT_NAME" : "Apgar score 0", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "77714001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4183596, + "CONCEPT_NAME" : "Apgar score 1", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43610007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4170878, + "CONCEPT_NAME" : "Apgar score 10", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "49544001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4219591, + "CONCEPT_NAME" : "Apgar score 2", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "39910003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4132308, + "CONCEPT_NAME" : "Apgar score 3", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26635001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4244236, + "CONCEPT_NAME" : "Apgar score 4", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "38107004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4088036, + "CONCEPT_NAME" : "Apgar score 5", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "24388001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4011798, + "CONCEPT_NAME" : "Apgar score 6", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10318004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4028032, + "CONCEPT_NAME" : "Apgar score 7", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13323003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4049582, + "CONCEPT_NAME" : "Apgar score 8", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12431004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4274664, + "CONCEPT_NAME" : "Apgar score 9", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64198003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 318247, + "CONCEPT_NAME" : "Apnea in the newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13094009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36716744, + "CONCEPT_NAME" : "Apnea of newborn due to neurological injury", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "722915009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4079848, + "CONCEPT_NAME" : "Apnea of prematurity", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276544005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3006511, + "CONCEPT_NAME" : "Appearance of Amniotic fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1887-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4080668, + "CONCEPT_NAME" : "Arrested active phase of labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "24699006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004542, + "CONCEPT_NAME" : "Artificial insemination", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "69.92", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4239302, + "CONCEPT_NAME" : "Artificial insemination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "58533008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4130186, + "CONCEPT_NAME" : "Artificial insemination by donor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "236896006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4127094, + "CONCEPT_NAME" : "Artificial insemination by husband", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "236895005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4187819, + "CONCEPT_NAME" : "Artificial insemination, heterologous", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46249006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4280831, + "CONCEPT_NAME" : "Artificial insemination, homologous", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "66601000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110196, + "CONCEPT_NAME" : "Artificial insemination; intra-cervical", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "58321", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110197, + "CONCEPT_NAME" : "Artificial insemination; intra-uterine", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "58322", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4238828, + "CONCEPT_NAME" : "Artificial insemination with sperm washing and capacitation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57233006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4131376, + "CONCEPT_NAME" : "Ascitic fluid glucose measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "413059003", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439136, + "CONCEPT_NAME" : "Asphyxia, in liveborn infant", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "28314004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004526, + "CONCEPT_NAME" : "Aspiration curettage following delivery or abortion", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "69.52", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004525, + "CONCEPT_NAME" : "Aspiration curettage of uterus for termination of pregnancy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "69.51", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4212941, + "CONCEPT_NAME" : "Aspiration curettage of uterus for termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "391897002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45763635, + "CONCEPT_NAME" : "Aspiration of ectopic pregnancy from cornu of fallopian tube", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "700073007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4300368, + "CONCEPT_NAME" : "Aspiration of ectopic pregnancy from fallopian tube", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "387617009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4153454, + "CONCEPT_NAME" : "Aspiration of liquor or mucus in newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "268832006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4075168, + "CONCEPT_NAME" : "Assisted breech delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177158008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2213350, + "CONCEPT_NAME" : "Assisted embryo hatching, microtechniques (any method)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "89253", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4272937, + "CONCEPT_NAME" : "Assisted fertilization", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63487001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2721246, + "CONCEPT_NAME" : "Assisted oocyte fertilization, case rate", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "S4022", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42739500, + "CONCEPT_NAME" : "Assisted oocyte fertilization, microtechnique (any method) (Deprecated)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "89252", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2213363, + "CONCEPT_NAME" : "Assisted oocyte fertilization, microtechnique; greater than 10 oocytes", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "89281", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2213362, + "CONCEPT_NAME" : "Assisted oocyte fertilization, microtechnique; less than or equal to 10 oocytes", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "89280", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 80156, + "CONCEPT_NAME" : "Asymptomatic bacteriuria in pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "31563000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 76761, + "CONCEPT_NAME" : "Asymptomatic bacteriuria in pregnancy - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199099004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 73526, + "CONCEPT_NAME" : "Asymptomatic bacteriuria in pregnancy - delivered with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199100007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 196488, + "CONCEPT_NAME" : "Atonic postpartum hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "27214003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42739562, + "CONCEPT_NAME" : "Attendance at delivery (when requested by delivering physician) and initial stabilization of newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "99436", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2514559, + "CONCEPT_NAME" : "Attendance at delivery (when requested by the delivering physician or other qualified health care professional) and initial stabilization of newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "99464", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4173192, + "CONCEPT_NAME" : "Atypical isoimmunization of newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276580005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4215792, + "CONCEPT_NAME" : "Autoimmune hypoglycemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "71858003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37397031, + "CONCEPT_NAME" : "Autosomal dominant hyperinsulinism due to Kir6.2 deficiency", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "717045004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37397032, + "CONCEPT_NAME" : "Autosomal dominant hyperinsulinism due to SUR1 deficiency", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "717046003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37204850, + "CONCEPT_NAME" : "Autosomal recessive hyperinsulinism due to Kir6.2 deficiency", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "783768006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37204849, + "CONCEPT_NAME" : "Autosomal recessive hyperinsulinism due to SUR1 deficiency", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "783767001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4149455, + "CONCEPT_NAME" : "Baby birth weight 2 to 2.5 kilogram", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "310538001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014461, + "CONCEPT_NAME" : "Baby birth weight equal to 50 percent to 74 percent (3450-3749g)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169864006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4151169, + "CONCEPT_NAME" : "Baby birth weight less than 751gm", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "310491007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015275, + "CONCEPT_NAME" : "Baby extremely premature 28-32 weeks", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "169851005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4078138, + "CONCEPT_NAME" : "Baby normal at birth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "275735001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4149449, + "CONCEPT_NAME" : "Baby premature 24-26 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "310523002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37016220, + "CONCEPT_NAME" : "Baby premature 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15887011000119107", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37016221, + "CONCEPT_NAME" : "Baby premature 25 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15887051000119108", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4149457, + "CONCEPT_NAME" : "Baby premature 26-28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "310548004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37016222, + "CONCEPT_NAME" : "Baby premature 26 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15887091000119103", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37018684, + "CONCEPT_NAME" : "Baby premature 27 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15887131000119101", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 46271955, + "CONCEPT_NAME" : "Baby premature 28-32 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "710235005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37016216, + "CONCEPT_NAME" : "Baby premature 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15750001000119103", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37016217, + "CONCEPT_NAME" : "Baby premature 29 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15750041000119101", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37016218, + "CONCEPT_NAME" : "Baby premature 30 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15750081000119106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37016213, + "CONCEPT_NAME" : "Baby premature 31 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15635451000119107", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 46271814, + "CONCEPT_NAME" : "Baby premature 32-36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "710068006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37018683, + "CONCEPT_NAME" : "Baby premature 32 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15635411000119106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37018889, + "CONCEPT_NAME" : "Baby premature 33 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15635371000119105", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37016212, + "CONCEPT_NAME" : "Baby premature 34 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15635331000119107", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 762577, + "CONCEPT_NAME" : "Baby premature 35-36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429151000124100", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37016211, + "CONCEPT_NAME" : "Baby premature 35 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15635291000119101", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014299, + "CONCEPT_NAME" : "Baby premature 36-38 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169849006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4149451, + "CONCEPT_NAME" : "Baby premature 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "310530008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4150406, + "CONCEPT_NAME" : "Baby premature 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "310529003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4150405, + "CONCEPT_NAME" : "Baby premature 38 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "310528006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4150404, + "CONCEPT_NAME" : "Baby premature 39 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "310527001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015274, + "CONCEPT_NAME" : "Baby very premature 32 to 36 weeks", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "169850006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 133594, + "CONCEPT_NAME" : "Bacterial sepsis of newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276669000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4075169, + "CONCEPT_NAME" : "Barton forceps cephalic delivery with rotation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177167008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4147974, + "CONCEPT_NAME" : "Barton's forceps delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "30476003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42742559, + "CONCEPT_NAME" : "BCKDHB (branched-chain keto acid dehydrogenase E1, beta polypeptide) (eg, maple syrup urine disease) gene analysis, common variants (eg, R183P, G278S, E422X)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "81205", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42742561, + "CONCEPT_NAME" : "BCR/ABL1 (t(9;22)) (eg, chronic myelogenous leukemia) translocation analysis; minor breakpoint, qualitative or quantitative", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "81207", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4150338, + "CONCEPT_NAME" : "Bedtime blood glucose measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "271065008", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 321638, + "CONCEPT_NAME" : "Benign essential hypertension complicating pregnancy, childbirth and the puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198942000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 314103, + "CONCEPT_NAME" : "Benign essential hypertension complicating pregnancy, childbirth and the puerperium - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198944004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 320456, + "CONCEPT_NAME" : "Benign essential hypertension complicating pregnancy, childbirth and the puerperium - delivered with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198945003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 314423, + "CONCEPT_NAME" : "Benign essential hypertension complicating pregnancy, childbirth and the puerperium - not delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198946002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4062811, + "CONCEPT_NAME" : "Benign essential hypertension complicating pregnancy, childbirth and the puerperium with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198947006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 762706, + "CONCEPT_NAME" : "Benign familial neonatal seizures, non-refractory", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "430821000124108", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 762705, + "CONCEPT_NAME" : "Benign familial neonatal seizures, refractory", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "430811000124100", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4244383, + "CONCEPT_NAME" : "Benign neonatal convulsions", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "38281008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4043411, + "CONCEPT_NAME" : "Benign neonatal familial convulsions", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "230410004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4046209, + "CONCEPT_NAME" : "Benign non-familial neonatal convulsions", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "230411000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4028640, + "CONCEPT_NAME" : "Bicornuate uterus in pregnancy, childbirth and the puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237225003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4093429, + "CONCEPT_NAME" : "Bilateral complete salpingectomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25811000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004347, + "CONCEPT_NAME" : "Bilateral partial salpingectomy, not otherwise specified", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "66.63", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36684754, + "CONCEPT_NAME" : "Bilateral retinopathy of prematurity", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "343791000119101", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37207968, + "CONCEPT_NAME" : "Bilateral retinopathy of prematurity of eyes stage 0", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "343781000119104", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36684753, + "CONCEPT_NAME" : "Bilateral retinopathy of prematurity of eyes stage 1 - demarcation line", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "343771000119102", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36684752, + "CONCEPT_NAME" : "Bilateral retinopathy of prematurity of eyes stage 2 - intraretinal ridge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "343761000119108", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36684751, + "CONCEPT_NAME" : "Bilateral retinopathy of prematurity of eyes stage 3 - ridge with extraretinal fibrovascular proliferation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "343751000119106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4107080, + "CONCEPT_NAME" : "Bilateral salpingectomy with oophorectomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "29827000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36716760, + "CONCEPT_NAME" : "Bilious vomiting of newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "722933003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4028644, + "CONCEPT_NAME" : "Biochemical pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237243004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2213365, + "CONCEPT_NAME" : "Biopsy, oocyte polar body or embryo blastomere, microtechnique (for pre-implantation genetic diagnosis); greater than 5 embryos", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "89291", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2213364, + "CONCEPT_NAME" : "Biopsy, oocyte polar body or embryo blastomere, microtechnique (for pre-implantation genetic diagnosis); less than or equal to 5 embryos", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "89290", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4184996, + "CONCEPT_NAME" : "Birth asphyxia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "413654009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36716763, + "CONCEPT_NAME" : "Birth asphyxia co-occurrent with metabolic acidemia of cord blood", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "722937002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36716762, + "CONCEPT_NAME" : "Birth asphyxia with Apgar score 5 minute Apgar score 4-6", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "722936006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014291, + "CONCEPT_NAME" : "Birth detail", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169811007", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Observable Entity" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4016064, + "CONCEPT_NAME" : "Birth details not known", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169963001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015277, + "CONCEPT_NAME" : "Birth head circumference", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169876006", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Observable Entity" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015278, + "CONCEPT_NAME" : "Birth head circumference equal to 10th-24th centile", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169879004", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015282, + "CONCEPT_NAME" : "Birth head circumference equal to 90th-96th centile", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169883004", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42536751, + "CONCEPT_NAME" : "Birth injury of long bone", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "735745004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42536565, + "CONCEPT_NAME" : "Birth injury of thorax", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "735494000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4290881, + "CONCEPT_NAME" : "Birth injury to scalp", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "37384000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014465, + "CONCEPT_NAME" : "Birth length", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169886007", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Observable Entity" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015288, + "CONCEPT_NAME" : "Birth length=75th-89th centile", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169892001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015429, + "CONCEPT_NAME" : "Birth length equal to 10th-24th centile", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169889000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015287, + "CONCEPT_NAME" : "Birth length equal to 50th-74th centile", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169891008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014466, + "CONCEPT_NAME" : "Birth length equal to 90th-96th centile", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169893006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015284, + "CONCEPT_NAME" : "Birth length equal to third centile", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169887003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015270, + "CONCEPT_NAME" : "Birth of child", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169836001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40760833, + "CONCEPT_NAME" : "Birth plurality of Pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57722-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Clinical Observation" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435641, + "CONCEPT_NAME" : "Birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "56110009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4030440, + "CONCEPT_NAME" : "Birth trauma deafness", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "129631008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4149610, + "CONCEPT_NAME" : "Birth weight 999 g or less", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "310660006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4171114, + "CONCEPT_NAME" : "Birth weight abnormality", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276609002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4187520, + "CONCEPT_NAME" : "Birth weight finding", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "47340003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 46271901, + "CONCEPT_NAME" : "Birth weight less than 500g", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "710168009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40759177, + "CONCEPT_NAME" : "Birth weight - Reported", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "56056-5", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Clinical Observation" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4262136, + "CONCEPT_NAME" : "Blighted ovum", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "35999006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2721180, + "CONCEPT_NAME" : "BLOOD CHEMISTRY FOR FREE BETA HUMAN CHORIONIC GONADOTROPIN (HCG)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "S3618", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3655208, + "CONCEPT_NAME" : "Blood clot embolism due to and following ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "860679004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3655207, + "CONCEPT_NAME" : "Blood clot embolism due to and following molar pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "860678007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4028780, + "CONCEPT_NAME" : "Blood dyscrasia puerperal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237338008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4055674, + "CONCEPT_NAME" : "Blood glucose 0-1.4 mmol/L", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "166914001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4041701, + "CONCEPT_NAME" : "Blood glucose 10-13.9 mmol/L", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "166919006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4041702, + "CONCEPT_NAME" : "Blood glucose 14+ mmol/L", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "166923003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4041700, + "CONCEPT_NAME" : "Blood glucose 1.5-2.4 mmol/L", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "166915000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4055675, + "CONCEPT_NAME" : "Blood glucose 2.5-4.9 mmol/L", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "166916004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4055676, + "CONCEPT_NAME" : "Blood glucose 5-6.9 mmol/L", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "166917008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4042726, + "CONCEPT_NAME" : "Blood glucose 7-9.9 mmol/L", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "166918003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4042728, + "CONCEPT_NAME" : "Blood glucose abnormal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "166922008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4275337, + "CONCEPT_NAME" : "Blood glucose level - finding", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "365812005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4041697, + "CONCEPT_NAME" : "Blood glucose method", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "166888009", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4042727, + "CONCEPT_NAME" : "Blood glucose normal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "166921001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4135545, + "CONCEPT_NAME" : "Blood glucose series", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "412928005", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44784272, + "CONCEPT_NAME" : "Blood in vomit of newborn due to swallowed maternal blood", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "698317008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4042936, + "CONCEPT_NAME" : "Blood sent: alpha-fetoprotein", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "166557002", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4078281, + "CONCEPT_NAME" : "BM stix glucose measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "275810004", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4027371, + "CONCEPT_NAME" : "Bone AND/OR joint disorder in mother complicating pregnancy, childbirth AND/OR puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "128076000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4192676, + "CONCEPT_NAME" : "Born by cesarean section", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "394699000", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4260748, + "CONCEPT_NAME" : "Bottle fed at birth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "412728002", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42742564, + "CONCEPT_NAME" : "BRAF (B-Raf proto-oncogene, serine/threonine kinase) (eg, colon cancer, melanoma), gene analysis, V600 variant(s)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "81210", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4139126, + "CONCEPT_NAME" : "Braxton Hicks contractions", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "32644009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 73019, + "CONCEPT_NAME" : "Breast engorgement in newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "34831003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4066255, + "CONCEPT_NAME" : "Breast engorgement in pregnancy/puerperium/lact + p/n comp", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "200421009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443330, + "CONCEPT_NAME" : "Breast engorgement in pregnancy, the puerperium or lactation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200416006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 77624, + "CONCEPT_NAME" : "Breast engorgement in pregnancy, the puerperium or lactation - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200418007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 81086, + "CONCEPT_NAME" : "Breast engorgement in pregnancy, the puerperium or lactation - delivered with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200419004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 73282, + "CONCEPT_NAME" : "Breast engorgement in pregnancy, the puerperium or lactation with antenatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200420005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4260749, + "CONCEPT_NAME" : "Breast fed at birth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "412729005", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4054949, + "CONCEPT_NAME" : "Breastfeeding education", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "243094003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4066258, + "CONCEPT_NAME" : "Breastfeeding painful", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200430001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4345684, + "CONCEPT_NAME" : "Breastfeeding problem in the newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "240301009", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015144, + "CONCEPT_NAME" : "Breastfeeding started", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169745008", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40766616, + "CONCEPT_NAME" : "Breastfeeding status", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63895-7", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Clinical Observation" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4254219, + "CONCEPT_NAME" : "Breastfeeding support", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "408883002", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3662128, + "CONCEPT_NAME" : "Breech delivery following termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1147961000000102", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4213387, + "CONCEPT_NAME" : "Breech extraction", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "417121007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 436767, + "CONCEPT_NAME" : "Breech extraction - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200142000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4075165, + "CONCEPT_NAME" : "Breech extraction delivery with version", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177152009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 73267, + "CONCEPT_NAME" : "Breech malpresentation successfully converted to cephalic presentation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "17532001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 74698, + "CONCEPT_NAME" : "Breech presentation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6096002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 73537, + "CONCEPT_NAME" : "Breech presentation - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199354004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 76756, + "CONCEPT_NAME" : "Breech presentation with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199355003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4283942, + "CONCEPT_NAME" : "Bronchopulmonary dysplasia of newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "67569000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4122871, + "CONCEPT_NAME" : "Bruising of umbilical cord", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "289333007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3026267, + "CONCEPT_NAME" : "Calorie intake total 24 hour", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "9057-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Clinical Observation" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4120298, + "CONCEPT_NAME" : "Capillary blood glucose measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "302789003", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4031037, + "CONCEPT_NAME" : "Carbuncle of umbilicus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14268002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 317669, + "CONCEPT_NAME" : "Cardiac arrest in fetus OR newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "179924009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36713582, + "CONCEPT_NAME" : "Cardiac complication of anesthesia during the puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "717959008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4306192, + "CONCEPT_NAME" : "Cardiotochogram", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "387672006", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4261479, + "CONCEPT_NAME" : "Carneous mole", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "44979007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42742390, + "CONCEPT_NAME" : "Car seat/bed testing for airway integrity, for infants through 12 months of age, with continual clinical staff observation and continuous recording of pulse oximetry, heart rate and respiratory rate, with interpretation and report; 60 minutes", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "94780", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2108149, + "CONCEPT_NAME" : "Catheterization of umbilical vein for diagnosis or therapy, newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36510", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4065999, + "CONCEPT_NAME" : "Cellulitis and abscess of umbilicus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200660001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4208980, + "CONCEPT_NAME" : "Cellulitis of umbilicus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "56644003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4235752, + "CONCEPT_NAME" : "Central laceration during delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90532005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36716743, + "CONCEPT_NAME" : "Central neonatal apnea", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "722914008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36713583, + "CONCEPT_NAME" : "Central nervous system complication of anesthesia during the puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "717960003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 375016, + "CONCEPT_NAME" : "Central nervous system malformation in fetus affecting obstetrical care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1538006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4047852, + "CONCEPT_NAME" : "Cephalhematoma due to birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206200000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3662129, + "CONCEPT_NAME" : "Cephalic delivery following termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1147971000000109", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4071629, + "CONCEPT_NAME" : "Cephalic vaginal delivery with abnormal presentation of head at delivery without instrument", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177179008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110305, + "CONCEPT_NAME" : "Cerclage of cervix, during pregnancy; abdominal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59325", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110304, + "CONCEPT_NAME" : "Cerclage of cervix, during pregnancy; vaginal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59320", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4147060, + "CONCEPT_NAME" : "Cerebral anoxia following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "30243004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4243309, + "CONCEPT_NAME" : "Cerebral hemorrhage due to intrapartum anoxia or hypoxia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "38453000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 377980, + "CONCEPT_NAME" : "Cerebral irritability in newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "4952001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4171109, + "CONCEPT_NAME" : "Cerebral irritation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276596008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4171111, + "CONCEPT_NAME" : "Cerebral leukomalacia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276599001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4082313, + "CONCEPT_NAME" : "Cerebral ventricular distension", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "277476007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 316494, + "CONCEPT_NAME" : "Cerebrovascular disorder in the puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6594005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4321386, + "CONCEPT_NAME" : "Cervical cerclage suture present", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "69802008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4034148, + "CONCEPT_NAME" : "Cervical dystocia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237324001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 436740, + "CONCEPT_NAME" : "Cervical incompetence", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "17382005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441369, + "CONCEPT_NAME" : "Cervical incompetence - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199482005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435607, + "CONCEPT_NAME" : "Cervical incompetence - delivered with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199483000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437334, + "CONCEPT_NAME" : "Cervical incompetence with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199484006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440166, + "CONCEPT_NAME" : "Cervical incompetence with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199485007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44790204, + "CONCEPT_NAME" : "Cervical length scanning at 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "228531000000103", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 197043, + "CONCEPT_NAME" : "Cervical observation during pregnancy and labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "249020006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437942, + "CONCEPT_NAME" : "Cesarean delivery - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200146002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110316, + "CONCEPT_NAME" : "Cesarean delivery only", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59514", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110323, + "CONCEPT_NAME" : "Cesarean delivery only, following attempted vaginal delivery after previous cesarean delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59620", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110324, + "CONCEPT_NAME" : "Cesarean delivery only, following attempted vaginal delivery after previous cesarean delivery; including postpartum care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59622", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110317, + "CONCEPT_NAME" : "Cesarean delivery only; including postpartum care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59515", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4165077, + "CONCEPT_NAME" : "Cesarean hysterectomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "41059002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015701, + "CONCEPT_NAME" : "Cesarean section", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "11466000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4303297, + "CONCEPT_NAME" : "Cesarean section care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "386234001", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004789, + "CONCEPT_NAME" : "Cesarean section of other specified type", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "74.4", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "3-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4066111, + "CONCEPT_NAME" : "Cesarean section - pregnancy at term", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200147006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42872492, + "CONCEPT_NAME" : "Cesarean section through inverted T shaped incision of uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "450483001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42872493, + "CONCEPT_NAME" : "Cesarean section through J shaped incision of uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "450484007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 197344, + "CONCEPT_NAME" : "Cesarean wound disruption", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "396544001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 194113, + "CONCEPT_NAME" : "Cesarean wound disruption - delivered with postnatal complication", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "200337002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4065866, + "CONCEPT_NAME" : "Cesarean wound disruption with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200338007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40482050, + "CONCEPT_NAME" : "Chemical pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "445086005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4152029, + "CONCEPT_NAME" : "Childbirth examination - normal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "268484008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4253751, + "CONCEPT_NAME" : "Child examination - 2 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "410622001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40479783, + "CONCEPT_NAME" : "Child examination at birth with explicit context", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "444483000", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014738, + "CONCEPT_NAME" : "Child examination - birth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "170099002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4194590, + "CONCEPT_NAME" : "Child HC < 0.4th centile", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "314643009", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4200299, + "CONCEPT_NAME" : "Child HC = 0.4th centile", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "314644003", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4194591, + "CONCEPT_NAME" : "Child HC 0.5th - 1.9th centile", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "314645002", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4199794, + "CONCEPT_NAME" : "Child HC 10th - 24th centile", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "314649008", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4194593, + "CONCEPT_NAME" : "Child HC 26th - 49th centile", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "314651007", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4199793, + "CONCEPT_NAME" : "Child HC = 2nd centile", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "314646001", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4194592, + "CONCEPT_NAME" : "Child HC 3rd - 8th centile", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "314647005", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014735, + "CONCEPT_NAME" : "Child HC = 3rd-9th centile", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "170063007", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014605, + "CONCEPT_NAME" : "Child HC = 50th-74th centile", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "170066004", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4194594, + "CONCEPT_NAME" : "Child HC 51st - 74th centile", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "314653005", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014606, + "CONCEPT_NAME" : "Child HC = 75th-89th centile", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "170067008", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4194595, + "CONCEPT_NAME" : "Child HC = 75th centile", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "314654004", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4199796, + "CONCEPT_NAME" : "Child HC 76th - 90th centile", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "314655003", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014607, + "CONCEPT_NAME" : "Child HC = 90th-96th centile", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "170068003", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4199797, + "CONCEPT_NAME" : "Child HC 92nd - 97th centile", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "314657006", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014736, + "CONCEPT_NAME" : "Child HC = > 97th centile", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "170069006", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4194596, + "CONCEPT_NAME" : "Child HC 98.1st-99.6th centile", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "314659009", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4200422, + "CONCEPT_NAME" : "Child HC = 98th centile", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "314658001", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4199798, + "CONCEPT_NAME" : "Child HC >99.6th centile", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "314660004", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4197178, + "CONCEPT_NAME" : "Child HC = 9th centile", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "314648000", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4200300, + "CONCEPT_NAME" : "Child head circumference 50 equal to 50th centile", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "314652000", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4276725, + "CONCEPT_NAME" : "Child head circumference centile finding", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "365943002", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4016184, + "CONCEPT_NAME" : "Child head circumference equal to 25th-49th centile", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "170065000", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4199795, + "CONCEPT_NAME" : "Child head circumference equal to 25th centile", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "314650008", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4197179, + "CONCEPT_NAME" : "Child head circumference equal to 91st centile", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "314656002", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4016183, + "CONCEPT_NAME" : "Child head circumference equal to third centile", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "170062002", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4102952, + "CONCEPT_NAME" : "Cholestasis-edema syndrome, Norwegian type", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "28724005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4203366, + "CONCEPT_NAME" : "Cholestasis in newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "433237003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4340944, + "CONCEPT_NAME" : "Cholestasis of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "235888006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3019145, + "CONCEPT_NAME" : "Choriogonadotropin.beta subunit free [Mass/volume] in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25373-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3011465, + "CONCEPT_NAME" : "Choriogonadotropin.beta subunit free [Units/volume] in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "19180-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3011996, + "CONCEPT_NAME" : "Choriogonadotropin.beta subunit [Moles/volume] in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "2111-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3010164, + "CONCEPT_NAME" : "Choriogonadotropin.beta subunit [Multiple of the median] adjusted in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "23841-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40758989, + "CONCEPT_NAME" : "Choriogonadotropin.beta subunit [Multiple of the median] in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55868-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3011149, + "CONCEPT_NAME" : "Choriogonadotropin.beta subunit (pregnancy test) [Presence] in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "2110-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3009417, + "CONCEPT_NAME" : "Choriogonadotropin.beta subunit (pregnancy test) [Presence] in Urine", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "2112-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3038136, + "CONCEPT_NAME" : "Choriogonadotropin.beta subunit [Units/volume] in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "21198-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3004303, + "CONCEPT_NAME" : "Choriogonadotropin.intact [Moles/volume] in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "2117-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3036988, + "CONCEPT_NAME" : "Choriogonadotropin.intact [Units/volume] in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "30243-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3002091, + "CONCEPT_NAME" : "Choriogonadotropin [Moles/volume] in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "2119-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3008714, + "CONCEPT_NAME" : "Choriogonadotropin [Multiple of the median] adjusted in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "32166-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3003191, + "CONCEPT_NAME" : "Choriogonadotropin (pregnancy test) [Presence] in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "2118-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3018954, + "CONCEPT_NAME" : "Choriogonadotropin (pregnancy test) [Presence] in Urine", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "2106-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3018171, + "CONCEPT_NAME" : "Choriogonadotropin [Units/volume] in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "19080-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4018189, + "CONCEPT_NAME" : "Chorionic gonadotropin, alpha subunit measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "104595003", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4296540, + "CONCEPT_NAME" : "Chorionic gonadotropin, beta-subunit measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "386558001", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4296541, + "CONCEPT_NAME" : "Chorionic gonadotropin, beta-subunit measurement, spinal fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "386559009", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4016953, + "CONCEPT_NAME" : "Chorionic gonadotropin, intact measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "104596002", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4017479, + "CONCEPT_NAME" : "Chorionic gonadotropin measurement, qualitative", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "104406007", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2212145, + "CONCEPT_NAME" : "Chorionic gonadotropin stimulation panel; estradiol response This panel must include the following: Estradiol, total (82670 x 2 on 3 pooled blood samples)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80415", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2212144, + "CONCEPT_NAME" : "Chorionic gonadotropin stimulation panel; testosterone response This panel must include the following: Testosterone (84403 x 2 on 3 pooled blood samples)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80414", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110282, + "CONCEPT_NAME" : "Chorionic villus sampling, any method", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59015", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44793560, + "CONCEPT_NAME" : "Chorionic villus sampling culture", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "283931000000109", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44791458, + "CONCEPT_NAME" : "Chorionic villus sampling culture and direct chromosome analysis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "283941000000100", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4162502, + "CONCEPT_NAME" : "Chorionic villus sampling using obstetric ultrasound guidance", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "433153009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 72973, + "CONCEPT_NAME" : "Chromosomal abnormality in fetus affecting obstetrical care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "42686001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40760436, + "CONCEPT_NAME" : "Chromosome 13+18+21+X+Y aneuploidy in Amniotic fluid or Chorionic villus sample by FISH Nominal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57317-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2213267, + "CONCEPT_NAME" : "Chromosome analysis, amniotic fluid or chorionic villus, count 15 cells, 1 karyotype, with banding", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "88267", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2213268, + "CONCEPT_NAME" : "Chromosome analysis, in situ for amniotic fluid cells, count cells from 6-12 colonies, 1 karyotype, with banding", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "88269", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4080590, + "CONCEPT_NAME" : "Chronic congenital cytomegalic inclusion disease", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "240551003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4173190, + "CONCEPT_NAME" : "Chronic partial asphyxia of newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276573008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 313023, + "CONCEPT_NAME" : "Chronic respiratory disease in perinatal period", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "20322005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4223536, + "CONCEPT_NAME" : "Classical cesarean section", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84195007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004785, + "CONCEPT_NAME" : "Classical cesarean section", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "74.0", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "3-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36713561, + "CONCEPT_NAME" : "Classic onset hemorrhagic disease of newborn due to vitamin K deficiency", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "717936002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37208486, + "CONCEPT_NAME" : "Clitoral tear during delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1105801000000107", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434167, + "CONCEPT_NAME" : "Cold injury syndrome of newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26746005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40761828, + "CONCEPT_NAME" : "Collection date of Amniotic fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "58734-5", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Clinical Observation" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4182145, + "CONCEPT_NAME" : "Color of lochia - finding", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "366298006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44783183, + "CONCEPT_NAME" : "Combined intrauterine and ovarian pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "699240001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4135209, + "CONCEPT_NAME" : "Combined pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "31601007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40483581, + "CONCEPT_NAME" : "Combined tubal and intrauterine pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "442478007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3170656, + "CONCEPT_NAME" : "Complcated pregnancy due to surgical history: uterine myomectomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6980001000004103", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "Nebraska Lexicon", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437046, + "CONCEPT_NAME" : "Complete abortion", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "69124005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4034145, + "CONCEPT_NAME" : "Complete breech delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237311001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2721238, + "CONCEPT_NAME" : "Complete cycle, gamete intrafallopian transfer (gift), case rate", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "S4013", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2721239, + "CONCEPT_NAME" : "Complete cycle, zygote intrafallopian transfer (zift), case rate", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "S4014", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439085, + "CONCEPT_NAME" : "Complete inevitable miscarriage complicated by delayed or excessive hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "307735008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441629, + "CONCEPT_NAME" : "Complete inevitable miscarriage complicated by embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "307750004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441921, + "CONCEPT_NAME" : "Complete inevitable miscarriage complicated by genital tract and pelvic infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "307734007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4146774, + "CONCEPT_NAME" : "Complete inevitable miscarriage without complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "307738005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2721240, + "CONCEPT_NAME" : "Complete in vitro fertilization cycle, not otherwise specified, case rate", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "S4015", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441073, + "CONCEPT_NAME" : "Complete legal termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "267194005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438196, + "CONCEPT_NAME" : "Complete legal termination of pregnancy with delayed or excessive hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198719001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40318618, + "CONCEPT_NAME" : "Complete miscarriage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "156073000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441910, + "CONCEPT_NAME" : "Complete miscarriage with damage to pelvic organs or tissues", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198657009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432682, + "CONCEPT_NAME" : "Complete miscarriage with delayed or excessive hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198656000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441632, + "CONCEPT_NAME" : "Complete miscarriage with embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198663000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435318, + "CONCEPT_NAME" : "Complete miscarriage with genital tract or pelvic infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198655001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435000, + "CONCEPT_NAME" : "Complete miscarriage with metabolic disorder", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198660002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 436742, + "CONCEPT_NAME" : "Complete miscarriage with renal failure", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198659007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438805, + "CONCEPT_NAME" : "Complete miscarriage with shock", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198661003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4113352, + "CONCEPT_NAME" : "Complete spontaneous abortion NOS", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "198667004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440464, + "CONCEPT_NAME" : "Complication following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "2989004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440795, + "CONCEPT_NAME" : "Complication occurring during labor and delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199745000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36715374, + "CONCEPT_NAME" : "Complication of anesthesia during the puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "721022000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432382, + "CONCEPT_NAME" : "Complication of labor AND/OR delivery", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "27541007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 436489, + "CONCEPT_NAME" : "Complication of obstetrical surgery AND/OR procedure", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "78408007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437947, + "CONCEPT_NAME" : "Complication of obstetrical surgical wound", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "32999002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435875, + "CONCEPT_NAME" : "Complication of pregnancy, childbirth and/or puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198609003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4141513, + "CONCEPT_NAME" : "Complication of prematurity", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "426850008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441364, + "CONCEPT_NAME" : "Complication of the puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80113008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433822, + "CONCEPT_NAME" : "Complication related to pregnancy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "90821003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433263, + "CONCEPT_NAME" : "Complications following abortion and ectopic and molar pregnancies", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "198818003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4309021, + "CONCEPT_NAME" : "Complications of attempted introduction of fertilized ovum following in vitro fertilization", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "213202009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4193765, + "CONCEPT_NAME" : "Compression of umbilical cord", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "79222000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40482399, + "CONCEPT_NAME" : "Conceived by in vitro fertilization", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "443633009", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 80205, + "CONCEPT_NAME" : "Condition in fetus originating in the perinatal period", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "41168002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441964, + "CONCEPT_NAME" : "Conditions involving the integument AND/OR temperature regulation of fetus OR newborn", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "40504002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 197339, + "CONCEPT_NAME" : "Congenital abnormality of uterus, affecting pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "41215002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 194707, + "CONCEPT_NAME" : "Congenital abnormality of uterus - baby delivered with postpartum complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "267215001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 193825, + "CONCEPT_NAME" : "Congenital abnormality of uterus complicating antenatal care, baby not yet delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "267216000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 315013, + "CONCEPT_NAME" : "Congenital cardiovascular disorder during pregnancy - baby delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199266007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 314426, + "CONCEPT_NAME" : "Congenital cardiovascular disorder during pregnancy - baby not yet delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199268008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443249, + "CONCEPT_NAME" : "Congenital cardiovascular disorders during pregnancy, childbirth and the puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "267207004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 436532, + "CONCEPT_NAME" : "Congenital cytomegalovirus infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59527008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37396772, + "CONCEPT_NAME" : "Congenital deficiency of alpha-fetoprotein", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "716698007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4236230, + "CONCEPT_NAME" : "Congenital hyperinsulinism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "360339005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 196175, + "CONCEPT_NAME" : "Congenital OR acquired abnormality of cervix affecting pregnancy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "111443000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 201920, + "CONCEPT_NAME" : "Congenital OR acquired abnormality of vagina affecting pregnancy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "111444006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435879, + "CONCEPT_NAME" : "Congenital or acquired abnormality of vulva - baby delivered with postpartum complication", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "267248001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440162, + "CONCEPT_NAME" : "Congenital or acquired abnormality of vulva complicating antenatal care - baby not yet delivered", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "267249009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4188480, + "CONCEPT_NAME" : "Congenital rubella pneumonitis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "47082005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433869, + "CONCEPT_NAME" : "Congenital rubella syndrome", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1857005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015159, + "CONCEPT_NAME" : "Consultant unit birth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169815003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060252, + "CONCEPT_NAME" : "Consultant unit booking", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169623004", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433826, + "CONCEPT_NAME" : "Continuing pregnancy after abortion of one fetus or more", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199306007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432373, + "CONCEPT_NAME" : "Continuing pregnancy after intrauterine death of one or more fetuses", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199307003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43020670, + "CONCEPT_NAME" : "Continuing pregnancy after intrauterine death of one twin with intrauterine retention of dead twin", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "472321009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441647, + "CONCEPT_NAME" : "Continuing pregnancy after intrauterine death of twin fetus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429187001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45757769, + "CONCEPT_NAME" : "Continuing triplet pregnancy after spontaneous abortion of one or more fetuses", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36801000119105", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4237335, + "CONCEPT_NAME" : "Continuous fetal heart monitoring during labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "408804006", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4268171, + "CONCEPT_NAME" : "Contraction ring dystocia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "62129004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4120986, + "CONCEPT_NAME" : "Controlled cord traction of placenta", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "302384005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36716738, + "CONCEPT_NAME" : "Contusion of brain due to birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "722908001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36716737, + "CONCEPT_NAME" : "Contusion of cerebellum due to birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "722907006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 380533, + "CONCEPT_NAME" : "Convulsions in the newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87476004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434708, + "CONCEPT_NAME" : "Cord around neck with compression", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "289311005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4129041, + "CONCEPT_NAME" : "Cord beside head", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237306003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442292, + "CONCEPT_NAME" : "Cord entanglement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "53419009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433270, + "CONCEPT_NAME" : "Cord entanglement without compression", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "11209007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110281, + "CONCEPT_NAME" : "Cordocentesis (intrauterine), any method", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59012", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433828, + "CONCEPT_NAME" : "Cord tangled or knotted with compression", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "267266006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439092, + "CONCEPT_NAME" : "Cord tangled with compression - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199880007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442421, + "CONCEPT_NAME" : "Cord tangled with compression with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199881006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4055252, + "CONCEPT_NAME" : "Correct fixing of baby to breast education", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "243096001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004823, + "CONCEPT_NAME" : "Correction of fetal defect", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "75.36", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015590, + "CONCEPT_NAME" : "Counseling for termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10383002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37016958, + "CONCEPT_NAME" : "Counting fetal movement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "713120004", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2212630, + "CONCEPT_NAME" : "C-peptide", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84681", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433548, + "CONCEPT_NAME" : "Cracked nipple associated with childbirth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "35716006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36713479, + "CONCEPT_NAME" : "Cracked nipple associated with childbirth with attachment difficulty", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "717820003", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45757216, + "CONCEPT_NAME" : "Cracked nipple associated with lactation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10836241000119104", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443243, + "CONCEPT_NAME" : "Cracked nipple in pregnancy, the puerperium or lactation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "267291006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440481, + "CONCEPT_NAME" : "Cracked nipple in pregnancy, the puerperium or lactation - delivered with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200412008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432396, + "CONCEPT_NAME" : "Cracked nipple in pregnancy, the puerperium or lactation with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200414009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442529, + "CONCEPT_NAME" : "Cranial nerve injury due to birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206234004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2213355, + "CONCEPT_NAME" : "Cryopreservation; embryo(s)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "89258", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2721256, + "CONCEPT_NAME" : "Cryopreserved embryo transfer, case rate", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "S4037", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4242590, + "CONCEPT_NAME" : "Cryptomenorrhea", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "58851004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4057444, + "CONCEPT_NAME" : "CSF: glucose decreased", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "167740005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4055550, + "CONCEPT_NAME" : "CSF: glucose increased", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "167741009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4269855, + "CONCEPT_NAME" : "CSF: glucose level - finding", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "365815007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4057443, + "CONCEPT_NAME" : "CSF: glucose normal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "167739008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2213347, + "CONCEPT_NAME" : "Culture of oocyte(s)/embryo(s), less than 4 days", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "89250", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2213348, + "CONCEPT_NAME" : "Culture of oocyte(s)/embryo(s), less than 4 days; with co-culture of oocyte(s)/embryos", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "89251", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110301, + "CONCEPT_NAME" : "Curettage, postpartum", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59160", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 193174, + "CONCEPT_NAME" : "Cystic fibrosis with meconium ileus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86092005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4170118, + "CONCEPT_NAME" : "Cystitis of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "275412000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42742301, + "CONCEPT_NAME" : "Cytogenomic constitutional (genome-wide) microarray analysis; interrogation of genomic regions for copy number and single nucleotide polymorphism (SNP) variants for chromosomal abnormalities", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "81229", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4100193, + "CONCEPT_NAME" : "Damage to bladder following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "27552001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4185718, + "CONCEPT_NAME" : "Damage to bowel following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "44017002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4232953, + "CONCEPT_NAME" : "Damage to broad ligament following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "89573004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4173946, + "CONCEPT_NAME" : "Damage to cervix following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "42294002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 196475, + "CONCEPT_NAME" : "Damage to pelvic organs AND/OR tissues following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16083003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42537767, + "CONCEPT_NAME" : "Damage to pelvic organs and tissues following ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "737329004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42537768, + "CONCEPT_NAME" : "Damage to pelvic organs and tissues following molar pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "737330009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4174543, + "CONCEPT_NAME" : "Damage to periurethral tissue following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "42536002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4194053, + "CONCEPT_NAME" : "Damage to uterus following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "79333004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4216382, + "CONCEPT_NAME" : "Damage to vagina following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72209007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4072438, + "CONCEPT_NAME" : "Date of last menstrual period", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "21840007", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Observable Entity" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4088445, + "CONCEPT_NAME" : "Date of last normal period", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "248993009", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Observable Entity" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060625, + "CONCEPT_NAME" : "Dating/booking US scan", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169229007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44810005, + "CONCEPT_NAME" : "Dating obstetric ultrasound scan", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "866481000000104", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40491449, + "CONCEPT_NAME" : "Decline in Edinburgh postnatal depression scale score", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "448717002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40487136, + "CONCEPT_NAME" : "Decline in Edinburgh postnatal depression scale score at 8 months", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "449413009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4197955, + "CONCEPT_NAME" : "Decreased glucose level", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "51798006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 75882, + "CONCEPT_NAME" : "Deep transverse arrest - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199774009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 73265, + "CONCEPT_NAME" : "Deep transverse arrest with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199775005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44784536, + "CONCEPT_NAME" : "Deep transverse arrest with persistent occipitoposterior position", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "698702007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438820, + "CONCEPT_NAME" : "Deep venous thrombosis in puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "56272000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4266839, + "CONCEPT_NAME" : "Defibrination syndrome following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "62698000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4234604, + "CONCEPT_NAME" : "Dehiscence AND/OR disruption of uterine wound in the puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "361095003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438814, + "CONCEPT_NAME" : "Delayed AND/OR excessive hemorrhage following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "79133008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 194109, + "CONCEPT_NAME" : "Delayed AND/OR secondary postpartum hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "23171006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4048293, + "CONCEPT_NAME" : "Delayed conjugation causing neonatal jaundice associated with another disorder", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206453006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441361, + "CONCEPT_NAME" : "Delayed delivery after artificial rupture of membranes", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "35347003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42537762, + "CONCEPT_NAME" : "Delayed hemorrhage due to and following ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "737322008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42537759, + "CONCEPT_NAME" : "Delayed hemorrhage due to and following miscarriage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "737318003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4114265, + "CONCEPT_NAME" : "Delayed or excessive hemorrhage following abortive pregnancy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "198827002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4277103, + "CONCEPT_NAME" : "Delayed repair of episiotomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65378009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4075190, + "CONCEPT_NAME" : "DeLee forceps cephalic delivery with rotation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177168003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440793, + "CONCEPT_NAME" : "Deliveries by breech extraction", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "271370008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 193277, + "CONCEPT_NAME" : "Deliveries by cesarean", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200144004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2514560, + "CONCEPT_NAME" : "Delivery/birthing room resuscitation, provision of positive pressure ventilation and/or chest compressions in the presence of acute inadequate ventilation and/or cardiac output", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "99465", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4076939, + "CONCEPT_NAME" : "Delivery booking place", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "275816005", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Observable Entity" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4106406, + "CONCEPT_NAME" : "Delivery by double application of forceps", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "29613008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061457, + "CONCEPT_NAME" : "Delivery by elective cesarean section", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200148001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4066112, + "CONCEPT_NAME" : "Delivery by emergency cesarean section", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200149009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4232028, + "CONCEPT_NAME" : "Delivery by Kielland rotation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "89346004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4234710, + "CONCEPT_NAME" : "Delivery by Malstrom's extraction", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90438006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4223638, + "CONCEPT_NAME" : "Delivery by Malstrom's extraction with episiotomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40219000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4278225, + "CONCEPT_NAME" : "Delivery by midwife", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65243006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4100410, + "CONCEPT_NAME" : "Delivery by Scanzoni maneuver", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25296001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4189205, + "CONCEPT_NAME" : "Delivery by vacuum extraction", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "61586001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4096145, + "CONCEPT_NAME" : "Delivery by vacuum extraction with episiotomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26313002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4237496, + "CONCEPT_NAME" : "Delivery care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "409006000", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3011536, + "CONCEPT_NAME" : "Delivery date Estimated", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "11778-8", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Clinical Observation" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038495, + "CONCEPT_NAME" : "Delivery finding", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "118215003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43054893, + "CONCEPT_NAME" : "Delivery location", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72150-6", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Survey" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061795, + "CONCEPT_NAME" : "Delivery: no place booked", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169620001", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441641, + "CONCEPT_NAME" : "Delivery normal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48782003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40551541, + "CONCEPT_NAME" : "Delivery of cephalic presentation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "384730009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4056129, + "CONCEPT_NAME" : "Delivery of face presentation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16819009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42872805, + "CONCEPT_NAME" : "Delivery of occipitoposterior presentation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "450798003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110311, + "CONCEPT_NAME" : "Delivery of placenta (separate procedure)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59414", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4130319, + "CONCEPT_NAME" : "Delivery of the after coming head", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "236982004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4293034, + "CONCEPT_NAME" : "Delivery of vertex presentation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "384729004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4156955, + "CONCEPT_NAME" : "Delivery place booked", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "271402002", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4150421, + "CONCEPT_NAME" : "Delivery place planned", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "310585007", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4128030, + "CONCEPT_NAME" : "Delivery procedure", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "236973005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4046029, + "CONCEPT_NAME" : "Delivery room care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "133905007", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36715417, + "CONCEPT_NAME" : "DEND syndrome", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "721088003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36716734, + "CONCEPT_NAME" : "Depressed fracture of skull due to birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "722904004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4252401, + "CONCEPT_NAME" : "Dermatitis of the newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7392002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4193756, + "CONCEPT_NAME" : "Desultory labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "79179003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40478932, + "CONCEPT_NAME" : "Detection of ordinal level of hemoglobin F in amniotic fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "444308008", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443012, + "CONCEPT_NAME" : "Diabetes mellitus during pregnancy - baby delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199225007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 192691, + "CONCEPT_NAME" : "Diabetes mellitus during pregnancy - baby not yet delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199227004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4058243, + "CONCEPT_NAME" : "Diabetes mellitus during pregnancy, childbirth and the puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199223000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 194700, + "CONCEPT_NAME" : "Diabetes mellitus in mother complicating pregnancy, childbirth AND/OR puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "76751001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4062685, + "CONCEPT_NAME" : "Diabetes mellitus in the puerperium - baby delivered during current episode of care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199226008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4062686, + "CONCEPT_NAME" : "Diabetes mellitus in the puerperium - baby delivered during previous episode of care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199228009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43531645, + "CONCEPT_NAME" : "Diabetes mellitus, transient neonatal 1", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609579009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43531019, + "CONCEPT_NAME" : "Diabetes mellitus, transient neonatal 2", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609580007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43531020, + "CONCEPT_NAME" : "Diabetes mellitus, transient neonatal 3", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609581006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40758528, + "CONCEPT_NAME" : "Diabetes tracking panel", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55399-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Clinical Observation" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3169474, + "CONCEPT_NAME" : "Diabetic hypoglycemia w anger outbursts", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16580001000004105", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "Nebraska Lexicon", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443727, + "CONCEPT_NAME" : "Diabetic ketoacidosis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "420422005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4009303, + "CONCEPT_NAME" : "Diabetic ketoacidosis without coma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "111556005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004805, + "CONCEPT_NAME" : "Diagnostic amniocentesis", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "75.1", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "3-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4143646, + "CONCEPT_NAME" : "Diagnostic amniocentesis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "265635006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40479665, + "CONCEPT_NAME" : "Diagnostic amniocentesis using ultrasound guidance", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "443005005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4032755, + "CONCEPT_NAME" : "Diagnostic amniocentesis with fluid replacement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "236954006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4142956, + "CONCEPT_NAME" : "Diagnostic laparoscopy of female pelvis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "264973001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2006934, + "CONCEPT_NAME" : "Diagnostic ultrasound of gravid uterus", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "88.78", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4135437, + "CONCEPT_NAME" : "Dialysis fluid glucose measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "412865006", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37204835, + "CONCEPT_NAME" : "Diazoxide-resistant focal hyperinsulinism due to Kir6.2 deficiency", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "783741006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37204834, + "CONCEPT_NAME" : "Diazoxide-resistant focal hyperinsulinism due to SUR1 deficiency", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "783740007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43021054, + "CONCEPT_NAME" : "Dichorionic diamniotic twin pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "459166009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4211822, + "CONCEPT_NAME" : "Dietary amenorrhea", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57260004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434482, + "CONCEPT_NAME" : "Diethylstilbestrol poisoning", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "66698002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4016060, + "CONCEPT_NAME" : "Difficult to establish feeding", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169947009", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4173784, + "CONCEPT_NAME" : "Difficulty coping with postpartum changes", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "424474002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4314846, + "CONCEPT_NAME" : "Difficulty following postpartum diet", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "424712007", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4313768, + "CONCEPT_NAME" : "Difficulty following postpartum exercise routine", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "423675002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4071864, + "CONCEPT_NAME" : "Difficulty in feeding at breast", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206568009", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4309556, + "CONCEPT_NAME" : "Difficulty with postpartum rest pattern", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "423502007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4149472, + "CONCEPT_NAME" : "Digital evacuation of retained products of conception", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "310603006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004489, + "CONCEPT_NAME" : "Dilation and curettage for termination of pregnancy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "69.01", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4106559, + "CONCEPT_NAME" : "Dilation and curettage for termination of pregnancy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "29682007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4309425, + "CONCEPT_NAME" : "Dilation and curettage of uterus after delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "391998006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4168396, + "CONCEPT_NAME" : "Dilation of cervix uteri and curettage for termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "274973002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4138740, + "CONCEPT_NAME" : "Dilation of cervix uteri and curettage of products of conception from uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "265062002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4074867, + "CONCEPT_NAME" : "Dilation of cervix uteri and curettage of uterus for removal of missed miscarriage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "176833006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4072420, + "CONCEPT_NAME" : "Dilation of cervix uteri and curettage of uterus for removal of mole", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "176832001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4074297, + "CONCEPT_NAME" : "Dilation of cervix uteri and vacuum aspiration of products of conception from uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "176827002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4022096, + "CONCEPT_NAME" : "Direct injection of sperm into cytoplasm of the oocyte", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "225244002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4024589, + "CONCEPT_NAME" : "Direct intraperitoneal insemination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "225247009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4084845, + "CONCEPT_NAME" : "Discharged from hospital within 6 hours of delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "183673002", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757216, + "CONCEPT_NAME" : "Discharge disposition [CARE]", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "52688-9", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Survey" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757177, + "CONCEPT_NAME" : "Discharge Status", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "52523-8", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Survey" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4071597, + "CONCEPT_NAME" : "Dislocation of spine due to birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206221000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 201958, + "CONCEPT_NAME" : "Disorder involving the integument of fetus OR newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "111474003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438815, + "CONCEPT_NAME" : "Disorder of amniotic cavity AND/OR membrane", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72860003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 73546, + "CONCEPT_NAME" : "Disorder of breast associated with childbirth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86196005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 200524, + "CONCEPT_NAME" : "Disorder of digestive system specific to fetus OR newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "42357009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4130161, + "CONCEPT_NAME" : "Disorder of glucose regulation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237597000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 80471, + "CONCEPT_NAME" : "Disorder of lactation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "35046003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 79890, + "CONCEPT_NAME" : "Disorder of pelvic size and disproportion", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237256006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4053583, + "CONCEPT_NAME" : "Disorder of placenta", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "125586008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42537770, + "CONCEPT_NAME" : "Disorder of vein following ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "737332001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42537769, + "CONCEPT_NAME" : "Disorder of vein following miscarriage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "737331008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42537771, + "CONCEPT_NAME" : "Disorder of vein following molar pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "737333006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4195545, + "CONCEPT_NAME" : "Disorder relating to short gestation AND/OR low birthweight", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "67645006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 201091, + "CONCEPT_NAME" : "Disproportion - major pelvic abnormality", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199398004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 198486, + "CONCEPT_NAME" : "Disproportion - major pelvic abnormality - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199400000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4059763, + "CONCEPT_NAME" : "Disproportion - major pelvic abnormality with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199402008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443418, + "CONCEPT_NAME" : "Disruption of cesarean wound in the puerperium", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "361096002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4134722, + "CONCEPT_NAME" : "Disruption of episiotomy wound in the puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "398262004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4282151, + "CONCEPT_NAME" : "Disruption of perineal laceration repair in the puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "66119008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443897, + "CONCEPT_NAME" : "Disruption of perineal wound in the puerperium", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "14918004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432443, + "CONCEPT_NAME" : "Disseminated intravascular coagulation in newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "34417008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4091783, + "CONCEPT_NAME" : "Distress from pain in labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "249196008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437985, + "CONCEPT_NAME" : "Disturbance of temperature regulation of newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "68550008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37017322, + "CONCEPT_NAME" : "Dizygotic twin pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "713575004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2721247, + "CONCEPT_NAME" : "Donor egg cycle, incomplete, case rate", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "S4023", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2721248, + "CONCEPT_NAME" : "Donor services for in vitro fertilization (sperm or embryo), case rate", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "S4025", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2211763, + "CONCEPT_NAME" : "Doppler echocardiography, fetal, pulsed wave and/or continuous wave with spectral display; complete", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "76827", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2211764, + "CONCEPT_NAME" : "Doppler echocardiography, fetal, pulsed wave and/or continuous wave with spectral display; follow-up or repeat study", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "76828", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44807919, + "CONCEPT_NAME" : "Doppler ultrasonography of multiple pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "855031000000109", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2211761, + "CONCEPT_NAME" : "Doppler velocimetry, fetal; middle cerebral artery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "76821", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2211760, + "CONCEPT_NAME" : "Doppler velocimetry, fetal; umbilical artery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "76820", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4149370, + "CONCEPT_NAME" : "Down's screening - blood test", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "268474007", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4201770, + "CONCEPT_NAME" : "Downs screening test", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "315115008", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2784529, + "CONCEPT_NAME" : "Drainage of Amniotic Fluid, Diagnostic from Products of Conception, Open Approach", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10900ZU", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD10PCS", + "CONCEPT_CLASS_ID" : "ICD10PCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2784535, + "CONCEPT_NAME" : "Drainage of Amniotic Fluid, Diagnostic from Products of Conception, Percutaneous Approach", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10903ZU", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD10PCS", + "CONCEPT_CLASS_ID" : "ICD10PCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2784541, + "CONCEPT_NAME" : "Drainage of Amniotic Fluid, Diagnostic from Products of Conception, Percutaneous Endoscopic Approach", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10904ZU", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD10PCS", + "CONCEPT_CLASS_ID" : "ICD10PCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2784547, + "CONCEPT_NAME" : "Drainage of Amniotic Fluid, Diagnostic from Products of Conception, Via Natural or Artificial Opening", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10907ZU", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD10PCS", + "CONCEPT_CLASS_ID" : "ICD10PCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2784553, + "CONCEPT_NAME" : "Drainage of Amniotic Fluid, Diagnostic from Products of Conception, Via Natural or Artificial Opening Endoscopic", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10908ZU", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD10PCS", + "CONCEPT_CLASS_ID" : "ICD10PCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442915, + "CONCEPT_NAME" : "Drug dependence during pregnancy - baby delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199252002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442913, + "CONCEPT_NAME" : "Drug dependence during pregnancy - baby not yet delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199254001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440787, + "CONCEPT_NAME" : "Drug dependence in mother complicating pregnancy, childbirth AND/OR puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "34150001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4029427, + "CONCEPT_NAME" : "Drug-induced hyperinsulinemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237646004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4034969, + "CONCEPT_NAME" : "Drug-induced hypoglycemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237640005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4096804, + "CONCEPT_NAME" : "Drug-induced hypoglycemia without coma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "190448007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435359, + "CONCEPT_NAME" : "Drug reaction AND/OR intoxication specific to newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "34738001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438871, + "CONCEPT_NAME" : "Drug withdrawal syndrome in newborn", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "61628006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4139551, + "CONCEPT_NAME" : "Duffy isoimmunization of the newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "307337003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015420, + "CONCEPT_NAME" : "Duration of first stage of labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169821004", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Observable Entity" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4122728, + "CONCEPT_NAME" : "Duration of labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "289248003", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Observable Entity" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014453, + "CONCEPT_NAME" : "Duration of second stage of labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169822006", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Observable Entity" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015161, + "CONCEPT_NAME" : "Duration of third stage of labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169823001", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Observable Entity" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40259069, + "CONCEPT_NAME" : "Dye test of fallopian tube", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "177006000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443706, + "CONCEPT_NAME" : "Dyscoordinate labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "18606002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4139861, + "CONCEPT_NAME" : "Dysglycemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "426255005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4070773, + "CONCEPT_NAME" : "Dysponderal amenorrhea", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "21669001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4307303, + "CONCEPT_NAME" : "Early neonatal death", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "391181005", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Event" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36713560, + "CONCEPT_NAME" : "Early onset diffuse bleeding diathesis secondary to vitamin K deficient hemorrhagic disease of fetus and newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "717935003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 35622880, + "CONCEPT_NAME" : "Early-onset neonatal sepsis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "765106006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437614, + "CONCEPT_NAME" : "Early onset of delivery", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "270496001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 138813, + "CONCEPT_NAME" : "Early or threatened labor", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "267201003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4040834, + "CONCEPT_NAME" : "Early postpartum state", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16538005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2722250, + "CONCEPT_NAME" : "Echocardiography, fetal, cardiovascular system, real time with image documentation (2D), with or without M-mode recording", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "76825", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2211762, + "CONCEPT_NAME" : "Echocardiography, fetal, cardiovascular system, real time with image documentation (2D), with or without M-mode recording; follow-up or repeat study", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "76826", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4137949, + "CONCEPT_NAME" : "Echography, scan B-mode for fetal growth rate", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "31998007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443700, + "CONCEPT_NAME" : "Eclampsia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15938005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 133816, + "CONCEPT_NAME" : "Eclampsia - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198990007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 138811, + "CONCEPT_NAME" : "Eclampsia - delivered with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198991006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 137613, + "CONCEPT_NAME" : "Eclampsia in pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198992004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4116344, + "CONCEPT_NAME" : "Eclampsia in puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "303063000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4058536, + "CONCEPT_NAME" : "Eclampsia with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198993009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4294771, + "CONCEPT_NAME" : "Ectopic hyperinsulinism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "37703005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4129522, + "CONCEPT_NAME" : "Ectopic IGF-1 hypoglycemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237643007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4029426, + "CONCEPT_NAME" : "Ectopic IGF-2 hypoglycemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237644001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4030181, + "CONCEPT_NAME" : "Ectopic IGF hypoglycemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237642002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437611, + "CONCEPT_NAME" : "Ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "34801009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441412, + "CONCEPT_NAME" : "Edema of newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "78913002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438204, + "CONCEPT_NAME" : "Edema or excessive weight gain in pregnancy without mention of hypertension", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "267202005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443321, + "CONCEPT_NAME" : "Edema or excessive weight gain in pregnancy without mention of hypertension, delivered with mention of postpartum complication", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "199075004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37018717, + "CONCEPT_NAME" : "Education about amino acid-based infant formula", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "713407005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37017708, + "CONCEPT_NAME" : "Education about cow's milk protein free diet", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "714032007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37017183, + "CONCEPT_NAME" : "Education about extensively hydrolyzed infant formula", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "713414007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4207151, + "CONCEPT_NAME" : "Education about feeding neonate", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "438297004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37017710, + "CONCEPT_NAME" : "Education about soy-based infant formula", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "714034008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45770395, + "CONCEPT_NAME" : "Education about weaning for cow's milk protein allergy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "927701000000103", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43527945, + "CONCEPT_NAME" : "EGFR (epidermal growth factor receptor) (eg, non-small cell lung cancer) gene analysis, common variants (eg, exon 19 LREA deletion, L858R, T790M, G719A, G719S, L861Q)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "81235", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441085, + "CONCEPT_NAME" : "Elderly primigravida", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "29399001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440794, + "CONCEPT_NAME" : "Elderly primigravida - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199718001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442442, + "CONCEPT_NAME" : "Elderly primigravida with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199719009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4075182, + "CONCEPT_NAME" : "Elective cesarean section", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177141003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4075161, + "CONCEPT_NAME" : "Elective lower segment cesarean section", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177143000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42536960, + "CONCEPT_NAME" : "Elective lower segment cesarean section with bilateral tubal ligation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "736026009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4075160, + "CONCEPT_NAME" : "Elective upper segment cesarean section", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177142005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42536952, + "CONCEPT_NAME" : "Elective upper segment cesarean section with bilateral tubal ligation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "736018001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4171254, + "CONCEPT_NAME" : "Electrode injury to scalp during birth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276704001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4276942, + "CONCEPT_NAME" : "Electrolyte imbalance following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6509007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4263011, + "CONCEPT_NAME" : "Elevated serum human chorionic gonadotropin level, beta subunit", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "396700001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42539701, + "CONCEPT_NAME" : "Embolism due to and following ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "737324009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42537764, + "CONCEPT_NAME" : "Embolism due to and following molar pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "737325005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440777, + "CONCEPT_NAME" : "Embolism following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "42070007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4327048, + "CONCEPT_NAME" : "Embryo transfer", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "75456002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110275, + "CONCEPT_NAME" : "Embryo transfer, intrauterine", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "58974", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4167089, + "CONCEPT_NAME" : "Emergency cesarean section", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "274130007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4127252, + "CONCEPT_NAME" : "Emergency lower segment cesarean section", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "236985002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42537021, + "CONCEPT_NAME" : "Emergency lower segment cesarean section with bilateral tubal ligation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "736118004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 46270991, + "CONCEPT_NAME" : "Emergency lower segment cesarean section with inverted T incision", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "709004006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4032767, + "CONCEPT_NAME" : "Emergency upper segment cesarean section", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "236986001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42536954, + "CONCEPT_NAME" : "Emergency upper segment cesarean section with bilateral tubal ligation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "736020003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439924, + "CONCEPT_NAME" : "Endocrine AND/OR metabolic disorder specific to the fetus OR newborn", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "22561006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4113994, + "CONCEPT_NAME" : "Endometritis following abortive pregnancy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "198820000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4066014, + "CONCEPT_NAME" : "Endometritis following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "172001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4074443, + "CONCEPT_NAME" : "Endoscopic freeing of adhesions of fallopian tube", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "176994003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4072852, + "CONCEPT_NAME" : "Endoscopic intrafallopian transfer of gamete", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "176996001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4072863, + "CONCEPT_NAME" : "Endoscopic transurethral ultrasound directed oocyte recovery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177038005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4074569, + "CONCEPT_NAME" : "Endoscopic transvesical oocyte recovery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177039002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 80478, + "CONCEPT_NAME" : "Engorgement of breasts associated with childbirth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55613002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4055924, + "CONCEPT_NAME" : "Entire placenta", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "181455002", + "DOMAIN_ID" : "Spec Anatomic Site", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Body Structure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42573076, + "CONCEPT_NAME" : "Enzootic abortion", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "352191000009102", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED Veterinary", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4272812, + "CONCEPT_NAME" : "Episioproctotomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63407004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004766, + "CONCEPT_NAME" : "Episiotomy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "73.6", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "3-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4311671, + "CONCEPT_NAME" : "Episiotomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "85548006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4046551, + "CONCEPT_NAME" : "Episiotomy care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "133907004", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4102125, + "CONCEPT_NAME" : "Episiotomy infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "300927001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110303, + "CONCEPT_NAME" : "Episiotomy or vaginal repair, by other than attending", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59300", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44513763, + "CONCEPT_NAME" : "Episiotomy to facilitate delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "R27.1", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "OPCS4", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530969, + "CONCEPT_NAME" : "Epithelioid trophoblastic tumor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609515005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4009644, + "CONCEPT_NAME" : "Erb-Duchenne palsy as birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "111465000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37109548, + "CONCEPT_NAME" : "Erb Duchenne palsy with neuroma due to birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "722901007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37109547, + "CONCEPT_NAME" : "Erb Duchenne palsy with neuropraxis due to traction birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "722900008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4345685, + "CONCEPT_NAME" : "Erythroderma neonatorum", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "240302002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4059478, + "CONCEPT_NAME" : "Estimated date of delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "161714006", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Observable Entity" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4128833, + "CONCEPT_NAME" : "Estimated date of delivery from last period", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "289206005", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Observable Entity" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3025994, + "CONCEPT_NAME" : "Estriol (E3) [Mass/volume] in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "2251-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3025455, + "CONCEPT_NAME" : "Estriol (E3).unconjugated [Mass/volume] in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "2250-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3005625, + "CONCEPT_NAME" : "Estriol (E3).unconjugated [Multiple of the median] adjusted in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "21264-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3003262, + "CONCEPT_NAME" : "Estriol (E3).unconjugated [Multiple of the median] in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "20466-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4070303, + "CONCEPT_NAME" : "Estriol measurement, serum", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "20563000", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4032621, + "CONCEPT_NAME" : "Evacuation of retained product of conception", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "236883005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4170151, + "CONCEPT_NAME" : "Evacuation of uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "275166002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40756825, + "CONCEPT_NAME" : "Evaluation of cervicovaginal fluid for specific amniotic fluid protein(s) (eg, placental alpha microglobulin-1 [PAMG-1], placental protein 12 [PP12], alpha-fetoprotein), qualitative, each specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84112", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4216768, + "CONCEPT_NAME" : "Exaggerated placental site", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "417150000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434758, + "CONCEPT_NAME" : "Exceptionally large at birth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "38206000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 81636, + "CONCEPT_NAME" : "Excessive fetal growth affecting management of mother", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "22173004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42537763, + "CONCEPT_NAME" : "Excessive hemorrhage due to and following ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "737323003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37206231, + "CONCEPT_NAME" : "Excessive hemorrhage due to and following illegally induced termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "785872000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37206226, + "CONCEPT_NAME" : "Excessive hemorrhage due to and following induced termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "785867009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37206230, + "CONCEPT_NAME" : "Excessive hemorrhage due to and following legally induced termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "785871007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4074426, + "CONCEPT_NAME" : "Excision of ectopic ovarian pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "176928008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40493226, + "CONCEPT_NAME" : "Excision of fallopian tube and surgical removal of ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "445912000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4074427, + "CONCEPT_NAME" : "Excision of ruptured ectopic tubal pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "176929000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004345, + "CONCEPT_NAME" : "Excision or destruction of lesion of fallopian tube", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "66.61", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37396132, + "CONCEPT_NAME" : "Exercise-induced hyperinsulinism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "715830008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4034017, + "CONCEPT_NAME" : "Exercise-related amenorrhea", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237119008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4065745, + "CONCEPT_NAME" : "Exhaustion during labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200164009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40479820, + "CONCEPT_NAME" : "Exposure to rubella in pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "444517009", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Event" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4147858, + "CONCEPT_NAME" : "Expression of retained products of conception", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "310602001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2213361, + "CONCEPT_NAME" : "Extended culture of oocyte(s)/embryo(s), 4-7 days", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "89272", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44790867, + "CONCEPT_NAME" : "Extended glucose tolerance test", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "244911000000109", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4226978, + "CONCEPT_NAME" : "External fetal monitor surveillance during multiple pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87663001", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004769, + "CONCEPT_NAME" : "External version assisting delivery", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "73.91", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4075176, + "CONCEPT_NAME" : "External version of breech", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177122001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4257043, + "CONCEPT_NAME" : "Extra-amniotic termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "408840008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44513450, + "CONCEPT_NAME" : "Extraction of menses", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "Q11.4", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "OPCS4", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4211824, + "CONCEPT_NAME" : "Extraperitoneal cesarean section", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57271003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 38001501, + "CONCEPT_NAME" : "Extreme immaturity or respiratory distress syndrome, neonate", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "790", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "DRG", + "CONCEPT_CLASS_ID" : "MS-DRG" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4173323, + "CONCEPT_NAME" : "Extremely low birth weight infant", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276612004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439128, + "CONCEPT_NAME" : "Extreme prematurity of infant", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276658003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 78210, + "CONCEPT_NAME" : "Face OR brow presentation of fetus", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "37762002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4071437, + "CONCEPT_NAME" : "Face presentation of fetus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "21882006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 377680, + "CONCEPT_NAME" : "Facial nerve injury as birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55712002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060261, + "CONCEPT_NAME" : "Factitious hypoglycemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16966009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4017134, + "CONCEPT_NAME" : "Failed attempted termination of pregnancy with amniotic fluid embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "11454006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 194694, + "CONCEPT_NAME" : "Failed attempted termination of pregnancy with complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59919008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 192380, + "CONCEPT_NAME" : "Failed attempted termination of pregnancy without complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90645002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4281684, + "CONCEPT_NAME" : "Failed attempted termination of pregnancy with urinary tract infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "66892003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45757775, + "CONCEPT_NAME" : "Failed attempted vaginal birth after previous cesarean section", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "38451000119105", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004751, + "CONCEPT_NAME" : "Failed forceps", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "73.3", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "3-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442613, + "CONCEPT_NAME" : "Failed forceps delivery", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "64646001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437622, + "CONCEPT_NAME" : "Failed mechanical induction", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90188009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441924, + "CONCEPT_NAME" : "Failed mechanical induction - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199694005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437341, + "CONCEPT_NAME" : "Failed mechanical induction with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199695006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438491, + "CONCEPT_NAME" : "Failed medical induction of labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "77854008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4196129, + "CONCEPT_NAME" : "Failed minimum access approach", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "313004003", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434436, + "CONCEPT_NAME" : "Failed trial of labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "23332002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443521, + "CONCEPT_NAME" : "Failed trial of labor - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "413339006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4298980, + "CONCEPT_NAME" : "Failure of cervical dilation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7768008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45771070, + "CONCEPT_NAME" : "Failure of cervical dilation due to primary uterine inertia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "88201000119101", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 81088, + "CONCEPT_NAME" : "Failure of lactation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6995000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36715473, + "CONCEPT_NAME" : "Failure of lactation with attachment difficulty", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "721162003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 78224, + "CONCEPT_NAME" : "Failure of lactation with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200436007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4157164, + "CONCEPT_NAME" : "Failure of transfer of passive immunity in newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "370539007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4127892, + "CONCEPT_NAME" : "Fallopian replacement of egg with delayed insemination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "236913003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4001541, + "CONCEPT_NAME" : "Fallopian tube excision", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "120053002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4279380, + "CONCEPT_NAME" : "False knot of umbilical cord", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36697001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4062557, + "CONCEPT_NAME" : "False labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199047001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4089691, + "CONCEPT_NAME" : "Familial neonatal seizures", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "279953009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4156660, + "CONCEPT_NAME" : "Fasting blood glucose measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "271062006", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3035250, + "CONCEPT_NAME" : "Fasting glucose [Mass/volume] in Capillary blood by Glucometer", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "41604-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3037110, + "CONCEPT_NAME" : "Fasting glucose [Mass/volume] in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1558-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40766113, + "CONCEPT_NAME" : "Fasting glucose [Mass/volume] in Urine", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63382-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3037187, + "CONCEPT_NAME" : "Fasting glucose [Mass/volume] in Venous blood", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1557-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 46235168, + "CONCEPT_NAME" : "Fasting glucose [Moles/volume] in Blood", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "76629-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3017703, + "CONCEPT_NAME" : "Fasting glucose [Moles/volume] in Capillary blood by Glucometer", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14770-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3018251, + "CONCEPT_NAME" : "Fasting glucose [Moles/volume] in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14771-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 46236950, + "CONCEPT_NAME" : "Fasting glucose [Moles/volume] in Serum, Plasma or Blood", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "77145-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3041651, + "CONCEPT_NAME" : "Fasting glucose [Moles/volume] in Urine", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "53114-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3025791, + "CONCEPT_NAME" : "Fasting glucose [Presence] in Urine", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16913-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3002574, + "CONCEPT_NAME" : "Fasting glucose [Presence] in Urine by Test strip", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6764-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4320478, + "CONCEPT_NAME" : "Fasting hypoglycemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6974005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3655214, + "CONCEPT_NAME" : "Fat embolism due to and following ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "860687003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3655213, + "CONCEPT_NAME" : "Fat embolism due to and following molar pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "860686007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4310205, + "CONCEPT_NAME" : "Fecal clinitest", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "391330005", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4250134, + "CONCEPT_NAME" : "Fecal glucose level", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "407702002", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060255, + "CONCEPT_NAME" : "Feeding intention - breast", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169643005", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433315, + "CONCEPT_NAME" : "Feeding problems in newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72552008", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3173127, + "CONCEPT_NAME" : "Female periurethral laceration", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6950001000004109", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "Nebraska Lexicon", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530900, + "CONCEPT_NAME" : "Fetal Alcohol Spectrum Disorder", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609437000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4004785, + "CONCEPT_NAME" : "Fetal alcohol syndrome", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "205788004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4150653, + "CONCEPT_NAME" : "Fetal anatomy study", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "271442007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439923, + "CONCEPT_NAME" : "Fetal and newborn blood disorders", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206509003", + "DOMAIN_ID" : "Metadata", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Navi Concept" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 201083, + "CONCEPT_NAME" : "Fetal AND/OR placental disorder affecting management of mother", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "22753004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43022052, + "CONCEPT_NAME" : "Fetal anemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "462166006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44790240, + "CONCEPT_NAME" : "Fetal ascites scan", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "228701000000101", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3026620, + "CONCEPT_NAME" : "Fetal Biophysical profile.body movement US", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "11631-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Clinical Observation" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3028281, + "CONCEPT_NAME" : "Fetal Biophysical profile.sum Derived", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "11634-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Clinical Observation" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2211758, + "CONCEPT_NAME" : "Fetal biophysical profile; with non-stress testing", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "76818", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2211759, + "CONCEPT_NAME" : "Fetal biophysical profile; without non-stress testing", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "76819", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 79146, + "CONCEPT_NAME" : "Fetal blood loss", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206390008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4196670, + "CONCEPT_NAME" : "Fetal blood loss from vasa previa", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "50544004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37310907, + "CONCEPT_NAME" : "Fetal cleft lip", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63061000119104", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43528050, + "CONCEPT_NAME" : "Fetal congenital abnormalities, biochemical assays of five analytes (AFP, uE3, total hCG, hyperglycosylated hCG, DIA) utilizing maternal serum, algorithm reported as a risk score", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "81512", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43527962, + "CONCEPT_NAME" : "Fetal congenital abnormalities, biochemical assays of four analytes (AFP, uE3, hCG [any form], DIA) utilizing maternal serum, algorithm reported as a risk score (may include additional results from previous biochemical testing)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "81511", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43527961, + "CONCEPT_NAME" : "Fetal congenital abnormalities, biochemical assays of three analytes (AFP, uE3, hCG [any form]), utilizing maternal serum, algorithm reported as a risk score", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "81510", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43527960, + "CONCEPT_NAME" : "Fetal congenital abnormalities, biochemical assays of three proteins (PAPP-A, hCG [any form], DIA), utilizing maternal serum, algorithm reported as a risk score", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "81509", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43527959, + "CONCEPT_NAME" : "Fetal congenital abnormalities, biochemical assays of two proteins (PAPP-A, hCG [any form]), utilizing maternal serum, algorithm reported as a risk score", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "81508", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110283, + "CONCEPT_NAME" : "Fetal contraction stress test", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59020", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3001951, + "CONCEPT_NAME" : "Fetal Crown Rump length US", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "11957-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Clinical Observation" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4079844, + "CONCEPT_NAME" : "Fetal death", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276507005", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Event" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 75605, + "CONCEPT_NAME" : "Fetal death, affecting management of mother", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14022007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4071603, + "CONCEPT_NAME" : "Fetal death due to prelabor anoxia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206258000", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Event" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 436228, + "CONCEPT_NAME" : "Fetal death due to termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "67313008", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Event" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442338, + "CONCEPT_NAME" : "Fetal death from asphyxia AND/OR anoxia before onset of labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "44174001", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Event" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443695, + "CONCEPT_NAME" : "Fetal death from asphyxia AND/OR anoxia during labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1762004", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Event" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4178809, + "CONCEPT_NAME" : "Fetal disorder secondary to chemicals", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "363127005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 80165, + "CONCEPT_NAME" : "Fetal disproportion", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "31805001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 73268, + "CONCEPT_NAME" : "Fetal distress affecting management of mother", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12867002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37311827, + "CONCEPT_NAME" : "Fetal distress due to augmentation of labor with oxytocin", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "816967008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435369, + "CONCEPT_NAME" : "Fetal distress, in liveborn infant", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90562004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4216551, + "CONCEPT_NAME" : "Fetal dystocia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7245003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4334808, + "CONCEPT_NAME" : "Fetal echocardiography", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "433235006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4034866, + "CONCEPT_NAME" : "Fetal echocardiography, real time with image documentation (2D) with M-mode recording", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15282006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530902, + "CONCEPT_NAME" : "Fetal effect of maternal toxemia", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "609440000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004809, + "CONCEPT_NAME" : "Fetal EKG (scalp)", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "75.32", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45757059, + "CONCEPT_NAME" : "Fetal exposure to teratogenic substance", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "103031000119101", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4203009, + "CONCEPT_NAME" : "Fetal exsanguination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "52977000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2212334, + "CONCEPT_NAME" : "Fetal fibronectin, cervicovaginal secretions, semi-quantitative", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "82731", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37310859, + "CONCEPT_NAME" : "Fetal gastrointestinal abnormality", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "121801000119105", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4210896, + "CONCEPT_NAME" : "Fetal gestational age", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57036006", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Observable Entity" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4266763, + "CONCEPT_NAME" : "Fetal gestation at delivery - finding", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "364739001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 80204, + "CONCEPT_NAME" : "Fetal growth restriction", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "22033007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4084439, + "CONCEPT_NAME" : "Fetal heart monitoring", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "281568006", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3006722, + "CONCEPT_NAME" : "Fetal Heart Narrative Activity US", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "11616-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Clinical Observation" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437098, + "CONCEPT_NAME" : "Fetal intrauterine distress first noted during labor AND/OR delivery in liveborn infant", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7996008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433311, + "CONCEPT_NAME" : "Fetal intrauterine distress noted before labor in liveborn infant", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "74796005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36716504, + "CONCEPT_NAME" : "Fetal intrauterine intestinal perforation due to in utero intraluminal obstruction", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "722532002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36716503, + "CONCEPT_NAME" : "Fetal intrauterine intestinal perforation due to in utero volvulus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "722531009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42538545, + "CONCEPT_NAME" : "Fetal intrauterine intestinal perforation with congenital atresia of intestinal tract", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "762273001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42538544, + "CONCEPT_NAME" : "Fetal intrauterine intestinal perforation with congenital stenosis of intestinal tract", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "762272006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36715840, + "CONCEPT_NAME" : "Fetal intrauterine perforation of intestine", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "721613002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36715841, + "CONCEPT_NAME" : "Fetal intrauterine perforation of stomach", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "721614008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2212438, + "CONCEPT_NAME" : "Fetal lung maturity assessment; fluorescence polarization", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "83663", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2212439, + "CONCEPT_NAME" : "Fetal lung maturity assessment; lamellar body density", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "83664", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2212436, + "CONCEPT_NAME" : "Fetal lung maturity assessment; lecithin sphingomyelin (L/S) ratio", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "83661", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3032604, + "CONCEPT_NAME" : "Fetal lung maturity in Amniotic fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "35084-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3050978, + "CONCEPT_NAME" : "Fetal lung maturity [Interpretation] in Amniotic fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "47226-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 201366, + "CONCEPT_NAME" : "Fetal-maternal hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "71028008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 193535, + "CONCEPT_NAME" : "Fetal-maternal hemorrhage - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199577000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 196757, + "CONCEPT_NAME" : "Fetal-maternal hemorrhage with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199578005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44790237, + "CONCEPT_NAME" : "Fetal measurement scan", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "232671000000100", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110287, + "CONCEPT_NAME" : "Fetal monitoring during labor by consulting physician (ie, non-attending physician) with written report; interpretation only", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59051", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110286, + "CONCEPT_NAME" : "Fetal monitoring during labor by consulting physician (ie, non-attending physician) with written report; supervision and interpretation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59050", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4146847, + "CONCEPT_NAME" : "Fetal monitoring scalp injury", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "268822004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4145315, + "CONCEPT_NAME" : "Fetal movements felt", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "268470003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40759953, + "CONCEPT_NAME" : "Fetal Narrative Movement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "56834-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Clinical Observation" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3003857, + "CONCEPT_NAME" : "Fetal Narrative Sex US", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "11883-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Clinical Observation" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110284, + "CONCEPT_NAME" : "Fetal non-stress test", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59025", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4271327, + "CONCEPT_NAME" : "Fetal OR intrauterine acidosis first noted during labor AND/OR delivery in liveborn infant", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "63055005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061924, + "CONCEPT_NAME" : "Fetal OR intrauterine anoxia AND/OR hypoxia noted before labor in liveborn infant", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "17082004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4281385, + "CONCEPT_NAME" : "Fetal OR intrauterine asphyxia, not clear if noted before OR after onset of labor in liveborn infant", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "66231000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4142900, + "CONCEPT_NAME" : "Fetal OR intrauterine asphyxia noted before labor in liveborn infant", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "33721007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4314282, + "CONCEPT_NAME" : "Fetal OR intrauterine hypercapnia first noted during labor AND/OR delivery in liveborn infant", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "86664001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438541, + "CONCEPT_NAME" : "Fetal or neonatal effect of abnormality of chorion", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "75592000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36716530, + "CONCEPT_NAME" : "Fetal or neonatal effect of abnormal maternal chemistry", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "722564009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434483, + "CONCEPT_NAME" : "Fetal or neonatal effect of abnormal uterine contraction", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "63254003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4148097, + "CONCEPT_NAME" : "Fetal or neonatal effect of abruptio placentae", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "268803008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433309, + "CONCEPT_NAME" : "Fetal or neonatal effect of alcohol transmitted via placenta and/or breast milk", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "36558000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44784300, + "CONCEPT_NAME" : "Fetal or neonatal effect of anti-infective agent transmitted via placenta", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "698402008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432429, + "CONCEPT_NAME" : "Fetal or neonatal effect of anti-infective agent transmitted via placenta and/or breast milk", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64415008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439129, + "CONCEPT_NAME" : "Fetal or neonatal effect of breech delivery and extraction", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "4787007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439135, + "CONCEPT_NAME" : "Fetal or neonatal effect of cesarean delivery", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "50968003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4071485, + "CONCEPT_NAME" : "Fetal or neonatal effect of cesarean section", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206123007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 436518, + "CONCEPT_NAME" : "Fetal or neonatal effect of chorioamnionitis", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "55730009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36716552, + "CONCEPT_NAME" : "Fetal or neonatal effect of chorionic villous sampling", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "722592004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444464, + "CONCEPT_NAME" : "Fetal or neonatal effect of chronic maternal circulatory disease", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "9069004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 436220, + "CONCEPT_NAME" : "Fetal or neonatal effect of chronic maternal respiratory disease", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "1363007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435927, + "CONCEPT_NAME" : "Fetal or neonatal effect of complication of labor and/or delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "76012002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36717572, + "CONCEPT_NAME" : "Fetal or neonatal effect of complications of fetal surgery", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "722594003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441682, + "CONCEPT_NAME" : "Fetal or neonatal effect of compression of umbilical cord", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86629005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440203, + "CONCEPT_NAME" : "Fetal or neonatal effect of condition of umbilical cord", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "81402009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437975, + "CONCEPT_NAME" : "Fetal or neonatal effect of delivery by vacuum extractor", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "73890002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44784362, + "CONCEPT_NAME" : "Fetal or neonatal effect of disproportion during labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "698497008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435063, + "CONCEPT_NAME" : "Fetal or neonatal effect of ectopic pregnancy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "69693005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4070412, + "CONCEPT_NAME" : "Fetal or neonatal effect of entanglement of cord", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206090002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36716553, + "CONCEPT_NAME" : "Fetal or neonatal effect of fetal blood sampling", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "722593009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435918, + "CONCEPT_NAME" : "Fetal or neonatal effect of forceps delivery", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "28627008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4047718, + "CONCEPT_NAME" : "Fetal or neonatal effect of forceps delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206121009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4070425, + "CONCEPT_NAME" : "Fetal or neonatal effect of hypertonic labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206138008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4070426, + "CONCEPT_NAME" : "Fetal or neonatal effect of hypertonic uterine dysfunction", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206139000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435917, + "CONCEPT_NAME" : "Fetal or neonatal effect of incompetent cervix", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "70898005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42538699, + "CONCEPT_NAME" : "Fetal or neonatal effect of injury of umbilical cord", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "762465007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4070413, + "CONCEPT_NAME" : "Fetal or neonatal effect of knot in cord", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206091003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4048006, + "CONCEPT_NAME" : "Fetal or neonatal effect of long cord", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206100009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44784412, + "CONCEPT_NAME" : "Fetal or neonatal effect of malposition during labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "698554000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 78563, + "CONCEPT_NAME" : "Fetal or neonatal effect of malpresentation before labor", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "30409006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 76521, + "CONCEPT_NAME" : "Fetal or neonatal effect of malpresentation, malposition and/or disproportion during labor and/or delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "5984000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43531708, + "CONCEPT_NAME" : "Fetal or neonatal effect of maternal alcohol addiction", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609438005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44784346, + "CONCEPT_NAME" : "Fetal or neonatal effect of maternal analgesia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "698481003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44784342, + "CONCEPT_NAME" : "Fetal or neonatal effect of maternal anesthesia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "698480002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437976, + "CONCEPT_NAME" : "Fetal or neonatal effect of maternal anesthesia and/or analgesia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "82719008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4048130, + "CONCEPT_NAME" : "Fetal or neonatal effect of maternal exposure to environmental chemical substances", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206156008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36716526, + "CONCEPT_NAME" : "Fetal or neonatal effect of maternal gestational edema and proteinuria without hypertension", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "722559005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433027, + "CONCEPT_NAME" : "Fetal or neonatal effect of maternal hypertensive disease", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "268794002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 436219, + "CONCEPT_NAME" : "Fetal or neonatal effect of maternal infection", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "206005002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438868, + "CONCEPT_NAME" : "Fetal or neonatal effect of maternal injury", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "25932007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434744, + "CONCEPT_NAME" : "Fetal or neonatal effect of maternal medical problem", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "206002004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434745, + "CONCEPT_NAME" : "Fetal or neonatal effect of maternal nutritional disorder", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "67743008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4047585, + "CONCEPT_NAME" : "Fetal or neonatal effect of maternal nutritional disorder", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "206011004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36717570, + "CONCEPT_NAME" : "Fetal or neonatal effect of maternal obesity with adult body mass index 30 or greater but less than 40", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "722562008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36716529, + "CONCEPT_NAME" : "Fetal or neonatal effect of maternal obesity with adult body mass index equal to or greater than 40", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "722563003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36716528, + "CONCEPT_NAME" : "Fetal or neonatal effect of maternal overweight or obesity", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "722561001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36716527, + "CONCEPT_NAME" : "Fetal or neonatal effect of maternal periodontal disease", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "722560000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4118056, + "CONCEPT_NAME" : "Fetal or neonatal effect of maternal premature rupture of membrane", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206037001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435062, + "CONCEPT_NAME" : "Fetal or neonatal effect of maternal renal and/or urinary tract disease", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "81804001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44782462, + "CONCEPT_NAME" : "Fetal or neonatal effect of maternal renal disease", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "698552001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36716731, + "CONCEPT_NAME" : "Fetal or neonatal effect of maternal respiratory disease", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "722896005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4047586, + "CONCEPT_NAME" : "Fetal or neonatal effect of maternal surgical operation", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "206013001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44784411, + "CONCEPT_NAME" : "Fetal or neonatal effect of maternal urinary disease", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "698553006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440211, + "CONCEPT_NAME" : "Fetal or neonatal effect of morphologic abnormality of placenta", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87045002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441680, + "CONCEPT_NAME" : "Fetal or neonatal effect of multiple pregnancy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "18001006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44784612, + "CONCEPT_NAME" : "Fetal or neonatal effect of narcotic transmitted via breast milk", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "698787003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44784611, + "CONCEPT_NAME" : "Fetal or neonatal effect of narcotic transmitted via placenta", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "698786007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 436517, + "CONCEPT_NAME" : "Fetal or neonatal effect of narcotic transmitted via placenta and/or breast milk", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "78302009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440829, + "CONCEPT_NAME" : "Fetal or neonatal effect of noxious influences transmitted via placenta or breast milk", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206153000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437088, + "CONCEPT_NAME" : "Fetal or neonatal effect of oligohydramnios", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "65599008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4047595, + "CONCEPT_NAME" : "Fetal or neonatal effect of placental damage caused by cesarean section", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206070006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44784305, + "CONCEPT_NAME" : "Fetal or neonatal effect of placental hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "698408007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44782664, + "CONCEPT_NAME" : "Fetal or neonatal effect of placental separation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "698407002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 201681, + "CONCEPT_NAME" : "Fetal or neonatal effect of placental separation and/or hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "68961008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441122, + "CONCEPT_NAME" : "Fetal or neonatal effect of placental transfusion syndrome", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "63654005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 201410, + "CONCEPT_NAME" : "Fetal or neonatal effect of placenta previa", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "62048002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4176131, + "CONCEPT_NAME" : "Fetal or neonatal effect of placentitis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "5074003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437668, + "CONCEPT_NAME" : "Fetal or neonatal effect of polyhydramnios", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "66215008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433310, + "CONCEPT_NAME" : "Fetal or neonatal effect of precipitate delivery", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "82587000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433018, + "CONCEPT_NAME" : "Fetal or neonatal effect of prolapsed cord", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206087008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4048003, + "CONCEPT_NAME" : "Fetal or neonatal effect of short cord", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206095007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441684, + "CONCEPT_NAME" : "Fetal or neonatal effect of surgical operation on mother", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "56192002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4048004, + "CONCEPT_NAME" : "Fetal or neonatal effect of thrombosis of umbilical cord", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206096008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4047711, + "CONCEPT_NAME" : "Fetal or neonatal effect of torsion of cord", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206092005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442148, + "CONCEPT_NAME" : "Fetal or neonatal effect of toxic substance transmitted via placenta and/or breast milk", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "89873008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4077736, + "CONCEPT_NAME" : "Fetal or neonatal effect of transverse lie", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "18909006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4047719, + "CONCEPT_NAME" : "Fetal or neonatal effect of vacuum extraction delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206122002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4070414, + "CONCEPT_NAME" : "Fetal or neonatal effect of varices of cord", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206097004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4047712, + "CONCEPT_NAME" : "Fetal or neonatal effect of vasa previa of cord", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206099001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4048005, + "CONCEPT_NAME" : "Fetal or neonatal effect of velamentous insertion of cord", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206098009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433319, + "CONCEPT_NAME" : "Fetal or neonatal effects of maternal complication of pregnancy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "68983007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432734, + "CONCEPT_NAME" : "Fetal OR neonatal hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "111467008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36716545, + "CONCEPT_NAME" : "Fetal or neonatal intracerebral non-traumatic hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "722582007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36716543, + "CONCEPT_NAME" : "Fetal or neonatal intraventricular non-traumatic hemorrhage grade 4", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "722580004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4328890, + "CONCEPT_NAME" : "Fetal OR neonatal jaundice from drugs AND/OR toxins transmitted from mother", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "22067002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4230351, + "CONCEPT_NAME" : "Fetal OR neonatal jaundice from infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "89062002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4067525, + "CONCEPT_NAME" : "Fetal OR neonatal jaundice from polycythemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "21404001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4096143, + "CONCEPT_NAME" : "Fetal OR neonatal jaundice from swallowed maternal blood", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26291002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36716546, + "CONCEPT_NAME" : "Fetal or neonatal non-traumatic hemorrhage of subarachnoid space of brain", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "722583002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36716547, + "CONCEPT_NAME" : "Fetal or neonatal non-traumatic hemorrhage of subdural space of brain", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "722584008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36716544, + "CONCEPT_NAME" : "Fetal or neonatal non-traumatic intraventricular hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "722581000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36717220, + "CONCEPT_NAME" : "Fetal or neonatal vitamin B12 deficiency due to maternal vitamin B12 deficiency", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "722597005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4262288, + "CONCEPT_NAME" : "Fetal RBC determination", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "35793002", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110285, + "CONCEPT_NAME" : "Fetal scalp blood sampling", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59030", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015304, + "CONCEPT_NAME" : "Fetal size accords with dates", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169732009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4318554, + "CONCEPT_NAME" : "Fetal virilism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "95622006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4151412, + "CONCEPT_NAME" : "Fetoplacental hormone measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "269851009", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 436804, + "CONCEPT_NAME" : "Fetus OR newborn affected by premature rupture of membranes", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "38511004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 81360, + "CONCEPT_NAME" : "Fetus papyraceous", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90127001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4047725, + "CONCEPT_NAME" : "Fetus small-for-dates with signs of malnutrition", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206164002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442827, + "CONCEPT_NAME" : "Fetus with central nervous system malformation with antenatal problem", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "199520001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 72697, + "CONCEPT_NAME" : "Fetus with chromosomal abnormality - delivered", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "199526007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 80463, + "CONCEPT_NAME" : "Fetus with chromosomal abnormality with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199527003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4064277, + "CONCEPT_NAME" : "Fetus with damage due to intrauterine contraceptive device", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199558002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4063296, + "CONCEPT_NAME" : "Fetus with damage due to intrauterine contraceptive device - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199560000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4063297, + "CONCEPT_NAME" : "Fetus with damage due to intrauterine contraceptive device with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199561001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060672, + "CONCEPT_NAME" : "Fetus with drug damage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199547006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4064177, + "CONCEPT_NAME" : "Fetus with drug damage - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199549009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4064178, + "CONCEPT_NAME" : "Fetus with drug damage with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199550009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4064169, + "CONCEPT_NAME" : "Fetus with hereditary disease", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199531009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4064171, + "CONCEPT_NAME" : "Fetus with hereditary disease - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199533007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4064172, + "CONCEPT_NAME" : "Fetus with hereditary disease with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199534001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4143204, + "CONCEPT_NAME" : "Fetus with viral damage via mother", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "267254000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4064174, + "CONCEPT_NAME" : "Fetus with viral damage via mother - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199538003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4064175, + "CONCEPT_NAME" : "Fetus with viral damage via mother with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199539006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4129181, + "CONCEPT_NAME" : "Fibrinolysis - postpartum", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237336007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4171110, + "CONCEPT_NAME" : "Fifth day fits", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276597004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4306064, + "CONCEPT_NAME" : "Fimbrial extraction of tubal pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "387616000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4100257, + "CONCEPT_NAME" : "Fimbriectomy of fallopian tube", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25344002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4200202, + "CONCEPT_NAME" : "Finding of Apgar score", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "302083008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4199559, + "CONCEPT_NAME" : "Finding of appearance of umbilical stump", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "302084002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4201383, + "CONCEPT_NAME" : "Finding of birth length", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "302082003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4103472, + "CONCEPT_NAME" : "Finding of birth weight centile", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "301332001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4126735, + "CONCEPT_NAME" : "Finding of color of umbilical stump", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "289324005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4090743, + "CONCEPT_NAME" : "Finding of consistency of lochia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "249213009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 195877, + "CONCEPT_NAME" : "Finding of gravid uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "289675001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4116804, + "CONCEPT_NAME" : "Finding of head circumference", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "301338002", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4124634, + "CONCEPT_NAME" : "Finding of involution of uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "289750007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432441, + "CONCEPT_NAME" : "Finding of length of gestation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "366323009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4116805, + "CONCEPT_NAME" : "Finding of measures of head circumference", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "301339005", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4199560, + "CONCEPT_NAME" : "Finding of moistness of umbilical stump", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "302085001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439156, + "CONCEPT_NAME" : "Finding of neonate", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "118188004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4126738, + "CONCEPT_NAME" : "Finding of odor of umbilical cord stump", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "289328008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4201382, + "CONCEPT_NAME" : "Finding of state at birth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "302079008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4126409, + "CONCEPT_NAME" : "Finding of umbilical cord clamp", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "289334001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4090747, + "CONCEPT_NAME" : "Finding of umbilical stump", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "249229001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 197343, + "CONCEPT_NAME" : "First degree perineal laceration", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57759005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 192978, + "CONCEPT_NAME" : "First degree perineal tear during delivery - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199916005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 199088, + "CONCEPT_NAME" : "First degree perineal tear during delivery with postnatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199917001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3657563, + "CONCEPT_NAME" : "First trimester bleeding", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1323351000000104", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4239938, + "CONCEPT_NAME" : "First trimester pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57630001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4147431, + "CONCEPT_NAME" : "Flaccid newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "34761004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4096531, + "CONCEPT_NAME" : "Flaccid uterus after delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "249202006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4140071, + "CONCEPT_NAME" : "Floppy infant syndrome", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "33010005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42597080, + "CONCEPT_NAME" : "Foaling paralysis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "318771000009109", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED Veterinary", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37399364, + "CONCEPT_NAME" : "Folinic acid responsive seizure syndrome", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "717276003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110274, + "CONCEPT_NAME" : "Follicle puncture for oocyte retrieval, any method", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "58970", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4217642, + "CONCEPT_NAME" : "Footling breech delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72492007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4075187, + "CONCEPT_NAME" : "Forceps cephalic delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177161009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4114637, + "CONCEPT_NAME" : "Forceps delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "302383004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435022, + "CONCEPT_NAME" : "Forceps delivery - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200130005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4032761, + "CONCEPT_NAME" : "Forceps delivery, face to pubes", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "236977006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4324549, + "CONCEPT_NAME" : "Forceps delivery with rotation of fetal head", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "71166009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004711, + "CONCEPT_NAME" : "Forceps rotation of fetal head", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72.4", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "3-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004702, + "CONCEPT_NAME" : "Forceps, vacuum, and breech delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "2-dig nonbill code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 198495, + "CONCEPT_NAME" : "Fourth degree perineal laceration", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "399031001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4059969, + "CONCEPT_NAME" : "Fourth degree perineal laceration involving anal mucosa", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16950007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4143634, + "CONCEPT_NAME" : "Fourth degree perineal laceration involving rectal mucosa", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "34262005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 194429, + "CONCEPT_NAME" : "Fourth degree perineal tear during delivery - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199934009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 198496, + "CONCEPT_NAME" : "Fourth degree perineal tear during delivery with postnatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199935005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 81685, + "CONCEPT_NAME" : "Fracture of clavicle due to birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206209004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4071595, + "CONCEPT_NAME" : "Fracture of femur due to birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206213006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4070316, + "CONCEPT_NAME" : "Fracture of long bone, as birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "20596003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36716537, + "CONCEPT_NAME" : "Fracture of mandible due to birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "722573001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4048135, + "CONCEPT_NAME" : "Fracture of skull due to birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206215004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4273394, + "CONCEPT_NAME" : "Fracture of spine due to birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64728002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4244672, + "CONCEPT_NAME" : "Frank breech delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "38479009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4096237, + "CONCEPT_NAME" : "Free beta human chorionic gonadotrophin measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "250658009", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44807244, + "CONCEPT_NAME" : "Free beta human chorionic gonadotrophin multiple of median measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "816021000000107", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4034159, + "CONCEPT_NAME" : "Fresh stillbirth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237365001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4032737, + "CONCEPT_NAME" : "Frozen embryo transfer", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "236894009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2721243, + "CONCEPT_NAME" : "Frozen embryo transfer procedure cancelled before transfer, case rate", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "S4018", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2721241, + "CONCEPT_NAME" : "Frozen in vitro fertilization cycle, case rate", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "S4016", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4296686, + "CONCEPT_NAME" : "Full postnatal examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "384635005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4003230, + "CONCEPT_NAME" : "Functional hyperinsulinism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12002009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4104821, + "CONCEPT_NAME" : "Furuncle of umbilicus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "29199007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4338674, + "CONCEPT_NAME" : "Galactocele associated with childbirth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87840008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4068274, + "CONCEPT_NAME" : "Galactocele not associated with childbirth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "17413005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 74716, + "CONCEPT_NAME" : "Galactorrhea associated with childbirth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "71639005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061187, + "CONCEPT_NAME" : "Galactorrhea due to non-obstetric cause", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198115002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4066260, + "CONCEPT_NAME" : "Galactorrhea in pregnancy and the puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200444007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 74440, + "CONCEPT_NAME" : "Galactorrhea in pregnancy and the puerperium - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200446009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 74717, + "CONCEPT_NAME" : "Galactorrhea in pregnancy and the puerperium - delivered with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200447000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 76772, + "CONCEPT_NAME" : "Galactorrhea in pregnancy and the puerperium with antenatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200448005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443328, + "CONCEPT_NAME" : "Galactorrhea in pregnancy and the puerperium with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200449002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 79884, + "CONCEPT_NAME" : "Galactorrhea not associated with childbirth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "78622004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4127104, + "CONCEPT_NAME" : "Gamete intrafallopian transfer", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "236912008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4072421, + "CONCEPT_NAME" : "Gamete intrauterine transfer", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "176843009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110276, + "CONCEPT_NAME" : "Gamete, zygote, or embryo intrafallopian transfer, any method", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "58976", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4172870, + "CONCEPT_NAME" : "Gastritis of newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276527006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442777, + "CONCEPT_NAME" : "Generalized infection during labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "66844003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 77052, + "CONCEPT_NAME" : "Generally contracted pelvis - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199405005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 76750, + "CONCEPT_NAME" : "Generally contracted pelvis with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199406006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061522, + "CONCEPT_NAME" : "General practitioner unit delivery booking", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169622009", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4091200, + "CONCEPT_NAME" : "Genital tear resulting from childbirth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "249219008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 196177, + "CONCEPT_NAME" : "Genital tract AND/OR pelvic infection following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "111425004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45768620, + "CONCEPT_NAME" : "Genital tract infection in puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "707089008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 77340, + "CONCEPT_NAME" : "Genitourinary tract infection in pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "267204006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 81357, + "CONCEPT_NAME" : "Genitourinary tract infection in pregnancy - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199106001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 80778, + "CONCEPT_NAME" : "Genitourinary tract infection in pregnancy - delivered with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199107005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 74415, + "CONCEPT_NAME" : "Genitourinary tract infection in pregnancy - not delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199108000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4178165, + "CONCEPT_NAME" : "Gestation 14 - 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428567001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181468, + "CONCEPT_NAME" : "Gestation 9- 13 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428930004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4173324, + "CONCEPT_NAME" : "Gestation abnormality", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276614003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3048230, + "CONCEPT_NAME" : "Gestational age in weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "49051-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Clinical Observation" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3045991, + "CONCEPT_NAME" : "Gestational age of fetus by Amniocentesis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "33901-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40481315, + "CONCEPT_NAME" : "Gestational age unknown", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "441924001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3036844, + "CONCEPT_NAME" : "Gestational age US composite estimate", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "11888-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Clinical Observation" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4221190, + "CONCEPT_NAME" : "Gestational choriocarcinoma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "417570003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3183244, + "CONCEPT_NAME" : "Gestational diabetes during pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "5620001000004106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "Nebraska Lexicon", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4024659, + "CONCEPT_NAME" : "Gestational diabetes mellitus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "11687002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4326434, + "CONCEPT_NAME" : "Gestational diabetes mellitus class A-1", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "75022004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4263902, + "CONCEPT_NAME" : "Gestational diabetes mellitus class A-2", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46894009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37018765, + "CONCEPT_NAME" : "Gestational diabetes mellitus complicating pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40801000119106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443214, + "CONCEPT_NAME" : "Gestational edema", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237285000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442565, + "CONCEPT_NAME" : "Gestational edema without hypertension", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "77376005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4058113, + "CONCEPT_NAME" : "Gestational edema with proteinuria", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199141002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4214186, + "CONCEPT_NAME" : "Gestational trophoblastic disease", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "416402001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530970, + "CONCEPT_NAME" : "Gestational trophoblastic lesion", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609516006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530973, + "CONCEPT_NAME" : "Gestational trophoblastic neoplasia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609519004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181162, + "CONCEPT_NAME" : "Gestation greater than 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429715006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4324063, + "CONCEPT_NAME" : "Gestation less than 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428566005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438542, + "CONCEPT_NAME" : "Gestation less than 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313178001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45770261, + "CONCEPT_NAME" : "Gestation less than 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "925561000000100", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4322726, + "CONCEPT_NAME" : "Gestation less than 9 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428058009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4242241, + "CONCEPT_NAME" : "Gestation period, 10 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "38039008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4174506, + "CONCEPT_NAME" : "Gestation period, 11 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "50367001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4197245, + "CONCEPT_NAME" : "Gestation period, 12 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "79992004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4266517, + "CONCEPT_NAME" : "Gestation period, 13 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "62333002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4248725, + "CONCEPT_NAME" : "Gestation period, 14 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72846000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4283690, + "CONCEPT_NAME" : "Gestation period, 15 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6678005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4049621, + "CONCEPT_NAME" : "Gestation period, 16 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15633004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4277749, + "CONCEPT_NAME" : "Gestation period, 17 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65683006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4097608, + "CONCEPT_NAME" : "Gestation period, 18 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25026004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181751, + "CONCEPT_NAME" : "Gestation period, 19 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54318006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4337360, + "CONCEPT_NAME" : "Gestation period, 1 week", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87178007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4051642, + "CONCEPT_NAME" : "Gestation period, 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "23464008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4185780, + "CONCEPT_NAME" : "Gestation period, 21 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "41438001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4274955, + "CONCEPT_NAME" : "Gestation period, 22 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65035007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336226, + "CONCEPT_NAME" : "Gestation period, 23 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86883006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439922, + "CONCEPT_NAME" : "Gestation period, 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313179009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435640, + "CONCEPT_NAME" : "Gestation period, 25 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72544005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444023, + "CONCEPT_NAME" : "Gestation period, 26 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48688005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432430, + "CONCEPT_NAME" : "Gestation period, 27 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46906003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444461, + "CONCEPT_NAME" : "Gestation period, 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90797000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444417, + "CONCEPT_NAME" : "Gestation period, 29 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45139008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4220085, + "CONCEPT_NAME" : "Gestation period, 2 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "82118009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434484, + "CONCEPT_NAME" : "Gestation period, 30 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "71355009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433864, + "CONCEPT_NAME" : "Gestation period, 31 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64920003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442558, + "CONCEPT_NAME" : "Gestation period, 32 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7707000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441678, + "CONCEPT_NAME" : "Gestation period, 33 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "78395001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443874, + "CONCEPT_NAME" : "Gestation period, 34 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13763000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444267, + "CONCEPT_NAME" : "Gestation period, 35 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84132007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438543, + "CONCEPT_NAME" : "Gestation period, 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57907009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442355, + "CONCEPT_NAME" : "Gestation period, 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43697006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443871, + "CONCEPT_NAME" : "Gestation period, 38 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13798002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435655, + "CONCEPT_NAME" : "Gestation period, 39 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80487005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4326232, + "CONCEPT_NAME" : "Gestation period, 3 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "74952004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442769, + "CONCEPT_NAME" : "Gestation period, 41 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63503002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444067, + "CONCEPT_NAME" : "Gestation period, 42 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36428009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4195157, + "CONCEPT_NAME" : "Gestation period, 4 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "44398003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4290009, + "CONCEPT_NAME" : "Gestation period, 5 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "37005007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4313026, + "CONCEPT_NAME" : "Gestation period, 6 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86801005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4270513, + "CONCEPT_NAME" : "Gestation period, 7 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63110000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4132434, + "CONCEPT_NAME" : "Gestation period, 8 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26690008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4245908, + "CONCEPT_NAME" : "Gestation period, 9 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "931004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 762907, + "CONCEPT_NAME" : "Gestation period greater than or equal to 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "433601000124106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4169089, + "CONCEPT_NAME" : "Glucagon resistance", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48839007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4236507, + "CONCEPT_NAME" : "Glucoglycinuria", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "9111008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4042066, + "CONCEPT_NAME" : "Glucometer blood glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "166900001", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3003994, + "CONCEPT_NAME" : "Glucose-6-Phosphate dehydrogenase [Enzymatic activity/mass] in Red Blood Cells", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "32546-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3037524, + "CONCEPT_NAME" : "Glucose-6-Phosphate dehydrogenase [Enzymatic activity/volume] in Red Blood Cells", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "2357-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2212367, + "CONCEPT_NAME" : "Glucose, blood by glucose monitoring device(s) cleared by the FDA specifically for home use", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "82962", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2212360, + "CONCEPT_NAME" : "Glucose; blood, reagent strip", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "82948", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2212357, + "CONCEPT_NAME" : "Glucose, body fluid, other than blood", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "82945", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4094447, + "CONCEPT_NAME" : "Glucose concentration, test strip measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "250417005", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4017758, + "CONCEPT_NAME" : "Glucose CSF/glucose plasma ratio measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "104685000", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4077514, + "CONCEPT_NAME" : "Glucose in sample", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "275794004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3049746, + "CONCEPT_NAME" : "Glucose.IV [Mass] of Dose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "47621-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4275336, + "CONCEPT_NAME" : "Glucose level - finding", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "365811003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3025893, + "CONCEPT_NAME" : "Glucose [Mass/time] in 10 hour Urine", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "21307-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40762090, + "CONCEPT_NAME" : "Glucose [Mass/time] in 18 hour Urine", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "58997-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40758981, + "CONCEPT_NAME" : "Glucose [Mass/time] in 24 hour Stool", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55860-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3023544, + "CONCEPT_NAME" : "Glucose [Mass/time] in 6 hour Urine", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "18227-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3005943, + "CONCEPT_NAME" : "Glucose [Mass/time] in 8 hour Urine", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "21306-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3016083, + "CONCEPT_NAME" : "Glucose [Mass/volume] in 24 hour Peritoneal dialysis fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12629-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3014014, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Amniotic fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6300-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3031266, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Arterial blood", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "41651-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3048865, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Blood --2 hours post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "49134-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3034530, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Blood --2 hours post meal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6689-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3011424, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Blood by Automated test strip", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "2340-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3014053, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Blood by Test strip manual", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "2341-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36304599, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Blood --post meal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87422-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36303387, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Blood --pre-meal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "88365-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3019210, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Body fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "2344-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3004077, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Capillary blood", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "32016-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3038962, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Capillary blood --baseline", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40858-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3034962, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Capillary blood by Glucometer", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "41653-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3022548, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Cerebral spinal fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "2342-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36031895, + "CONCEPT_NAME" : "Glucose [Mass/volume] in DBS", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "96594-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3023572, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Dialysis fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "2343-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3002436, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Dialysis fluid --2 hour specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12612-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3001346, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Dialysis fluid --4 hour specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12613-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3016680, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Gastric fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14386-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3045908, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Milk --2 hours post meal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43278-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3030618, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Pericardial fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "33405-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3015544, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Peritoneal dialysis fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12628-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3020909, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Peritoneal dialysis fluid --1st specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12630-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3033618, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Peritoneal dialysis fluid --2 hour dwell specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12608-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3011789, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Peritoneal dialysis fluid --2nd specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12631-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3015046, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Peritoneal dialysis fluid --3rd specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12632-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3034466, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Peritoneal dialysis fluid --4 hour dwell specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12609-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40759281, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Peritoneal dialysis fluid --4 hours post peritoneal dialysis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "56160-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3008572, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Peritoneal dialysis fluid --4th specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12633-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3016726, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Peritoneal dialysis fluid --6th specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12635-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3017261, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Peritoneal dialysis fluid --7th specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12636-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3004251, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Peritoneal dialysis fluid --8th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12637-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40763914, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Peritoneal dialysis fluid --baseline", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "61153-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3000607, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Peritoneal dialysis fluid --pre dialysis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12607-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3002240, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Peritoneal fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "2347-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3010075, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Peritoneal fluid --12 hours post peritoneal dialysis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12220-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3049817, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Peritoneal fluid --24 hours post peritoneal dialysis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48787-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3004617, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Peritoneal fluid --2 hours post peritoneal dialysis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12218-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3003462, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Peritoneal fluid --4 hours post peritoneal dialysis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12219-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3003403, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Pleural fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "2346-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3004501, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "2345-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3041015, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --100 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40004-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3039562, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --10.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40259-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3027276, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --105 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "21308-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3043908, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --10.75 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40260-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3026728, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --10 AM specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16165-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3025211, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --10 hours fasting", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10450-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3006760, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --10 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12645-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3017592, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --10 minutes post 0.5 g/kg glucose IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1498-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37020527, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --10 minutes post dose glucagon", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "92819-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3052646, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --10 minutes post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48984-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3026020, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --10 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12654-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3006333, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --10 minutes pre XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12651-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3049496, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --10 PM specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48991-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3032780, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --10th specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "50208-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3036283, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --10th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12622-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3041875, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --110 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40005-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3041757, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --11.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40008-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3012635, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --11 AM specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16166-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3006325, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --11 hour post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26817-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3036807, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --11th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12623-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3044527, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --12.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40009-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3048585, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --12 AM specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48992-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3002009, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --12 hours fasting", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1554-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3007781, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --12 hours post 50 g lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "18354-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3024583, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --12 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12647-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3041863, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --12 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40028-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3048856, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --12 PM specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48988-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3023379, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --12th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12624-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3043648, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --13.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40011-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040375, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --13 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40010-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3039582, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --13 minutes pre XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40261-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3013802, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --13th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12625-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040872, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --14 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40012-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3044252, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --14 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40029-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3014163, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --14th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12626-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3038855, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --15.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40013-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3021232, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --1.5 hours post 0.05-0.15 U insulin/kg IV 12 hours fasting", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1493-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3033778, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --1.5 hours post 0.5 g/kg glucose IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1492-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3012415, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --1.5 hours post 100 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1494-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3008804, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --1.5 hours post 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1496-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37020666, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --1.5 hours post dose cloNIDine", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "92669-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3039397, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --1.5 hours post dose fructose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "51767-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3017053, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --1.5 hours post dose insulin IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1497-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3001975, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --1.5 hours post dose lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26779-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 21494214, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --1.5 hours post meal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80959-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3039851, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --1.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40003-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36660183, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --15 min post meal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "95078-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3029871, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --15 minutes post 0.1 U/kg insulin", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "50751-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3034771, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --15 minutes post 100 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "11142-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 21492336, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --15 minutes post dose arginine+insulin", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "79193-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3025113, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --15 minutes post dose lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12648-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3005787, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --15 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12639-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040739, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --15 minutes pre XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "39999-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3009006, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --15th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12627-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040457, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --16 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40014-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3038995, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --16 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40030-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3038543, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --17.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40015-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3041353, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --18.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40017-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3038958, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --18 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40016-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040694, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --19.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40018-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040940, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --19 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40031-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3043678, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --1 day post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40024-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3009245, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --1 hour post 0.05-0.15 U insulin/kg IV post 12H CFst", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1500-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3017892, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --1 hour post 0.5 g/kg glucose IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1499-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3014716, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --1 hour post 100 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1501-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3008191, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --1 hour post 1.2 g/kg lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "30344-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3016699, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --1 hour post 50 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1504-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3007332, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --1 hour post 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1507-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 21492339, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --1 hour post dose arginine+insulin", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "79196-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37021274, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --1 hour post dose cloNIDine", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "92668-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3050405, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --1 hour post dose fructose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48605-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3010300, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --1 hour post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "20438-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3017345, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --1 hour post dose insulin IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1510-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3002310, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --1 hour post dose lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26778-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3026071, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --1 hour post meal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10449-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3025232, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --1 hour post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12646-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3004723, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --1 minute post 0.5 g/kg glucose IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1512-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40760467, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --1 minute post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57350-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3032986, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --1st specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "50206-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3035125, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --1st specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12615-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3044574, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --20.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40020-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040904, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --20 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40019-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3007820, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --20 minutes post 0.5 g/kg glucose IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1513-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3038316, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --20 minutes post 50 g lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "53928-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37020873, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --20 minutes post dose glucagon", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "92818-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3052659, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --20 minutes post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48985-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3026550, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --20 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12655-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3048282, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --20 minutes pre XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48983-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3041620, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --21.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40021-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40759870, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --2.17 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "56751-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3041009, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --22 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40022-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3043637, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --22 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40032-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3041860, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --23.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40023-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3015930, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --2.5 hours post 100 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "9375-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3000545, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --2.5 hours post 50 g lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13865-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040983, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --2.5 hours post dose fructose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "51766-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3004428, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --2.5 hours post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26554-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36660184, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --2.5 hours post meal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "95103-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3023776, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --2.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "29332-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3043930, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --25 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40037-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3038549, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --25 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40033-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3042343, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --26 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40038-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3041056, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --27 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40039-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3041864, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --27 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40034-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3042329, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --28 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40040-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3041872, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --29 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40041-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040748, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --2 days post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40045-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3006717, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --2 hours post 100 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1514-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3007092, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --2 hours post 1.2 g/kg lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "30345-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3042637, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --2 hours post 50 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "41024-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3025673, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --2 hours post 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1518-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37021474, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --2 hours post dose cloNIDine", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "92670-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3041799, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --2 hours post dose fructose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "51769-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3026300, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --2 hours post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "20436-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3019876, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --2 hours post dose lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26780-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3021737, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --2 hours post meal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1521-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3000845, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --2 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12610-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3022079, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --2 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12652-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3032779, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --2nd specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "50212-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3035352, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --2nd specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12616-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3010044, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --2 PM specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16167-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040420, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --30 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40042-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36660135, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --30 min post meal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "95105-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3025740, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --30 minutes post 0.05-0.15 U insulin/kg IV post 12H CFst", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1523-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3026571, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --30 minutes post 0.1 U/kg insulin", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1524-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3025136, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --30 minutes post 0.5 g/kg glucose IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1522-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3030070, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --30 minutes post 1.2 g/kg lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "33024-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3013604, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --30 minutes post 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1527-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 21492337, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --30 minutes post dose arginine+insulin", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "79194-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37019755, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --30 minutes post dose cloNIDine", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "92667-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3050128, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --30 minutes post dose fructose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48607-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37020288, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --30 minutes post dose glucagon", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "92817-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3028247, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --30 minutes post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "20439-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3010722, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --30 minutes post dose insulin IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1528-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3003412, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --30 minutes post dose lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26777-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3041024, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --30 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40263-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3041720, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --30 minutes pre XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "39998-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3042058, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --31 hour post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40043-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3019013, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --3.5 hours post 100 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "9376-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3003334, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --3.5 hours post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26555-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3007427, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --3.5 hours post dose lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12650-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36659783, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --3.5 hours post meal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "95104-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3002544, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --3.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "29329-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3038570, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --36 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40044-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3053004, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --3 AM specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48993-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3027457, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --3 hours post 100 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1530-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3005996, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --3 hours post 1.2 g/kg lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "30346-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3009582, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --3 hours post 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1533-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3039937, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --3 hours post dose fructose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "51768-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3027198, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --3 hours post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "20437-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3020407, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --3 hours post dose lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26781-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36659954, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --3 hours post meal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "95106-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3014737, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --3 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "18342-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3010118, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --3 minutes post 0.5 g/kg glucose IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1534-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040476, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --3 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40025-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3042431, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --3 minutes pre XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40262-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3010030, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --3 PM specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16168-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3030416, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --3rd specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "50213-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3035858, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --3rd specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12617-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3015323, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --40 minutes post 0.5 g/kg glucose IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1535-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3039166, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --40 minutes post 50 g lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "53929-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3027980, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --40 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12657-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3022574, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --4.5 hours post 100 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "9377-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36660356, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --4.5 hours post meal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "95107-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3038965, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --4.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40035-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3020260, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --45 minutes post 100 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "11143-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 21492338, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --45 minutes post dose arginine+insulin", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "79195-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3023186, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --45 minutes post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26539-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3018998, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --45 minutes post dose insulin IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1536-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3028112, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --45 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "21309-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3003541, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --4 hour specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12611-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3024644, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --4 hours post 50 g lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13607-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3005487, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --4 hours post dose lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26782-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36660344, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --4 hours post meal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "95108-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3021924, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --4 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "29330-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3013145, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --4 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12656-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3032719, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --4th specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "50214-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40761077, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --4th specimen post lactose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57971-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3009397, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --4th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12618-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3013881, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --50 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12658-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3005850, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --5.5 hours post 100 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "9378-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3035415, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --5.5 hours post 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14137-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3039849, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --5.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40036-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3052976, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --5 hours post 50 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48810-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3033312, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --5 hours post 50 g lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13866-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3021860, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --5 hours post 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1542-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3004389, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --5 hours post dose lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26783-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36660564, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --5 hours post meal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "95109-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3023243, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "29331-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3022933, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --5 minutes post 0.5 g/kg glucose IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1543-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040592, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --5 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40001-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3041921, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --5 minutes pre XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40000-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3012792, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --5 PM specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16170-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3028944, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --5th specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "50215-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40761078, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --5th specimen post lactose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57972-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3017083, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --6.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12640-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3050134, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --6 AM specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48994-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3023466, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --6 hours post 100 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1544-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3004681, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --6 hours post 50 g lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "18353-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3022285, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --6 hours post 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6760-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3023125, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --6 hours post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26544-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3004351, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --6 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "29412-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3038687, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --6 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40026-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3050095, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --6 PM specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48989-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3032230, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --6th specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "50216-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3011296, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --70 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12659-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3018151, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --7.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12642-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3008349, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --75 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "21310-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3019431, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --7 hours post meal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12614-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3017328, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --7 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12641-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3031928, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --7th specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "50207-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3041745, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --80 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40002-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3039229, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --8.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40006-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3052381, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --8 AM specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48986-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3024762, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --8 hours fasting", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "17865-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3004766, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --8 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12643-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3025181, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --8 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12653-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3049466, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --8 PM specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48990-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3029014, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --8th specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "50217-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3000931, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --8th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "27432-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3042186, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --9.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40007-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3007864, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --9 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12644-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3038525, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --9 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40027-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3031929, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --9th specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "50218-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3035759, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --9th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12621-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3002666, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --baseline", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1547-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3025866, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --post 50 g glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "20441-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3026536, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --post meal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16915-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3025398, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16914-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3001511, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --pre 0.5 g/kg glucose IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1548-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3020058, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --pre 100 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1549-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3019474, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --pre 12 hour fast", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1550-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3005030, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --pre 50 g lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1551-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3003435, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --pre 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1552-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3049846, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --pre dose fructose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48606-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3002332, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --pre dose insulin IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1553-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3006887, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --pre dose lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12638-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040820, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --pre-meal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "53049-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44816672, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum, Plasma or Blood", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "74774-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3042201, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Specimen --1st specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40874-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3041915, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Specimen --3rd specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40875-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3051368, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Stool", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48036-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40760907, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Stool by Post hydrolysis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57797-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3041397, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Total parental nutrition", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "53050-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3020399, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Urine", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "2350-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3020632, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Urine --12 hours fasting", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1555-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3015996, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Urine --1.5 hours post 100 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1495-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3001020, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Urine --1.5 hours post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25678-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3016159, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Urine --1 hour post 100 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1503-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3017222, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Urine --1 hour post 50 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1505-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3027145, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Urine --1 hour post 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1509-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3010115, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Urine --1 hour post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25664-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3032276, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Urine --1 hour post dose lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "42611-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40759245, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Urine --1 hour post meal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "56124-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3024540, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Urine --2 hours post 100 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1516-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3006289, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Urine --2 hours post 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1520-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3022314, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Urine --2 hours post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25667-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3034003, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Urine --2 hours post dose lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "42613-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3037787, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Urine --30 minutes post 100 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1491-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3011088, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Urine --30 minutes post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25670-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3028287, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Urine --3 hours post 100 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1532-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40761076, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Urine --3 hours post 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57970-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3010956, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Urine --3 hours post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26540-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3031651, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Urine --3 hours post dose lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "42604-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3005231, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Urine --4 hours post 100 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1538-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3000272, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Urine --4 hours post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25675-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3031105, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Urine --4 hours post dose lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "42629-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3012009, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Urine --5 hours post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26542-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3032809, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Urine --5 hours post dose lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "42631-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3019571, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Urine --6 hours post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26545-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3029102, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Urine --6 hours post dose lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "42609-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3039896, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Urine by Automated test strip", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "53328-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3024629, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Urine by Test strip", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "5792-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3042145, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Urine by Test strip --1st specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40849-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3039280, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Urine by Test strip --2nd specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40850-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3043210, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Urine by Test strip --3rd specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45204-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3042982, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Urine by Test strip --4th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45205-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3043057, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Urine by Test strip --5th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45206-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3035214, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Urine collected for unspecified duration", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "35662-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3033408, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Venous blood", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "41652-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3004676, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Vitreous fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16903-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757617, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Water", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54486-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 1002230, + "CONCEPT_NAME" : "Glucose [Mass/volume] mean in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "93791-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3005131, + "CONCEPT_NAME" : "Glucose mean value [Mass/volume] in Blood Estimated from glycated hemoglobin", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "27353-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4149519, + "CONCEPT_NAME" : "Glucose measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36048009", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4229586, + "CONCEPT_NAME" : "Glucose measurement, 2 hour post prandial", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "88856000", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4144235, + "CONCEPT_NAME" : "Glucose measurement, blood", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "33747003", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4018315, + "CONCEPT_NAME" : "Glucose measurement, blood, test strip", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "104686004", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4151548, + "CONCEPT_NAME" : "Glucose measurement, body fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "269926009", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4230393, + "CONCEPT_NAME" : "Glucose measurement by monitoring device", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "359776002", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4286945, + "CONCEPT_NAME" : "Glucose measurement, CSF", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "69125006", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4036846, + "CONCEPT_NAME" : "Glucose measurement estimated from glycated hemoglobin", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "117346004", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4182052, + "CONCEPT_NAME" : "Glucose measurement, fasting", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "52302001", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4218282, + "CONCEPT_NAME" : "Glucose measurement, plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72191006", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4017078, + "CONCEPT_NAME" : "Glucose measurement, post glucose dose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "104690002", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4018317, + "CONCEPT_NAME" : "Glucose measurement, quantitative", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "104688003", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4249006, + "CONCEPT_NAME" : "Glucose measurement, random", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "73128004", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4331286, + "CONCEPT_NAME" : "Glucose measurement, serum", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "22569008", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4018316, + "CONCEPT_NAME" : "Glucose measurement, tolbutamide tolerance test", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "104687008", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4149883, + "CONCEPT_NAME" : "Glucose measurement, urine", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "30994003", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40762854, + "CONCEPT_NAME" : "Glucose [Molar concentration difference] in Serum or Plasma --1.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59793-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40762853, + "CONCEPT_NAME" : "Glucose [Molar concentration difference] in Serum or Plasma --1 hour post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59792-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40762855, + "CONCEPT_NAME" : "Glucose [Molar concentration difference] in Serum or Plasma --2 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59794-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40762852, + "CONCEPT_NAME" : "Glucose [Molar concentration difference] in Serum or Plasma --30 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59791-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40762856, + "CONCEPT_NAME" : "Glucose [Molar concentration difference] in Serum or Plasma --3 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59795-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40762857, + "CONCEPT_NAME" : "Glucose [Molar concentration difference] in Serum or Plasma --4 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59796-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40762858, + "CONCEPT_NAME" : "Glucose [Molar concentration difference] in Serum or Plasma --5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59797-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44816584, + "CONCEPT_NAME" : "Glucose [Moles/time] in 12 hour Urine", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "74686-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3042439, + "CONCEPT_NAME" : "Glucose [Moles/time] in 24 hour Body fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40366-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3000361, + "CONCEPT_NAME" : "Glucose [Moles/time] in 24 hour Urine", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15077-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44816585, + "CONCEPT_NAME" : "Glucose [Moles/volume] in 12 hour Urine", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "74687-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3046229, + "CONCEPT_NAME" : "Glucose [Moles/volume] in 24 hour Dialysis fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45297-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3035381, + "CONCEPT_NAME" : "Glucose [Moles/volume] in 24 hour Urine", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25916-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3044242, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Arterial blood", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "39481-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3020491, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Blood", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15074-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43055143, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Blood by Automated test strip", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72516-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040151, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Capillary blood", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "51596-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3021525, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Capillary blood --2 hours post meal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14760-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3001501, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Capillary blood by Glucometer", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14743-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40762874, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Capillary blood by Glucometer --7 AM specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59813-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3020044, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Cerebral spinal fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14744-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 46235203, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Cerebral spinal fluid --1st tube", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "76669-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 46235204, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Cerebral spinal fluid --2nd tube", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "76670-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 46235205, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Cerebral spinal fluid --3rd tube", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "76671-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 46235206, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Cerebral spinal fluid --4th tube", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "76672-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3051101, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Cord blood", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "47995-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3020722, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Dialysis fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15075-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3052839, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Dialysis fluid --2 hour specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46221-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3051873, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Dialysis fluid --4 hour specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46222-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3051002, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Dialysis fluid --overnight", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46223-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040806, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Nonbiological fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "53084-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3042173, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Pericardial fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "39479-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3036257, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Peritoneal dialysis fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14746-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 21491017, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Peritoneal dialysis fluid --2 hour dwell specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "78534-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 21491018, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Peritoneal dialysis fluid --4 hour dwell specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "78535-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 21492444, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Peritoneal dialysis fluid --overnight dwell", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "79264-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3023044, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Peritoneal fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14748-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3036782, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Pleural fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14747-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3013826, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14749-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3038566, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --105 minutes post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40286-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3044548, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --10.75 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40174-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040116, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --10 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40173-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757532, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --10 minutes post dose glucagon", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54401-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3001022, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --10 minutes post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "32359-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3039558, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --10 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40154-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757379, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --10 minutes pre dose glucagon", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54248-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3038565, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --10 minutes pre XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40151-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757524, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --10th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54393-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040402, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --11.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40175-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40762873, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --11 AM specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59812-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 46236371, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --11 hour post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "77681-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757525, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --11th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54394-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3038251, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --12.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40177-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3043536, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --12 AM specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45052-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3041470, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --12 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40176-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3041028, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --12 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40204-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3045291, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --12 PM specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45054-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757526, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --12th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54395-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040937, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --13.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40179-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3003912, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --1.3 hours post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "30265-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757397, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --1.3 hours post dose insulin IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54266-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3041766, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --13 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40178-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3038257, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --13 minutes pre XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40195-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3038390, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --14 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40180-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040594, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --14 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40205-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3038991, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --15.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40181-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757408, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --1.5 hour post dose ornithine alpha-ketoglutarate", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54277-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3036375, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --1.5 hours post 50 g lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14751-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40758480, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --1.5 hours post 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55351-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3039763, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --1.5 hours post dose betaxolol", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "53487-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3036895, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --1.5 hours post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14752-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757398, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --1.5 hours post dose insulin IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54267-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3042216, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --1.5 hours post dose lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40278-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 46234926, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --1.5 hours post dose triple bolus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "75405-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3042995, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --1.5 hours post meal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "44919-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3021258, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --1.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25679-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44786741, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --15 minutes post 50 g lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "74084-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757380, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --15 minutes post dose glucagon", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54249-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3009877, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --15 minutes post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25663-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757391, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --15 minutes post dose insulin IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54260-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43534070, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --15 minutes post dose lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72896-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757402, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --15 minutes post dose ornithine alpha-ketoglutarate", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54271-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3042146, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --15 minutes post dose triple bolus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40319-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3038581, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --15 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40155-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3050625, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --15 minutes pre dose betaxolol", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "53481-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757381, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --15 minutes pre dose glucagon", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54250-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3050771, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --15 minutes pre dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48109-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757392, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --15 minutes pre dose insulin IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54261-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757403, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --15 minutes pre dose ornithine alpha-ketoglutarate", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54272-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3041787, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --15 minutes pre XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40150-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3007619, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --1.6 hours post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "30266-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3044219, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --16 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40182-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040442, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --16 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40206-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3041160, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --17.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40183-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3043956, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --18.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40185-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040673, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --18 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40184-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3041760, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --19.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40186-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3042342, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --19 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40207-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040567, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --1 day post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40192-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3037432, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --1 hour post 100 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14753-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3020869, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --1 hour post 50 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14754-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3011761, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --1 hour post 50 g lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14755-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3039422, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --1 hour post 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "51597-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3051280, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --1 hour post dose betaxolol", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "53486-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3015024, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --1 hour post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14756-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757396, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --1 hour post dose insulin IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54265-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040655, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --1 hour post dose lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40277-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757407, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --1 hour post dose ornithine alpha-ketoglutarate", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54276-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3044516, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --1 hour post dose triple bolus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40322-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040659, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --1 hour post meal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40287-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3015621, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --1 hour post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25665-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757523, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --1st specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54392-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3038672, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --20.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40188-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3038264, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --20 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40187-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42868432, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --20 minutes post 50 g lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "69943-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757382, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --20 minutes post dose glucagon", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54251-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3018582, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --20 minutes post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "30263-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42868430, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --20 minutes post dose lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "69941-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3039826, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --20 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40156-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3041486, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --20 minutes pre XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40194-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3043922, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --21.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40189-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3043635, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --22 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40190-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3041604, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --22 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40208-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3039788, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --23.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40191-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3006520, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --2.3 hours post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "30267-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757401, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --2.5 hour post dose ornithine alpha-ketoglutarate", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54270-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3043514, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --2.5 hours post 50 g lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45298-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40758510, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --2.5 hours post 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55381-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040060, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --2.5 hours post dose betaxolol", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "53480-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3019047, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --2.5 hours post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25666-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757390, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --2.5 hours post dose insulin IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54259-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43534069, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --2.5 hours post dose lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72895-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3041159, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --2.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40161-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040683, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --25 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40214-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040867, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --25 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40209-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3034101, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --2.6 hours post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "30251-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3041140, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --26 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40215-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3042029, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --27 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40216-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3038395, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --27 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40210-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3044269, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --28 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40217-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040870, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --29 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40218-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040366, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --2 days post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40222-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757400, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --2 hour post dose ornithine alpha-ketoglutarate", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54269-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3009154, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --2 hours post 100 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14757-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3016160, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --2 hours post 50 g lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14758-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3017538, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --2 hours post 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14995-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3038621, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --2 hours post dose betaxolol", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "53476-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3016701, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --2 hours post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14759-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757389, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --2 hours post dose insulin IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54258-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3041638, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --2 hours post dose lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40279-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040613, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --2 hours post dose triple bolus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40323-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3012413, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --2 hours post meal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14761-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757383, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --2 minutes post dose glucagon", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54252-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040578, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --2 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40198-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757527, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --2nd specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54396-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040603, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --30 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40219-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3015980, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --30 minutes post 50 g lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14762-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3005793, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --30 minutes post 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "32319-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3039178, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --30 minutes post dose betaxolol", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "53483-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3008799, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --30 minutes post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14763-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757394, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --30 minutes post dose insulin IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54263-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040908, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --30 minutes post dose lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40276-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757405, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --30 minutes post dose ornithine alpha-ketoglutarate", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54274-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3041786, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --30 minutes post dose triple bolus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40320-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3016567, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --30 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25671-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3039739, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --30 minutes pre dose betaxolol", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "53484-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3044550, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --30 minutes pre XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40149-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3038838, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --31 hour post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40220-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3022161, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --3.3 hours post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "30252-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3000992, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --3.5 hours post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25669-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3044555, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --3.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40211-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3013026, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --3.6 hours post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "30253-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3041609, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --36 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40221-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3017048, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --3 hours post 100 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14764-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3017091, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --3 hours post 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "32320-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3038314, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --3 hours post dose betaxolol", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "53482-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3017589, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --3 hours post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14765-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3041489, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --3 hours post dose lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40280-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757404, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --3 hours post dose ornithine alpha-ketoglutarate", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54273-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3041136, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --3 hours post dose triple bolus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40324-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3042487, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --3 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40162-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757393, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --3 hours pre dose insulin IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54262-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3038420, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --3 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40199-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040892, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --3 minutes pre XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40197-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40762876, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --3 PM specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59815-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757528, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --3rd specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54397-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42868433, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --40 minutes post 50 g lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "69944-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3014194, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --40 minutes post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "30264-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42868431, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --40 minutes post dose lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "69942-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040104, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --40 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40157-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3022201, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --4.5 hours post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25672-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3043978, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --4.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40212-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 46235368, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --45 minutes post 50 g lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "75637-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40758481, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --45 minutes post 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55352-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3051231, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --45 minutes post dose betaxolol", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "53485-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3023228, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --45 minutes post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25673-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757395, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --45 minutes post dose insulin IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54264-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3047279, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --45 minutes post dose lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45299-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757406, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --45 minutes post dose ornithine alpha-ketoglutarate", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54275-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3044218, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --45 minutes post dose triple bolus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40321-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3023758, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --45 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25674-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3039997, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --4 AM specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "53474-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3017634, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --4 hours post 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "32321-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3017890, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --4 hours post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14766-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3042489, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --4 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40163-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757384, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --4 minutes post dose glucagon", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54253-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3039807, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --4 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40200-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3045318, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --4 PM specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45055-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757529, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --4th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54398-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3044562, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --50 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40158-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3003824, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --5.5 hours post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25676-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3041490, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --5.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40213-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3018175, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --5 hours post 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "32322-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3004724, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --5 hours post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14767-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040107, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40164-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3049428, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --5 minutes post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "47859-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040634, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --5 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40153-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757385, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --5 minutes pre dose glucagon", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54254-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040641, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --5 minutes pre XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40152-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757627, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --5th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54496-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3041895, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --6.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40166-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3002654, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --6 hours post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25677-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3041454, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --6 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40165-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757386, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --6 minutes post dose glucagon", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54255-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040468, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --6 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40201-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757628, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --6th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54497-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3041763, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --70 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40159-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3039297, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --7.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40168-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3038727, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --75 minutes post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40285-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040099, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --75 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40160-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40762875, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --7 AM specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59814-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3038557, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --7 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40167-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757629, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --7th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54498-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3038422, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --8.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40170-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3045067, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --8 AM specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45053-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3041615, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --8 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40169-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757387, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --8 minutes post dose glucagon", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54256-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3039224, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --8 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40202-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040896, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --8 minutes pre XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40196-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3043032, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --8 PM specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45056-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757630, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --8th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54499-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3041856, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --9.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40172-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3041903, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --9 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40171-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040710, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --9 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40203-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757530, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --9th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54399-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3007821, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --baseline", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14768-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757626, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --post dialysis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54495-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3041930, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --post meal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "53094-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3041971, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "53093-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42868682, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --pre 100 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "70208-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3006669, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --pre 12 hour fast", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14769-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3019765, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --pre 50 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25680-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3004067, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --pre 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14996-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3039439, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --pre dose betaxolol", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "53475-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757531, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --pre dose glucagon", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54400-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3048522, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --pre dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "47622-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757388, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --pre dose insulin IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54257-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40762250, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --pre dose lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59157-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757399, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --pre dose ornithine alpha-ketoglutarate", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54268-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3044522, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --pre dose triple bolus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40318-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3042469, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --pre-meal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40193-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3045105, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --pre or post dose arginine", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "34056-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3045131, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --pre or post dose cloNIDine", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "34057-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3045158, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --pre or post dose glucagon", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "34058-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3045700, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --pre or post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "34059-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3029462, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --pre or post dose insulin", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "34060-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3030745, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --pre or post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "51426-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3038434, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --pre XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40148-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 46236948, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum, Plasma or Blood", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "77135-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 46236367, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum, Plasma or Blood --2 hours post meal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "77677-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3006893, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "32318-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3051044, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Stool", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "47620-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3020618, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Synovial fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14750-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3005570, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Urine", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15076-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40762249, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Urine by Automated test strip", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59156-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3008770, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Urine by Test strip", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "22705-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44786994, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Urine collected for unspecified duration", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "74351-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3038515, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Venous blood", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "39480-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040563, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Vitreous fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "39478-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757618, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Water", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54487-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44806589, + "CONCEPT_NAME" : "Glucose output measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "792621000000101", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3018056, + "CONCEPT_NAME" : "Glucose.PO [Mass] of Dose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "4269-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2212361, + "CONCEPT_NAME" : "Glucose; post glucose dose (includes glucose)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "82950", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3007308, + "CONCEPT_NAME" : "Glucose [Presence] in 24 hour Urine", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "32174-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040980, + "CONCEPT_NAME" : "Glucose [Presence] in Stool", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "51595-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3020650, + "CONCEPT_NAME" : "Glucose [Presence] in Urine", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "2349-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3007777, + "CONCEPT_NAME" : "Glucose [Presence] in Urine --1st specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16904-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3006684, + "CONCEPT_NAME" : "Glucose [Presence] in Urine --2nd specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16905-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3028014, + "CONCEPT_NAME" : "Glucose [Presence] in Urine --3rd specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16906-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3023961, + "CONCEPT_NAME" : "Glucose [Presence] in Urine --4th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16907-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3024785, + "CONCEPT_NAME" : "Glucose [Presence] in Urine --5th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16908-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3025622, + "CONCEPT_NAME" : "Glucose [Presence] in Urine --6th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16909-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3007971, + "CONCEPT_NAME" : "Glucose [Presence] in Urine --7th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16910-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3006258, + "CONCEPT_NAME" : "Glucose [Presence] in Urine --8th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16911-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3021752, + "CONCEPT_NAME" : "Glucose [Presence] in Urine --9th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16912-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3009261, + "CONCEPT_NAME" : "Glucose [Presence] in Urine by Test strip", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25428-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3005875, + "CONCEPT_NAME" : "Glucose [Presence] in Urine by Test strip --1.5 hours post 50 g lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6761-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3005589, + "CONCEPT_NAME" : "Glucose [Presence] in Urine by Test strip --1.5 hours post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26553-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3020820, + "CONCEPT_NAME" : "Glucose [Presence] in Urine by Test strip --1 hour post 50 g lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6747-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3021033, + "CONCEPT_NAME" : "Glucose [Presence] in Urine by Test strip --1 hour post 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6748-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3019493, + "CONCEPT_NAME" : "Glucose [Presence] in Urine by Test strip --1 hour post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26546-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3007031, + "CONCEPT_NAME" : "Glucose [Presence] in Urine by Test strip --2.5 hours post 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10966-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3018958, + "CONCEPT_NAME" : "Glucose [Presence] in Urine by Test strip --2.5 hours post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26537-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3009251, + "CONCEPT_NAME" : "Glucose [Presence] in Urine by Test strip --2 hours post 50 g lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6750-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3011355, + "CONCEPT_NAME" : "Glucose [Presence] in Urine by Test strip --2 hours post 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6751-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3004629, + "CONCEPT_NAME" : "Glucose [Presence] in Urine by Test strip --2 hours post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26547-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3023638, + "CONCEPT_NAME" : "Glucose [Presence] in Urine by Test strip --30 minutes post 50 g lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6753-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3021635, + "CONCEPT_NAME" : "Glucose [Presence] in Urine by Test strip --30 minutes post 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6754-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3003453, + "CONCEPT_NAME" : "Glucose [Presence] in Urine by Test strip --30 minutes post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26548-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3005851, + "CONCEPT_NAME" : "Glucose [Presence] in Urine by Test strip --3.5 hours post 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10967-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3022233, + "CONCEPT_NAME" : "Glucose [Presence] in Urine by Test strip --3.5 hours post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26538-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3005370, + "CONCEPT_NAME" : "Glucose [Presence] in Urine by Test strip --3 hours post 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6755-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3003201, + "CONCEPT_NAME" : "Glucose [Presence] in Urine by Test strip --3 hours post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26549-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3025876, + "CONCEPT_NAME" : "Glucose [Presence] in Urine by Test strip --4.5 hours post 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10968-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3010617, + "CONCEPT_NAME" : "Glucose [Presence] in Urine by Test strip --4 hours post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26550-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3020455, + "CONCEPT_NAME" : "Glucose [Presence] in Urine by Test strip --5 hours post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26551-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3001283, + "CONCEPT_NAME" : "Glucose [Presence] in Urine by Test strip --6 hours post 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6759-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3020450, + "CONCEPT_NAME" : "Glucose [Presence] in Urine by Test strip --6 hours post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26552-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2212359, + "CONCEPT_NAME" : "Glucose; quantitative, blood (except reagent strip)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "82947", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2212364, + "CONCEPT_NAME" : "Glucose; tolbutamide tolerance test", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "82953", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3003169, + "CONCEPT_NAME" : "Glucose tolerance 2 hours gestational panel - Urine and Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "24353-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3030177, + "CONCEPT_NAME" : "Glucose tolerance [Interpretation] in Serum or Plasma Narrative", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "50667-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4012477, + "CONCEPT_NAME" : "Glucose tolerance test", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "113076002", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44783612, + "CONCEPT_NAME" : "Glucose tolerance test, antenatal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "699731004", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2212363, + "CONCEPT_NAME" : "Glucose; tolerance test, each additional beyond 3 specimens (List separately in addition to code for primary procedure)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "82952", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2212362, + "CONCEPT_NAME" : "Glucose; tolerance test (GTT), 3 specimens (includes glucose)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "82951", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4055679, + "CONCEPT_NAME" : "Glucose tolerance test indicates diabetes mellitus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "166928007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4055678, + "CONCEPT_NAME" : "Glucose tolerance test normal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "166926006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434164, + "CONCEPT_NAME" : "Glycosuria", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45154002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2212633, + "CONCEPT_NAME" : "Gonadotropin, chorionic (hCG); free beta chain", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84704", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2212632, + "CONCEPT_NAME" : "Gonadotropin, chorionic (hCG); qualitative", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84703", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2212631, + "CONCEPT_NAME" : "Gonadotropin, chorionic (hCG); quantitative", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84702", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 372842, + "CONCEPT_NAME" : "Gonococcal conjunctivitis neonatorum", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "28438004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4009879, + "CONCEPT_NAME" : "Good neonatal condition at birth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "102500002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014452, + "CONCEPT_NAME" : "GP unit birth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169814004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437937, + "CONCEPT_NAME" : "Grand multipara", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "18656007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434110, + "CONCEPT_NAME" : "Grand multiparity - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199714004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442441, + "CONCEPT_NAME" : "Grand multiparity with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199715003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4032764, + "CONCEPT_NAME" : "Groin traction at breech delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "236980007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4042068, + "CONCEPT_NAME" : "GTT = renal glycosuria", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "166929004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4084217, + "CONCEPT_NAME" : "Gynecological emergency hospital admission", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "183459001", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4149401, + "CONCEPT_NAME" : "Had umbilical cord around neck", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "268863005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42742312, + "CONCEPT_NAME" : "HBA1/HBA2 (alpha globin 1 and alpha globin 2) (eg, alpha thalassemia, Hb Bart hydrops fetalis syndrome, HbH disease), gene analysis; common deletions or variant (eg, Southeast Asian, Thai, Filipino, Mediterranean, alpha3.7, alpha4.2, alpha20.5, Constant S", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "81257", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 316478, + "CONCEPT_NAME" : "Heart disease in mother complicating pregnancy, childbirth AND/OR puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "78381004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440532, + "CONCEPT_NAME" : "Heavy-for-dates at birth regardless of gestation period", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7293009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 201129, + "CONCEPT_NAME" : "Hematemesis AND/OR melena due to swallowed maternal blood", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "23688003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4085415, + "CONCEPT_NAME" : "Hematoma of anus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "282074002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4155624, + "CONCEPT_NAME" : "Hematoma of female perineum", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "283969002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4152629, + "CONCEPT_NAME" : "Hematoma of male perineum", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "283974005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4161205, + "CONCEPT_NAME" : "Hematoma of obstetric wound", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "371614003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42709943, + "CONCEPT_NAME" : "Hematoma of perianal region", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "449815008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37312073, + "CONCEPT_NAME" : "Hematoma of surgical wound following cesarean section", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "788728009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437922, + "CONCEPT_NAME" : "Hematoma of vulva", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "69385001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4177184, + "CONCEPT_NAME" : "Hematoma of vulva of fetus or newborn as birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "50263004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3004410, + "CONCEPT_NAME" : "Hemoglobin A1c/Hemoglobin.total in Blood", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "4548-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2212391, + "CONCEPT_NAME" : "Hemoglobin; F (fetal), qualitative", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "83033", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2212713, + "CONCEPT_NAME" : "Hemoglobin or RBCs, fetal, for fetomaternal hemorrhage; differential lysis (Kleihauer-Betke)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "85460", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2212714, + "CONCEPT_NAME" : "Hemoglobin or RBCs, fetal, for fetomaternal hemorrhage; rosette", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "85461", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437090, + "CONCEPT_NAME" : "Hemolytic disease of fetus OR newborn due to ABO immunization", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "32858009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440218, + "CONCEPT_NAME" : "Hemolytic disease of fetus OR newborn due to isoimmunization", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "387705004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433603, + "CONCEPT_NAME" : "Hemolytic disease of fetus OR newborn due to RhD isoimmunization", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86986002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36713168, + "CONCEPT_NAME" : "Hemolytic disease of newborn co-occurrent and due to ABO immunization", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "350601000119109", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4009645, + "CONCEPT_NAME" : "Hemolytic disease of the newborn due to non-ABO, non-Rh isoimmunization", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "111469006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438478, + "CONCEPT_NAME" : "Hemorrhage in early pregnancy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "25825004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437935, + "CONCEPT_NAME" : "Hemorrhage in early pregnancy, antepartum", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "30850008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435323, + "CONCEPT_NAME" : "Hemorrhage in early pregnancy, delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "81448000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36716542, + "CONCEPT_NAME" : "Hemorrhage of adrenal gland due to birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "722578005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 436529, + "CONCEPT_NAME" : "Hemorrhage of newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "85539001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4329097, + "CONCEPT_NAME" : "Hemorrhage of skin in neonate", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "431268006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4083118, + "CONCEPT_NAME" : "Hemorrhagic disease of the newborn due to factor II deficiency", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "24149006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435358, + "CONCEPT_NAME" : "Hemorrhagic disease of the newborn due to vitamin K deficiency", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12546009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061471, + "CONCEPT_NAME" : "Hemorrhoids in pregnancy and puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200249004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4066134, + "CONCEPT_NAME" : "Hemorrhoids in pregnancy and the puerperium with antenatal complication", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "200253002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4066135, + "CONCEPT_NAME" : "Hemorrhoids in pregnancy and the puerperium with postnatal complication", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "200254008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4065761, + "CONCEPT_NAME" : "Hemorrhoids in puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200255009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37396771, + "CONCEPT_NAME" : "Hereditary persistence of alpha-fetoprotein", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "716697002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4311256, + "CONCEPT_NAME" : "Herpes gestationis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86081009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4033068, + "CONCEPT_NAME" : "Hexosaminidase A and total hexosaminidase measurement, amniotic fluid cells", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14577005", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4079859, + "CONCEPT_NAME" : "High birth weight", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276613009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44513743, + "CONCEPT_NAME" : "High forceps cephalic delivery NEC", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "R21.2", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "OPCS4", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4075188, + "CONCEPT_NAME" : "High forceps cephalic delivery with rotation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177162002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4231702, + "CONCEPT_NAME" : "High forceps delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "89849000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4035778, + "CONCEPT_NAME" : "High forceps delivery with episiotomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15413009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40480725, + "CONCEPT_NAME" : "High glucose level in blood", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "444780001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442088, + "CONCEPT_NAME" : "High head at term", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199373000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 77615, + "CONCEPT_NAME" : "High head at term - delivered", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "199375007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 72696, + "CONCEPT_NAME" : "High head at term with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199376008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4302252, + "CONCEPT_NAME" : "High risk pregnancy care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "386322007", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37392366, + "CONCEPT_NAME" : "High sensitivity urine pregnancy test", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1003171000000104", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Observable Entity" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4055287, + "CONCEPT_NAME" : "High sensitivity urine pregnancy test", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "167257008", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4075170, + "CONCEPT_NAME" : "High vacuum delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177173009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42739014, + "CONCEPT_NAME" : "History and examination of the normal newborn infant, including the preparation of medical records. (This code should only be used for newborns assessed and discharged from the hospital or birthing room on the same date.)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "99435", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42739011, + "CONCEPT_NAME" : "History and examination of the normal newborn infant, initiation of diagnostic and treatment programs and preparation of hospital records. (This code should also be used for birthing room deliveries.)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "99431", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441630, + "CONCEPT_NAME" : "History of recurrent miscarriage - delivered", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199087006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4062565, + "CONCEPT_NAME" : "History of recurrent miscarriage - not delivered", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199088001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014451, + "CONCEPT_NAME" : "Home birth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169813005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060104, + "CONCEPT_NAME" : "Home delivery booked", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169621002", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4151190, + "CONCEPT_NAME" : "Home delivery planned", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "310586008", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2514576, + "CONCEPT_NAME" : "Home visit for newborn care and assessment", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "99502", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2514575, + "CONCEPT_NAME" : "Home visit for postnatal assessment and follow-up care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "99501", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2514574, + "CONCEPT_NAME" : "Home visit for prenatal monitoring and assessment to include fetal heart rate, non-stress test, uterine monitoring, and gestational diabetes monitoring", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "99500", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44807240, + "CONCEPT_NAME" : "Human chorionic gonadotrophin multiple of median measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "815981000000104", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4285271, + "CONCEPT_NAME" : "Human chorionic gonadotropin measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "67900009", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44806337, + "CONCEPT_NAME" : "Human chorionic gonadotropin output measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "800821000000104", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439083, + "CONCEPT_NAME" : "Hydatidiform mole, benign", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "417044008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44500814, + "CONCEPT_NAME" : "Hydatidiform mole, NOS, of placenta", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "9100/0-C58.9", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "ICDO3", + "CONCEPT_CLASS_ID" : "ICDO Condition" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 73538, + "CONCEPT_NAME" : "Hydrocephalic disproportion - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199427001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 81923, + "CONCEPT_NAME" : "Hydrocephalic disproportion with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199428006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444245, + "CONCEPT_NAME" : "Hydrocephalic fetus causing disproportion", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "111439004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 77662, + "CONCEPT_NAME" : "Hydrops fetalis due to isoimmunization", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15539009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4030872, + "CONCEPT_NAME" : "Hyperemesis gravidarum", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14094001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4098582, + "CONCEPT_NAME" : "Hyperemesis gravidarum before end of 22 week gestation with carbohydrate depletion", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "27152008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4227141, + "CONCEPT_NAME" : "Hyperemesis gravidarum before end of 22 week gestation with dehydration", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87621000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4142340, + "CONCEPT_NAME" : "Hyperemesis gravidarum before end of 22 week gestation with electrolyte imbalance", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "33370009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 436485, + "CONCEPT_NAME" : "Hyperemesis gravidarum with metabolic disturbance", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199025001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 436173, + "CONCEPT_NAME" : "Hyperemesis gravidarum with metabolic disturbance - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199027009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440788, + "CONCEPT_NAME" : "Hyperemesis gravidarum with metabolic disturbance - not delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199028004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37311673, + "CONCEPT_NAME" : "Hyperglycemia due to diabetes mellitus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "822995009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37016348, + "CONCEPT_NAME" : "Hyperglycemia due to type 1 diabetes mellitus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "367991000119101", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37016349, + "CONCEPT_NAME" : "Hyperglycemia due to type 2 diabetes mellitus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "368051000119109", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40480031, + "CONCEPT_NAME" : "Hyperglycemic crisis due to diabetes mellitus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "441656006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4034959, + "CONCEPT_NAME" : "Hyperglycemic disorder", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237598005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4034966, + "CONCEPT_NAME" : "Hyperglycemic disorder in pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237625008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37312344, + "CONCEPT_NAME" : "Hyperinsulinemia due to benign insulinoma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "788492001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37312345, + "CONCEPT_NAME" : "Hyperinsulinemia due to malignant insulinoma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "788491008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4307509, + "CONCEPT_NAME" : "Hyperinsulinism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "83469008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37397460, + "CONCEPT_NAME" : "Hyperinsulinism and hyperammonemia syndrome", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "718106009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37397139, + "CONCEPT_NAME" : "Hyperinsulinism due to deficiency of glucokinase", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "717182006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36713524, + "CONCEPT_NAME" : "Hyperinsulinism due to focal adenomatous hyperplasia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "717888008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36715528, + "CONCEPT_NAME" : "Hyperinsulinism due to HNF1A deficiency", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "721234004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37397034, + "CONCEPT_NAME" : "Hyperinsulinism due to HNF4A deficiency", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "717048002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36715529, + "CONCEPT_NAME" : "Hyperinsulinism due to insulin receptor deficiency", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "721235003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36715530, + "CONCEPT_NAME" : "Hyperinsulinism due to short chain 3-hydroxyacyl-coenzyme A dehydrogenase deficiency", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "721236002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36716024, + "CONCEPT_NAME" : "Hyperinsulinism due to uncoupling protein 2 deficiency", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "721834007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42536603, + "CONCEPT_NAME" : "Hyperosmolar hyperglycemic coma due to diabetes mellitus without ketoacidosis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "735537007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4147719, + "CONCEPT_NAME" : "Hyperosmolar non-ketotic state due to diabetes mellitus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "310505005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4215719, + "CONCEPT_NAME" : "Hyperosmolar non-ketotic state due to type 2 diabetes mellitus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "395204000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 321080, + "CONCEPT_NAME" : "Hypertension complicating pregnancy, childbirth and the puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198941007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 192698, + "CONCEPT_NAME" : "Hypertonic uterine dysfunction", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "34981006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443244, + "CONCEPT_NAME" : "Hypertonic uterine inertia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "267265005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4064834, + "CONCEPT_NAME" : "Hypertonic uterine inertia - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199838008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4064835, + "CONCEPT_NAME" : "Hypertonic uterine inertia with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199839000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433873, + "CONCEPT_NAME" : "Hypocalcemia AND/OR hypomagnesemia of newborn", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "77604004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4267556, + "CONCEPT_NAME" : "Hypocalcemia of puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "400170001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42572837, + "CONCEPT_NAME" : "Hypoglycaemia of piglets", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "342901000009107", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED Veterinary", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44809809, + "CONCEPT_NAME" : "Hypoglycaemic warning absent", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "894741000000107", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44789319, + "CONCEPT_NAME" : "Hypoglycaemic warning good", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198131000000101", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44789318, + "CONCEPT_NAME" : "Hypoglycaemic warning impaired", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198121000000103", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42600315, + "CONCEPT_NAME" : "Hypoglycemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "44621000009101", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED Veterinary", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 24609, + "CONCEPT_NAME" : "Hypoglycemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "302866003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4029423, + "CONCEPT_NAME" : "Hypoglycemia due to diabetes mellitus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237633009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45769876, + "CONCEPT_NAME" : "Hypoglycemia due to type 1 diabetes mellitus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84371000119108", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45757363, + "CONCEPT_NAME" : "Hypoglycemia due to type 2 diabetes mellitus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "120731000119103", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4287549, + "CONCEPT_NAME" : "Hypoglycemia of childhood", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "68581004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3185010, + "CONCEPT_NAME" : "Hypoglycemia secondary to sulfonylurea", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "24370001000004105", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "Nebraska Lexicon", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45772060, + "CONCEPT_NAME" : "Hypoglycemia unawareness due to type 2 diabetes mellitus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "119831000119106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4226798, + "CONCEPT_NAME" : "Hypoglycemic coma due to diabetes mellitus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "421725003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4228112, + "CONCEPT_NAME" : "Hypoglycemic coma due to type 1 diabetes mellitus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "421437000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36714116, + "CONCEPT_NAME" : "Hypoglycemic coma due to type 2 diabetes mellitus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "719216001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 30361, + "CONCEPT_NAME" : "Hypoglycemic disorder", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237630007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4029422, + "CONCEPT_NAME" : "Hypoglycemic event due to diabetes", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237632004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4232212, + "CONCEPT_NAME" : "Hypoglycemic shock", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "360546002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45757362, + "CONCEPT_NAME" : "Hypoglycemic unawareness due to type 1 diabetes mellitus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "120711000119108", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36676692, + "CONCEPT_NAME" : "Hypoinsulinemic hypoglycemia and body hemihypertrophy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "773666007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 436534, + "CONCEPT_NAME" : "Hypothermia of newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13629008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45772056, + "CONCEPT_NAME" : "Hypothyroxinemia of prematurity", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "119181000119104", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4308657, + "CONCEPT_NAME" : "Hypotonic uterine inertia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "387692004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4318803, + "CONCEPT_NAME" : "Hypoxia, in liveborn infant", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "22137006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4153365, + "CONCEPT_NAME" : "Hypoxia with feeding in newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "371105007", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4082045, + "CONCEPT_NAME" : "Hysterectomy for removal of hydatidiform mole", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "24068006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110292, + "CONCEPT_NAME" : "Hysterotomy, abdominal (eg, for hydatidiform mole, abortion)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59100", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4082412, + "CONCEPT_NAME" : "Hysterotomy and termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "18302006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4132295, + "CONCEPT_NAME" : "Hysterotomy with removal of hydatidiform mole", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26578004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4234390, + "CONCEPT_NAME" : "Iatrogenic hyperinsulinism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90054000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37395921, + "CONCEPT_NAME" : "ICCA syndrome", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "715534008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4173187, + "CONCEPT_NAME" : "Idiopathic transient neonatal hyperinsulinemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276563006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444048, + "CONCEPT_NAME" : "Illegal termination of pregnancy complicated by damage to pelvic organs and/or tissues", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "38784004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 193821, + "CONCEPT_NAME" : "Illegal termination of pregnancy complicated by embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26743002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439400, + "CONCEPT_NAME" : "Illegal termination of pregnancy complicated by genital-pelvic infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "373902000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443705, + "CONCEPT_NAME" : "Illegal termination of pregnancy complicated by metabolic disorder", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "18684002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 195600, + "CONCEPT_NAME" : "Illegal termination of pregnancy complicated by renal failure", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "8996006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442596, + "CONCEPT_NAME" : "Illegal termination of pregnancy complicated by shock", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "61752008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439325, + "CONCEPT_NAME" : "Illegal termination of pregnancy, incomplete", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198743003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4143190, + "CONCEPT_NAME" : "Illegal termination of pregnancy with acute renal failure", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "33561005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4138267, + "CONCEPT_NAME" : "Illegal termination of pregnancy with afibrinogenemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "3230006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4185440, + "CONCEPT_NAME" : "Illegal termination of pregnancy with air embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "44101005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4303980, + "CONCEPT_NAME" : "Illegal termination of pregnancy with amniotic fluid embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "38905006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4066227, + "CONCEPT_NAME" : "Illegal termination of pregnancy with blood-clot embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "21604008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4182549, + "CONCEPT_NAME" : "Illegal termination of pregnancy with cardiac arrest AND/OR failure", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "54529009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4223627, + "CONCEPT_NAME" : "Illegal termination of pregnancy with cerebral anoxia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40405003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 436169, + "CONCEPT_NAME" : "Illegal termination of pregnancy with complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "74978008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4264914, + "CONCEPT_NAME" : "Illegal termination of pregnancy with defibrination syndrome", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "61810006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4101477, + "CONCEPT_NAME" : "Illegal termination of pregnancy with electrolyte imbalance", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25404008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4023781, + "CONCEPT_NAME" : "Illegal termination of pregnancy with endometritis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "195005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4107907, + "CONCEPT_NAME" : "Illegal termination of pregnancy with fat embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "29995000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4323434, + "CONCEPT_NAME" : "Illegal termination of pregnancy with intravascular hemolysis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "70823006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4180859, + "CONCEPT_NAME" : "Illegal termination of pregnancy with laceration of bladder", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "53247006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4066994, + "CONCEPT_NAME" : "Illegal termination of pregnancy with laceration of bowel", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "17335003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4105762, + "CONCEPT_NAME" : "Illegal termination of pregnancy with laceration of broad ligament", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "29583006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4077275, + "CONCEPT_NAME" : "Illegal termination of pregnancy with laceration of cervix", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "18872002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4025828, + "CONCEPT_NAME" : "Illegal termination of pregnancy with laceration of periurethral tissue", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "19564003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4229716, + "CONCEPT_NAME" : "Illegal termination of pregnancy with laceration of uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40500006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4249728, + "CONCEPT_NAME" : "Illegal termination of pregnancy with laceration of vagina", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "73280003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4266243, + "CONCEPT_NAME" : "Illegal termination of pregnancy with oliguria", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6134000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4305348, + "CONCEPT_NAME" : "Illegal termination of pregnancy with parametritis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "82204006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4234979, + "CONCEPT_NAME" : "Illegal termination of pregnancy with pelvic peritonitis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90450000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4197900, + "CONCEPT_NAME" : "Illegal termination of pregnancy with perforation of bladder", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80438008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4051784, + "CONCEPT_NAME" : "Illegal termination of pregnancy with perforation of bowel", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "23401002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4195243, + "CONCEPT_NAME" : "Illegal termination of pregnancy with perforation of broad ligament", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6802007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4224143, + "CONCEPT_NAME" : "Illegal termination of pregnancy with perforation of cervix", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84143004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4239192, + "CONCEPT_NAME" : "Illegal termination of pregnancy with perforation of periurethral tissue", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "68189005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4296872, + "CONCEPT_NAME" : "Illegal termination of pregnancy with perforation of uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "77099001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4103148, + "CONCEPT_NAME" : "Illegal termination of pregnancy with perforation of vagina", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25519006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4143018, + "CONCEPT_NAME" : "Illegal termination of pregnancy with postoperative shock", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "34701001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4206453, + "CONCEPT_NAME" : "Illegal termination of pregnancy with pulmonary embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55589000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4195297, + "CONCEPT_NAME" : "Illegal termination of pregnancy with renal tubular necrosis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "4451004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4318662, + "CONCEPT_NAME" : "Illegal termination of pregnancy with salpingitis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "22046002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4313005, + "CONCEPT_NAME" : "Illegal termination of pregnancy with salpingo-oophoritis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "8670007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4034753, + "CONCEPT_NAME" : "Illegal termination of pregnancy with sepsis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "11373009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4324965, + "CONCEPT_NAME" : "Illegal termination of pregnancy with septic embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "71362000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4219608, + "CONCEPT_NAME" : "Illegal termination of pregnancy with septic shock", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "82338001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4183557, + "CONCEPT_NAME" : "Illegal termination of pregnancy with uremia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54155004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4140509, + "CONCEPT_NAME" : "Illegal termination of pregnancy with urinary tract infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "33046001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4030415, + "CONCEPT_NAME" : "Illegitimate pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14080002", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36713470, + "CONCEPT_NAME" : "Immediate postpartum care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "717809003", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4071514, + "CONCEPT_NAME" : "Immediate repair of minor obstetric laceration", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177221004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4069972, + "CONCEPT_NAME" : "Immediate repair of obstetric laceration", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177217006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4071513, + "CONCEPT_NAME" : "Immediate repair of obstetric laceration of perineum and sphincter of anus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177219009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4071641, + "CONCEPT_NAME" : "Immediate repair of obstetric laceration of uterus or cervix uteri", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177218001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4070223, + "CONCEPT_NAME" : "Immediate repair of obstetric laceration of vagina and floor of pelvis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177220003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4247275, + "CONCEPT_NAME" : "Immunoreactive insulin measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "60284007", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4308509, + "CONCEPT_NAME" : "Impaired fasting glycemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "390951007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808373, + "CONCEPT_NAME" : "Impaired glucose regulation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "849171000000106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4311629, + "CONCEPT_NAME" : "Impaired glucose tolerance", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "9414007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4263688, + "CONCEPT_NAME" : "Impaired glucose tolerance associated with drugs", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "60634005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4047260, + "CONCEPT_NAME" : "Impaired glucose tolerance associated with genetic syndrome", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1310004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4251180, + "CONCEPT_NAME" : "Impaired glucose tolerance associated with hormonal etiology", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "73480000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4229140, + "CONCEPT_NAME" : "Impaired glucose tolerance associated with insulin receptor abnormality", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "88512005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4111906, + "CONCEPT_NAME" : "Impaired glucose tolerance associated with pancreatic disease", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1822007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4029951, + "CONCEPT_NAME" : "Impaired glucose tolerance in MODY", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14052004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4136531, + "CONCEPT_NAME" : "Impaired glucose tolerance in nonobese", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "32284009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4045297, + "CONCEPT_NAME" : "Impaired glucose tolerance in obese", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "22910008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4030067, + "CONCEPT_NAME" : "Impaired glucose tolerance in pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237628005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4042067, + "CONCEPT_NAME" : "Impaired glucose tolerance test", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "166927002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4027550, + "CONCEPT_NAME" : "Impaired glucose tolerance with hyperinsulism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "128264007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 133284, + "CONCEPT_NAME" : "Impetigo herpetiformis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65539006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110084, + "CONCEPT_NAME" : "Incision and drainage of vaginal hematoma; obstetrical/postpartum", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57022", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004771, + "CONCEPT_NAME" : "Incision of cervix to assist delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "73.93", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439323, + "CONCEPT_NAME" : "Incomplete illegal termination of pregnancy with damage to pelvic organs or tissues", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198746006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437929, + "CONCEPT_NAME" : "Incomplete illegal termination of pregnancy with delayed or excessive hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198745005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438487, + "CONCEPT_NAME" : "Incomplete illegal termination of pregnancy with embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198750004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439324, + "CONCEPT_NAME" : "Incomplete illegal termination of pregnancy with genital tract or pelvic infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198744009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439321, + "CONCEPT_NAME" : "Incomplete illegal termination of pregnancy with metabolic disorder", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198748007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439322, + "CONCEPT_NAME" : "Incomplete illegal termination of pregnancy with renal failure", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198747002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439320, + "CONCEPT_NAME" : "Incomplete illegal termination of pregnancy with shock", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198749004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45768717, + "CONCEPT_NAME" : "Incomplete induced termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "707207004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45771353, + "CONCEPT_NAME" : "Incomplete induced termination of pregnancy with complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16101000119107", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438211, + "CONCEPT_NAME" : "Incomplete inevitable miscarriage complicated by delayed or excessive hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "307752007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 436748, + "CONCEPT_NAME" : "Incomplete inevitable miscarriage complicated by embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "307746006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437618, + "CONCEPT_NAME" : "Incomplete inevitable miscarriage complicated by genital tract and pelvic infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "307749004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4146775, + "CONCEPT_NAME" : "Incomplete inevitable miscarriage without complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "307748007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439328, + "CONCEPT_NAME" : "Incomplete legal abortion with no mention of complication", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "198715007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37110280, + "CONCEPT_NAME" : "Incomplete legal abortion without complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "724484007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435868, + "CONCEPT_NAME" : "Incomplete legal termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "267193004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434705, + "CONCEPT_NAME" : "Incomplete legal termination of pregnancy with damage to pelvic organs or tissues", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198707009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440453, + "CONCEPT_NAME" : "Incomplete legal termination of pregnancy with delayed or excessive hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198706000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439329, + "CONCEPT_NAME" : "Incomplete legal termination of pregnancy with embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198711003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 193532, + "CONCEPT_NAME" : "Incomplete legal termination of pregnancy with genital tract or pelvic infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198705001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434095, + "CONCEPT_NAME" : "Incomplete legal termination of pregnancy with metabolic disorder", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198709007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439331, + "CONCEPT_NAME" : "Incomplete legal termination of pregnancy with renal failure", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198708004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439330, + "CONCEPT_NAME" : "Incomplete legal termination of pregnancy with shock", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198710002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434689, + "CONCEPT_NAME" : "Incomplete miscarriage", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "16863000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40318617, + "CONCEPT_NAME" : "Incomplete miscarriage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "156072005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434413, + "CONCEPT_NAME" : "Incomplete miscarriage with complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "413338003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437933, + "CONCEPT_NAME" : "Incomplete miscarriage with damage to pelvic organs or tissues", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198646004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440460, + "CONCEPT_NAME" : "Incomplete miscarriage with delayed or excessive hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198645000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437045, + "CONCEPT_NAME" : "Incomplete miscarriage with embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198650006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 195317, + "CONCEPT_NAME" : "Incomplete miscarriage with genital tract or pelvic infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198644001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432689, + "CONCEPT_NAME" : "Incomplete miscarriage with metabolic disorder", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198648003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439688, + "CONCEPT_NAME" : "Incomplete miscarriage with renal failure", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198647008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441631, + "CONCEPT_NAME" : "Incomplete miscarriage with shock", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198649006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42535215, + "CONCEPT_NAME" : "Incomplete spontaneous abortion due to hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16111000119105", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44805020, + "CONCEPT_NAME" : "Incomplete termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "749781000000109", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4171255, + "CONCEPT_NAME" : "Incoordinate swallowing in newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276714005", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4239206, + "CONCEPT_NAME" : "Increased glucose level", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "68256003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038817, + "CONCEPT_NAME" : "Increased human chorionic gonadotropin level", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "131102000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4289543, + "CONCEPT_NAME" : "Increased lactation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "37110009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3198709, + "CONCEPT_NAME" : "Increasing head circumference", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "5340001000004102", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "Nebraska Lexicon", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440161, + "CONCEPT_NAME" : "Indication for care AND/OR intervention in labor AND/OR delivery", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "67480003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2721146, + "CONCEPT_NAME" : "Induced abortion, 17 to 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "S2260", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2721148, + "CONCEPT_NAME" : "Induced abortion, 25 to 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "S2265", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2721149, + "CONCEPT_NAME" : "Induced abortion, 29 to 31 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "S2266", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2721150, + "CONCEPT_NAME" : "Induced abortion, 32 weeks or greater", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "S2267", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110331, + "CONCEPT_NAME" : "Induced abortion, by 1 or more intra-amniotic injections (amniocentesis-injections), including hospital admission and visits, delivery of fetus and secundines", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59850", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110332, + "CONCEPT_NAME" : "Induced abortion, by 1 or more intra-amniotic injections (amniocentesis-injections), including hospital admission and visits, delivery of fetus and secundines; with dilation and curettage and/or evacuation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59851", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110333, + "CONCEPT_NAME" : "Induced abortion, by 1 or more intra-amniotic injections (amniocentesis-injections), including hospital admission and visits, delivery of fetus and secundines; with hysterotomy (failed intra-amniotic injection)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59852", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110334, + "CONCEPT_NAME" : "Induced abortion, by 1 or more vaginal suppositories (eg, prostaglandin) with or without cervical dilation (eg, laminaria), including hospital admission and visits, delivery of fetus and secundines", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59855", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110335, + "CONCEPT_NAME" : "Induced abortion, by 1 or more vaginal suppositories (eg, prostaglandin) with or without cervical dilation (eg, laminaria), including hospital admission and visits, delivery of fetus and secundines; with dilation and curettage and/or evacuation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59856", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110336, + "CONCEPT_NAME" : "Induced abortion, by 1 or more vaginal suppositories (eg, prostaglandin) with or without cervical dilation (eg, laminaria), including hospital admission and visits, delivery of fetus and secundines; with hysterotomy (failed medical evacuation)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59857", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110329, + "CONCEPT_NAME" : "Induced abortion, by dilation and curettage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59840", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110330, + "CONCEPT_NAME" : "Induced abortion, by dilation and evacuation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59841", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37018340, + "CONCEPT_NAME" : "Induced termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "714812005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530913, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by acute necrosis of liver", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609454008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530914, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by acute renal failure", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609455009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530928, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by acute renal failure with oliguria", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609472002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530915, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by afibrinogenemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609456005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530916, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by air embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609457001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43531712, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by amniotic fluid embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609458006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530957, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by bladder damage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609503006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530917, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by blood-clot embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609459003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530958, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by bowel damage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609504000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530959, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by broad ligament damage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609505004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530960, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by cardiac arrest", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609506003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530918, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by cardiac arrest and/or failure", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "609460008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530961, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by cardiac failure", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609507007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530919, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by cerebral anoxia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609461007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530962, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by cervix damage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609508002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530908, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by damage to pelvic organs and/or tissues", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609447002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530920, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by defibrination syndrome", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609462000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43531713, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by electrolyte imbalance", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609463005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43531710, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609449004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530921, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by endometritis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609464004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530922, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by fat embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609465003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530910, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by genital-pelvic infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609450004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530964, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by infectious disease", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609510000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530923, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by intravascular hemolysis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609466002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530952, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by laceration of bladder", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609498008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530924, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by laceration of bowel", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609467006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530925, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by laceration of broad ligament", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609468001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43531714, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by laceration of cervix", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609469009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530953, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by laceration of periurethral tissue", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609499000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530926, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by laceration of uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609470005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530927, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by laceration of vagina", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609471009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530911, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by metabolic disorder", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609451000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530966, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by oliguria", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609512008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530929, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by parametritis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609473007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530948, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by pelvic disorder", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609494005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43531715, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by pelvic peritonitis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609474001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530954, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by perforation of bladder", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609500009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530930, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by perforation of bowel", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609475000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530955, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by perforation of broad ligament", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609501008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530931, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by perforation of cervix", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609476004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530956, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by perforation of periurethral tissue", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609502001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530932, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by perforation of uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609477008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530933, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by perforation of vagina", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609478003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530965, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by periurethral tissue damage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609511001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43531716, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by postoperative shock", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609479006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530934, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by pulmonary embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609480009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530912, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by renal failure", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609452007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530935, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by renal tubular necrosis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609482001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530936, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by salpingitis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609483006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530937, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by salpingo-oophoritis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609484000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530939, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by sepsis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609485004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530940, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by septic embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609486003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530941, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by septic shock", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609487007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43531711, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by shock", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609453002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530943, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by soap embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609489005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530947, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by tetanus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609493004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530944, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by uremia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609490001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530945, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by urinary tract infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609491002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530967, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by uterus damage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609513003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530968, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by vaginal damage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609514009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4200986, + "CONCEPT_NAME" : "Induced termination of pregnancy following intra-amniotic injection with hysterotomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "52660002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44784128, + "CONCEPT_NAME" : "Induced termination of pregnancy under unsafe conditions", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "700041001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4075159, + "CONCEPT_NAME" : "Induction and delivery procedures", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177128002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4032756, + "CONCEPT_NAME" : "Induction of labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "236958009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004745, + "CONCEPT_NAME" : "Induction of labor by artificial rupture of membranes", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "73.01", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37311825, + "CONCEPT_NAME" : "Inefficient uterine activity with oxytocin augmentation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "816969006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4244408, + "CONCEPT_NAME" : "Inevitable miscarriage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59363009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4146772, + "CONCEPT_NAME" : "Inevitable miscarriage complete", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "307733001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4062356, + "CONCEPT_NAME" : "Infant feeding education", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "171053005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014439, + "CONCEPT_NAME" : "Infant feeding method", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169740003", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Observable Entity" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4016479, + "CONCEPT_NAME" : "Infant feeding method at 1 year", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169997008", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Observable Entity" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4231742, + "CONCEPT_NAME" : "Infantile posthemorrhagic hydrocephalus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "359634001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4174423, + "CONCEPT_NAME" : "Infant in poor condition at birth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276707008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37018973, + "CONCEPT_NAME" : "Infant of diabetic mother", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "18311000119109", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4173344, + "CONCEPT_NAME" : "Infant slow to establish respiration", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276708003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4208967, + "CONCEPT_NAME" : "Infant weaning education", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313209004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4152958, + "CONCEPT_NAME" : "Infected insect bite of genitalia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "283352008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4153568, + "CONCEPT_NAME" : "Infected umbilical granuloma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "268837000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4309019, + "CONCEPT_NAME" : "Infection associated with artificial insemination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "213200001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 436180, + "CONCEPT_NAME" : "Infection of amniotic cavity", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10573002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3655611, + "CONCEPT_NAME" : "Infection of breast in neonate caused by Streptococcus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "866076001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444244, + "CONCEPT_NAME" : "Infection of nipple, associated with childbirth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "111459000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36713475, + "CONCEPT_NAME" : "Infection of nipple associated with childbirth with attachment difficulty", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "717816002", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45757187, + "CONCEPT_NAME" : "Infection of nipple associated with lactation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10806041000119104", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4062133, + "CONCEPT_NAME" : "Infection of obstetric surgical wound", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200125006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 74434, + "CONCEPT_NAME" : "Infection of the breast AND/OR nipple associated with childbirth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "19773009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4028781, + "CONCEPT_NAME" : "Infection - perineal wound", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237339000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439139, + "CONCEPT_NAME" : "Infections specific to perinatal period", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206331005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433823, + "CONCEPT_NAME" : "Infectious disease in mother complicating pregnancy, childbirth AND/OR puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40609001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4008083, + "CONCEPT_NAME" : "Infectious neonatal hepatitis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "111892001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433266, + "CONCEPT_NAME" : "Infective/parasitic disease in preg/childbirth/puerperium", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "199153003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42600083, + "CONCEPT_NAME" : "Inflammation of urachus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "41211000009105", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED Veterinary", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4085257, + "CONCEPT_NAME" : "Inhalation anesthesia, machine system, closed, circulation of primary agent", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "24277005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2514556, + "CONCEPT_NAME" : "Initial care, per day, for evaluation and management of normal newborn infant seen in other than hospital or birthing center", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "99461", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2514569, + "CONCEPT_NAME" : "Initial hospital care, per day, for the evaluation and management of the neonate, 28 days of age or younger, who requires intensive observation, frequent interventions, and other intensive care services", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "99477", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2514555, + "CONCEPT_NAME" : "Initial hospital or birthing center care, per day, for evaluation and management of normal newborn infant", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "99460", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2514558, + "CONCEPT_NAME" : "Initial hospital or birthing center care, per day, for evaluation and management of normal newborn infant admitted and discharged on the same date", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "99463", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42739633, + "CONCEPT_NAME" : "Initial inpatient neonatal critical care, per day, for the evaluation and management of a critically ill neonate, 28 days of age or less", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "99295", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2514563, + "CONCEPT_NAME" : "Initial inpatient neonatal critical care, per day, for the evaluation and management of a critically ill neonate, 28 days of age or younger", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "99468", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4161783, + "CONCEPT_NAME" : "Initiation of breastfeeding", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "431868002", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4121775, + "CONCEPT_NAME" : "Injection of amnion for termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "288045002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36716540, + "CONCEPT_NAME" : "Injury of brain stem due to birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "722576009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36716538, + "CONCEPT_NAME" : "Injury of central nervous system due to birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "722574007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36717351, + "CONCEPT_NAME" : "Injury of facial bone due to birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "722572006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36716541, + "CONCEPT_NAME" : "Injury of liver due to birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "722577000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36716740, + "CONCEPT_NAME" : "Injury to abdominal organ due to birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "722910004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 381952, + "CONCEPT_NAME" : "Injury to brachial plexus as birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "53785005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36716733, + "CONCEPT_NAME" : "Injury to external genitalia due to birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "722903005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 77621, + "CONCEPT_NAME" : "Inlet pelvic contraction - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199409004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 79896, + "CONCEPT_NAME" : "Inlet pelvic contraction with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199410009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2213360, + "CONCEPT_NAME" : "Insemination of oocytes", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "89268", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4112315, + "CONCEPT_NAME" : "Insertion of abortifacient suppository", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "285434006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4074301, + "CONCEPT_NAME" : "Insertion of prostaglandin abortifacient suppository", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "176854004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4128031, + "CONCEPT_NAME" : "Instrumental delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "236974004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4071638, + "CONCEPT_NAME" : "Instrumental removal of products of conception from delivered uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177200004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4018336, + "CONCEPT_NAME" : "Insulin challenge tests", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "104754003", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4229110, + "CONCEPT_NAME" : "Insulin C-peptide measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "88705004", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2212419, + "CONCEPT_NAME" : "Insulin; free", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "83527", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3049230, + "CONCEPT_NAME" : "Insulin.free and Insulin.total panel [Units/volume] - Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48615-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4020992, + "CONCEPT_NAME" : "Insulin, free measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "104753009", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3010771, + "CONCEPT_NAME" : "Insulin Free [Units/volume] in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6901-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2212155, + "CONCEPT_NAME" : "Insulin-induced C-peptide suppression panel This panel must include the following: Insulin (83525) C-peptide (84681 x 5) Glucose (82947 x 5)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80432", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3022466, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "3695-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3004648, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --10 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12754-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3004163, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --10 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "17017-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3004325, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --11 hour post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12755-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3011670, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --12 hours fasting", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1573-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3003227, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --12 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12756-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3011496, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --1.5 hours post 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13608-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3020877, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --1.5 hours post dose TOLBUTamide IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1559-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3002800, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --15 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12762-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3035571, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --15 minutes pre XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12758-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40759809, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --16 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "56690-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3001627, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --19 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12763-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40759811, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --1 day post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "56692-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3001583, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --1 hour post dose TOLBUTamide IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1560-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40759810, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --20 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "56691-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3007346, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --20 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "17018-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3000664, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --22 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12764-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3011411, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --2.5 hours post 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13609-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3037545, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --2.5 hours post dose TOLBUTamide IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1562-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3033461, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --2 hours post 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1564-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3038084, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --2 hours post dose TOLBUTamide IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1563-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3037230, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --2 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12759-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3021586, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --2nd specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12739-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3021537, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --30 minutes post dose TOLBUTamide IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1565-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3002053, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --30 minutes pre XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12757-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3019151, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --3.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12747-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3015988, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --3 hours post 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1567-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3012706, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --3 hours post dose TOLBUTamide IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1566-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3024084, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --3rd specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12740-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3037897, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --40 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12765-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3000331, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --4.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12748-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3033587, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --45 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12766-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3008406, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --4 hours post 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1568-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3005615, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --4 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12760-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3024615, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --4th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12741-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3034123, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --50 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12767-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3003339, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --5.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12749-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3017118, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --5 hours post 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1569-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3011462, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --5th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12742-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3011381, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --6th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12743-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3022404, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --70 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12768-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3023151, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --7.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12751-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3013134, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --7 hours post 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10833-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3009446, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --7 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12750-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3018974, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --7th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12744-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3019590, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --8 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12752-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3000005, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --8 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12761-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3022492, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --8th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12745-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3019824, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --9 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12753-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3023517, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --9th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12746-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3034439, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --baseline", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1570-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3029133, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --pre 100 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "42919-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3013373, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --pre 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1572-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3022423, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --pre dose TOLBUTamide IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1571-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3016203, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --pre XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12738-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060873, + "CONCEPT_NAME" : "Insulin measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16890009", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3030272, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Body fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "50867-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3016523, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14796-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40758613, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --10 minutes post dose glucose IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55484-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40758512, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --10 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55383-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40758610, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --10 minutes pre dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55481-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3020977, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --10th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25685-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3036942, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --11th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25686-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3037468, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --12th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25687-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3037714, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --13th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25688-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3021224, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --14th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25689-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40758618, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --1.5 hours post dose glucagon", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55489-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40758612, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --1.5 hours post dose glucose IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55483-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3038241, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --1.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40290-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40758628, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --15 minutes post dose glucose IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55499-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40758514, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --15 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55385-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3001558, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --15th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25690-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43534076, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --1 hour post 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72902-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40758617, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --1 hour post dose glucagon", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55488-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40758614, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --1 hour post dose glucose IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55485-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3038723, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --1 hour post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40289-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40758615, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --1 minute post dose glucose IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55486-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40758521, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --1 minute post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55392-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3019094, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --1st specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25691-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40758563, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --20 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55434-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40758616, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --2.5 hours post dose glucose IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55487-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3039233, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --2.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40292-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43534075, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --2 hours post 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72901-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40758620, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --2 hours post dose glucagon", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55491-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40758625, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --2 hours post dose glucose IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55496-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3038693, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --2 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40291-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40758515, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --2 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55386-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3037840, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --2nd specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25692-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40758629, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --30 minutes post dose glucagon", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55500-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40758621, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --30 minutes post dose glucose IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55492-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3041156, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --30 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40288-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43534074, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --3 hours post 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72900-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40758622, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --3 hours post dose glucose IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55493-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3042046, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --3 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40293-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40758626, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --3 minutes post dose glucose IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55497-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40758513, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --3 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55384-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3038142, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --3rd specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25693-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40758619, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --45 minutes post dose glucagon", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55490-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40758624, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --45 minutes post dose glucose IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55495-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40758516, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --45 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55387-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40758611, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --4 hours post dose glucose IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55482-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40758517, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --4 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55388-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40758520, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --4 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55391-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3033522, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --4th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25694-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40758518, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55389-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40758623, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --5 minutes post dose glucose IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55494-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40758511, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --5 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55382-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40758609, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --5 minutes pre dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55480-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3022114, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --5th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25695-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40758519, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --6 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55390-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3012701, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --7.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25696-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40758608, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --7 minutes post dose glucose IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55479-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40758627, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --7 minutes pre dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55498-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3015720, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --7th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25697-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3008465, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --8th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25698-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3017410, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --9th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25699-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3033929, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --baseline", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14293-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40762271, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --fasting", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59179-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 1001918, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --post meal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "93727-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040755, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --pre or post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40294-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3029373, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --pre or post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "51427-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3046092, + "CONCEPT_NAME" : "Insulin [Presence] in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "44396-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3019840, + "CONCEPT_NAME" : "Insulin [Presence] in Unknown substance", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "18234-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45769875, + "CONCEPT_NAME" : "Insulin reactive hypoglycemia due to type 2 diabetes mellitus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84361000119102", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 35622016, + "CONCEPT_NAME" : "Insulin resistance", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "763325000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4129524, + "CONCEPT_NAME" : "Insulin resistance - type A", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237651005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4129525, + "CONCEPT_NAME" : "Insulin resistance - type B", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237652003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2212418, + "CONCEPT_NAME" : "Insulin; total", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "83525", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4017196, + "CONCEPT_NAME" : "Insulin, total measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "104752004", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3010058, + "CONCEPT_NAME" : "Insulin [Units/volume] in Body fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "29238-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3016244, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "20448-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3049445, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --10 minutes post dose glucagon", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "47653-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3048476, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --10 minutes post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "47654-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3019544, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --10 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "32360-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3049768, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --10 minutes pre dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48116-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3043439, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --10th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "33809-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3045444, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --11th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "33810-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40771051, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --1.25 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "68464-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3011873, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --12 hours fasting", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "30363-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40759701, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --12 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "56581-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3046035, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --12th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "33811-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3017375, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --1.3 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "30256-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3046568, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --13th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "33812-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3046591, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --14th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "33813-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3008358, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --1.5 hours post 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "27834-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3052952, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --1.5 hours post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "47658-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36659792, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --1.5 hours post meal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "95111-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3027077, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --1.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "27330-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36660450, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --15 min post meal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "95079-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3049491, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --15 minutes post dose glucagon", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "47655-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3011621, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --15 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "30254-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3046621, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --15th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "33814-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3017922, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --1.6 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "30257-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40771052, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --1.75 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "68465-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3033462, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --1 hour post 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "27830-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3051708, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --1 hour post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "47657-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36660139, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --1 hour post meal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "95112-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3016036, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --1 hour post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "27379-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3052582, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --1 minute post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "47656-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3029720, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --1st specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "50501-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3046287, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --1st specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "33815-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3048483, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --20 minutes post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "47661-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3036251, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --20 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "27372-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3018509, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --2.3 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "30258-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3049493, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --2.5 hours post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "47660-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36660352, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --2.5 hours post meal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "95113-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3024067, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --2.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "27863-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3004884, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --2.6 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "30259-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40759907, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --28 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "56788-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40760065, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --2 days post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "56946-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3026145, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --2 hours post 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "27860-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3049164, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --2 hours post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "47659-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36660132, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --2 hours post meal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "95114-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3012064, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --2 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "27826-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3029908, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --2nd specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "50502-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3046308, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --2nd specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "33816-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36659993, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --30 min post meal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "95116-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3052011, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --30 minutes post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "47663-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3015089, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --30 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "27827-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40759908, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --32 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "56789-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3012529, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --3.3 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "30260-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36660726, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --3.5 hours post meal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "95115-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3017496, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --3.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "30261-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3018344, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --3.6 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "30262-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40759909, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --36 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "56790-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40760063, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --3 days post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "56944-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3051067, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --3 hours post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "47662-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36659716, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --3 hours post meal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "95117-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3009167, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --3 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "27828-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3053266, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --3 minutes post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "47664-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3030827, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --3rd specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "50503-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3045998, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --3rd specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "33817-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40760068, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --40 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "56949-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3036529, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --40 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "27444-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40760067, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --44 hour post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "56948-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43055438, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --4.5 hours post 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72604-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36660594, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --4.5 hours post meal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "95118-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3016818, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --45 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "30255-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36660526, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --4 hours post meal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "95119-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3027834, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --4 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "29378-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3029056, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --4th specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "50504-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3012719, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --4th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "27832-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40760126, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --52 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57007-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40760064, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --56 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "56945-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36660177, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --5 hours post meal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "95120-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3006570, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "27852-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3052901, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --5 minutes post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "47665-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40760468, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --5 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57353-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3049177, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --5 minutes pre dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "47666-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3030826, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --5th specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "50505-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3023123, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --5th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "27874-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40760066, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --60 hour post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "56947-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40760061, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --64 hour post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "56942-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40760062, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --68 hour post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "56943-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3012007, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --6 hours post 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "27872-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3028357, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --6 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "29379-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3051418, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --6 minutes post dose glucagon", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "47667-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40759613, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --6 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "56492-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3030984, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --6th specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "50506-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3019569, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --6th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "27875-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3015678, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --7 hours post 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "27833-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3029665, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --7th specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "50507-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3018957, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --7th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "27867-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40760060, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --8 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "56941-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3031012, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --8th specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "50508-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3028877, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --8th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "33818-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3028902, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --9th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "33819-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40759603, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --baseline", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "56482-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3009413, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --fasting", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "27873-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3048519, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --post meal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "47862-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3049462, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --pre dose glucagon", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "47669-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3050108, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --pre dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "47668-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3052941, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --pre-meal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "47670-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3029043, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --pre XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "49897-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 1002121, + "CONCEPT_NAME" : "Insulin [Units/volume] mean in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "93793-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4254200, + "CONCEPT_NAME" : "Intermittent fetal heart monitoring during labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "408805007", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004750, + "CONCEPT_NAME" : "Internal and combined version with extraction", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "73.22", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004749, + "CONCEPT_NAME" : "Internal and combined version without extraction", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "73.21", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4217602, + "CONCEPT_NAME" : "Internal fetal monitoring during labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "81855008", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4197403, + "CONCEPT_NAME" : "Intervillous thrombosis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80256005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37117767, + "CONCEPT_NAME" : "Intestinal obstruction in newborn due to guanylate cyclase 2C deficiency", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "733447005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4023420, + "CONCEPT_NAME" : "Intra-amniotic infection of fetus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "11618000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4072715, + "CONCEPT_NAME" : "Intracervical artificial insemination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "176844003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36716736, + "CONCEPT_NAME" : "Intracranial hemorrhage due to birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "722906002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36716735, + "CONCEPT_NAME" : "Intracranial laceration due to birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "722905003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4149029, + "CONCEPT_NAME" : "Intraligamentous pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "35656003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4303420, + "CONCEPT_NAME" : "Intrapartal care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "386337006", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4298274, + "CONCEPT_NAME" : "Intrapartal care: high-risk delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "386338001", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4149939, + "CONCEPT_NAME" : "Intrapartum cardiotochogram monitoring", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "309877008", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4242238, + "CONCEPT_NAME" : "Intrapartum hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "38010008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37110285, + "CONCEPT_NAME" : "Intrapartum hemorrhage co-occurrent and due to obstructed labor with uterine rupture", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "724490006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37205799, + "CONCEPT_NAME" : "Intrapartum hemorrhage due to leiomyoma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "785341006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4065747, + "CONCEPT_NAME" : "Intrapartum hemorrhage with coagulation defect", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200173001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45773593, + "CONCEPT_NAME" : "Intrapartum stillbirth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "921611000000101", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4030829, + "CONCEPT_NAME" : "Intraperitoneal insemination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "238312005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4066151, + "CONCEPT_NAME" : "Intraperitoneal pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "17285009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4138741, + "CONCEPT_NAME" : "Intrauterine artificial insemination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "265064001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 74162, + "CONCEPT_NAME" : "Intrauterine asphyxia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276641008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060687, + "CONCEPT_NAME" : "Intrauterine death - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199607009", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Event" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4063309, + "CONCEPT_NAME" : "Intrauterine death with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199608004", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Event" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4139858, + "CONCEPT_NAME" : "Intrauterine insemination using donor sperm", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "426250000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4139060, + "CONCEPT_NAME" : "Intrauterine insemination using partner sperm", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "426389008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4137390, + "CONCEPT_NAME" : "Intrauterine insemination with controlled ovarian hyperstimulation using donor sperm", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "425644009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4145843, + "CONCEPT_NAME" : "Intrauterine insemination with controlled ovarian hyperstimulation using partner sperm", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "426968007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 197031, + "CONCEPT_NAME" : "Intrauterine pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65727000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4020898, + "CONCEPT_NAME" : "Intravaginal artificial insemination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "225250007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2721255, + "CONCEPT_NAME" : "INTRAVAGINAL CULTURE (IVC)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "S4036", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4063939, + "CONCEPT_NAME" : "Intravascular hemolysis following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "20084001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4107728, + "CONCEPT_NAME" : "Intravenous induction of labor", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "180221005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4180743, + "CONCEPT_NAME" : "Intraventricular hemorrhage of fetus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428241007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4079972, + "CONCEPT_NAME" : "Intraventricular hemorrhage of prematurity", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276648002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434155, + "CONCEPT_NAME" : "Intraventricular (nontraumatic) hemorrhage, grade 3, of fetus and newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206397006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4215504, + "CONCEPT_NAME" : "Invasive hydatidiform mole", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "416669000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44500947, + "CONCEPT_NAME" : "Invasive hydatidiform mole of placenta", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "9100/1-C58.9", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "ICDO3", + "CONCEPT_CLASS_ID" : "ICDO Condition" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 195329, + "CONCEPT_NAME" : "Inversion of uterus during delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "23885003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4199599, + "CONCEPT_NAME" : "In vitro fertilization", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "52637005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2788842, + "CONCEPT_NAME" : "In Vitro Fertilization", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "8E0ZXY1", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD10PCS", + "CONCEPT_CLASS_ID" : "ICD10PCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2721237, + "CONCEPT_NAME" : "In vitro fertilization; including but not limited to identification and incubation of mature oocytes, fertilization with sperm, incubation of embryo(s), and subsequent visualization for determination of development", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "S4011", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3049700, + "CONCEPT_NAME" : "In vitro fertilization pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "47224-1", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Clinical Observation" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2721245, + "CONCEPT_NAME" : "In vitro fertilization procedure cancelled after aspiration, case rate", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "S4021", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2721244, + "CONCEPT_NAME" : "In vitro fertilization procedure cancelled before aspiration, case rate", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "S4020", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4138627, + "CONCEPT_NAME" : "In vitro fertilization using donor eggs", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "425866000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 46273065, + "CONCEPT_NAME" : "In vitro fertilization with surrogacy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "711544002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4058246, + "CONCEPT_NAME" : "Iron deficiency anemia of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199248002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4079751, + "CONCEPT_NAME" : "Iron supplement in pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "182947002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4184274, + "CONCEPT_NAME" : "Irregular uterine contractions", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54212005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3655631, + "CONCEPT_NAME" : "Ischemic alopecia due to birth injury", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "866100005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442772, + "CONCEPT_NAME" : "Isoimmunization from non-ABO, non-Rh blood-group incompatibility affecting pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "66958002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061672, + "CONCEPT_NAME" : "IUD failure - pregnant", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169488004", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4145664, + "CONCEPT_NAME" : "IVF - In vitro fertilization using donor sperm", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "427664000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4138633, + "CONCEPT_NAME" : "IVF - In vitro fertilization with intracytoplasmic sperm injection (ICSI)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "425901007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4141534, + "CONCEPT_NAME" : "IVF - In vitro fertilization with intracytoplasmic sperm injection (ICSI) and donor egg", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "426914002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4142402, + "CONCEPT_NAME" : "IVF - In vitro fertilization with pre-implantation genetic diagnosis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "426417003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4198705, + "CONCEPT_NAME" : "Jittery newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "51402000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3030662, + "CONCEPT_NAME" : "Karyotype [Identifier] in Amniotic fluid Nominal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "33773-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3044819, + "CONCEPT_NAME" : "Karyotype [Identifier] in Chorionic villus sample Nominal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "33774-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4122929, + "CONCEPT_NAME" : "Kell isoimmunization of the newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "234380002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437681, + "CONCEPT_NAME" : "Kernicterus due to isoimmunization", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "359007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442216, + "CONCEPT_NAME" : "Kernicterus not due to isoimmunization", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "206478005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439770, + "CONCEPT_NAME" : "Ketoacidosis due to type 1 diabetes mellitus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "420270002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443734, + "CONCEPT_NAME" : "Ketoacidosis due to type 2 diabetes mellitus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "421750000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4095288, + "CONCEPT_NAME" : "Ketoacidotic coma due to diabetes mellitus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26298008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4224254, + "CONCEPT_NAME" : "Ketoacidotic coma due to type 1 diabetes mellitus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "421075007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4228443, + "CONCEPT_NAME" : "Ketoacidotic coma due to type 2 diabetes mellitus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "421847006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3035350, + "CONCEPT_NAME" : "Ketones [Presence] in Urine by Test strip", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "2514-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4049629, + "CONCEPT_NAME" : "Ketotic hypoglycemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "20825002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4139552, + "CONCEPT_NAME" : "Kidd isoimmunization of the newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "307338008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4305334, + "CONCEPT_NAME" : "Klumpke-Dejerine paralysis as birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "81774005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4129837, + "CONCEPT_NAME" : "Knot in umbilical cord", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237309005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530880, + "CONCEPT_NAME" : "Known or suspected fetal abnormality", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "609414006", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 77335, + "CONCEPT_NAME" : "Known OR suspected fetal abnormality affecting management of mother", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "66064007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42742323, + "CONCEPT_NAME" : "KRAS (Kirsten rat sarcoma viral oncogene homolog) (eg, carcinoma) gene analysis; variants in exon 2 (eg, codons 12 and 13)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "81275", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4091790, + "CONCEPT_NAME" : "Labial tear", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "249221003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3195953, + "CONCEPT_NAME" : "labile blood sugars", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14340001000004105", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "Nebraska Lexicon", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37311826, + "CONCEPT_NAME" : "Labor and birth support", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "816968003", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40760193, + "CONCEPT_NAME" : "Labor and delivery process Narrative", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57074-7", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Clinical Observation" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4041698, + "CONCEPT_NAME" : "Laboratory blood glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "166896004", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4250609, + "CONCEPT_NAME" : "Labor care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "409005001", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014719, + "CONCEPT_NAME" : "Labor details", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169960003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4106999, + "CONCEPT_NAME" : "Laceration of anus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "282077009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 199089, + "CONCEPT_NAME" : "Laceration of cervix - obstetric", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199972004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 194709, + "CONCEPT_NAME" : "Laceration of female perineum", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "283970001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4154571, + "CONCEPT_NAME" : "Laceration of male perineum", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "283975006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4152967, + "CONCEPT_NAME" : "Laceration of perineum", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "283380005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4112304, + "CONCEPT_NAME" : "Laceration of skin of penis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "285398006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4034018, + "CONCEPT_NAME" : "Lactational amenorrhea", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237122005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4218738, + "CONCEPT_NAME" : "Lactation tetany", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "81677009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 436167, + "CONCEPT_NAME" : "Lactocele", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "42385006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40347147, + "CONCEPT_NAME" : "Laparoscopic", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "260508005", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Qualifier Value" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40378260, + "CONCEPT_NAME" : "Laparoscopic approach", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "180627003", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Qualifier Value" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42872572, + "CONCEPT_NAME" : "Laparoscopic excision of ectopic ovarian pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "450563004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42872571, + "CONCEPT_NAME" : "Laparoscopic excision of ruptured ectopic tubal pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "450562009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4319321, + "CONCEPT_NAME" : "Laparoscopic lysis of adhesions", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "9540004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40490893, + "CONCEPT_NAME" : "Laparoscopic lysis of adhesions of ovary and fallopian tube", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "447077004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4144415, + "CONCEPT_NAME" : "Laparoscopic oocyte recovery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "265082003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40259107, + "CONCEPT_NAME" : "Laparoscopic oocyte recovery (& NEC)", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "177040000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4190526, + "CONCEPT_NAME" : "Laparoscopic total abdominal hysterectomy and bilateral salpingo-oophorectomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "414575003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110299, + "CONCEPT_NAME" : "Laparoscopic treatment of ectopic pregnancy; without salpingectomy and/or oophorectomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59150", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110300, + "CONCEPT_NAME" : "Laparoscopic treatment of ectopic pregnancy; with salpingectomy and/or oophorectomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59151", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4251314, + "CONCEPT_NAME" : "Laparoscopy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "73632009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40480864, + "CONCEPT_NAME" : "Laparoscopy assisted vaginal hysterectomy with bilateral salpingo-oophorectomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "441820006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4032749, + "CONCEPT_NAME" : "Laparoscopy of fallopian tube", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "236938008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110240, + "CONCEPT_NAME" : "Laparoscopy, surgical; with removal of adnexal structures (partial or total oophorectomy and/or salpingectomy)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "58661", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2722205, + "CONCEPT_NAME" : "Laparoscopy, surgical; with removal of adnexal structures (partial or total oophorectomy and/or salpingectomy). (Deprecated)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "56307", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110245, + "CONCEPT_NAME" : "Laparoscopy, surgical; with salpingostomy (salpingoneostomy)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "58673", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2722217, + "CONCEPT_NAME" : "Laparoscopy, surgical; with salpingostomy (salpingoneostomy). (Deprecated)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "56343", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4030430, + "CONCEPT_NAME" : "Large baby of diabetic mother", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "129599004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 80782, + "CONCEPT_NAME" : "Large fetus causing disproportion - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199422007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 78818, + "CONCEPT_NAME" : "Large fetus causing disproportion with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199423002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36712932, + "CONCEPT_NAME" : "Large for gestational age newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15635491000119102", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4344633, + "CONCEPT_NAME" : "Laryngeal injury due to birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "240316007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2106488, + "CONCEPT_NAME" : "Laryngoscopy direct, with or without tracheoscopy; diagnostic, newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "31520", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4058439, + "CONCEPT_NAME" : "Last menstrual period -1st day", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "161713000", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Observable Entity" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4340777, + "CONCEPT_NAME" : "Late dumping syndrome", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "235667000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4163996, + "CONCEPT_NAME" : "Late fetal death affecting management of mother", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "399363000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434474, + "CONCEPT_NAME" : "Late metabolic acidosis of newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "9635004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061791, + "CONCEPT_NAME" : "Late onset antenatal care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169594005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36713562, + "CONCEPT_NAME" : "Late onset diffuse bleeding diathesis secondary to vitamin K deficient hemorrhagic disease of fetus and newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "717937006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 35622881, + "CONCEPT_NAME" : "Late-onset neonatal sepsis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "765107002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4206624, + "CONCEPT_NAME" : "Late postpartum state", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "56026007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441082, + "CONCEPT_NAME" : "Late pregnancy vomiting - delivered", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "199032005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443325, + "CONCEPT_NAME" : "Late pregnancy vomiting - not delivered", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "199033000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439880, + "CONCEPT_NAME" : "Late vomiting of pregnancy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "38331001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3035904, + "CONCEPT_NAME" : "Lecithin/Sphingomyelin [Ratio] in Amniotic fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14976-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4074877, + "CONCEPT_NAME" : "Left salpingectomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "176917009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4074876, + "CONCEPT_NAME" : "Left salpingo-oophorectomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "176915001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4113976, + "CONCEPT_NAME" : "Legally induced abortion NOS", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "198729008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444077, + "CONCEPT_NAME" : "Legal termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "39406005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 192379, + "CONCEPT_NAME" : "Legal termination of pregnancy complicated by damage to pelvic organ and/or tissues", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "111431001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 197617, + "CONCEPT_NAME" : "Legal termination of pregnancy complicated by delayed and/or excessive hemorrhage", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "58071009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442346, + "CONCEPT_NAME" : "Legal termination of pregnancy complicated by embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57734001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439883, + "CONCEPT_NAME" : "Legal termination of pregnancy complicated by genital-pelvic infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "373901007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 436474, + "CONCEPT_NAME" : "Legal termination of pregnancy complicated by metabolic disorder", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "3634007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 195595, + "CONCEPT_NAME" : "Legal termination of pregnancy complicated by renal failure", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "4576001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 197333, + "CONCEPT_NAME" : "Legal termination of pregnancy complicated by shock", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "27169005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181114, + "CONCEPT_NAME" : "Legal termination of pregnancy with acute renal failure", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "52342006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4147533, + "CONCEPT_NAME" : "Legal termination of pregnancy with afibrinogenemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "30479005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4009642, + "CONCEPT_NAME" : "Legal termination of pregnancy with air embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "111432008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4098441, + "CONCEPT_NAME" : "Legal termination of pregnancy with amniotic fluid embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "27015006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4292089, + "CONCEPT_NAME" : "Legal termination of pregnancy with blood-clot embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "37787009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4025639, + "CONCEPT_NAME" : "Legal termination of pregnancy with cardiac arrest and/or failure", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "12095001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4077454, + "CONCEPT_NAME" : "Legal termination of pregnancy with cerebral anoxia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "18894005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441349, + "CONCEPT_NAME" : "Legal termination of pregnancy with complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48433002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4280224, + "CONCEPT_NAME" : "Legal termination of pregnancy with defibrination syndrome", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6647006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4214233, + "CONCEPT_NAME" : "Legal termination of pregnancy with electrolyte imbalance", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "39239006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4294829, + "CONCEPT_NAME" : "Legal termination of pregnancy with endometritis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "75947000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4328084, + "CONCEPT_NAME" : "Legal termination of pregnancy with fat embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "75825001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4046510, + "CONCEPT_NAME" : "Legal termination of pregnancy with intravascular hemolysis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12296009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4243658, + "CONCEPT_NAME" : "Legal termination of pregnancy with laceration of bladder", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59859005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4183680, + "CONCEPT_NAME" : "Legal termination of pregnancy with laceration of bowel", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "5577003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4216436, + "CONCEPT_NAME" : "Legal termination of pregnancy with laceration of broad ligament", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "41806003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4324695, + "CONCEPT_NAME" : "Legal termination of pregnancy with laceration of cervix", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7166002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4324672, + "CONCEPT_NAME" : "Legal termination of pregnancy with laceration of periurethral tissue", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "71216006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4045581, + "CONCEPT_NAME" : "Legal termination of pregnancy with laceration of uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13100007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4204231, + "CONCEPT_NAME" : "Legal termination of pregnancy with laceration of vagina", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54044001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4269450, + "CONCEPT_NAME" : "Legal termination of pregnancy with oliguria", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36473002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 436747, + "CONCEPT_NAME" : "Legal termination of pregnancy without complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "34500003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4049453, + "CONCEPT_NAME" : "Legal termination of pregnancy with parametritis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15511008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4094081, + "CONCEPT_NAME" : "Legal termination of pregnancy with pelvic peritonitis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26010008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4271203, + "CONCEPT_NAME" : "Legal termination of pregnancy with perforation of bladder", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "62888008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4184150, + "CONCEPT_NAME" : "Legal termination of pregnancy with perforation of bowel", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55933000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4198404, + "CONCEPT_NAME" : "Legal termination of pregnancy with perforation of broad ligament", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "51953009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4312358, + "CONCEPT_NAME" : "Legal termination of pregnancy with perforation of cervix", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "85652000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4296459, + "CONCEPT_NAME" : "Legal termination of pregnancy with perforation of periurethral tissue", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "76472002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4068253, + "CONCEPT_NAME" : "Legal termination of pregnancy with perforation of uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "20216003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4327321, + "CONCEPT_NAME" : "Legal termination of pregnancy with perforation of vagina", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "75013000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4058932, + "CONCEPT_NAME" : "Legal termination of pregnancy with postoperative shock", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "21280005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4178578, + "CONCEPT_NAME" : "Legal termination of pregnancy with pulmonary embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "51096002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4070939, + "CONCEPT_NAME" : "Legal termination of pregnancy with renal tubular necrosis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "20483002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4204206, + "CONCEPT_NAME" : "Legal termination of pregnancy with salpingitis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "53098006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4197681, + "CONCEPT_NAME" : "Legal termination of pregnancy with salpingo-oophoritis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "51707007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4188764, + "CONCEPT_NAME" : "Legal termination of pregnancy with sepsis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "39246002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4106892, + "CONCEPT_NAME" : "Legal termination of pregnancy with septic embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "29950007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4105063, + "CONCEPT_NAME" : "Legal termination of pregnancy with septic shock", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25691001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4225572, + "CONCEPT_NAME" : "Legal termination of pregnancy with uremia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "8468007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4245041, + "CONCEPT_NAME" : "Legal termination of pregnancy with urinary tract infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "5945005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4006979, + "CONCEPT_NAME" : "Leprechaunism syndrome", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "111307005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4128988, + "CONCEPT_NAME" : "Lesion of umbilical stump", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "289330005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4268175, + "CONCEPT_NAME" : "Leucine-induced hypoglycemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "62151007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110236, + "CONCEPT_NAME" : "Ligation or transection of fallopian tube(s), abdominal or vaginal approach, postpartum, unilateral or bilateral, during same hospitalization (separate procedure)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "58605", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 74469, + "CONCEPT_NAME" : "Light-for-dates without fetal malnutrition", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "189445003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 72726, + "CONCEPT_NAME" : "Light-for-dates with signs of fetal malnutrition", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64177003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36716536, + "CONCEPT_NAME" : "Linear fracture of skull due to birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "722571004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4238207, + "CONCEPT_NAME" : "Listeria miscarriage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57420002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4092289, + "CONCEPT_NAME" : "Livebirth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "281050002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4307044, + "CONCEPT_NAME" : "Live birth surviving more than one year", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "390959009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40482735, + "CONCEPT_NAME" : "Liveborn born in hospital", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "442311008", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40483126, + "CONCEPT_NAME" : "Liveborn born in hospital by cesarean section", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "442365008", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 194699, + "CONCEPT_NAME" : "Liver disorder in pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15230009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 196170, + "CONCEPT_NAME" : "Liver disorder in pregnancy - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199117000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443292, + "CONCEPT_NAME" : "Liver disorder in pregnancy - not delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199118005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4047865, + "CONCEPT_NAME" : "Liver rupture due to birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206245001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4047863, + "CONCEPT_NAME" : "Liver subcapsular hematoma due to birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206242003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4127042, + "CONCEPT_NAME" : "Lochia abnormal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "289586006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4129167, + "CONCEPT_NAME" : "Lochia absent", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "289578006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42709955, + "CONCEPT_NAME" : "Lochia alba", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "449827006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4127039, + "CONCEPT_NAME" : "Lochia ceased", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "289579003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4096534, + "CONCEPT_NAME" : "Lochia finding", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "249211006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4127040, + "CONCEPT_NAME" : "Lochia heavy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "289580000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4127041, + "CONCEPT_NAME" : "Lochia minimal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "289582008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4124480, + "CONCEPT_NAME" : "Lochia normal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "289585005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4129166, + "CONCEPT_NAME" : "Lochia present", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "289576005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4127038, + "CONCEPT_NAME" : "Lochia reducing", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "289577001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4175536, + "CONCEPT_NAME" : "Lochia rubra", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "278072004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4129168, + "CONCEPT_NAME" : "Lochia scanty", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "289581001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42709956, + "CONCEPT_NAME" : "Lochia serosa", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "449828001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4126720, + "CONCEPT_NAME" : "Lochia thick", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "289584009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4126719, + "CONCEPT_NAME" : "Lochia watery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "289583003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4171116, + "CONCEPT_NAME" : "Long fetal gestation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276616001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4091785, + "CONCEPT_NAME" : "Loss of fundal mass after delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "249203001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4016047, + "CONCEPT_NAME" : "Loss of hypoglycemic warning due to diabetes mellitus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "170766006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4171115, + "CONCEPT_NAME" : "Low birth weight infant", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276610007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004786, + "CONCEPT_NAME" : "Low cervical cesarean section", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "74.1", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "3-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4161944, + "CONCEPT_NAME" : "Low cervical cesarean section", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "398307005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37312440, + "CONCEPT_NAME" : "Lower uterine segment cesarean section", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "788180009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44513746, + "CONCEPT_NAME" : "Low forceps cephalic delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "R21.5", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "OPCS4", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4088084, + "CONCEPT_NAME" : "Low forceps delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "18625004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4075735, + "CONCEPT_NAME" : "Low forceps delivery with episiotomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "17860005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004703, + "CONCEPT_NAME" : "Low forceps operation", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72.0", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "3-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004704, + "CONCEPT_NAME" : "Low forceps operation with episiotomy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72.1", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "3-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4075191, + "CONCEPT_NAME" : "Low vacuum delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177174003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4165508, + "CONCEPT_NAME" : "Lucey-Driscoll syndrome", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "47444008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4153112, + "CONCEPT_NAME" : "Lunch time blood glucose measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "271063001", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4239200, + "CONCEPT_NAME" : "Lymphangitis of breast associated with childbirth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "68214002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4214980, + "CONCEPT_NAME" : "Lysis of adhesions", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "39270003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4130310, + "CONCEPT_NAME" : "Macdonald's cervical cerclage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "236946009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4028787, + "CONCEPT_NAME" : "Macerated stillbirth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237366000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4093584, + "CONCEPT_NAME" : "Major depressive disorder, single episode with postpartum onset", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25922000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37394500, + "CONCEPT_NAME" : "Major postpartum haemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1033591000000101", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440473, + "CONCEPT_NAME" : "Major puerperal infection", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "40125005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36403113, + "CONCEPT_NAME" : "Malignant placental site trophoblastic tumor of placenta", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "9104/3-C58.9", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "ICDO3", + "CONCEPT_CLASS_ID" : "ICDO Condition" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4096041, + "CONCEPT_NAME" : "Malnutrition-related diabetes mellitus with ketoacidosis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "190406000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 77338, + "CONCEPT_NAME" : "Malposition and malpresentation of fetus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "270498000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4071505, + "CONCEPT_NAME" : "Manipulative cephalic vaginal delivery with abnormal presentation of head at delivery without instrument", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177180006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004845, + "CONCEPT_NAME" : "Manual exploration of uterine cavity, postpartum", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "75.7", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "3-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4170533, + "CONCEPT_NAME" : "Manual postpartum exploration of uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "49149002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4069969, + "CONCEPT_NAME" : "Manual removal of placenta from delivered uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177204008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4069968, + "CONCEPT_NAME" : "Manual removal of products of conception from delivered uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177203002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4151385, + "CONCEPT_NAME" : "Manual removal of retained placenta", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "28233006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004826, + "CONCEPT_NAME" : "Manual removal of retained placenta", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "75.4", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "3-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004764, + "CONCEPT_NAME" : "Manual rotation of fetal head", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "73.51", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4338977, + "CONCEPT_NAME" : "Marginal placenta previa with intrapartum hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87814002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37205103, + "CONCEPT_NAME" : "Massive epicranial subaponeurotic hematoma due to birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "784407005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4070523, + "CONCEPT_NAME" : "Massive subgaleal hemorrhage due to birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206202008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4048281, + "CONCEPT_NAME" : "Massive umbilical hemorrhage of newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206403000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44784126, + "CONCEPT_NAME" : "Mastitis associated with lactation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "700038005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4016059, + "CONCEPT_NAME" : "Maternal alcohol abuse", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "169942003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443295, + "CONCEPT_NAME" : "Maternal care for diminished fetal movements", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "200473005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4066354, + "CONCEPT_NAME" : "Maternal care for poor fetal growth", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "200474004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4091196, + "CONCEPT_NAME" : "Maternal condition during puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "249197004", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Observable Entity" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432977, + "CONCEPT_NAME" : "Maternal distress with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200101003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4062131, + "CONCEPT_NAME" : "Maternal distress with postnatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200102005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4197085, + "CONCEPT_NAME" : "Maternal dystocia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "79748007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441081, + "CONCEPT_NAME" : "Maternal gonorrhea during pregnancy - baby not yet delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199165004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443054, + "CONCEPT_NAME" : "Maternal gonorrhea during pregnancy, childbirth and the puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199161008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 314432, + "CONCEPT_NAME" : "Maternal hypotension syndrome", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "88887003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 313829, + "CONCEPT_NAME" : "Maternal hypotension syndrome - delivered with postnatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200112003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 315327, + "CONCEPT_NAME" : "Maternal hypotension syndrome with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200113008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4066002, + "CONCEPT_NAME" : "Maternal hypotension syndrome with postnatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200114002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443016, + "CONCEPT_NAME" : "Maternal malaria during pregnancy, childbirth and the puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199183007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443015, + "CONCEPT_NAME" : "Maternal malaria in the puerperium - baby delivered during current episode of care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199186004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443014, + "CONCEPT_NAME" : "Maternal malaria in the puerperium - baby delivered during previous episode of care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199188003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42872398, + "CONCEPT_NAME" : "Maternal obesity complicating pregnancy, childbirth and the puerperium, antepartum", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "171000119107", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439893, + "CONCEPT_NAME" : "Maternal obesity syndrome", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "44772007", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4297233, + "CONCEPT_NAME" : "Maternal postnatal 6 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "384636006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40485049, + "CONCEPT_NAME" : "Maternal postnatal examination done", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "444136005", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40483251, + "CONCEPT_NAME" : "Maternal postnatal examination not attended", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "443788002", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40485007, + "CONCEPT_NAME" : "Maternal postnatal examination offered", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "444099004", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40484589, + "CONCEPT_NAME" : "Maternal postnatal examination refused", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "444020006", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434105, + "CONCEPT_NAME" : "Maternal pyrexia during labor", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "37141005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4143214, + "CONCEPT_NAME" : "Maternal pyrexia in labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "267340006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438206, + "CONCEPT_NAME" : "Maternal rubella during pregnancy - baby delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199192005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435606, + "CONCEPT_NAME" : "Maternal syphilis during pregnancy - baby delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199156006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438205, + "CONCEPT_NAME" : "Maternal syphilis during pregnancy - baby not yet delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199158007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443020, + "CONCEPT_NAME" : "Maternal syphilis in the puerperium - baby delivered during previous episode of care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199159004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434697, + "CONCEPT_NAME" : "Maternal tobacco abuse", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169940006", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4197402, + "CONCEPT_NAME" : "Maternal transfer neutropenia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80255009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443018, + "CONCEPT_NAME" : "Maternal tuberculosis in the puerperium - baby delivered during current episode of care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199179007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40478936, + "CONCEPT_NAME" : "Measurement of alpha fetoprotein and analysis of chromosomes in amniotic fluid specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "444311009", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40483704, + "CONCEPT_NAME" : "Measurement of alpha fetoprotein and human chorionic gonadotropin and unconjugated estriol in serum or plasma specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "443883001", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40480870, + "CONCEPT_NAME" : "Measurement of alpha fetoprotein as marker for malignant neoplasm", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "441825001", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40483600, + "CONCEPT_NAME" : "Measurement of alpha fetoprotein in second trimester", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "442495004", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40481772, + "CONCEPT_NAME" : "Measurement of fasting glucose in urine specimen using dipstick", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "442033004", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40482677, + "CONCEPT_NAME" : "Measurement of glucose 1 hour after glucose challenge for glucose tolerance test", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "442260000", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4176733, + "CONCEPT_NAME" : "Measurement of glucose 2 hours after glucose challenge for glucose tolerance test", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "49167009", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4027514, + "CONCEPT_NAME" : "Measurement of glucose 3 hours after glucose challenge for glucose tolerance test", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13165004", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40482666, + "CONCEPT_NAME" : "Measurement of glucose 4 hours after glucose challenge for glucose tolerance test", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "442250009", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4143633, + "CONCEPT_NAME" : "Measurement of glucose 5 hours after glucose challenge for glucose tolerance test", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "34259007", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4232703, + "CONCEPT_NAME" : "Measurement of pregnancy associated plasma protein A concentration", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "440090009", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439934, + "CONCEPT_NAME" : "Meconium aspiration syndrome", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206292002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 193591, + "CONCEPT_NAME" : "Meconium ileus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206523001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4241979, + "CONCEPT_NAME" : "Meconium in amniotic fluid, not clear if noted before OR after onset of labor in liveborn infant", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59534005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4058519, + "CONCEPT_NAME" : "Meconium in amniotic fluid noted before labor in liveborn infant", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "2132004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4238980, + "CONCEPT_NAME" : "Meconium peritonitis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57341009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4315046, + "CONCEPT_NAME" : "Meconium pneumonitis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86649001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44807900, + "CONCEPT_NAME" : "Medical evacuation of retained products of conception using prostaglandin", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "854611000000109", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004762, + "CONCEPT_NAME" : "Medical induction of labor", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "73.4", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "3-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2721012, + "CONCEPT_NAME" : "Medically induced abortion by oral ingestion of medication including all associated services and supplies (e.g., patient counseling, office visits, confirmation of pregnancy by hcg, ultrasound to confirm duration of pregnancy, ultrasound to confirm com...", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "S0199", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4115153, + "CONCEPT_NAME" : "Medical termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "285409006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40487510, + "CONCEPT_NAME" : "Medical termination of pregnancy using prostaglandin", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "447972007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44784273, + "CONCEPT_NAME" : "Melena of newborn due to swallowed maternal blood", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "698318003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4112952, + "CONCEPT_NAME" : "Membranous pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198624007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442920, + "CONCEPT_NAME" : "Mental disorder during pregnancy - baby delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199259006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442918, + "CONCEPT_NAME" : "Mental disorder during pregnancy - baby not yet delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199261002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442919, + "CONCEPT_NAME" : "Mental disorder in the puerperium - baby delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199260001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442917, + "CONCEPT_NAME" : "Mental disorder in the puerperium - baby delivered during previous episode of care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199262009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060424, + "CONCEPT_NAME" : "Mental disorders during pregnancy, childbirth and the puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199257008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4113218, + "CONCEPT_NAME" : "Mesenteric pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198626009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432371, + "CONCEPT_NAME" : "Metabolic disorder following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "35208003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4029421, + "CONCEPT_NAME" : "Metabolic stress hyperglycemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237624007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3000034, + "CONCEPT_NAME" : "Microalbumin [Mass/volume] in Urine", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14957-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44513745, + "CONCEPT_NAME" : "Mid forceps cephalic delivery NEC", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "R21.4", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "OPCS4", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4075189, + "CONCEPT_NAME" : "Midforceps cephalic delivery with rotation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177164001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4266683, + "CONCEPT_NAME" : "Mid forceps delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "62508004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4093774, + "CONCEPT_NAME" : "Mid forceps delivery with episiotomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25828002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4143647, + "CONCEPT_NAME" : "Midforceps delivery without rotation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "265639000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004706, + "CONCEPT_NAME" : "Mid forceps operation with episiotomy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72.21", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4179832, + "CONCEPT_NAME" : "Mid postpartum state", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "42814007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44790206, + "CONCEPT_NAME" : "Mid trimester scan", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "228551000000105", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42535817, + "CONCEPT_NAME" : "Mid vacuum delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "734276001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4305717, + "CONCEPT_NAME" : "Midwife unit delivery booking", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "390782000", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4079970, + "CONCEPT_NAME" : "Mild birth asphyxia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276643006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4121760, + "CONCEPT_NAME" : "Mild birth asphyxia, APGAR 4-7", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "287986009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 436166, + "CONCEPT_NAME" : "Mild hyperemesis gravidarum", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "19569008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435023, + "CONCEPT_NAME" : "Mild hyperemesis-not delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199023008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4129842, + "CONCEPT_NAME" : "Mild postnatal depression", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237349002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4028783, + "CONCEPT_NAME" : "Mild postnatal psychosis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237351003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 314090, + "CONCEPT_NAME" : "Mild pre-eclampsia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "41114007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434759, + "CONCEPT_NAME" : "Mild to moderate birth asphyxia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "77362009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4173176, + "CONCEPT_NAME" : "Mild transient tachypnea of newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276531000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37394499, + "CONCEPT_NAME" : "Minor postpartum haemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1033571000000100", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4067106, + "CONCEPT_NAME" : "Miscarriage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "17369002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4087102, + "CONCEPT_NAME" : "Miscarriage at 8 to 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "184339009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 192678, + "CONCEPT_NAME" : "Miscarriage complicated by damage to pelvic organs and/or tissues", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "58990004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 195594, + "CONCEPT_NAME" : "Miscarriage complicated by delayed and/or excessive hemorrhage", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "2781009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 194704, + "CONCEPT_NAME" : "Miscarriage complicated by embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43306002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437920, + "CONCEPT_NAME" : "Miscarriage complicated by genital-pelvic infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "373896005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441348, + "CONCEPT_NAME" : "Miscarriage complicated by metabolic disorder", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13384007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 193820, + "CONCEPT_NAME" : "Miscarriage complicated by renal failure", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10697004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 196746, + "CONCEPT_NAME" : "Miscarriage complicated by shock", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "34270000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4323612, + "CONCEPT_NAME" : "Miscarriage due to Brucella abortus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428508008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4051244, + "CONCEPT_NAME" : "Miscarriage due to Leptospira", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16038004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4078393, + "CONCEPT_NAME" : "Miscarriage in first trimester", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "19169002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4224646, + "CONCEPT_NAME" : "Miscarriage in second trimester", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "85116003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4167685, + "CONCEPT_NAME" : "Miscarriage in third trimester", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48485000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530979, + "CONCEPT_NAME" : "Miscarriage of tubal ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609525000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4224597, + "CONCEPT_NAME" : "Miscarriage with acute necrosis of liver", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40444006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4211863, + "CONCEPT_NAME" : "Miscarriage with acute renal failure", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57469000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4064536, + "CONCEPT_NAME" : "Miscarriage with afibrinogenemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "21360006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4247270, + "CONCEPT_NAME" : "Miscarriage with air embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "60265009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4003276, + "CONCEPT_NAME" : "Miscarriage with amniotic fluid embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10058006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4209126, + "CONCEPT_NAME" : "Miscarriage with blood-clot embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55976003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4175137, + "CONCEPT_NAME" : "Miscarriage with cardiac arrest and/or cardiac failure", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48739004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4047775, + "CONCEPT_NAME" : "Miscarriage with cerebral anoxia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12394009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434094, + "CONCEPT_NAME" : "Miscarriage with complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "34614007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4179796, + "CONCEPT_NAME" : "Miscarriage with defibrination syndrome", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "50770000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4274315, + "CONCEPT_NAME" : "Miscarriage with electrolyte imbalance", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64814003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4149423, + "CONCEPT_NAME" : "Miscarriage with endometritis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "30806007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4278107, + "CONCEPT_NAME" : "Miscarriage with fat embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "66131005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4170457, + "CONCEPT_NAME" : "Miscarriage with heavy bleeding", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "275421004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4180568, + "CONCEPT_NAME" : "Miscarriage with intravascular hemolysis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "53183006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4194113, + "CONCEPT_NAME" : "Miscarriage with laceration of bladder", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "39199000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4041728, + "CONCEPT_NAME" : "Miscarriage with laceration of bowel", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16714009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4309780, + "CONCEPT_NAME" : "Miscarriage with laceration of broad ligament", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "85331004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4130670, + "CONCEPT_NAME" : "Miscarriage with laceration of cervix", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "127009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4261327, + "CONCEPT_NAME" : "Miscarriage with laceration of periurethral tissue", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "44814008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4302162, + "CONCEPT_NAME" : "Miscarriage with laceration of uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7809009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4311698, + "CONCEPT_NAME" : "Miscarriage with laceration of vagina", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "85632001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4217670, + "CONCEPT_NAME" : "Miscarriage with oliguria", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72613009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 436176, + "CONCEPT_NAME" : "Miscarriage without complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "23793007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4221853, + "CONCEPT_NAME" : "Miscarriage with parametritis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "83922009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4313166, + "CONCEPT_NAME" : "Miscarriage with pelvic peritonitis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "85991008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4310654, + "CONCEPT_NAME" : "Miscarriage with perforation of bladder", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "85467007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4216342, + "CONCEPT_NAME" : "Miscarriage with perforation of bowel", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "8071005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4031837, + "CONCEPT_NAME" : "Miscarriage with perforation of broad ligament", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14136000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4253804, + "CONCEPT_NAME" : "Miscarriage with perforation of cervix", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "74369005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4200070, + "CONCEPT_NAME" : "Miscarriage with perforation of periurethral tissue", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "51954003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4049891, + "CONCEPT_NAME" : "Miscarriage with perforation of uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15809008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4339107, + "CONCEPT_NAME" : "Miscarriage with perforation of vagina", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87967003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4168445, + "CONCEPT_NAME" : "Miscarriage with postoperative shock", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "47537002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4219469, + "CONCEPT_NAME" : "Miscarriage with pulmonary embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "82153002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4001856, + "CONCEPT_NAME" : "Miscarriage with renal tubular necrosis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "11026009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4195406, + "CONCEPT_NAME" : "Miscarriage with salpingitis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7910003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4189350, + "CONCEPT_NAME" : "Miscarriage with salpingo-oophoritis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "61568004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4285746, + "CONCEPT_NAME" : "Miscarriage with sepsis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "67465009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4244261, + "CONCEPT_NAME" : "Miscarriage with septic embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59204004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4085627, + "CONCEPT_NAME" : "Miscarriage with septic shock", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "18613002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4006806, + "CONCEPT_NAME" : "Miscarriage with uremia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "11109001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4033096, + "CONCEPT_NAME" : "Miscarriage with urinary tract infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1469007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 76482, + "CONCEPT_NAME" : "Missed miscarriage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16607004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4063183, + "CONCEPT_NAME" : "Mixed feto-pelvic disproportion", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199416003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 72970, + "CONCEPT_NAME" : "Mixed feto-pelvic disproportion - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199418002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 78817, + "CONCEPT_NAME" : "Mixed feto-pelvic disproportion with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199419005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4278101, + "CONCEPT_NAME" : "Mixed hypoglycemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "66095000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42539560, + "CONCEPT_NAME" : "Mixed neonatal apnea", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "762287001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4030429, + "CONCEPT_NAME" : "Moderate hyperemesis gravidarum", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "129597002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4034094, + "CONCEPT_NAME" : "Moderate proteinuric hypertension of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237281009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36675173, + "CONCEPT_NAME" : "Moderate to late prematurity of infant", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "771507004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37016955, + "CONCEPT_NAME" : "Monitoring fetal development", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "713117007", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4146288, + "CONCEPT_NAME" : "Monitoring of lochia by sanitary pad count", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "427406007", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43021951, + "CONCEPT_NAME" : "Monochorionic diamniotic twin pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "459168005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43021952, + "CONCEPT_NAME" : "Monochorionic monoamniotic twin pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "459171002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4199931, + "CONCEPT_NAME" : "Morning sickness", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "51885006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433260, + "CONCEPT_NAME" : "Mother delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "289256000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437041, + "CONCEPT_NAME" : "Mother not delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "289257009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4310471, + "CONCEPT_NAME" : "MS alpha-fetoprotein level", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "391516001", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110337, + "CONCEPT_NAME" : "Multifetal pregnancy reduction(s) (MPR)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59866", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4163851, + "CONCEPT_NAME" : "Multiple birth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45384004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4063163, + "CONCEPT_NAME" : "Multiple delivery, all by cesarean section", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199331008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4063162, + "CONCEPT_NAME" : "Multiple delivery, all by forceps and vacuum extractor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199330009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4059751, + "CONCEPT_NAME" : "Multiple delivery, all spontaneous", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199329004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 75015, + "CONCEPT_NAME" : "Multiple gestation with one OR more fetal malpresentations", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80224003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42539267, + "CONCEPT_NAME" : "Multiple liveborn in hospital by vaginal delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16089691000119102", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36713468, + "CONCEPT_NAME" : "Multiple liveborn other than twins born in hospital", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "717807001", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3045823, + "CONCEPT_NAME" : "Multiple pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45371-2", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Clinical Observation" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432969, + "CONCEPT_NAME" : "Multiple pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16356006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442082, + "CONCEPT_NAME" : "Multiple pregnancy with malpresentation - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199380003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4063175, + "CONCEPT_NAME" : "Multiple pregnancy with malpresentation with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199381004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4178154, + "CONCEPT_NAME" : "Multiple pregnancy with one fetal loss", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428511009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42599849, + "CONCEPT_NAME" : "Mycotic abortion", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "360061000009103", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED Veterinary", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3000119, + "CONCEPT_NAME" : "Narrative Fetal presentation US", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "18850-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Clinical Observation" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 201957, + "CONCEPT_NAME" : "Necrotizing enterocolitis in fetus OR newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "2707005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37311912, + "CONCEPT_NAME" : "Necrotizing enterocolitis of newborn, stage 1A", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "788986004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37311911, + "CONCEPT_NAME" : "Necrotizing enterocolitis of newborn, stage 1B", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "788987008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37311910, + "CONCEPT_NAME" : "Necrotizing enterocolitis of newborn, stage 2A", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "788988003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37311909, + "CONCEPT_NAME" : "Necrotizing enterocolitis of newborn, stage 2B", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "788989006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37311908, + "CONCEPT_NAME" : "Necrotizing enterocolitis of newborn, stage 3A", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "788990002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37311907, + "CONCEPT_NAME" : "Necrotizing enterocolitis of newborn, Stage 3B", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "788991003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4172307, + "CONCEPT_NAME" : "Neonatal acne", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "49706007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 765023, + "CONCEPT_NAME" : "Neonatal adrenal hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16060511000119104", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4319457, + "CONCEPT_NAME" : "Neonatal apneic attack", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "95616002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433589, + "CONCEPT_NAME" : "Neonatal aspiration of amniotic fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276540001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 252442, + "CONCEPT_NAME" : "Neonatal aspiration of blood", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206294001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437374, + "CONCEPT_NAME" : "Neonatal aspiration of meconium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "278927005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4172995, + "CONCEPT_NAME" : "Neonatal aspiration of milk", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276542009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434154, + "CONCEPT_NAME" : "Neonatal aspiration syndromes", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276533002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4171248, + "CONCEPT_NAME" : "Neonatal bacterial conjunctivitis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276680000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443522, + "CONCEPT_NAME" : "Neonatal bradycardia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "413341007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440840, + "CONCEPT_NAME" : "Neonatal candidiasis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "414821002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4070650, + "CONCEPT_NAME" : "Neonatal candidiasis of intestine", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206358003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4070651, + "CONCEPT_NAME" : "Neonatal candidiasis of lung", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206359006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4070648, + "CONCEPT_NAME" : "Neonatal candidiasis of perineum", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206356004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4106274, + "CONCEPT_NAME" : "Neonatal cardiac arrest", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "180906006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4110550, + "CONCEPT_NAME" : "Neonatal cardiorespiratory arrest", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "181869007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 761919, + "CONCEPT_NAME" : "Neonatal cerebral hematoma due to birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "194091000119102", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4129290, + "CONCEPT_NAME" : "Neonatal cerebral hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "261808007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4173173, + "CONCEPT_NAME" : "Neonatal chloridorrhea", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "276524004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36674511, + "CONCEPT_NAME" : "Neonatal clicking hip", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "778014002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4269452, + "CONCEPT_NAME" : "Neonatal condition - finding", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "364737004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36717459, + "CONCEPT_NAME" : "Neonatal conjunctivitis and dacrocystitis caused by Neisseria gonorrhoeae", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "721281003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4173019, + "CONCEPT_NAME" : "Neonatal cord dry", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276401008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4170953, + "CONCEPT_NAME" : "Neonatal cord moist", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276402001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4173020, + "CONCEPT_NAME" : "Neonatal cord sticky", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276403006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 373870, + "CONCEPT_NAME" : "Neonatal dacryocystitis and conjunctivitis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206345004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4210315, + "CONCEPT_NAME" : "Neonatal death of female (within 4 weeks, USA)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "56102008", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Event" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4206035, + "CONCEPT_NAME" : "Neonatal death of female (within 7 days, WHO)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55225009", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Event" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4239540, + "CONCEPT_NAME" : "Neonatal death of male (within 4 weeks, USA)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "91519006", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Event" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4244718, + "CONCEPT_NAME" : "Neonatal death of male (within 7 days, WHO)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "60257006", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Event" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4291447, + "CONCEPT_NAME" : "Neonatal dermatosis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "402795001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 193323, + "CONCEPT_NAME" : "Neonatal diabetes mellitus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "49817004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36716761, + "CONCEPT_NAME" : "Neonatal difficulty in feeding at breast", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "722934009", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42537680, + "CONCEPT_NAME" : "Neonatal disorder of oral mucosa", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "737211006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44784276, + "CONCEPT_NAME" : "Neonatal effect of alcohol transmitted via breast milk", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "698321001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44784301, + "CONCEPT_NAME" : "Neonatal effect of anti-infective agent transmitted via breast milk", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "698403003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44784360, + "CONCEPT_NAME" : "Neonatal effect of maternal intrauterine infection", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "698495000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36717269, + "CONCEPT_NAME" : "Neonatal effect of maternal postpartum depression", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "11047971000119109", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4050236, + "CONCEPT_NAME" : "Neonatal effect of noxious substance transmitted via breast milk", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "20952006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4025181, + "CONCEPT_NAME" : "Neonatal enamel hypoplasia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "196279002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36715839, + "CONCEPT_NAME" : "Neonatal eosinophilic esophagitis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "721612007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36716750, + "CONCEPT_NAME" : "Neonatal epistaxis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "722922001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36717488, + "CONCEPT_NAME" : "Neonatal esophagitis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "721611000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3188843, + "CONCEPT_NAME" : "Neonatal exposure to Hepatitis B in mother", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "9300001000004101", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "Nebraska Lexicon", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3175980, + "CONCEPT_NAME" : "Neonatal exposure to HIV in mother", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "9330001000004109", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "Nebraska Lexicon", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3173911, + "CONCEPT_NAME" : "Neonatal exposure to syphilis in mother", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "9310001000004104", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "Nebraska Lexicon", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4173004, + "CONCEPT_NAME" : "Neonatal facial petechiae", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276619008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44792481, + "CONCEPT_NAME" : "Neonatal feeding education", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "352641000000101", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36712969, + "CONCEPT_NAME" : "Neonatal gastroesophageal reflux", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15749591000119107", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4180181, + "CONCEPT_NAME" : "Neonatal gastrointestinal disorder", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "363219007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37109016, + "CONCEPT_NAME" : "Neonatal gastrointestinal hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16055151000119105", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4243042, + "CONCEPT_NAME" : "Neonatal Graves' disease", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59957008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42538558, + "CONCEPT_NAME" : "Neonatal hemorrhage of bladder", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "762289003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42538557, + "CONCEPT_NAME" : "Neonatal hemorrhage of kidney", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "762288006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42536722, + "CONCEPT_NAME" : "Neonatal hemorrhage of liver", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "735677007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36717593, + "CONCEPT_NAME" : "Neonatal hemorrhage of spleen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "722921008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42538559, + "CONCEPT_NAME" : "Neonatal hemorrhage of uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "762290007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4320490, + "CONCEPT_NAME" : "Neonatal hepatitis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "69800000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4318835, + "CONCEPT_NAME" : "Neonatal hepatocellular damage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "95555006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4214373, + "CONCEPT_NAME" : "Neonatal hepatosplenomegaly", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80378000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4132505, + "CONCEPT_NAME" : "Neonatal herpes simplex virus conjunctivitis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "410507001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 23034, + "CONCEPT_NAME" : "Neonatal hypoglycemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "52767006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36716745, + "CONCEPT_NAME" : "Neonatal hypotonia of hypopharynx", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "722916005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443618, + "CONCEPT_NAME" : "Neonatal hypoxemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "431335002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4174302, + "CONCEPT_NAME" : "Neonatal infection of the eye", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276675009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 76221, + "CONCEPT_NAME" : "Neonatal infective mastitis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "3468005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36676688, + "CONCEPT_NAME" : "Neonatal inflammatory skin and bowel disease", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "773662009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42536730, + "CONCEPT_NAME" : "Neonatal intestinal perforation co-occurrent and due to intestinal atresia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "735719008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42536732, + "CONCEPT_NAME" : "Neonatal intestinal perforation due to in utero intestinal volvulus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "735721003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42536731, + "CONCEPT_NAME" : "Neonatal intestinal perforation with congenital intestinal stenosis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "735720002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42539039, + "CONCEPT_NAME" : "Neonatal intestinal perforation with in utero intraluminal obstruction", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "735722005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37399026, + "CONCEPT_NAME" : "Neonatal intrahepatic cholestasis due to citrin deficiency", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "717155003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42536733, + "CONCEPT_NAME" : "Neonatal isolated ileal perforation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "735723000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435656, + "CONCEPT_NAME" : "Neonatal jaundice", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "387712008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440847, + "CONCEPT_NAME" : "Neonatal jaundice associated with preterm delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "73749009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4170445, + "CONCEPT_NAME" : "Neonatal jaundice due to deficiency of enzyme system for bilirubin conjugation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "275360003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439137, + "CONCEPT_NAME" : "Neonatal jaundice due to delayed conjugation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "17140000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4221399, + "CONCEPT_NAME" : "Neonatal jaundice due to delayed conjugation from breast milk inhibitor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "82696006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4239658, + "CONCEPT_NAME" : "Neonatal jaundice due to delayed conjugation from delayed development of conjugating system", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "69347004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4071740, + "CONCEPT_NAME" : "Neonatal jaundice with Crigler-Najjar syndrome", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206454000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4048614, + "CONCEPT_NAME" : "Neonatal jaundice with Gilbert's syndrome", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206456003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4071080, + "CONCEPT_NAME" : "Neonatal jaundice with porphyria", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206458002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4048294, + "CONCEPT_NAME" : "Neonatal jaundice with Rotor's syndrome", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206459005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42536729, + "CONCEPT_NAME" : "Neonatal malabsorption with gastrointestinal hormone-secreting endocrine tumor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "735718000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36716886, + "CONCEPT_NAME" : "Neonatal mass of hypopharynx", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "723111007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4048608, + "CONCEPT_NAME" : "Neonatal melena", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206424005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36717505, + "CONCEPT_NAME" : "Neonatal mucocutaneous infection caused by Candida", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "721795001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4308227, + "CONCEPT_NAME" : "Neonatal necrotizing enterocolitis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206525008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42535103, + "CONCEPT_NAME" : "Neonatal non-traumatic intraventricular hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15985031000119102", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 761782, + "CONCEPT_NAME" : "Neonatal nontraumatic subarachnoid hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15985111000119106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37116437, + "CONCEPT_NAME" : "Neonatal obstruction of intestine", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "733145007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42538263, + "CONCEPT_NAME" : "Neonatal oral candidiasis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "746223006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42536564, + "CONCEPT_NAME" : "Neonatal perforation of intestine caused by drug", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "735493006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439140, + "CONCEPT_NAME" : "Neonatal polycythemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "32984002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42537679, + "CONCEPT_NAME" : "Neonatal polycythemia due to intra-uterine growth retardation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "737210007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42537678, + "CONCEPT_NAME" : "Neonatal polycythemia due to placental insufficiency", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "737209002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3182078, + "CONCEPT_NAME" : "Neonatal potential for methadone withdrawal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "20290001000004109", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "Nebraska Lexicon", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 257375, + "CONCEPT_NAME" : "Neonatal pulmonary hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "414822009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4048286, + "CONCEPT_NAME" : "Neonatal rectal hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206425006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4316374, + "CONCEPT_NAME" : "Neonatal respiratory acidosis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "95612000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4316375, + "CONCEPT_NAME" : "Neonatal respiratory alkalosis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "95613005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 318856, + "CONCEPT_NAME" : "Neonatal respiratory arrest", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "95634003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36715567, + "CONCEPT_NAME" : "Neonatal sepsis caused by Malassezia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "721278008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 761851, + "CONCEPT_NAME" : "Neonatal sepsis caused by Staphylococcus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16060271000119109", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 761852, + "CONCEPT_NAME" : "Neonatal sepsis caused by Streptococcus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16060311000119109", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4298866, + "CONCEPT_NAME" : "Neonatal staphylococcal scalded skin syndrome", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "402967005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4300236, + "CONCEPT_NAME" : "Neonatal systemic candidiasis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "403000003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443523, + "CONCEPT_NAME" : "Neonatal tachycardia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "413342000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4264166, + "CONCEPT_NAME" : "Neonatal thrombocytopenia due to idiopathic maternal thrombocytopenia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "61744005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 137099, + "CONCEPT_NAME" : "Neonatal thyrotoxicosis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13795004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4243198, + "CONCEPT_NAME" : "Neonatal tooth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "58748004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4210115, + "CONCEPT_NAME" : "Neonatal tracheobronchial hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "312858004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36717571, + "CONCEPT_NAME" : "Neonatal traumatic hemorrhage of trachea following procedure on lower respiratory tract", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "722579002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4047937, + "CONCEPT_NAME" : "Neonatal urinary tract infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12301009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 194598, + "CONCEPT_NAME" : "Neoplasm of uncertain behavior of placenta", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "95005005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2101016, + "CONCEPT_NAME" : "Neuraxial analgesia/anesthesia for labor ending in a cesarean delivery (includes any repeat subarachnoid needle placement and drug injection and/or any necessary replacement of an epidural catheter during labor) (Deprecated)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "00857", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2101813, + "CONCEPT_NAME" : "Neuraxial labor analgesia/anesthesia for planned vaginal delivery (this includes any repeat subarachnoid needle placement and drug injection and/or any necessary replacement of an epidural catheter during labor)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "01967", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4034967, + "CONCEPT_NAME" : "Neuroglycopenia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237631006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4171104, + "CONCEPT_NAME" : "Neutropenia of the small for gestational age baby", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276576000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4173513, + "CONCEPT_NAME" : "Neville-Barnes forceps delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "275168001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 46284810, + "CONCEPT_NAME" : "New birth examination completed by other healthcare provider", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "955251000000102", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4079843, + "CONCEPT_NAME" : "Newborn death", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276506001", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Event" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4173194, + "CONCEPT_NAME" : "Newborn drug intoxication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276582002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4173193, + "CONCEPT_NAME" : "Newborn drug reaction", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276581009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4171092, + "CONCEPT_NAME" : "Newborn environmental hypothermia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276529009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4079846, + "CONCEPT_NAME" : "Newborn ingestion of maternal blood", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276539003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3200880, + "CONCEPT_NAME" : "Newborn metabolic screen finding abnormal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "9100001000004106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "Nebraska Lexicon", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2721181, + "CONCEPT_NAME" : "Newborn metabolic screening panel, includes test kit, postage and the laboratory tests specified by the state for inclusion in this panel (e.g., galactose; hemoglobin, electrophoresis; hydroxyprogesterone, 17-d; phenylalanine (pku); and thyroxine, total)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "S3620", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4173180, + "CONCEPT_NAME" : "Newborn physiological jaundice", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276549000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4207827, + "CONCEPT_NAME" : "Newborn regurgitation of food", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55331005", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42739015, + "CONCEPT_NAME" : "Newborn resuscitation: provision of positive pressure ventilation and/or chest compressions in the presence of acute inadequate ventilation and/or cardiac output", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "99440", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4129520, + "CONCEPT_NAME" : "Nocturnal hypoglycemia due to diabetes mellitus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237635002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4127831, + "CONCEPT_NAME" : "No further involution of the uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "289753009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3655876, + "CONCEPT_NAME" : "Noma neonatorum", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "870353004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4029424, + "CONCEPT_NAME" : "Non-diabetic hypoglycemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237637005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 76533, + "CONCEPT_NAME" : "Non-immune hydrops fetalis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276509008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37017029, + "CONCEPT_NAME" : "Non immune hydrops in newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "713204000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36715842, + "CONCEPT_NAME" : "Non-infective neonatal diarrhea", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "721615009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4176715, + "CONCEPT_NAME" : "Non-involution of uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "4907004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4071630, + "CONCEPT_NAME" : "Non-manipulative cephalic vaginal delivery with abnormal presentation of head at delivery without instrument", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177181005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4275443, + "CONCEPT_NAME" : "Non-pregnancy related A-G syndrome", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64678009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442573, + "CONCEPT_NAME" : "Nonpurulent mastitis associated with childbirth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "78697003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36713477, + "CONCEPT_NAME" : "Nonpurulent mastitis associated with childbirth with attachment difficulty", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "717818001", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45757111, + "CONCEPT_NAME" : "Nonpurulent mastitis associated with lactation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10750411000119102", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4127248, + "CONCEPT_NAME" : "Nonrotational forceps delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "236975003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44790222, + "CONCEPT_NAME" : "Non routine obstetric scan for fetal observations", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "228691000000101", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4080067, + "CONCEPT_NAME" : "Non-urgent obstetric admission", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "183494008", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4171058, + "CONCEPT_NAME" : "Nonvenomous insect bite of anus with infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "42089007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4148533, + "CONCEPT_NAME" : "Nonvenomous insect bite of penis with infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "35057008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4149402, + "CONCEPT_NAME" : "Nonvenomous insect bite of perineum with infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "30818003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4187237, + "CONCEPT_NAME" : "Nonvenomous insect bite of scrotum with infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "47027001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4201764, + "CONCEPT_NAME" : "Nonvenomous insect bite of vulva with infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "53706009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014720, + "CONCEPT_NAME" : "Normal birth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169961004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4080889, + "CONCEPT_NAME" : "Normal birth weight", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276712009", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4063160, + "CONCEPT_NAME" : "Normal delivery but ante- or post- natal conditions present", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199314001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4070222, + "CONCEPT_NAME" : "Normal delivery of placenta", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "177212000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4071507, + "CONCEPT_NAME" : "Normal delivery procedure", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177184002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4009404, + "CONCEPT_NAME" : "Normal glucose level", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "102659003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42739012, + "CONCEPT_NAME" : "Normal newborn care in other than hospital or birthing room setting, including physical examination of baby and conference(s) with parent(s)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "99432", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4217975, + "CONCEPT_NAME" : "Normal pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72892002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45765512, + "CONCEPT_NAME" : "Normogonadotropic amenorrhea", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "702466002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4028938, + "CONCEPT_NAME" : "Normoprolactinemic galactorrhea", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237801002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4186424, + "CONCEPT_NAME" : "Nuchal ultrasound scan", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "414880004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3002549, + "CONCEPT_NAME" : "Number of fetuses by US", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "11878-6", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Clinical Observation" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442051, + "CONCEPT_NAME" : "Obstetric air pulmonary embolism with antenatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200290001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442050, + "CONCEPT_NAME" : "Obstetric air pulmonary embolism with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200291002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 314107, + "CONCEPT_NAME" : "Obstetrical cardiac complication of anesthesia AND/OR sedation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64171002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432976, + "CONCEPT_NAME" : "Obstetrical complication of anesthesia AND/OR sedation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "29847008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442294, + "CONCEPT_NAME" : "Obstetrical pulmonary complication of anesthesia AND/OR sedation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "51154004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45757105, + "CONCEPT_NAME" : "Obstetric anesthesia with cardiac complication in childbirth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10749691000119103", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4064980, + "CONCEPT_NAME" : "Obstetric anesthesia with cardiac complications with postnatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200059007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45757106, + "CONCEPT_NAME" : "Obstetric anesthesia with central nervous system complication in childbirth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10749811000119108", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4065091, + "CONCEPT_NAME" : "Obstetric anesthesia with central nervous system complication with postnatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200066008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4064979, + "CONCEPT_NAME" : "Obstetric anesthesia with pulmonary complications with postnatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200052003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442053, + "CONCEPT_NAME" : "Obstetric blood-clot pulmonary embolism - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200301007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433545, + "CONCEPT_NAME" : "Obstetric blood-clot pulmonary embolism with antenatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200303005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437060, + "CONCEPT_NAME" : "Obstetric blood-clot pulmonary embolism with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200304004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443263, + "CONCEPT_NAME" : "Obstetric breast abscess", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "270502007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 74433, + "CONCEPT_NAME" : "Obstetric breast abscess - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200374003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 78494, + "CONCEPT_NAME" : "Obstetric breast abscess - delivered with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200375002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 78218, + "CONCEPT_NAME" : "Obstetric breast abscess with antenatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200376001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443293, + "CONCEPT_NAME" : "Obstetric breast abscess with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200377005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4063697, + "CONCEPT_NAME" : "Obstetric breast infections", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200364001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 75326, + "CONCEPT_NAME" : "Obstetric damage to pelvic joints and ligaments - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199990003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442079, + "CONCEPT_NAME" : "Obstetric damage to pelvic joints and ligaments with postnatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199991004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4084521, + "CONCEPT_NAME" : "Obstetric D.V. done", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "183760007", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4080059, + "CONCEPT_NAME" : "Obstetric emergency hospital admission", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "183460006", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038747, + "CONCEPT_NAME" : "Obstetric examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "163497009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 192979, + "CONCEPT_NAME" : "Obstetric high vaginal laceration", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199977005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 193269, + "CONCEPT_NAME" : "Obstetric high vaginal laceration - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199979008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 200472, + "CONCEPT_NAME" : "Obstetric high vaginal laceration with postnatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199980006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 197048, + "CONCEPT_NAME" : "Obstetric inversion of uterus - delivered with postnatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199969006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442080, + "CONCEPT_NAME" : "Obstetric laceration of cervix - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199974003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442083, + "CONCEPT_NAME" : "Obstetric laceration of cervix with postnatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199975002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4140250, + "CONCEPT_NAME" : "Obstetric monitoring", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "265642006", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441925, + "CONCEPT_NAME" : "Obstetric nipple infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "267289003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441926, + "CONCEPT_NAME" : "Obstetric nipple infection with antenatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200369006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433837, + "CONCEPT_NAME" : "Obstetric nipple infection with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200370007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 79897, + "CONCEPT_NAME" : "Obstetric non-purulent mastitis - delivered with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200382003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 76491, + "CONCEPT_NAME" : "Obstetric non-purulent mastitis with antenatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200383008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 76771, + "CONCEPT_NAME" : "Obstetric non-purulent mastitis with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200385001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2212094, + "CONCEPT_NAME" : "Obstetric panel This panel must include the following: Blood count, complete (CBC), automated and automated differential WBC count (85025 or 85027 and 85004) OR Blood count, complete (CBC), automated (85027) and appropriate manual differential WBC count (", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80055", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 201368, + "CONCEPT_NAME" : "Obstetric pelvic hematoma - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199995008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 193271, + "CONCEPT_NAME" : "Obstetric pelvic hematoma - delivered with postnatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199996009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060178, + "CONCEPT_NAME" : "Obstetric pelvic hematoma with postnatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199997000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4129839, + "CONCEPT_NAME" : "Obstetric pelvic joint damage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237328003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4034149, + "CONCEPT_NAME" : "Obstetric pelvic ligament damage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237327008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 194439, + "CONCEPT_NAME" : "Obstetric perineal wound disruption", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "397752008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 192387, + "CONCEPT_NAME" : "Obstetric perineal wound disruption - delivered with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200342005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442417, + "CONCEPT_NAME" : "Obstetric perineal wound disruption with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200343000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435026, + "CONCEPT_NAME" : "Obstetric pulmonary embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200284000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433832, + "CONCEPT_NAME" : "Obstetric pulmonary thromboembolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200299000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439380, + "CONCEPT_NAME" : "Obstetric pyemic and septic pulmonary embolism with antenatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200310004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439379, + "CONCEPT_NAME" : "Obstetric pyemic and septic pulmonary embolism with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200311000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4081774, + "CONCEPT_NAME" : "Obstetric self-referral", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "183695003", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 195025, + "CONCEPT_NAME" : "Obstetric shock - delivered with postnatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200106008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442071, + "CONCEPT_NAME" : "Obstetric shock with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200107004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4065635, + "CONCEPT_NAME" : "Obstetric shock with postnatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200108009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004846, + "CONCEPT_NAME" : "Obstetric tamponade of uterus or vagina", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "75.8", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "3-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 76763, + "CONCEPT_NAME" : "Obstetric trauma damaging pelvic joints and ligaments", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "267271004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44790279, + "CONCEPT_NAME" : "Obstetric ultrasound monitoring", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "228921000000108", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4059051, + "CONCEPT_NAME" : "Obstetric X-ray - fetus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "168760000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4085285, + "CONCEPT_NAME" : "Obstetric X-ray - placenta", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "241059000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 193827, + "CONCEPT_NAME" : "Obstructed labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199746004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 197051, + "CONCEPT_NAME" : "Obstructed labor caused by bony pelvis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199757009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 199087, + "CONCEPT_NAME" : "Obstructed labor caused by bony pelvis - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199759007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 193273, + "CONCEPT_NAME" : "Obstructed labor caused by bony pelvis with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199760002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 192694, + "CONCEPT_NAME" : "Obstructed labor caused by pelvic soft tissues", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199767004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 196182, + "CONCEPT_NAME" : "Obstructed labor caused by pelvic soft tissues - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199769001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442440, + "CONCEPT_NAME" : "Obstructed labor caused by pelvic soft tissues with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199770000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061852, + "CONCEPT_NAME" : "Obstructed labor due to abnormality of maternal pelvic organs", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199765007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 46269810, + "CONCEPT_NAME" : "Obstructed labor due to abnormality of maternal pelvis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10751631000119101", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060036, + "CONCEPT_NAME" : "Obstructed labor due to breech presentation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199751005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060037, + "CONCEPT_NAME" : "Obstructed labor due to brow presentation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199753008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4064819, + "CONCEPT_NAME" : "Obstructed labor due to compound presentation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199755001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37310898, + "CONCEPT_NAME" : "Obstructed labor due to deep transverse arrest and persistent occipitoposterior position", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "31041000119106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4064821, + "CONCEPT_NAME" : "Obstructed labor due to deformed pelvis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199761003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45757117, + "CONCEPT_NAME" : "Obstructed labor due to disproportion between fetus and pelvis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10751581000119104", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061850, + "CONCEPT_NAME" : "Obstructed labor due to face presentation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199752003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37396169, + "CONCEPT_NAME" : "Obstructed labor due to fetal abnormality", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "715880002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 194100, + "CONCEPT_NAME" : "Obstructed labor due to fetal malposition", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199747008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 194711, + "CONCEPT_NAME" : "Obstructed labor due to fetal malposition - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199749006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 193831, + "CONCEPT_NAME" : "Obstructed labor due to fetal malposition with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199750006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060039, + "CONCEPT_NAME" : "Obstructed labor due to generally contracted pelvis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199762005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45772074, + "CONCEPT_NAME" : "Obstructed labor due to incomplete rotation of fetal head", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10751511000119105", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4064423, + "CONCEPT_NAME" : "Obstructed labor due to pelvic inlet contraction", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199763000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4064424, + "CONCEPT_NAME" : "Obstructed labor due to pelvic outlet and mid-cavity contraction", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199764006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42536563, + "CONCEPT_NAME" : "Obstructed labor due to shoulder dystocia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "735492001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060038, + "CONCEPT_NAME" : "Obstructed labor due to shoulder presentation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199754002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4064437, + "CONCEPT_NAME" : "Obstructed labor due to unusually large fetus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199806003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4300773, + "CONCEPT_NAME" : "Obstruction by bony pelvis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "77563000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444404, + "CONCEPT_NAME" : "Obstruction caused by position of fetus at onset of labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "20625004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 252305, + "CONCEPT_NAME" : "Obstructive apnea of newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276545006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3655849, + "CONCEPT_NAME" : "Ocular hypertension due to birth injury", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "870324000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4091789, + "CONCEPT_NAME" : "Odor of lochia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "249215002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038420, + "CONCEPT_NAME" : "O/E - breech presentation", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163514003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038571, + "CONCEPT_NAME" : "O/E - fetal heart 120-160", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163548002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038945, + "CONCEPT_NAME" : "O/E - fetal heart heard", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163542001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4039088, + "CONCEPT_NAME" : "O/E - fetal heart not heard", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163543006", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038943, + "CONCEPT_NAME" : "O/E - fetal movement diminished", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163540009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038942, + "CONCEPT_NAME" : "O/E - fetal movements", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163535001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038426, + "CONCEPT_NAME" : "O/E - fetal movements felt", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163538004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4039610, + "CONCEPT_NAME" : "O/E - fetal movements seen", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163537009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4150948, + "CONCEPT_NAME" : "O/E - fetal presentation", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "268952006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038938, + "CONCEPT_NAME" : "O/E -fetal presentation unsure", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163518000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038760, + "CONCEPT_NAME" : "O/E - fetus very active", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163539007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038418, + "CONCEPT_NAME" : "O/E - fundal size = dates", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163510007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038749, + "CONCEPT_NAME" : "O/E - fundus 12-16 week size", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163499007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038751, + "CONCEPT_NAME" : "O/E - fundus 16-20 week size", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163500003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038932, + "CONCEPT_NAME" : "O/E - fundus 20-24 week size", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163501004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4039602, + "CONCEPT_NAME" : "O/E - fundus 24-28 week size", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163502006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038753, + "CONCEPT_NAME" : "O/E - fundus 28-32 week size", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163504007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038754, + "CONCEPT_NAME" : "O/E - fundus 32-34 week size", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163505008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038755, + "CONCEPT_NAME" : "O/E - fundus 34-36 week size", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163506009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038934, + "CONCEPT_NAME" : "O/E - fundus 36-38 week size", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163507000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038756, + "CONCEPT_NAME" : "O/E -fundus 38 weeks-term size", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163508005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4255282, + "CONCEPT_NAME" : "O/E - fundus not adequately seen", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "408314005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038935, + "CONCEPT_NAME" : "O/E - fundus = term size", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163509002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038748, + "CONCEPT_NAME" : "O/E - gravid uterus size", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163498004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4039609, + "CONCEPT_NAME" : "O/E - no fetal movements", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163536000", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038759, + "CONCEPT_NAME" : "O/E - partial engagement - 3/5", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163531005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4175225, + "CONCEPT_NAME" : "O/E - PP free - not engaged", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "275968002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038424, + "CONCEPT_NAME" : "O/E - presentation engaged-1/5", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163533008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4171428, + "CONCEPT_NAME" : "O/E - presenting part engaged", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "275969005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4039608, + "CONCEPT_NAME" : "O/E - presenting part free-4/5", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163530006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038941, + "CONCEPT_NAME" : "O/E - presenting part free-5/5", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163529001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038939, + "CONCEPT_NAME" : "O/E - presenting part position", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163520002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038937, + "CONCEPT_NAME" : "O/E - transverse lie", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163516001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038573, + "CONCEPT_NAME" : "O/E - VE for pelvic assessment", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163555000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4039603, + "CONCEPT_NAME" : "O/E - vertex presentation", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163513009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4194143, + "CONCEPT_NAME" : "O/E - viable fetus", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "312354009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4173013, + "CONCEPT_NAME" : "Offensive lochia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276375002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 196159, + "CONCEPT_NAME" : "Old laceration of muscles of pelvic floor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "467003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434111, + "CONCEPT_NAME" : "Oligohydramnios", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59566000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433274, + "CONCEPT_NAME" : "Oligohydramnios - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199653002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432386, + "CONCEPT_NAME" : "Oligohydramnios with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199654008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4107071, + "CONCEPT_NAME" : "Oliguria following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "29908007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4034650, + "CONCEPT_NAME" : "Omphalitis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "239095007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 201136, + "CONCEPT_NAME" : "Omphalitis of newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "42052009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4073719, + "CONCEPT_NAME" : "On maternity leave", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "224457004", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2213351, + "CONCEPT_NAME" : "Oocyte identification from follicular fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "89254", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4072862, + "CONCEPT_NAME" : "Oocyte recovery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177037000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004767, + "CONCEPT_NAME" : "Operations on fetus to facilitate delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "73.8", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "3-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4119975, + "CONCEPT_NAME" : "Operative termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "302375005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004746, + "CONCEPT_NAME" : "Other artificial rupture of membranes", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "73.09", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004802, + "CONCEPT_NAME" : "Other cesarean section of unspecified type", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "74.99", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004822, + "CONCEPT_NAME" : "Other diagnostic procedures on fetus and amnion", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "75.35", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004811, + "CONCEPT_NAME" : "Other fetal monitoring", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "75.34", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 46232934, + "CONCEPT_NAME" : "Other introduction of gametes into uterine cavity", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "Q21", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "OPCS4", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004765, + "CONCEPT_NAME" : "Other manually assisted delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "73.59", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004707, + "CONCEPT_NAME" : "Other mid forceps operation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72.29", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004862, + "CONCEPT_NAME" : "Other obstetric operations", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "75.99", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004783, + "CONCEPT_NAME" : "Other operations assisting delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "73.99", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004768, + "CONCEPT_NAME" : "Other operations assisting delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "73.9", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "3-dig nonbill code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004724, + "CONCEPT_NAME" : "Other partial breech extraction", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72.52", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004348, + "CONCEPT_NAME" : "Other partial salpingectomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "66.69", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4191809, + "CONCEPT_NAME" : "Other procedures inducing or assisting delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "73", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "2-dig nonbill code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44513736, + "CONCEPT_NAME" : "Other specified breech extraction delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "R19.8", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "OPCS4", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44513756, + "CONCEPT_NAME" : "Other specified cephalic vaginal delivery with abnormal presentation of head at delivery without instrument", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "R23.8", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "OPCS4", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44513729, + "CONCEPT_NAME" : "Other specified elective caesarean delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "R17.8", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "OPCS4", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44513747, + "CONCEPT_NAME" : "Other specified forceps cephalic delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "R21.8", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "OPCS4", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004731, + "CONCEPT_NAME" : "Other specified instrumental delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72.8", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "3-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44513476, + "CONCEPT_NAME" : "Other specified introduction of abortifacient into uterine cavity", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "Q14.8", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "OPCS4", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44513468, + "CONCEPT_NAME" : "Other specified introduction of gametes into uterine cavity", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "Q13.8", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "OPCS4", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44517168, + "CONCEPT_NAME" : "Other specified in vitro fertilisation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "Y96.8", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "OPCS4", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44513799, + "CONCEPT_NAME" : "Other specified non-routine obstetric scan for fetal observations", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "R37.8", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "OPCS4", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44513812, + "CONCEPT_NAME" : "Other specified obstetric Doppler ultrasound", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "R42.8", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "OPCS4", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4075024, + "CONCEPT_NAME" : "Other specified oocyte recovery", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "177043003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44513634, + "CONCEPT_NAME" : "Other specified oocyte recovery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "Q48.8", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "OPCS4", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44513740, + "CONCEPT_NAME" : "Other specified other breech delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "R20.8", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "OPCS4", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44513733, + "CONCEPT_NAME" : "Other specified other caesarean delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "R18.8", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "OPCS4", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44513516, + "CONCEPT_NAME" : "Other specified other introduction of gametes into uterine cavity", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "Q21.8", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "OPCS4", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44513803, + "CONCEPT_NAME" : "Other specified other non-routine obstetric scan", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "R38.8", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "OPCS4", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44513791, + "CONCEPT_NAME" : "Other specified routine obstetric scan", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "R36.8", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "OPCS4", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44513816, + "CONCEPT_NAME" : "Other specified ultrasound monitoring", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "R43.8", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "OPCS4", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44513752, + "CONCEPT_NAME" : "Other specified vacuum delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "R22.8", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "OPCS4", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004747, + "CONCEPT_NAME" : "Other surgical induction of labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "73.1", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "3-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004726, + "CONCEPT_NAME" : "Other total breech extraction", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72.54", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004730, + "CONCEPT_NAME" : "Other vacuum extraction", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72.79", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4145318, + "CONCEPT_NAME" : "Outcome of delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "268475008", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Observable Entity" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4127249, + "CONCEPT_NAME" : "Outlet forceps delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "236976002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 73824, + "CONCEPT_NAME" : "Outlet pelvic contraction - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199413006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 72378, + "CONCEPT_NAME" : "Outlet pelvic contraction with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199414000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42535816, + "CONCEPT_NAME" : "Outlet vacuum delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "734275002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 200153, + "CONCEPT_NAME" : "Ovarian pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "9899009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4049041, + "CONCEPT_NAME" : "Overfeeding in newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206567004", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443323, + "CONCEPT_NAME" : "Papyraceous fetus - not delivered", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "199070009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4159154, + "CONCEPT_NAME" : "Paralysis from birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "371129000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4319461, + "CONCEPT_NAME" : "Paralytic ileus of the newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "95625008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336392, + "CONCEPT_NAME" : "Parametritis following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87169001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4079236, + "CONCEPT_NAME" : "Parenchymatous mastitis associated with childbirth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "18237006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4234421, + "CONCEPT_NAME" : "Partial breech delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "359943008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4023797, + "CONCEPT_NAME" : "Partial breech delivery with forceps to aftercoming head", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "19390001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4267567, + "CONCEPT_NAME" : "Partial salpingectomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "62692004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4248080, + "CONCEPT_NAME" : "Parturient hemorrhage associated with afibrinogenemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "9442009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4145439, + "CONCEPT_NAME" : "Parturient hemorrhage associated with hyperfibrinolysis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "34327003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4296604, + "CONCEPT_NAME" : "Parturient hemorrhage associated with hypofibrinogenemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "76771005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4231407, + "CONCEPT_NAME" : "Parturient paresis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "405256006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 195075, + "CONCEPT_NAME" : "Passage of meconium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "249529000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4211227, + "CONCEPT_NAME" : "Pathologic amenorrhea", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "56561006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4025199, + "CONCEPT_NAME" : "Pelvic dystocia AND/OR uterine disorder", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "106010004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 198221, + "CONCEPT_NAME" : "Pelvic hematoma during delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "5740008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4314877, + "CONCEPT_NAME" : "Pelvic peritonitis following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86709000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442829, + "CONCEPT_NAME" : "Pelvic soft tissue abnormality in pregnancy, childbirth and the puerperium - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199511005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 195019, + "CONCEPT_NAME" : "Pelvic soft tissue abnormality in pregnancy, childbirth and the puerperium with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199513008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4285751, + "CONCEPT_NAME" : "Pelvic thrombophlebitis in puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "67486009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4172869, + "CONCEPT_NAME" : "Peptic ulcer of newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276525003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4073428, + "CONCEPT_NAME" : "Percutaneous sampling of chorionic villus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177107006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36716687, + "CONCEPT_NAME" : "Perforation of intestine co-occurrent and due to meconium ileus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "722841004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37204732, + "CONCEPT_NAME" : "Perilipin 1 related familial partial lipodystrophy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "783616005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4306199, + "CONCEPT_NAME" : "Perinatal anemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "387702001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 374748, + "CONCEPT_NAME" : "Perinatal anoxic-ischemic brain injury", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "126945001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4321550, + "CONCEPT_NAME" : "Perinatal apneic spells", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "70073005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36716757, + "CONCEPT_NAME" : "Perinatal arterial ischemic stroke", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "722929005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4084442, + "CONCEPT_NAME" : "Perinatal asphyxia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "281578009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 260212, + "CONCEPT_NAME" : "Perinatal atelectasis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54959009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4080888, + "CONCEPT_NAME" : "Perinatal cerebral ischemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276706004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 135370, + "CONCEPT_NAME" : "Perinatal cutaneous hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "18503002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 134760, + "CONCEPT_NAME" : "Perinatal cyanotic attacks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "38593000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4187201, + "CONCEPT_NAME" : "Perinatal disorder", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "415073005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4079851, + "CONCEPT_NAME" : "Perinatal disorder of electrolytes", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276569005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4173002, + "CONCEPT_NAME" : "Perinatal disorder of growth and/or development", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276603001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4171097, + "CONCEPT_NAME" : "Perinatal disorders of glucose regulation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276555005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4173179, + "CONCEPT_NAME" : "Perinatal disorders of liver and/or biliary system", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276548008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4173198, + "CONCEPT_NAME" : "Perinatal falx laceration", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276593000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4300467, + "CONCEPT_NAME" : "Perinatal forceps injury", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "403848003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 194158, + "CONCEPT_NAME" : "Perinatal gastrointestinal hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48729005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439931, + "CONCEPT_NAME" : "Perinatal hemolytic jaundice", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "288279008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42872438, + "CONCEPT_NAME" : "Perinatal hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "450429004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42536566, + "CONCEPT_NAME" : "Perinatal hemorrhage of lung due to traumatic injury", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "735495004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4171096, + "CONCEPT_NAME" : "Perinatal hepatitis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276551001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4173181, + "CONCEPT_NAME" : "Perinatal hepatocellular damage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276552008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4105262, + "CONCEPT_NAME" : "Perinatal hypoxia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "281579001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4171102, + "CONCEPT_NAME" : "Perinatal hypoxia and asphyxia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276570006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42536745, + "CONCEPT_NAME" : "Perinatal infection caused by Human herpes simplex virus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "735737009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 258564, + "CONCEPT_NAME" : "Perinatal interstitial emphysema", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "60125001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4171091, + "CONCEPT_NAME" : "Perinatal intestinal obstruction", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276521007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 199925, + "CONCEPT_NAME" : "Perinatal intestinal perforation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65390006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4174299, + "CONCEPT_NAME" : "Perinatal intracranial hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276647007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4173000, + "CONCEPT_NAME" : "Perinatal intracranial laceration", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276588003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 436519, + "CONCEPT_NAME" : "Perinatal intraventricular hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "70611002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4071743, + "CONCEPT_NAME" : "Perinatal jaundice due to cystic fibrosis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206471004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 195064, + "CONCEPT_NAME" : "Perinatal jaundice due to hepatocellular damage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10877007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438869, + "CONCEPT_NAME" : "Perinatal jaundice due to hereditary hemolytic anemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "56921004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4071737, + "CONCEPT_NAME" : "Perinatal jaundice from bleeding", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206448001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4071735, + "CONCEPT_NAME" : "Perinatal jaundice from bruising", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206442000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433029, + "CONCEPT_NAME" : "Perinatal jaundice from excessive hemolysis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "24911006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4048292, + "CONCEPT_NAME" : "Perinatal jaundice from infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206444004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4071076, + "CONCEPT_NAME" : "Perinatal jaundice from maternal transmission of drug or toxin", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206443005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4071736, + "CONCEPT_NAME" : "Perinatal jaundice from polycythemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206446002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4048610, + "CONCEPT_NAME" : "Perinatal jaundice from swallowed maternal blood", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206447006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3663236, + "CONCEPT_NAME" : "Perinatal lethal Gaucher disease", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "870313002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4071717, + "CONCEPT_NAME" : "Perinatal lung intra-alveolar hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206303001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4048282, + "CONCEPT_NAME" : "Perinatal melena", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206407004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3655840, + "CONCEPT_NAME" : "Perinatal mucocutaneous infection caused by Human herpesvirus 3", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "870310004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4287783, + "CONCEPT_NAME" : "Perinatal necrotizing enterocolitis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "397729009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4079855, + "CONCEPT_NAME" : "Perinatal nonspecific brain dysfunction", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276595007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4173197, + "CONCEPT_NAME" : "Perinatal occipital diastasis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276592005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4006329, + "CONCEPT_NAME" : "Perinatal partial atelectasis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "111466004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4278842, + "CONCEPT_NAME" : "Perinatal pulmonary collapse", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "66151009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4263343, + "CONCEPT_NAME" : "Perinatal pulmonary fibroplasia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "361194002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43021073, + "CONCEPT_NAME" : "Perinatal pulmonary hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "472857006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 313590, + "CONCEPT_NAME" : "Perinatal respiratory failure", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "91581004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4171108, + "CONCEPT_NAME" : "Perinatal rupture of superficial cerebral vein", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276594006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4243494, + "CONCEPT_NAME" : "Perinatal secondary atelectasis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59113005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4048166, + "CONCEPT_NAME" : "Perinatal sensorineural hearing loss", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "232331006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37017557, + "CONCEPT_NAME" : "Perinatal sepsis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "713854001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37017566, + "CONCEPT_NAME" : "Perinatal sepsis caused by Escherichia coli", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "713866007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37019087, + "CONCEPT_NAME" : "Perinatal sepsis caused by Streptococcus agalactiae", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "713865006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4071198, + "CONCEPT_NAME" : "Perinatal skin and temperature regulation disorders", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206537005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4301414, + "CONCEPT_NAME" : "Perinatal skin trauma due to obstetric injury", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "403847008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4080885, + "CONCEPT_NAME" : "Perinatal skull defect", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276698001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 260841, + "CONCEPT_NAME" : "Perinatal subarachnoid hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "21202004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4079973, + "CONCEPT_NAME" : "Perinatal subependymal hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276650005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4171123, + "CONCEPT_NAME" : "Perinatal subependymal hemorrhage with intraventricular and intracerebral extension", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276652002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4173332, + "CONCEPT_NAME" : "Perinatal subependymal hemorrhage with intraventricular extension", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276651009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4173001, + "CONCEPT_NAME" : "Perinatal tentorial laceration", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276589006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4166754, + "CONCEPT_NAME" : "Perinatal thrombocytopenia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "273986001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4171100, + "CONCEPT_NAME" : "Perinatal thyroid disorder", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276564000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4048607, + "CONCEPT_NAME" : "Perinatal transient vaginal bleeding", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206422009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 197349, + "CONCEPT_NAME" : "Perineal hematoma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237331002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4307825, + "CONCEPT_NAME" : "Perineal hematoma during delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "83094001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439390, + "CONCEPT_NAME" : "Perineal laceration during delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "398019008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4187920, + "CONCEPT_NAME" : "Perineal laceration involving fourchette", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46311005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4272706, + "CONCEPT_NAME" : "Perineal laceration involving hymen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36796001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4296470, + "CONCEPT_NAME" : "Perineal laceration involving labia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "76658000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4002900, + "CONCEPT_NAME" : "Perineal laceration involving pelvic floor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "11942004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4239205, + "CONCEPT_NAME" : "Perineal laceration involving rectovaginal septum", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6825008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4311670, + "CONCEPT_NAME" : "Perineal laceration involving skin", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "85542007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4032920, + "CONCEPT_NAME" : "Perineal laceration involving vagina", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14825005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4242693, + "CONCEPT_NAME" : "Perineal laceration involving vaginal muscles", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "38450002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4197221, + "CONCEPT_NAME" : "Perineal laceration involving vulva", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "79839005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 197608, + "CONCEPT_NAME" : "Peripheral neuritis in pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "17787002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 199086, + "CONCEPT_NAME" : "Peripheral neuritis in pregnancy - not delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199095005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4062566, + "CONCEPT_NAME" : "Peripheral neuritis in pregnancy with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199096006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 372435, + "CONCEPT_NAME" : "Periventricular leukomalacia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "230769007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43531641, + "CONCEPT_NAME" : "Permanent neonatal diabetes mellitus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609565001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37110041, + "CONCEPT_NAME" : "Permanent neonatal diabetes mellitus with cerebellar agenesis syndrome", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "724067006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 197970, + "CONCEPT_NAME" : "Persistent fetal circulation", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "206597007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444374, + "CONCEPT_NAME" : "Persistent occipitoposterior position", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "70068004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 317941, + "CONCEPT_NAME" : "Phlebitis AND/OR thrombosis complicating pregnancy AND/OR puerperium", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "26850007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4129183, + "CONCEPT_NAME" : "Phlebitis in puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237343001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4269051, + "CONCEPT_NAME" : "Phlegmasia alba dolens in puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "62583006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3013297, + "CONCEPT_NAME" : "Phosphatidylglycerol [Presence] in Amniotic fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "2785-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4103235, + "CONCEPT_NAME" : "Phrenic nerve paralysis as birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "28778005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42537765, + "CONCEPT_NAME" : "Physiological shock due to and following molar pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "737326006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4261326, + "CONCEPT_NAME" : "Physiologic amenorrhea", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "44811000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4073438, + "CONCEPT_NAME" : "Piper forceps delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177170007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4016476, + "CONCEPT_NAME" : "Placenta incomplete", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "169958000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014718, + "CONCEPT_NAME" : "Placental abnormality", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169957005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 198488, + "CONCEPT_NAME" : "Placental abruption", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "415105001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 193539, + "CONCEPT_NAME" : "Placental abruption - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198910006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 201350, + "CONCEPT_NAME" : "Placental abruption - not delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198911005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2721184, + "CONCEPT_NAME" : "Placental alpha microglobulin-1 rapid immunoassay for detection of rupture of fetal membranes", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "S3628", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 200784, + "CONCEPT_NAME" : "Placental condition affecting management of mother", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "111447004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014716, + "CONCEPT_NAME" : "Placental finding", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169952004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4034100, + "CONCEPT_NAME" : "Placental insufficiency", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237292005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4064854, + "CONCEPT_NAME" : "Placental localization", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "164817009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4217071, + "CONCEPT_NAME" : "Placental site nodule", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "417364008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4028645, + "CONCEPT_NAME" : "Placental site trophoblastic tumor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237252008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44502733, + "CONCEPT_NAME" : "Placental site trophoblastic tumor of placenta", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "9104/1-C58.9", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "ICDO3", + "CONCEPT_CLASS_ID" : "ICDO Condition" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42600135, + "CONCEPT_NAME" : "Placental subinvolution", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "42211000009104", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED Veterinary", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4016475, + "CONCEPT_NAME" : "Placenta normal O/E", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "169954003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4284028, + "CONCEPT_NAME" : "Placenta previa", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36813001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4172142, + "CONCEPT_NAME" : "Placenta previa found before labor AND delivery by cesarean section without hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48888007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 196751, + "CONCEPT_NAME" : "Placenta previa with hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198903000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 193264, + "CONCEPT_NAME" : "Placenta previa with hemorrhage - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198905007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 200149, + "CONCEPT_NAME" : "Placenta previa with hemorrhage - not delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198906008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 194710, + "CONCEPT_NAME" : "Placenta previa without hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7792000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 201359, + "CONCEPT_NAME" : "Placenta previa without hemorrhage - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198899007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 192372, + "CONCEPT_NAME" : "Placenta previa without hemorrhage - not delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198900002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014292, + "CONCEPT_NAME" : "Place of birth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169812000", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Observable Entity" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4041726, + "CONCEPT_NAME" : "Plasma 2-hr post-prandial glucose measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "167097002", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4210719, + "CONCEPT_NAME" : "Plasma alpha-fetoprotein multiple of median measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313867006", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4041725, + "CONCEPT_NAME" : "Plasma fasting glucose measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "167096006", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4210721, + "CONCEPT_NAME" : "Plasma free beta human chorionic gonadotrophin measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313871009", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44812174, + "CONCEPT_NAME" : "Plasma human chorionic gonadotrophin concentration measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "911491000000101", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4210718, + "CONCEPT_NAME" : "Plasma human chorionic gonadotropin multiple of median measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313865003", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4269036, + "CONCEPT_NAME" : "Plasma insulin C-peptide level", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "401124003", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4268422, + "CONCEPT_NAME" : "Plasma insulin measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "401151000", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4041724, + "CONCEPT_NAME" : "Plasma random glucose measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "167095005", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4305235, + "CONCEPT_NAME" : "Polycythemia due to donor twin transfusion", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "38697006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4297988, + "CONCEPT_NAME" : "Polycythemia due to maternal-fetal transfusion", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "76873001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36716548, + "CONCEPT_NAME" : "Polycythemia neonatorum due to inherited disorder of erythropoietin production", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "722585009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36716549, + "CONCEPT_NAME" : "Polycythemia neonatorum following blood transfusion", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "722586005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4278356, + "CONCEPT_NAME" : "Polygalactia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65377004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437623, + "CONCEPT_NAME" : "Polyhydramnios", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86203003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434427, + "CONCEPT_NAME" : "Polyhydramnios - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199646006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433540, + "CONCEPT_NAME" : "Polyhydramnios with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199647002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4173347, + "CONCEPT_NAME" : "Poor feeding of newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276717003", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 72693, + "CONCEPT_NAME" : "Poor fetal growth affecting management", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "397949005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 75639, + "CONCEPT_NAME" : "Poor fetal nutrition", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276608005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 196764, + "CONCEPT_NAME" : "Post-delivery acute renal failure - delivered with postnatal problem", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "200117009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4056338, + "CONCEPT_NAME" : "Post gastrointestinal tract surgery hypoglycemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "197483008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437369, + "CONCEPT_NAME" : "Postmature infancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16207008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4245166, + "CONCEPT_NAME" : "Postmaturity", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59634004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440833, + "CONCEPT_NAME" : "Postmaturity of fetus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "433145001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014156, + "CONCEPT_NAME" : "Postnatal care from general practitioner", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169756008", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015415, + "CONCEPT_NAME" : "Postnatal care greater than 48 hours after birth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169775003", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015152, + "CONCEPT_NAME" : "Postnatal care less than 48 hours after birth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169774004", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015410, + "CONCEPT_NAME" : "Postnatal care provider", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169754006", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014446, + "CONCEPT_NAME" : "Postnatal data", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169786001", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Observable Entity" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435031, + "CONCEPT_NAME" : "Postnatal deep vein thrombosis - delivered with postnatal complication", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "200237000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4062264, + "CONCEPT_NAME" : "Postnatal deep vein thrombosis with postnatal complication", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "200238005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4215564, + "CONCEPT_NAME" : "Postnatal depression counseling", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "395072006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015413, + "CONCEPT_NAME" : "Postnatal - eighth day visit", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169770008", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4055488, + "CONCEPT_NAME" : "Postnatal enamel hypoplasia", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "196280004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014445, + "CONCEPT_NAME" : "Postnatal examination minor problem found", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169783009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015154, + "CONCEPT_NAME" : "Postnatal examination normal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169784003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014281, + "CONCEPT_NAME" : "Postnatal - fifth day visit", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169767009", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014280, + "CONCEPT_NAME" : "Postnatal - first day visit", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169763008", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014443, + "CONCEPT_NAME" : "Postnatal - fourth day visit", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169766000", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4075295, + "CONCEPT_NAME" : "Postnatal infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "178280004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44811076, + "CONCEPT_NAME" : "Postnatal listening visits offered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "882371000000109", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4297232, + "CONCEPT_NAME" : "Postnatal maternal examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "384634009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015414, + "CONCEPT_NAME" : "Postnatal - ninth day visit", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169771007", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014442, + "CONCEPT_NAME" : "Postnatal - second day visit", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169764002", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015412, + "CONCEPT_NAME" : "Postnatal - seventh day visit", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169769007", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014282, + "CONCEPT_NAME" : "Postnatal - sixth day visit", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169768004", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4062362, + "CONCEPT_NAME" : "Postnatal support group", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "171067001", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015151, + "CONCEPT_NAME" : "Postnatal - tenth day visit", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169772000", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015150, + "CONCEPT_NAME" : "Postnatal - third day visit", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169765001", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4034146, + "CONCEPT_NAME" : "Postnatal vaginal discomfort", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237315005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015149, + "CONCEPT_NAME" : "Postnatal visit", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169762003", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4151029, + "CONCEPT_NAME" : "Postnatal visit status", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "310370000", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4182691, + "CONCEPT_NAME" : "Postobstetric urethral stricture", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "53212003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4023382, + "CONCEPT_NAME" : "Postoperative shock following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "11669000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4295363, + "CONCEPT_NAME" : "Postpancreatectomy hyperglycemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "37814003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37116834, + "CONCEPT_NAME" : "Postpartum acute renal failure", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "733839001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4006327, + "CONCEPT_NAME" : "Postpartum afibrinogenemia with hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "111452009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336810, + "CONCEPT_NAME" : "Postpartum alopecia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87038002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4225411, + "CONCEPT_NAME" : "Postpartum amenorrhea-galactorrhea syndrome", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "85039006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 312383, + "CONCEPT_NAME" : "Postpartum cardiomyopathy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "62377009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4047392, + "CONCEPT_NAME" : "Postpartum care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "133906008", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110314, + "CONCEPT_NAME" : "Postpartum care only (separate procedure)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59430", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4113199, + "CONCEPT_NAME" : "Postpartum cicatrix of cervix", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198347000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 436483, + "CONCEPT_NAME" : "Postpartum coagulation defects", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "267272006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441363, + "CONCEPT_NAME" : "Postpartum coagulation defects - delivered with postnatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200030007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061341, + "CONCEPT_NAME" : "Postpartum coagulation defects with postnatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200031006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4169890, + "CONCEPT_NAME" : "Postpartum coagulation defect with hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "49177006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4239471, + "CONCEPT_NAME" : "Postpartum depression", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "58703003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4203918, + "CONCEPT_NAME" : "Postpartum education", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54070000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45773073, + "CONCEPT_NAME" : "Postpartum episiotomy pain", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72771000119107", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4266066, + "CONCEPT_NAME" : "Postpartum fibrinolysis with hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "62410004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4041280, + "CONCEPT_NAME" : "Postpartum finding", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "118213005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45757789, + "CONCEPT_NAME" : "Postpartum gestational diabetes mellitus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40791000119105", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4012240, + "CONCEPT_NAME" : "Postpartum headache", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "103008008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443929, + "CONCEPT_NAME" : "Postpartum hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "47821001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37110289, + "CONCEPT_NAME" : "Postpartum hemorrhage co-occurrent and due to uterine rupture following obstructed labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "724496000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37108740, + "CONCEPT_NAME" : "Postpartum hemorrhage due to total placenta previa", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "119891000119105", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4158274, + "CONCEPT_NAME" : "Postpartum hypopituitarism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "290653008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4162754, + "CONCEPT_NAME" : "Postpartum intrapituitary hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "291665000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42534817, + "CONCEPT_NAME" : "Postpartum major depression in remission", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "104851000119103", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4253057, + "CONCEPT_NAME" : "Postpartum neurosis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "73972002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4146731, + "CONCEPT_NAME" : "Postpartum period, 1 day", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "30118000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4169742, + "CONCEPT_NAME" : "Postpartum period, 2 days", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "49071005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4273241, + "CONCEPT_NAME" : "Postpartum period, 3 days", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64541000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4028024, + "CONCEPT_NAME" : "Postpartum period, 4 days", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13273002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4185531, + "CONCEPT_NAME" : "Postpartum period, 5 days", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55861007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4011238, + "CONCEPT_NAME" : "Postpartum period, 6 days", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1124005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4228830, + "CONCEPT_NAME" : "Postpartum period, 7 days", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "88387008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 35622939, + "CONCEPT_NAME" : "Postpartum pre-eclampsia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "765182005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45757788, + "CONCEPT_NAME" : "Postpartum pregnancy-induced hypertension", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40521000119100", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4057246, + "CONCEPT_NAME" : "Postpartum psychosis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "18260003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42535649, + "CONCEPT_NAME" : "Postpartum psychosis in remission", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "60401000119104", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440465, + "CONCEPT_NAME" : "Postpartum state", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86569001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4035468, + "CONCEPT_NAME" : "Postpartum state, 2 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15100005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4104354, + "CONCEPT_NAME" : "Postpartum state, 3 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "29123003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4007389, + "CONCEPT_NAME" : "Postpartum state, 4 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10152009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4300708, + "CONCEPT_NAME" : "Postpartum state, 5 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "38802008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4278355, + "CONCEPT_NAME" : "Postpartum state, 6 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65375007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4222573, + "CONCEPT_NAME" : "Postpartum state, 7 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40156002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4318816, + "CONCEPT_NAME" : "Postpartum state, 8 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "22178008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4174510, + "CONCEPT_NAME" : "Postpartum state, 9 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "50404009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4199437, + "CONCEPT_NAME" : "Postpartum thyroiditis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "52772002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4325457, + "CONCEPT_NAME" : "Postpartum uterine hypertrophy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "71612002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4091199, + "CONCEPT_NAME" : "Postpartum vulval hematoma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "249218000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4321231, + "CONCEPT_NAME" : "Postparturient hemoglobinuria", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "70964000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4219015, + "CONCEPT_NAME" : "Postpill amenorrhea", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "39931000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4116187, + "CONCEPT_NAME" : "Post-prandial blood glucose measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "302788006", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4126074, + "CONCEPT_NAME" : "Post-term infant - 42 weeks plus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "288270007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441128, + "CONCEPT_NAME" : "Post-term infant, not heavy-for-dates", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "79995002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432695, + "CONCEPT_NAME" : "Post-term pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90968009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439894, + "CONCEPT_NAME" : "Post-term pregnancy - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199063009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434695, + "CONCEPT_NAME" : "Post-term pregnancy - not delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199064003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45773507, + "CONCEPT_NAME" : "Post-term pregnancy of 40 to 42 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "22281000119101", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4096468, + "CONCEPT_NAME" : "Potential abnormality of glucose tolerance", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26254008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433542, + "CONCEPT_NAME" : "Precipitate labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "51920004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438220, + "CONCEPT_NAME" : "Precipitate labor - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199833004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435024, + "CONCEPT_NAME" : "Precipitate labor with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199834005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439393, + "CONCEPT_NAME" : "Pre-eclampsia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "398254007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 141084, + "CONCEPT_NAME" : "Pre-eclampsia or eclampsia with pre-existing hypertension", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198997005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 135601, + "CONCEPT_NAME" : "Pre-eclampsia or eclampsia with pre-existing hypertension - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198999008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 134414, + "CONCEPT_NAME" : "Pre-eclampsia or eclampsia with pre-existing hypertension - delivered with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199000005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 136743, + "CONCEPT_NAME" : "Pre-eclampsia or eclampsia with pre-existing hypertension - not delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199002002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4146816, + "CONCEPT_NAME" : "Pre-existing hypertension complicating AND/OR reason for care during childbirth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "34694006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4277110, + "CONCEPT_NAME" : "Pre-existing hypertension complicating AND/OR reason for care during pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65402008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4151903, + "CONCEPT_NAME" : "Pre-existing hypertension complicating AND/OR reason for care during puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "31407004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 321074, + "CONCEPT_NAME" : "Pre-existing hypertension complicating pregnancy, childbirth and puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199005000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4219466, + "CONCEPT_NAME" : "Pregestational diabetes mellitus AND/OR impaired glucose tolerance, modified White class A", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "82141001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4146514, + "CONCEPT_NAME" : "Pregestational diabetes mellitus AND/OR impaired glucose tolerance, modified White class B", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "34818008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4242853, + "CONCEPT_NAME" : "Pregestational diabetes mellitus AND/OR impaired glucose tolerance, modified White class C", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "38063000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4144221, + "CONCEPT_NAME" : "Pregestational diabetes mellitus AND/OR impaired glucose tolerance, modified White class D", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "33669002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4182243, + "CONCEPT_NAME" : "Pregestational diabetes mellitus AND/OR impaired glucose tolerance, modified White class F", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "4307007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4220981, + "CONCEPT_NAME" : "Pregestational diabetes mellitus AND/OR impaired glucose tolerance, modified White class FR", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "82701004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4305491, + "CONCEPT_NAME" : "Pregestational diabetes mellitus AND/OR impaired glucose tolerance, modified White class R", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "82260000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 762490, + "CONCEPT_NAME" : "Pregnancy and lactation education", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "423011000124102", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4129519, + "CONCEPT_NAME" : "Pregnancy and type 2 diabetes mellitus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237627000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3051741, + "CONCEPT_NAME" : "Pregnancy associated plasma protein A [Mass/volume] in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48407-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3014064, + "CONCEPT_NAME" : "Pregnancy associated plasma protein A [Multiple of the median] in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "32123-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2212548, + "CONCEPT_NAME" : "Pregnancy-associated plasma protein-A (PAPP-A)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84163", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3021584, + "CONCEPT_NAME" : "Pregnancy associated plasma protein A [Units/volume] in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "32046-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4148890, + "CONCEPT_NAME" : "Pregnancy benefits", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "270471004", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Qualifier Value" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438209, + "CONCEPT_NAME" : "Pregnancy care of habitual aborter", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "199089009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4062674, + "CONCEPT_NAME" : "Pregnancy complication NOS", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "199152008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439348, + "CONCEPT_NAME" : "Pregnancy complications", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "198881004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4250175, + "CONCEPT_NAME" : "Pregnancy detection examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "74036000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4167493, + "CONCEPT_NAME" : "Pregnancy-induced hypertension", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48194001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4062574, + "CONCEPT_NAME" : "Pregnancy-related glycosuria", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199132007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4094910, + "CONCEPT_NAME" : "Pregnancy test positive", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "250423000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061785, + "CONCEPT_NAME" : "Pregnancy unplanned and unwanted", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169567006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060237, + "CONCEPT_NAME" : "Pregnancy unplanned but wanted", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169566002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4157329, + "CONCEPT_NAME" : "Pregnancy with abnormal glucose tolerance test", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "372048000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4299535, + "CONCEPT_NAME" : "Pregnant", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "77386006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4059982, + "CONCEPT_NAME" : "Pregnant - blood test confirms", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169561007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061686, + "CONCEPT_NAME" : "Pregnant - on history", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169563005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4059984, + "CONCEPT_NAME" : "Pregnant - planned", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169565003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061411, + "CONCEPT_NAME" : "Pregnant, sheath failure", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169508004", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4059981, + "CONCEPT_NAME" : "Pregnant - urine test confirms", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169560008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3174212, + "CONCEPT_NAME" : "Premature 28 week quadruplet", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7550001000004101", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "Nebraska Lexicon", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4097427, + "CONCEPT_NAME" : "Premature birth of fraternal twins, both living", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25192009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4222915, + "CONCEPT_NAME" : "Premature birth of fraternal twins, both stillborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84382006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4147043, + "CONCEPT_NAME" : "Premature birth of fraternal twins, one living, one stillborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "30165006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4142021, + "CONCEPT_NAME" : "Premature birth of identical twins, both living", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "34100008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4242724, + "CONCEPT_NAME" : "Premature birth of identical twins, both stillborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "3798002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4310910, + "CONCEPT_NAME" : "Premature birth of identical twins, one living, one stillborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "39213008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4069200, + "CONCEPT_NAME" : "Premature birth of multiple newborns", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "20272009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4145125, + "CONCEPT_NAME" : "Premature birth of newborn quadruplets", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "34089005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4082863, + "CONCEPT_NAME" : "Premature birth of newborn quintuplets", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "24146004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4008884, + "CONCEPT_NAME" : "Premature birth of newborn sextuplets", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "112075006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4107401, + "CONCEPT_NAME" : "Premature birth of newborn triplets", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "29997008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4029786, + "CONCEPT_NAME" : "Premature birth of newborn twins", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13859001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4184594, + "CONCEPT_NAME" : "Premature birth of stillborn twins", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54650005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4086393, + "CONCEPT_NAME" : "Premature delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "282020008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4125778, + "CONCEPT_NAME" : "Premature/false labor", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "287979001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4217564, + "CONCEPT_NAME" : "Premature infant", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "395507008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4147874, + "CONCEPT_NAME" : "Premature infant 28-37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "310661005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4273560, + "CONCEPT_NAME" : "Premature labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6383007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4175637, + "CONCEPT_NAME" : "Premature pregnancy delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "49550006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 194702, + "CONCEPT_NAME" : "Premature rupture of membranes", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "44223004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 200160, + "CONCEPT_NAME" : "Premature rupture of membranes - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199658006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4064709, + "CONCEPT_NAME" : "Premature rupture of membranes, labor delayed by therapy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199661007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 200468, + "CONCEPT_NAME" : "Premature rupture of membranes with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199659003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4058403, + "CONCEPT_NAME" : "Premature separation of placenta with coagulation defect", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198912003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440519, + "CONCEPT_NAME" : "Premature - weight 1000g-2499g or gestation of 28-37weeks", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "206169007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440525, + "CONCEPT_NAME" : "Prematurity of fetus", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "44247006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36675035, + "CONCEPT_NAME" : "Prematurity of infant", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "771299009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4138554, + "CONCEPT_NAME" : "Premenopausal amenorrhea", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "32590007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2618150, + "CONCEPT_NAME" : "Prenatal care, at-risk assessment", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "H1000", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2618151, + "CONCEPT_NAME" : "Prenatal care, at-risk enhanced service; antepartum management", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "H1001", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2618152, + "CONCEPT_NAME" : "Prenatal care, at risk enhanced service; care coordination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "H1002", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2618154, + "CONCEPT_NAME" : "Prenatal care, at-risk enhanced service; follow-up home visit", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "H1004", + "DOMAIN_ID" : "Visit", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2618155, + "CONCEPT_NAME" : "Prenatal care, at-risk enhanced service package (includes h1001-h1004)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "H1005", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4176966, + "CONCEPT_NAME" : "Prenatal education", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "363266006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4112701, + "CONCEPT_NAME" : "Prenatal examination and care of mother", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "18114009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4311447, + "CONCEPT_NAME" : "Prenatal initial visit", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "424441002", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4172038, + "CONCEPT_NAME" : "Prenatal supplemental visit", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "422808006", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4313474, + "CONCEPT_NAME" : "Prenatal visit", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "424619006", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2213352, + "CONCEPT_NAME" : "Preparation of embryo for transfer (any method)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "89255", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4129040, + "CONCEPT_NAME" : "Presentation of cord", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237305004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37110284, + "CONCEPT_NAME" : "Preterm delivery following Cesarean section", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "724489002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37110283, + "CONCEPT_NAME" : "Preterm delivery following induction of labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "724488005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45757175, + "CONCEPT_NAME" : "Preterm labor in second trimester with preterm delivery in second trimester", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10761141000119107", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45757176, + "CONCEPT_NAME" : "Preterm labor in third trimester with preterm delivery in third trimester", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10761191000119104", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36712702, + "CONCEPT_NAME" : "Preterm labor with preterm delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10761241000119104", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44784550, + "CONCEPT_NAME" : "Preterm spontaneous labor with preterm delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "698716002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44784551, + "CONCEPT_NAME" : "Preterm spontaneous labor with term delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "698717006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4098718, + "CONCEPT_NAME" : "Previous abnormality of glucose tolerance", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "2725003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40318194, + "CONCEPT_NAME" : "Primary amenorrhea", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "156035004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 314479, + "CONCEPT_NAME" : "Primary apnea in the newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "430335007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 258554, + "CONCEPT_NAME" : "Primary atelectasis, in perinatal period", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "42908004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37311892, + "CONCEPT_NAME" : "Primary central sleep apnea of prematurity", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "789009003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4300387, + "CONCEPT_NAME" : "Primary hypotonic uterine dysfunction", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "387696001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 201516, + "CONCEPT_NAME" : "Primary malignant neoplasm of placenta", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "93965008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37204277, + "CONCEPT_NAME" : "Primary microcephaly, epilepsy, permanent neonatal diabetes syndrome", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "782825008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4230947, + "CONCEPT_NAME" : "Primary physiologic amenorrhea", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "8913004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4262580, + "CONCEPT_NAME" : "Primary sleep apnea of newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "361208003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443435, + "CONCEPT_NAME" : "Primary uterine inertia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "387699008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 196762, + "CONCEPT_NAME" : "Primary uterine inertia - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199819004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 196759, + "CONCEPT_NAME" : "Primary uterine inertia with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199821009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4133029, + "CONCEPT_NAME" : "Primigravida", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "127364007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060105, + "CONCEPT_NAME" : "Private home delivery booking", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169624005", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4120303, + "CONCEPT_NAME" : "Progressive congenital rubella encephalomyelitis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "302811004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4230252, + "CONCEPT_NAME" : "Progressive post hemorrhagic ventricular dilatation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "359629000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 72692, + "CONCEPT_NAME" : "Prolapsed arm - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199384007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4058679, + "CONCEPT_NAME" : "Prolapse of anterior lip of cervix obstructing labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "19729005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440476, + "CONCEPT_NAME" : "Prolapse of cord", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "270500004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441645, + "CONCEPT_NAME" : "Prolapse of cord - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199869007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435883, + "CONCEPT_NAME" : "Prolapse of cord with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199870008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4171094, + "CONCEPT_NAME" : "Prolonged apnea of newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276546007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440475, + "CONCEPT_NAME" : "Prolonged first stage - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199847000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441362, + "CONCEPT_NAME" : "Prolonged first stage of labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "33627001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434435, + "CONCEPT_NAME" : "Prolonged first stage with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199848005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440167, + "CONCEPT_NAME" : "Prolonged labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "53443007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4308660, + "CONCEPT_NAME" : "Prolonged latent phase of labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "387700009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3189930, + "CONCEPT_NAME" : "Prolonged neonatal intensive care history", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "9320001000004107", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "Nebraska Lexicon", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4171095, + "CONCEPT_NAME" : "Prolonged newborn physiological jaundice", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276550000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 192972, + "CONCEPT_NAME" : "Prolonged rupture of membranes", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12729009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434431, + "CONCEPT_NAME" : "Prolonged second stage - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199857004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434714, + "CONCEPT_NAME" : "Prolonged second stage of labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "77259008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37017049, + "CONCEPT_NAME" : "Prolonged second stage of labor due to poor maternal effort", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "713232009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437620, + "CONCEPT_NAME" : "Prolonged second stage with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199858009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757377, + "CONCEPT_NAME" : "Protein and Glucose panel [Mass/volume] - Body fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54246-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3043821, + "CONCEPT_NAME" : "Protein and Glucose panel - Urine by Test strip", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45060-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45770185, + "CONCEPT_NAME" : "Provision of information about extensively hydrolysed infant formula", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "924431000000105", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4082504, + "CONCEPT_NAME" : "Pruritus of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "239102001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4150734, + "CONCEPT_NAME" : "Pseudomonas ophthalmia neonatorum", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "278930003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442419, + "CONCEPT_NAME" : "Puerperal cerebrovascular disorder - delivered", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "200330000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442418, + "CONCEPT_NAME" : "Puerperal cerebrovascular disorder - delivered with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200331001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 313272, + "CONCEPT_NAME" : "Puerperal cerebrovascular disorder with antenatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200332008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 313833, + "CONCEPT_NAME" : "Puerperal cerebrovascular disorder with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200333003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4328870, + "CONCEPT_NAME" : "Puerperal endometritis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "22399000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4065749, + "CONCEPT_NAME" : "Puerperal endometritis - delivered with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200181000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061463, + "CONCEPT_NAME" : "Puerperal endometritis with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200182007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4024972, + "CONCEPT_NAME" : "Puerperal pelvic cellulitis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12062007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4297611, + "CONCEPT_NAME" : "Puerperal pelvic sepsis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "77206006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4339312, + "CONCEPT_NAME" : "Puerperal peritonitis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "88178009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4062259, + "CONCEPT_NAME" : "Puerperal peritonitis with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200191006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4034154, + "CONCEPT_NAME" : "Puerperal pyrexia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237348005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435028, + "CONCEPT_NAME" : "Puerperal pyrexia of unknown origin", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200277008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434713, + "CONCEPT_NAME" : "Puerperal pyrexia of unknown origin - delivered with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200280009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432389, + "CONCEPT_NAME" : "Puerperal pyrexia of unknown origin with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200281008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4050255, + "CONCEPT_NAME" : "Puerperal salpingitis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "20932005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4062257, + "CONCEPT_NAME" : "Puerperal salpingitis with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200187001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4102318, + "CONCEPT_NAME" : "Puerperal sepsis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "2858002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4065753, + "CONCEPT_NAME" : "Puerperal sepsis with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200196001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3655209, + "CONCEPT_NAME" : "Pulmonary embolism due to and following ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "860680001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3655210, + "CONCEPT_NAME" : "Pulmonary embolism due to and following molar pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "860681002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4263344, + "CONCEPT_NAME" : "Pulmonary fibroplasia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "361195001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42600161, + "CONCEPT_NAME" : "Pulmonary nodular fibroplasia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "42661000009100", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED Veterinary", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4272315, + "CONCEPT_NAME" : "Purulent mastitis associated with childbirth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63662002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45765500, + "CONCEPT_NAME" : "Quadruplet birth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "702452007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442594, + "CONCEPT_NAME" : "Quadruplet pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "60810003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438481, + "CONCEPT_NAME" : "Quadruplet pregnancy - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199325005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440466, + "CONCEPT_NAME" : "Quadruplet pregnancy with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199326006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45757166, + "CONCEPT_NAME" : "Quadruplets, all live born", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10760701000119102", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45773428, + "CONCEPT_NAME" : "Quadruplets, some live born", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10760741000119100", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42539377, + "CONCEPT_NAME" : "Quadruplets with all four stillborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "762612009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40479425, + "CONCEPT_NAME" : "Quantitative measurement of concentration of glucose in peritoneal dialysis fluid at 4 hours postperitoneal dialysis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "444450007", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40484115, + "CONCEPT_NAME" : "Quantitative measurement of glucose in 1 hour postprandial urine specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "443924005", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40485034, + "CONCEPT_NAME" : "Quantitative measurement of glucose in 24 hour urine specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "444122000", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40479799, + "CONCEPT_NAME" : "Quantitative measurement of glucose in first peritoneal dialysis fluid specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "444499006", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40484114, + "CONCEPT_NAME" : "Quantitative measurement of glucose in pericardial fluid specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "443923004", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40484139, + "CONCEPT_NAME" : "Quantitative measurement of glucose in peritoneal dialysis fluid specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "443946002", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40485040, + "CONCEPT_NAME" : "Quantitative measurement of glucose in pleural fluid specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "444128001", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40479401, + "CONCEPT_NAME" : "Quantitative measurement of glucose in predialysis peritoneal dialysis fluid specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "444423002", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40483242, + "CONCEPT_NAME" : "Quantitative measurement of glucose in serum or plasma specimen 120 minutes after 75 gram oral glucose challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "443780009", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40484576, + "CONCEPT_NAME" : "Quantitative measurement of glucose in serum or plasma specimen 6 hours after glucose challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "444008003", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40484575, + "CONCEPT_NAME" : "Quantitative measurement of glucose in synovial fluid specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "444007008", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40485039, + "CONCEPT_NAME" : "Quantitative measurement of mass concentration of glucose in postcalorie fasting serum or plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "444127006", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40483659, + "CONCEPT_NAME" : "Quantitative measurement of substance rate of glucose excretion in urine", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "443842004", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4182146, + "CONCEPT_NAME" : "Quantity of lochia - finding", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "366299003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061423, + "CONCEPT_NAME" : "Questionable if pregnancy was planned", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169569009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45765501, + "CONCEPT_NAME" : "Quintuplet birth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "702453002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45757167, + "CONCEPT_NAME" : "Quintuplets, all live born", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10760781000119105", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45757168, + "CONCEPT_NAME" : "Quintuplets, some live born", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10760821000119100", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42538805, + "CONCEPT_NAME" : "Quintuplets with all five stillborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "762613004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3046853, + "CONCEPT_NAME" : "Race", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "32624-9", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Clinical Observation" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40484021, + "CONCEPT_NAME" : "Random blood glucose abnormal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "442545002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4153111, + "CONCEPT_NAME" : "Random blood glucose measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "271061004", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4042065, + "CONCEPT_NAME" : "Random blood sugar low", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "166891009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4042725, + "CONCEPT_NAME" : "Random blood sugar normal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "166890005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4055671, + "CONCEPT_NAME" : "Random blood sugar raised", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "166892002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40481539, + "CONCEPT_NAME" : "Random glucose level abnormal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "444925004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4149994, + "CONCEPT_NAME" : "Readmission for abortive pregnancy (NHS codes)", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "267195006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4113503, + "CONCEPT_NAME" : "Readmission for retained products of conception, legal termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198862007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4114280, + "CONCEPT_NAME" : "Readmission for retained products of conception, spontaneous abortion", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198861000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4150401, + "CONCEPT_NAME" : "Reason for termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "310506006", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Observable Entity" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4173350, + "CONCEPT_NAME" : "Recurrent apnea of newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276725001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 764688, + "CONCEPT_NAME" : "Red-green tinged lochia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "5361000124103", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 764646, + "CONCEPT_NAME" : "Red or brown-green tinged lochia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "4971000124107", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 77619, + "CONCEPT_NAME" : "Reduced fetal movement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276369006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4190767, + "CONCEPT_NAME" : "Referral for termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "415262008", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4081292, + "CONCEPT_NAME" : "Referral to antenatal clinic", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "183860003", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 46272536, + "CONCEPT_NAME" : "Referral to breastfeeding education class during prenatal period", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "710916001", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4084693, + "CONCEPT_NAME" : "Referral to obstetrics service", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "183548008", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4214930, + "CONCEPT_NAME" : "Refer to early pregnancy unit", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "417577000", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040000, + "CONCEPT_NAME" : "Reliability of last menstrual period observation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "53661-5", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Clinical Observation" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004342, + "CONCEPT_NAME" : "Removal of both fallopian tubes at same operative episode", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "66.51", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004546, + "CONCEPT_NAME" : "Removal of cerclage material from cervix", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "69.96", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110339, + "CONCEPT_NAME" : "Removal of cerclage suture under anesthesia (other than local)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59871", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4308664, + "CONCEPT_NAME" : "Removal of ectopic fetus from abdominal cavity", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "387709005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4227423, + "CONCEPT_NAME" : "Removal of ectopic fetus from fallopian tube without salpingectomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "88362001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4247895, + "CONCEPT_NAME" : "Removal of ectopic fetus from ovary without oophorectomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "73341009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004788, + "CONCEPT_NAME" : "Removal of extratubal ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "74.3", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "3-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4300391, + "CONCEPT_NAME" : "Removal of extrauterine ectopic fetus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "387710000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4309622, + "CONCEPT_NAME" : "Removal of hydatidiform mole", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "216209009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4153287, + "CONCEPT_NAME" : "Removal of products of conception from fallopian tube", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "271415006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004343, + "CONCEPT_NAME" : "Removal of remaining fallopian tube", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "66.52", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 192679, + "CONCEPT_NAME" : "Renal disease in pregnancy AND/OR puerperium without hypertension", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "75150001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45757120, + "CONCEPT_NAME" : "Renal failure after ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10752771000119100", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 195014, + "CONCEPT_NAME" : "Renal failure following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43629001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42537766, + "CONCEPT_NAME" : "Renal failure following molar pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "737327002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 197930, + "CONCEPT_NAME" : "Renal hypertension complicating pregnancy, childbirth and the puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198949009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 200157, + "CONCEPT_NAME" : "Renal hypertension complicating pregnancy, childbirth and the puerperium - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198951008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 192684, + "CONCEPT_NAME" : "Renal hypertension complicating pregnancy, childbirth and the puerperium - not delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198953006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4095115, + "CONCEPT_NAME" : "Renal tubular necrosis following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26235008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2109484, + "CONCEPT_NAME" : "Repair, initial inguinal hernia, preterm infant (younger than 37 weeks gestation at birth), performed from birth up to 50 weeks postconception age, with or without hydrocelectomy; incarcerated or strangulated", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "49492", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2109483, + "CONCEPT_NAME" : "Repair, initial inguinal hernia, preterm infant (younger than 37 weeks gestation at birth), performed from birth up to 50 weeks postconception age, with or without hydrocelectomy; reducible", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "49491", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004842, + "CONCEPT_NAME" : "Repair of current obstetric laceration of bladder and urethra", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "75.61", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004829, + "CONCEPT_NAME" : "Repair of current obstetric laceration of cervix", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "75.51", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004830, + "CONCEPT_NAME" : "Repair of current obstetric laceration of corpus uteri", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "75.52", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4230535, + "CONCEPT_NAME" : "Repair of current obstetric laceration of rectum and sphincter ani", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "359946000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004843, + "CONCEPT_NAME" : "Repair of current obstetric laceration of rectum and sphincter ani", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "75.62", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4319897, + "CONCEPT_NAME" : "Repair of current obstetric laceration of uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "9724000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004828, + "CONCEPT_NAME" : "Repair of current obstetric laceration of uterus, not otherwise specified", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "75.50", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4071642, + "CONCEPT_NAME" : "Repair of episiotomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177222006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4172666, + "CONCEPT_NAME" : "Repair of obstetric laceration of bladder and urethra", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "42390009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4135477, + "CONCEPT_NAME" : "Repair of obstetric laceration of cervix", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "31939001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004844, + "CONCEPT_NAME" : "Repair of other current obstetric laceration", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "75.69", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004831, + "CONCEPT_NAME" : "Repair of other current obstetric laceration", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "75.6", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "3-dig nonbill code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4033994, + "CONCEPT_NAME" : "Repair of right mediolateral episiotomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237025009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4086797, + "CONCEPT_NAME" : "Requests pregnancy termination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "184005004", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40482435, + "CONCEPT_NAME" : "Residual trophoblastic disease", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "445149007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 319138, + "CONCEPT_NAME" : "Respiratory condition of fetus OR newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "17849001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 258866, + "CONCEPT_NAME" : "Respiratory distress syndrome in the newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46775006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4173177, + "CONCEPT_NAME" : "Respiratory insufficiency syndrome of newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276536005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4318553, + "CONCEPT_NAME" : "Respiratory tract hemorrhage of the newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "95621004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4109090, + "CONCEPT_NAME" : "Resuture of episiotomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "285416007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4115155, + "CONCEPT_NAME" : "Resuture of episiotomy dehiscence", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "285417003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4003030, + "CONCEPT_NAME" : "Retained placenta", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "109894007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4129038, + "CONCEPT_NAME" : "Retained placenta and membranes", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "237294006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44782606, + "CONCEPT_NAME" : "Retained placenta due to morbidly adherent placenta", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "699949009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4003031, + "CONCEPT_NAME" : "Retained placental fragment", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "109895008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4150001, + "CONCEPT_NAME" : "Retained placenta or membranes with no hemorrhage", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "267273001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442078, + "CONCEPT_NAME" : "Retained placenta with no hemorrhage - delivered with postnatal problem", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "200037005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 200792, + "CONCEPT_NAME" : "Retained placenta with no hemorrhage with postnatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200038000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 200789, + "CONCEPT_NAME" : "Retained placenta, without hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "111453004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4064977, + "CONCEPT_NAME" : "Retained portion of placenta or membranes with no hemorrhage", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "200040005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 201642, + "CONCEPT_NAME" : "Retained portions of placenta AND/OR membranes without hemorrhage", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "111454005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4170121, + "CONCEPT_NAME" : "Retained products after miscarriage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "275425008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4062112, + "CONCEPT_NAME" : "Retained products with no hemorrhage with postnatal problem", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "200043007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 373766, + "CONCEPT_NAME" : "Retinopathy of prematurity", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "415297005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36684687, + "CONCEPT_NAME" : "Retinopathy of prematurity of left eye", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "338021000119106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36684686, + "CONCEPT_NAME" : "Retinopathy of prematurity of left eye stage 1 - demarcation line", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "338001000119102", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36684685, + "CONCEPT_NAME" : "Retinopathy of prematurity of left eye stage 2 - intraretinal ridge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "337991000119106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36684684, + "CONCEPT_NAME" : "Retinopathy of prematurity of left eye stage 3 - ridge with extraretinal fibrovascular proliferation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "337981000119108", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36684624, + "CONCEPT_NAME" : "Retinopathy of prematurity of right eye", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "332411000119108", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36684623, + "CONCEPT_NAME" : "Retinopathy of prematurity of right eye stage 1 - demarcation line", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "332391000119108", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36684622, + "CONCEPT_NAME" : "Retinopathy of prematurity of right eye stage 2 - intraretinal ridge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "332381000119105", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36684621, + "CONCEPT_NAME" : "Retinopathy of prematurity of right eye stage 3 - ridge with extraretinal fibrovascular proliferation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "332371000119107", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45772079, + "CONCEPT_NAME" : "Retinopathy of prematurity stage 0", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "124111000119102", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 375250, + "CONCEPT_NAME" : "Retinopathy of prematurity stage 1 - demarcation line", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "408847006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 375251, + "CONCEPT_NAME" : "Retinopathy of prematurity stage 2 - intraretinal ridge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "408848001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 379009, + "CONCEPT_NAME" : "Retinopathy of prematurity stage 3 - ridge with extraretinal fibrovascular proliferation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "408849009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443519, + "CONCEPT_NAME" : "Retinopathy of prematurity stage 4 - subtotal retinal detachment", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "408850009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443520, + "CONCEPT_NAME" : "Retinopathy of prematurity stage 5 - total retinal detachment", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "408851008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442549, + "CONCEPT_NAME" : "Retracted nipple associated with childbirth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "74955002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36713478, + "CONCEPT_NAME" : "Retracted nipple associated with childbirth with attachment difficulty", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "717819009", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437061, + "CONCEPT_NAME" : "Retracted nipple in pregnancy, the puerperium or lactation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200402001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435612, + "CONCEPT_NAME" : "Retracted nipple in pregnancy, the puerperium or lactation - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200404000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438823, + "CONCEPT_NAME" : "Retracted nipple in pregnancy, the puerperium or lactation with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200407007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45757159, + "CONCEPT_NAME" : "Retraction of nipple associated with lactation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10760301000119103", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45757160, + "CONCEPT_NAME" : "Retraction of nipple in pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10760341000119101", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4194811, + "CONCEPT_NAME" : "Retraction ring dystocia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "79414005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40490338, + "CONCEPT_NAME" : "Retrieval of oocyte by transabdominal approach", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "446934006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4035336, + "CONCEPT_NAME" : "Retromammary abscess associated with childbirth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15406009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4232323, + "CONCEPT_NAME" : "Retromammary mastitis associated with childbirth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "89672000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 196484, + "CONCEPT_NAME" : "Retroverted incarcerated gravid uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199466009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 198216, + "CONCEPT_NAME" : "Retroverted incarcerated gravid uterus - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199468005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 196486, + "CONCEPT_NAME" : "Retroverted incarcerated gravid uterus with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199470001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060560, + "CONCEPT_NAME" : "Retroverted incarcerated gravid uterus with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199471002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44790242, + "CONCEPT_NAME" : "Rhesus detailed scan", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "228711000000104", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 199891, + "CONCEPT_NAME" : "Rhesus isoimmunization affecting pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "44795003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 195878, + "CONCEPT_NAME" : "Rhesus isoimmunization - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199582007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 192376, + "CONCEPT_NAME" : "Rhesus isoimmunization with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199583002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061158, + "CONCEPT_NAME" : "Rhesus screening - 1st pregnancy sample", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169676009", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061159, + "CONCEPT_NAME" : "Rhesus screening - 2nd pregnancy sample", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169677000", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061806, + "CONCEPT_NAME" : "Rhesus screening - 3rd pregnancy sample", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169678005", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3023524, + "CONCEPT_NAME" : "Rh immune globulin screen [interpretation]", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1314-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4127253, + "CONCEPT_NAME" : "Right mediolateral episiotomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "236992007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4074424, + "CONCEPT_NAME" : "Right salpingectomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "176916000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4072837, + "CONCEPT_NAME" : "Right salpingo-oophorectomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "176914002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4047564, + "CONCEPT_NAME" : "Routine antenatal care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "134435003", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4121924, + "CONCEPT_NAME" : "Routine episiotomy and repair", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "288194000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110315, + "CONCEPT_NAME" : "Routine obstetric care including antepartum care, cesarean delivery, and postpartum care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59510", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110322, + "CONCEPT_NAME" : "Routine obstetric care including antepartum care, cesarean delivery, and postpartum care, following attempted vaginal delivery after previous cesarean delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59618", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110307, + "CONCEPT_NAME" : "Routine obstetric care including antepartum care, vaginal delivery (with or without episiotomy, and/or forceps) and postpartum care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59400", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110319, + "CONCEPT_NAME" : "Routine obstetric care including antepartum care, vaginal delivery (with or without episiotomy, and/or forceps) and postpartum care, after previous cesarean delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59610", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44790189, + "CONCEPT_NAME" : "Routine obstetric scan", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "228471000000102", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36713471, + "CONCEPT_NAME" : "Routine postpartum follow-up", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "717810008", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4102697, + "CONCEPT_NAME" : "Rubella cataract", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "253227001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4275129, + "CONCEPT_NAME" : "Rubella myocarditis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64190005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4338888, + "CONCEPT_NAME" : "Rubella retinopathy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "231985001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4049040, + "CONCEPT_NAME" : "Rumination in newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206565007", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4304587, + "CONCEPT_NAME" : "Ruptured Descemet membrane due to birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "419743001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4323287, + "CONCEPT_NAME" : "Rupture of cord", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "70603007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 198816, + "CONCEPT_NAME" : "Rupture of uterus before labor - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199960005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 192699, + "CONCEPT_NAME" : "Rupture of uterus during and after labor - delivered", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "199964001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4064960, + "CONCEPT_NAME" : "Rupture of uterus during and after labor - delivered with postnatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199965000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 194106, + "CONCEPT_NAME" : "Rupture of uterus during AND/OR after labor", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "69270005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45757588, + "CONCEPT_NAME" : "Rupture of uterus during labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "23431000119106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110247, + "CONCEPT_NAME" : "Salpingectomy, complete or partial, unilateral or bilateral (separate procedure)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "58700", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4032000, + "CONCEPT_NAME" : "Salpingectomy of remaining fallopian tube", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "14353000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004346, + "CONCEPT_NAME" : "Salpingectomy with removal of tubal pregnancy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "66.62", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4316051, + "CONCEPT_NAME" : "Salpingitis following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "9516007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4021363, + "CONCEPT_NAME" : "Salpingo-oophorectomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "116028008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4073272, + "CONCEPT_NAME" : "Salpingo-oophorectomy of remaining solitary fallopian tube and ovary", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "176909001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4239009, + "CONCEPT_NAME" : "Salpingo-oophoritis following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57468008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004351, + "CONCEPT_NAME" : "Salpingo-oophorostomy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "66.72", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004362, + "CONCEPT_NAME" : "Salpingo-salpingostomy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "66.73", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004308, + "CONCEPT_NAME" : "Salpingostomy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "66.02", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4263669, + "CONCEPT_NAME" : "Salpingostomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "60463004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110253, + "CONCEPT_NAME" : "Salpingostomy (salpingoneostomy)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "58770", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004307, + "CONCEPT_NAME" : "Salpingotomy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "66.01", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004306, + "CONCEPT_NAME" : "Salpingotomy and salpingostomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "66.0", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "3-dig nonbill code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4174422, + "CONCEPT_NAME" : "Sampling injury to scalp during birth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276705000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4120817, + "CONCEPT_NAME" : "Sampling of chorionic villus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "303720006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4071592, + "CONCEPT_NAME" : "Scalp abrasions due to birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206203003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4047853, + "CONCEPT_NAME" : "Scalp bruising due to birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206204009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 133028, + "CONCEPT_NAME" : "Scalp injuries due to birth trauma", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "206199003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4301415, + "CONCEPT_NAME" : "Scalp injury due to vacuum extraction", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "403849006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 136530, + "CONCEPT_NAME" : "Sclerema neonatorum", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206539008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4174577, + "CONCEPT_NAME" : "Secondary abdominal pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276881003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40318195, + "CONCEPT_NAME" : "Secondary amenorrhea", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "156036003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37206228, + "CONCEPT_NAME" : "Secondary hemorrhage due to and following illegally induced termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "785869007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37206227, + "CONCEPT_NAME" : "Secondary hemorrhage due to and following induced termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "785868004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37206229, + "CONCEPT_NAME" : "Secondary hemorrhage due to and following legally induced termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "785870008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4173636, + "CONCEPT_NAME" : "Secondary perineal tear in the puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "42537006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4312727, + "CONCEPT_NAME" : "Secondary physiologic amenorrhea", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86030004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4065618, + "CONCEPT_NAME" : "Secondary postpartum hemorrhage - delivered with postnatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200025008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 192974, + "CONCEPT_NAME" : "Secondary uterine inertia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43715006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 192384, + "CONCEPT_NAME" : "Secondary uterine inertia - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199824001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 197346, + "CONCEPT_NAME" : "Secondary uterine inertia with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199825000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 198492, + "CONCEPT_NAME" : "Second degree perineal laceration", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6234006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 198499, + "CONCEPT_NAME" : "Second degree perineal tear during delivery - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199925004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 197337, + "CONCEPT_NAME" : "Second degree perineal tear during delivery with postnatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199926003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4327745, + "CONCEPT_NAME" : "Second trimester bleeding", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "430881000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4244438, + "CONCEPT_NAME" : "Second trimester pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59466002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3049229, + "CONCEPT_NAME" : "Second trimester quad maternal screen [Interpretation] in Serum or Plasma Narrative", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "49092-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4083415, + "CONCEPT_NAME" : "Seen in antenatal clinic", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "185226003", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4260976, + "CONCEPT_NAME" : "Seen in fetal medicine clinic", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "440580005", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4089029, + "CONCEPT_NAME" : "Seen in postnatal clinic", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "185266004", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4186827, + "CONCEPT_NAME" : "Seizures complicating infection in the newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "372441001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4159149, + "CONCEPT_NAME" : "Seizures complicating intracranial hemorrhage in the newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "371107004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 762709, + "CONCEPT_NAME" : "Seizures in the newborn, non-refractory", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "430871000124109", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 762579, + "CONCEPT_NAME" : "Seizures in the newborn, refractory", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429171000124105", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4096674, + "CONCEPT_NAME" : "Self-induced hyperinsulinemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "190429008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4147409, + "CONCEPT_NAME" : "Self-monitoring of blood and urine glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "308115004", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4146454, + "CONCEPT_NAME" : "Self-monitoring of blood glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "308113006", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4147408, + "CONCEPT_NAME" : "Self-monitoring of urine glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "308114000", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4091293, + "CONCEPT_NAME" : "Sensitive pregnancy test", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "252161000", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4264738, + "CONCEPT_NAME" : "Separation of symphysis pubis during delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "61007003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4009954, + "CONCEPT_NAME" : "Sepsis during labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1125006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060807, + "CONCEPT_NAME" : "Sepsis during labor with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199711007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4187090, + "CONCEPT_NAME" : "Sepsis following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46848006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37116435, + "CONCEPT_NAME" : "Sepsis following obstructed labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "733142005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42536689, + "CONCEPT_NAME" : "Sepsis of neonate caused by Streptococcus pyogenes", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "735637004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4048275, + "CONCEPT_NAME" : "Sepsis of newborn due to anaerobes", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206380000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 46270041, + "CONCEPT_NAME" : "Sepsis of newborn due to group B Streptococcus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "127091000119100", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 763027, + "CONCEPT_NAME" : "Sepsis of newborn due to Streptococcus agalactiae", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "435181000124108", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4071063, + "CONCEPT_NAME" : "Sepsis of the newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206376005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3655212, + "CONCEPT_NAME" : "Septic embolism due to and following ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "860683004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3655211, + "CONCEPT_NAME" : "Septic embolism due to and following molar pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "860682009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 137371, + "CONCEPT_NAME" : "Septicemia of newborn", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "41229001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4080587, + "CONCEPT_NAME" : "Septic shock following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "24051007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4042760, + "CONCEPT_NAME" : "Serum 2-hr post-prandial glucose measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "167088001", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4161969, + "CONCEPT_NAME" : "Serum alpha-fetoprotein level elevated", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "399643001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4275335, + "CONCEPT_NAME" : "Serum alpha-fetoprotein level - finding", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "365804002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4195345, + "CONCEPT_NAME" : "Serum alpha-fetoprotein multiple of median measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313868001", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4041723, + "CONCEPT_NAME" : "Serum fasting glucose measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "167087006", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4210722, + "CONCEPT_NAME" : "Serum free beta human chorionic gonadotrophin measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313872002", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4195509, + "CONCEPT_NAME" : "Serum free beta human chorionic gonadotropin multiple of median measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "314070003", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4198892, + "CONCEPT_NAME" : "Serum human chorionic gonadotropin multiple of median measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313866002", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4156811, + "CONCEPT_NAME" : "Serum insulin - C-polypeptide measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "271227006", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4150492, + "CONCEPT_NAME" : "Serum insulin measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "271226002", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4041161, + "CONCEPT_NAME" : "Serum pregnancy test (B-HCG)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "166434005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4042412, + "CONCEPT_NAME" : "Serum pregnancy test positive", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "166437003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4042759, + "CONCEPT_NAME" : "Serum random glucose measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "167086002", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4042751, + "CONCEPT_NAME" : "Serum total HCG measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "167037004", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432427, + "CONCEPT_NAME" : "Severe birth asphyxia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57284007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4121417, + "CONCEPT_NAME" : "Severe birth asphyxia, APGAR 0-3", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "287985008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4153452, + "CONCEPT_NAME" : "Severe birth asphyxia - apgar score less than 4 at 1 minute", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "268829008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4032345, + "CONCEPT_NAME" : "Severe hyperemesis gravidarum", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "129598007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4029420, + "CONCEPT_NAME" : "Severe hyperglycemia due to diabetes mellitus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237621004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36675039, + "CONCEPT_NAME" : "Severe neonatal onset encephalopathy with microcephaly", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "771303004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4129184, + "CONCEPT_NAME" : "Severe postnatal depression", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237350002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4129843, + "CONCEPT_NAME" : "Severe postnatal psychosis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237352005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433536, + "CONCEPT_NAME" : "Severe pre-eclampsia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46764007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438490, + "CONCEPT_NAME" : "Severe pre-eclampsia - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198983002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439077, + "CONCEPT_NAME" : "Severe pre-eclampsia - delivered with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198984008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 132685, + "CONCEPT_NAME" : "Severe pre-eclampsia - not delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198985009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4057976, + "CONCEPT_NAME" : "Severe pre-eclampsia with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198986005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4172871, + "CONCEPT_NAME" : "Severe transient tachypnea of newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276532007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4092760, + "CONCEPT_NAME" : "Sex of baby at delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "281053000", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Observable Entity" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45765502, + "CONCEPT_NAME" : "Sextuplet birth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "702454008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45772082, + "CONCEPT_NAME" : "Sextuplets, all live born", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10760861000119105", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45757169, + "CONCEPT_NAME" : "Sextuplets, some live born", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10760901000119104", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42538806, + "CONCEPT_NAME" : "Sextuplets with all six stillborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "762614005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4127241, + "CONCEPT_NAME" : "Shirodkar's cervical cerclage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "236947000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442271, + "CONCEPT_NAME" : "Shock following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "69344006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438226, + "CONCEPT_NAME" : "Short cord", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59795007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435020, + "CONCEPT_NAME" : "Short cord - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199889008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437946, + "CONCEPT_NAME" : "Short cord with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199890004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 80474, + "CONCEPT_NAME" : "Shoulder dystocia - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199783004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 75608, + "CONCEPT_NAME" : "Shoulder dystocia with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199784005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 72377, + "CONCEPT_NAME" : "Shoulder girdle dystocia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "89700002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4170152, + "CONCEPT_NAME" : "Simpson's forceps delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "275169009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014295, + "CONCEPT_NAME" : "Single live birth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169826009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40483521, + "CONCEPT_NAME" : "Single liveborn born in hospital by cesarean section", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "442423001", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36713074, + "CONCEPT_NAME" : "Single liveborn born in hospital by vaginal delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "17561000119102", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014454, + "CONCEPT_NAME" : "Single stillbirth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169827000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36713465, + "CONCEPT_NAME" : "Singleton liveborn born in hospital", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "717803002", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 257370, + "CONCEPT_NAME" : "Skeletal injury due to birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "240314005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4122747, + "CONCEPT_NAME" : "Skin surrounding umbilical cord stump pink", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "289326007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4126736, + "CONCEPT_NAME" : "Skin surrounding umbilical cord stump red", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "289325006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 46284319, + "CONCEPT_NAME" : "Skull injury due to birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "944051000000105", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4166847, + "CONCEPT_NAME" : "Slipped umbilical ligature with hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45549002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4087113, + "CONCEPT_NAME" : "Slow fetal growth AND/OR fetal malnutrition", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "18471004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4174056, + "CONCEPT_NAME" : "Slow slope active phase of labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "49279000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3174052, + "CONCEPT_NAME" : "Slow transition to extrauterine life", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "9270001000004104", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "Nebraska Lexicon", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4064286, + "CONCEPT_NAME" : "Small-for-dates baby", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199612005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4150640, + "CONCEPT_NAME" : "Snuffles in newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "271375003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4162239, + "CONCEPT_NAME" : "Somogyi phenomenon", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "398140007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3050414, + "CONCEPT_NAME" : "Sonographer name", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "49088-8", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Clinical Observation" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4318858, + "CONCEPT_NAME" : "Spastic ileus of the newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "95626009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4165092, + "CONCEPT_NAME" : "Spastic paralysis due to birth injury", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40980002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4102446, + "CONCEPT_NAME" : "Spastic paralysis due to intracranial birth injury", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "28534004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4194977, + "CONCEPT_NAME" : "Spastic paralysis due to spinal birth injury", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "79591004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2213358, + "CONCEPT_NAME" : "Sperm isolation; complex prep (eg, Percoll gradient, albumin gradient) for insemination or diagnosis with semen analysis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "89261", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2213357, + "CONCEPT_NAME" : "Sperm isolation; simple prep (eg, sperm wash and swim-up) for insemination or diagnosis with semen analysis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "89260", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110198, + "CONCEPT_NAME" : "Sperm washing for artificial insemination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "58323", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44784365, + "CONCEPT_NAME" : "Spinal cord injury due to birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "698500002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4047857, + "CONCEPT_NAME" : "Spinal cord laceration due to birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206223002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4070526, + "CONCEPT_NAME" : "Spinal cord rupture due to birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206224008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44784364, + "CONCEPT_NAME" : "Spine injury due to birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "698499006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 77679, + "CONCEPT_NAME" : "Spine or spinal cord injury due to birth trauma", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "206220004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4169992, + "CONCEPT_NAME" : "Spleen injury due to birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "275364007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4150803, + "CONCEPT_NAME" : "Spleen rupture due to birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "268826001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4073422, + "CONCEPT_NAME" : "Spontaneous breech delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177157003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4008578, + "CONCEPT_NAME" : "Spontaneous hypoglycemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "111559003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 761781, + "CONCEPT_NAME" : "Spontaneous intracerebral hemorrhage in neonate", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15984991000119103", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4309364, + "CONCEPT_NAME" : "Spontaneous onset of labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84457005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015143, + "CONCEPT_NAME" : "Spontaneous rupture of fetal membranes", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169734005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4167497, + "CONCEPT_NAME" : "Spontaneous unassisted delivery, medical personnel present", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48204000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4205240, + "CONCEPT_NAME" : "Spontaneous vertex delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "309469004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 198212, + "CONCEPT_NAME" : "Spotting per vagina in pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "284075002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4091461, + "CONCEPT_NAME" : "Standard pregnancy test", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "252160004", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4298015, + "CONCEPT_NAME" : "Staphylococcal omphalitis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "403841009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40406337, + "CONCEPT_NAME" : "Stillbirth", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "206581002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443213, + "CONCEPT_NAME" : "Stillbirth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237364002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4287409, + "CONCEPT_NAME" : "Stillbirth of immature female (500-999 gms.)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "68509000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4217655, + "CONCEPT_NAME" : "Stillbirth of immature fetus, sex undetermined (500-999 gms.)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72543004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4261819, + "CONCEPT_NAME" : "Stillbirth of immature male (500-999 gms.)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "35608009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4321563, + "CONCEPT_NAME" : "Stillbirth of mature female (2500 gms. or more)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "70112005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4301269, + "CONCEPT_NAME" : "Stillbirth of mature male (2500 gms. or more)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7860005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4103876, + "CONCEPT_NAME" : "Stillbirth of premature female (1000-2499 gms.)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "28996007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4300979, + "CONCEPT_NAME" : "Stillbirth of premature male (1000-2499 gms.)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "77814006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443463, + "CONCEPT_NAME" : "Stillbirth - unknown if fetal death intrapartum or prior to labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "408796008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2721254, + "CONCEPT_NAME" : "Stimulated intrauterine insemination (iui), case rate", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "S4035", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4301412, + "CONCEPT_NAME" : "Streptococcal omphalitis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "403843007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4168056, + "CONCEPT_NAME" : "Stroke in the puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "275434003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4174198, + "CONCEPT_NAME" : "Subareolar abscess associated with childbirth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "49364005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4047868, + "CONCEPT_NAME" : "Subcutaneous fat necrosis due to birth injury", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206254003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 378544, + "CONCEPT_NAME" : "Subdural and cerebral hemorrhage due to birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206188000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4130539, + "CONCEPT_NAME" : "Subdural hemorrhage due to birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "126941005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4095178, + "CONCEPT_NAME" : "Subdural hemorrhage due to intrapartum anoxia AND/OR hypoxia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25004000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4183593, + "CONCEPT_NAME" : "Subdural hemorrhage in fetus or newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43602006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42538556, + "CONCEPT_NAME" : "Subgaleal epicranial subaponeurotic hemorrhage due to birth injury", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "762286005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4030259, + "CONCEPT_NAME" : "Sub-involution of uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13842006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4063159, + "CONCEPT_NAME" : "Subluxation of symphysis pubis in pregnancy, childbirth and the puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199308008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4205437, + "CONCEPT_NAME" : "Submammary abscess associated with childbirth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55472006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4300419, + "CONCEPT_NAME" : "Submammary mastitis associated with childbirth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "77913004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42739013, + "CONCEPT_NAME" : "Subsequent hospital care, for the evaluation and management of a normal newborn, per day", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "99433", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2514557, + "CONCEPT_NAME" : "Subsequent hospital care, per day, for evaluation and management of normal newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "99462", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42739550, + "CONCEPT_NAME" : "Subsequent inpatient neonatal critical care, per day, for the evaluation and management of a critically ill neonate, 28 days of age or less", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "99296", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2514564, + "CONCEPT_NAME" : "Subsequent inpatient neonatal critical care, per day, for the evaluation and management of a critically ill neonate, 28 days of age or younger", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "99469", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2514572, + "CONCEPT_NAME" : "Subsequent intensive care, per day, for the evaluation and management of the recovering infant (present body weight of 2501-5000 grams)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "99480", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42740403, + "CONCEPT_NAME" : "Subsequent intensive care, per day, for the evaluation and management of the recovering low birth weight infant (present body weight of 1500-2500 g)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "99299", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2514571, + "CONCEPT_NAME" : "Subsequent intensive care, per day, for the evaluation and management of the recovering low birth weight infant (present body weight of 1500-2500 grams)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "99479", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42739401, + "CONCEPT_NAME" : "Subsequent intensive care, per day, for the evaluation and management of the recovering very low birth weight infant (present body weight less than 1500 g)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "99298", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2514570, + "CONCEPT_NAME" : "Subsequent intensive care, per day, for the evaluation and management of the recovering very low birth weight infant (present body weight less than 1500 grams)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "99478", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2101831, + "CONCEPT_NAME" : "Subsequent prenatal care visit (Prenatal) [Excludes: patients who are seen for a condition unrelated to pregnancy or prenatal care (eg, an upper respiratory infection; patients seen for consultation only, not for continuing care)]", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "0502F", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110318, + "CONCEPT_NAME" : "Subtotal or total hysterectomy after cesarean delivery (List separately in addition to code for primary procedure)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59525", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4022098, + "CONCEPT_NAME" : "Subzonal insemination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "225249007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4150538, + "CONCEPT_NAME" : "Suction evacuation of retained products of conception", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "310604000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4027161, + "CONCEPT_NAME" : "Superficial hematoma in fetus OR newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10742003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442058, + "CONCEPT_NAME" : "Superficial thrombophlebitis in pregnancy and the puerperium", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "200222004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439094, + "CONCEPT_NAME" : "Superficial thrombophlebitis in pregnancy and the puerperium - delivered", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "200224003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439095, + "CONCEPT_NAME" : "Superficial thrombophlebitis in pregnancy and the puerperium - delivered with postnatal complication", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "267283002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435331, + "CONCEPT_NAME" : "Superficial thrombophlebitis in pregnancy and the puerperium with antenatal complication", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "200226001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435332, + "CONCEPT_NAME" : "Superficial thrombophlebitis in pregnancy and the puerperium with postnatal complication", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "200227005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4143293, + "CONCEPT_NAME" : "Superficial thrombophlebitis in puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "308137006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4150337, + "CONCEPT_NAME" : "Supper time blood glucose measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "271064007", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 79098, + "CONCEPT_NAME" : "Suppressed lactation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "30506002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 76770, + "CONCEPT_NAME" : "Suppressed lactation with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200442006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3017439, + "CONCEPT_NAME" : "Surfactant/Albumin [Mass Ratio] in Amniotic fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "30562-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4073432, + "CONCEPT_NAME" : "Surgical induction of labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177129005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110295, + "CONCEPT_NAME" : "Surgical treatment of ectopic pregnancy; abdominal pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59130", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110298, + "CONCEPT_NAME" : "Surgical treatment of ectopic pregnancy; cervical, with evacuation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59140", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110296, + "CONCEPT_NAME" : "Surgical treatment of ectopic pregnancy; interstitial, uterine pregnancy requiring total hysterectomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59135", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110297, + "CONCEPT_NAME" : "Surgical treatment of ectopic pregnancy; interstitial, uterine pregnancy with partial resection of uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59136", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110293, + "CONCEPT_NAME" : "Surgical treatment of ectopic pregnancy; tubal or ovarian, requiring salpingectomy and/or oophorectomy, abdominal or vaginal approach", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59120", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110294, + "CONCEPT_NAME" : "Surgical treatment of ectopic pregnancy; tubal or ovarian, without salpingectomy and/or oophorectomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59121", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530886, + "CONCEPT_NAME" : "Suspected fetal damage from disease in the mother", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609420007", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530888, + "CONCEPT_NAME" : "Suspected fetal damage from radiation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609422004", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434480, + "CONCEPT_NAME" : "Syndrome of infant of diabetic mother", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "21584002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42538560, + "CONCEPT_NAME" : "Syndrome of infant of mother with gestational diabetes", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "762291006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 436171, + "CONCEPT_NAME" : "Syphilis in mother complicating pregnancy, childbirth AND/OR puerperium", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "34242002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4129023, + "CONCEPT_NAME" : "Teenage pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237240001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4079854, + "CONCEPT_NAME" : "Tentorial laceration - acute syndrome", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276590002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4171107, + "CONCEPT_NAME" : "Tentorial laceration - subacute syndrome", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276591003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4227728, + "CONCEPT_NAME" : "Term birth of fraternal twins, both living", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87662006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4306288, + "CONCEPT_NAME" : "Term birth of fraternal twins, both stillborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "83121003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4330570, + "CONCEPT_NAME" : "Term birth of fraternal twins, one living, one stillborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "22514005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4049333, + "CONCEPT_NAME" : "Term birth of identical twins, both living", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15467003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4192641, + "CONCEPT_NAME" : "Term birth of identical twins, both stillborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "75697004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4243026, + "CONCEPT_NAME" : "Term birth of identical twins, one living, one stillborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "38257001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4066292, + "CONCEPT_NAME" : "Term birth of multiple newborns", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "17333005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4193224, + "CONCEPT_NAME" : "Term birth of newborn quadruplets", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7888004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336090, + "CONCEPT_NAME" : "Term birth of newborn quintuplets", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86803008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4199146, + "CONCEPT_NAME" : "Term birth of newborn sextuplets", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "52483005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4307237, + "CONCEPT_NAME" : "Term birth of newborn triplets", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "8333008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4178275, + "CONCEPT_NAME" : "Term birth of newborn twins", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "50758004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4203001, + "CONCEPT_NAME" : "Term birth of stillborn twins", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "52942000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4297250, + "CONCEPT_NAME" : "Termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "386639001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4240605, + "CONCEPT_NAME" : "Termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57797005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43020954, + "CONCEPT_NAME" : "Termination of pregnancy after first trimester", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "472839005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40258875, + "CONCEPT_NAME" : "Termination of pregnancy NEC", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "176831008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530907, + "CONCEPT_NAME" : "Termination of pregnancy with complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609446006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4212260, + "CONCEPT_NAME" : "Term infant", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57891003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336958, + "CONCEPT_NAME" : "Term pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87527008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4296038, + "CONCEPT_NAME" : "Tetanus complicating ectopic AND/OR molar pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "76843005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 133024, + "CONCEPT_NAME" : "Tetanus neonatorum", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43424001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4189561, + "CONCEPT_NAME" : "Therapeutic termination of pregnancy by aspiration curettage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "391896006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4030009, + "CONCEPT_NAME" : "Therapeutic termination of pregnancy by insertion of laminaria", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10763001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4299609, + "CONCEPT_NAME" : "Therapeutic termination of pregnancy procedure", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "386641000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 193830, + "CONCEPT_NAME" : "Third degree perineal laceration", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10217006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 193275, + "CONCEPT_NAME" : "Third degree perineal tear during delivery - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199930000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 199097, + "CONCEPT_NAME" : "Third degree perineal tear during delivery with postnatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199931001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 197625, + "CONCEPT_NAME" : "Third stage hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "47236005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37311704, + "CONCEPT_NAME" : "Third stage hemorrhage due to retention of placenta", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "820947007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 200469, + "CONCEPT_NAME" : "Third-stage postpartum hemorrhage - delivered with postnatal problem", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "200015003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060183, + "CONCEPT_NAME" : "Third-stage postpartum hemorrhage with postnatal problem", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "200016002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4142581, + "CONCEPT_NAME" : "Third trimester bleeding", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "427139004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4218813, + "CONCEPT_NAME" : "Third trimester pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "41587001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4180111, + "CONCEPT_NAME" : "Third trimester pregnancy less than 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429240000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444082, + "CONCEPT_NAME" : "Threatened labor, without delivery", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "37486004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440457, + "CONCEPT_NAME" : "Threatened miscarriage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54048003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4252252, + "CONCEPT_NAME" : "Threatened miscarriage in first trimester", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "73790007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4294259, + "CONCEPT_NAME" : "Threatened miscarriage in second trimester", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "75933004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4032055, + "CONCEPT_NAME" : "Threatened miscarriage in third trimester", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10884004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3186670, + "CONCEPT_NAME" : "Threatened premature labor - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "480001000004104", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "Nebraska Lexicon", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 139888, + "CONCEPT_NAME" : "Threatened premature labor - not delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199049003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36713271, + "CONCEPT_NAME" : "Three dimensional obstetric ultrasonography", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "5231000179108", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36713272, + "CONCEPT_NAME" : "Three dimensional obstetric ultrasonography in third trimester", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "5241000179100", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4222152, + "CONCEPT_NAME" : "Thrombophlebitis in puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "83916000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442300, + "CONCEPT_NAME" : "Thyroid disease in mother complicating pregnancy, childbirth AND/OR puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59136001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 136755, + "CONCEPT_NAME" : "Thyroid dysfunction during pregnancy - baby delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199237009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 138479, + "CONCEPT_NAME" : "Thyroid dysfunction during pregnancy - baby not yet delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199239007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 139895, + "CONCEPT_NAME" : "Thyroid dysfunction during pregnancy, childbirth and the puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199235001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 138207, + "CONCEPT_NAME" : "Thyroid dysfunction in the puerperium - baby delivered during current episode of care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199238004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 138484, + "CONCEPT_NAME" : "Thyroid dysfunction in the puerperium - baby delivered during previous episode of care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199240009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2213255, + "CONCEPT_NAME" : "Tissue culture for non-neoplastic disorders; amniotic fluid or chorionic villus cells", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "88235", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4019096, + "CONCEPT_NAME" : "Total abdominal hysterectomy with bilateral salpingo-oophorectomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "116144002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4214677, + "CONCEPT_NAME" : "Total beta human chorionic gonadotrophin level", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "394721004", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004331, + "CONCEPT_NAME" : "Total bilateral salpingectomy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "66.5", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "3-dig nonbill code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4204679, + "CONCEPT_NAME" : "Total breech delivery with forceps to aftercoming head", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54973000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44789306, + "CONCEPT_NAME" : "Total human chorionic gonadotropin measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "195261000000107", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004330, + "CONCEPT_NAME" : "Total unilateral salpingectomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "66.4", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "3-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 141370, + "CONCEPT_NAME" : "Toxic erythema", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "58767000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061350, + "CONCEPT_NAME" : "Toxic reaction to local anesthesia during the puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200070000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110288, + "CONCEPT_NAME" : "Transabdominal amnioinfusion, including ultrasound guidance", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59070", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4169966, + "CONCEPT_NAME" : "Transabdominal chorionic villus biopsy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "275223004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4169965, + "CONCEPT_NAME" : "Transcervical sampling of chorionic villus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "275222009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44790511, + "CONCEPT_NAME" : "Transfer of embryo to uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "233111000000108", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441922, + "CONCEPT_NAME" : "Transient hypertension of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237279007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 137940, + "CONCEPT_NAME" : "Transient hypertension of pregnancy - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198965005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 141639, + "CONCEPT_NAME" : "Transient hypertension of pregnancy - delivered with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198966006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 136760, + "CONCEPT_NAME" : "Transient hypertension of pregnancy - not delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198967002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4173327, + "CONCEPT_NAME" : "Transient hypothyroxinemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276629001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4079845, + "CONCEPT_NAME" : "Transient neonatal colitis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276523005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4129378, + "CONCEPT_NAME" : "Transient neonatal diabetes mellitus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237603002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433604, + "CONCEPT_NAME" : "Transient neonatal disorder of coagulation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "32605001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42536567, + "CONCEPT_NAME" : "Transient neonatal hypoglycemia due to hyperinsulinemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "735496003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439149, + "CONCEPT_NAME" : "Transient neonatal neutropenia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55444004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36716753, + "CONCEPT_NAME" : "Transient neonatal neutropenia due to congenital viral infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "722925004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36716754, + "CONCEPT_NAME" : "Transient neonatal neutropenia due to neonatal bacterial sepsis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "722926003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4033200, + "CONCEPT_NAME" : "Transient neonatal pustulosis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "239092005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435076, + "CONCEPT_NAME" : "Transient neonatal thrombocytopenia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "23205009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4048930, + "CONCEPT_NAME" : "Transient neonatal thrombocytopenia due to exchange transfusion", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206510008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4049028, + "CONCEPT_NAME" : "Transient neonatal thrombocytopenia due to idiopathic maternal thrombocytopenia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206511007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4048742, + "CONCEPT_NAME" : "Transient neonatal thrombocytopenia due to isoimmunization", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206512000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42536568, + "CONCEPT_NAME" : "Transitory iatrogenic neonatal hypoglycemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "735497007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 198870, + "CONCEPT_NAME" : "Transitory ileus of newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "82368005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4173172, + "CONCEPT_NAME" : "Transitory ileus of prematurity", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276520008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 436234, + "CONCEPT_NAME" : "Transitory neonatal electrolyte disturbance", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12901004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433314, + "CONCEPT_NAME" : "Transitory neonatal endocrine AND/OR metabolic disorder", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "111472004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4071744, + "CONCEPT_NAME" : "Transitory neonatal hyperkalemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206491006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4048620, + "CONCEPT_NAME" : "Transitory neonatal hypernatremia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206489003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4171099, + "CONCEPT_NAME" : "Transitory neonatal hypoglycemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276561008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 321683, + "CONCEPT_NAME" : "Transitory tachypnea of newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7550008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40490447, + "CONCEPT_NAME" : "Transmyometrial transfer of embryo to uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "448543003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4324606, + "CONCEPT_NAME" : "Transvaginal nuchal ultrasonography", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "430063002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4335250, + "CONCEPT_NAME" : "Transvaginal obstetric doppler ultrasonography", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "432246004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4324607, + "CONCEPT_NAME" : "Transvaginal obstetric ultrasonography", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "430064008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4073406, + "CONCEPT_NAME" : "Transvaginal oocyte recovery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177042008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40490322, + "CONCEPT_NAME" : "Transvaginal ultrasonography to determine the estimated date of confinement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "446920006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4063171, + "CONCEPT_NAME" : "Transverse lie - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199362007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 81358, + "CONCEPT_NAME" : "Transverse OR oblique presentation of fetus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "11914001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4104199, + "CONCEPT_NAME" : "Trapped placenta", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "29171003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4174854, + "CONCEPT_NAME" : "Trauma from instrument during delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "42599006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4267072, + "CONCEPT_NAME" : "Traumatic extension of episiotomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36497006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4071600, + "CONCEPT_NAME" : "Traumatic glaucoma due to birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206248004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36716539, + "CONCEPT_NAME" : "Traumatic hemorrhage of cerebellum due to birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "722575008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36716739, + "CONCEPT_NAME" : "Traumatic hemorrhage of intracranial epidural space due to birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "722909009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439093, + "CONCEPT_NAME" : "Traumatic lesion during delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64229006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42536749, + "CONCEPT_NAME" : "Traumatic subluxation of spine due to birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "735743006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432975, + "CONCEPT_NAME" : "Trauma to perineum and/or vulva during delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "267268007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4161678, + "CONCEPT_NAME" : "Trauma to perineum during delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "397952002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3655718, + "CONCEPT_NAME" : "Trauma to urethra and bladder during delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "866229004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4134431, + "CONCEPT_NAME" : "Trauma to vagina during delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "128077009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4326563, + "CONCEPT_NAME" : "Trauma to vulva during delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7504005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2111055, + "CONCEPT_NAME" : "Treatment of extensive or progressive retinopathy, 1 or more sessions, preterm infant (less than 37 weeks gestation at birth), performed from birth up to 1 year of age (eg, retinopathy of prematurity), photocoagulation or cryotherapy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "67229", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110325, + "CONCEPT_NAME" : "Treatment of incomplete abortion, any trimester, completed surgically", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59812", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110326, + "CONCEPT_NAME" : "Treatment of missed abortion, completed surgically; first trimester", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59820", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110327, + "CONCEPT_NAME" : "Treatment of missed abortion, completed surgically; second trimester", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59821", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110328, + "CONCEPT_NAME" : "Treatment of septic abortion, completed surgically", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59830", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4290245, + "CONCEPT_NAME" : "Trial forceps delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "69422002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4073424, + "CONCEPT_NAME" : "Trial of vacuum delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177176001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4094046, + "CONCEPT_NAME" : "Triplet birth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "281052005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4078287, + "CONCEPT_NAME" : "Triple test", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "275835005", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014290, + "CONCEPT_NAME" : "Triple test not wanted", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169795009", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42539210, + "CONCEPT_NAME" : "Triplet liveborn in hospital by cesarean section", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16089571000119102", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432375, + "CONCEPT_NAME" : "Triplet pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64254006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440462, + "CONCEPT_NAME" : "Triplet pregnancy - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199321001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437931, + "CONCEPT_NAME" : "Triplet pregnancy with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199322008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014456, + "CONCEPT_NAME" : "Triplets - all live born", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169831006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015422, + "CONCEPT_NAME" : "Triplets - one live and two stillborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169833009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45757165, + "CONCEPT_NAME" : "Triplets, some live born", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10760661000119109", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015163, + "CONCEPT_NAME" : "Triplets - three stillborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169834003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015421, + "CONCEPT_NAME" : "Triplets - two live and one stillborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169832004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3051868, + "CONCEPT_NAME" : "Trisomy 21 risk based on maternal age+Alpha-1-Fetoprotein+Choriogonadotropin+Estriol.unconjugated [Likelihood] in Fetus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "47222-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44499531, + "CONCEPT_NAME" : "Trophoblastic tumor, epithelioid of placenta", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "9105/3-C58.9", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "ICDO3", + "CONCEPT_CLASS_ID" : "ICDO Condition" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4101082, + "CONCEPT_NAME" : "True knot of umbilical cord", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "27696007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4127106, + "CONCEPT_NAME" : "Tubal embryo transfer", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "236915005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 199076, + "CONCEPT_NAME" : "Tubal pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "79586000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4030182, + "CONCEPT_NAME" : "Tumor-induced hypoglycemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237645000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 196758, + "CONCEPT_NAME" : "Tumor of body of uterus affecting pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "223003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 196181, + "CONCEPT_NAME" : "Tumor of uterine body - baby delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "267221002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 197049, + "CONCEPT_NAME" : "Tumor of uterine body - baby delivered with postpartum complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "267222009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 192385, + "CONCEPT_NAME" : "Tumor of uterine body complicating antenatal care, baby not yet delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "267223004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4101844, + "CONCEPT_NAME" : "Twin birth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "28030000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40483084, + "CONCEPT_NAME" : "Twin liveborn born in hospital", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "442327001", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40483101, + "CONCEPT_NAME" : "Twin liveborn born in hospital by cesarean section", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "442342003", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42535052, + "CONCEPT_NAME" : "Twin live born in hospital by vaginal delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "151441000119105", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441919, + "CONCEPT_NAME" : "Twin pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65147003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435018, + "CONCEPT_NAME" : "Twin pregnancy - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199317008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434097, + "CONCEPT_NAME" : "Twin pregnancy with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199318003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014296, + "CONCEPT_NAME" : "Twins - both live born", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169828005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015162, + "CONCEPT_NAME" : "Twins - both stillborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169830007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014455, + "CONCEPT_NAME" : "Twins - one still and one live born", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169829002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42709935, + "CONCEPT_NAME" : "Type 3a third degree laceration of perineum", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "449807005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42709936, + "CONCEPT_NAME" : "Type 3b third degree laceration of perineum", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "449808000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42709937, + "CONCEPT_NAME" : "Type 3c third degree laceration of perineum", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "449809008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4279146, + "CONCEPT_NAME" : "Ultrasonic guidance for amniocentesis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65388005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2211785, + "CONCEPT_NAME" : "Ultrasonic guidance for amniocentesis, imaging supervision and interpretation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "76946", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2211784, + "CONCEPT_NAME" : "Ultrasonic guidance for chorionic villus sampling, imaging supervision and interpretation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "76945", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2211782, + "CONCEPT_NAME" : "Ultrasonic guidance for intrauterine fetal transfusion or cordocentesis, imaging supervision and interpretation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "76941", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37397735, + "CONCEPT_NAME" : "Ultrasonography for amniotic fluid index", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "718475004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4082534, + "CONCEPT_NAME" : "Ultrasonography for antepartum monitoring of fetus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "241491007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42535558, + "CONCEPT_NAME" : "Ultrasonography for fetal biophysical profile with non-stress testing", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "394211000119109", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42535559, + "CONCEPT_NAME" : "Ultrasonography for fetal biophysical profile without non-stress testing", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "394221000119102", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42535553, + "CONCEPT_NAME" : "Ultrasonography for qualitative amniotic fluid volume", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "391131000119106", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42535246, + "CONCEPT_NAME" : "Ultrasonography for qualitative deepest pocket amniotic fluid volume", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16437531000119105", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40488298, + "CONCEPT_NAME" : "Ultrasonography in first trimester", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "446522006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40486918, + "CONCEPT_NAME" : "Ultrasonography in second trimester", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "446208007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40487413, + "CONCEPT_NAME" : "Ultrasonography in third trimester", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "446353007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45773218, + "CONCEPT_NAME" : "Ultrasonography of fetal ductus venosus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "700442004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 46271899, + "CONCEPT_NAME" : "Ultrasonography of fetal head", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "710165007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45765925, + "CONCEPT_NAME" : "Ultrasonography of fetal shunt", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "702985005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44807918, + "CONCEPT_NAME" : "Ultrasonography of multiple pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "855021000000107", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40492794, + "CONCEPT_NAME" : "Ultrasonography of multiple pregnancy for fetal anomaly", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "445866007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40489798, + "CONCEPT_NAME" : "Ultrasonography of multiple pregnancy for fetal nuchal translucency", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "446810002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42690777, + "CONCEPT_NAME" : "Ultrasonography of retained products of conception", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1076861000000103", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3031159, + "CONCEPT_NAME" : "Ultrasound date", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "34970-4", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Clinical Observation" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40756968, + "CONCEPT_NAME" : "Ultrasound, limited, joint or other nonvascular extremity structure(s) (eg, joint space, peri-articular tendon[s], muscle[s], nerve[s], other soft-tissue structure[s], or soft-tissue mass[es]), real-time with image documentation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "76882", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44790261, + "CONCEPT_NAME" : "Ultrasound monitoring of early pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "228881000000102", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2211750, + "CONCEPT_NAME" : "Ultrasound, pregnant uterus, real time with image documentation, fetal and maternal evaluation, after first trimester (> or = 14 weeks 0 days), transabdominal approach; each additional gestation (List separately in addition to code for primary procedure)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "76810", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2211749, + "CONCEPT_NAME" : "Ultrasound, pregnant uterus, real time with image documentation, fetal and maternal evaluation, after first trimester (> or = 14 weeks 0 days), transabdominal approach; single or first gestation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "76805", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2211748, + "CONCEPT_NAME" : "Ultrasound, pregnant uterus, real time with image documentation, fetal and maternal evaluation, first trimester (< 14 weeks 0 days), transabdominal approach; each additional gestation (List separately in addition to code for primary procedure)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "76802", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2211747, + "CONCEPT_NAME" : "Ultrasound, pregnant uterus, real time with image documentation, fetal and maternal evaluation, first trimester (< 14 weeks 0 days), transabdominal approach; single or first gestation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "76801", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2211752, + "CONCEPT_NAME" : "Ultrasound, pregnant uterus, real time with image documentation, fetal and maternal evaluation plus detailed fetal anatomic examination, transabdominal approach; each additional gestation (List separately in addition to code for primary procedure)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "76812", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2211751, + "CONCEPT_NAME" : "Ultrasound, pregnant uterus, real time with image documentation, fetal and maternal evaluation plus detailed fetal anatomic examination, transabdominal approach; single or first gestation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "76811", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2211754, + "CONCEPT_NAME" : "Ultrasound, pregnant uterus, real time with image documentation, first trimester fetal nuchal translucency measurement, transabdominal or transvaginal approach; each additional gestation (List separately in addition to code for primary procedure)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "76814", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2211753, + "CONCEPT_NAME" : "Ultrasound, pregnant uterus, real time with image documentation, first trimester fetal nuchal translucency measurement, transabdominal or transvaginal approach; single or first gestation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "76813", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2211756, + "CONCEPT_NAME" : "Ultrasound, pregnant uterus, real time with image documentation, follow-up (eg, re-evaluation of fetal size by measuring standard growth parameters and amniotic fluid volume, re-evaluation of organ system(s) suspected or confirmed to be abnormal on a prev", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "76816", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2211755, + "CONCEPT_NAME" : "Ultrasound, pregnant uterus, real time with image documentation, limited (eg, fetal heart beat, placental location, fetal position and/or qualitative amniotic fluid volume), 1 or more fetuses", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "76815", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2211757, + "CONCEPT_NAME" : "Ultrasound, pregnant uterus, real time with image documentation, transvaginal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "76817", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3657421, + "CONCEPT_NAME" : "Ultrasound scan for chorionicity", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1167981000000101", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4237338, + "CONCEPT_NAME" : "Ultrasound scan for fetal anomaly", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "408814002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4082672, + "CONCEPT_NAME" : "Ultrasound scan for fetal growth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "241493005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4237339, + "CONCEPT_NAME" : "Ultrasound scan for fetal nuchal translucency", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "408815001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060624, + "CONCEPT_NAME" : "Ultrasound scan for fetal presentation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169228004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060626, + "CONCEPT_NAME" : "Ultrasound scan for fetal viability", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169230002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4152021, + "CONCEPT_NAME" : "Ultrasound scan - obstetric", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "268445003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4028775, + "CONCEPT_NAME" : "Umbilical cord around body", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237307007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441646, + "CONCEPT_NAME" : "Umbilical cord around neck", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "302929008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4126410, + "CONCEPT_NAME" : "Umbilical cord clamp left on", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "289337008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4126742, + "CONCEPT_NAME" : "Umbilical cord clamp needs removing", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "289336004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4122872, + "CONCEPT_NAME" : "Umbilical cord clamp off", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "289338003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4126741, + "CONCEPT_NAME" : "Umbilical cord clamp secure", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "289335000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435325, + "CONCEPT_NAME" : "Umbilical cord complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48287005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4122742, + "CONCEPT_NAME" : "Umbilical cord entangled around baby's limbs", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "289312003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4126740, + "CONCEPT_NAME" : "Umbilical cord stump base inflamed", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "289332002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4126737, + "CONCEPT_NAME" : "Umbilical cord stump black", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "289327003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4122745, + "CONCEPT_NAME" : "Umbilical cord stump clean", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "289319007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4126408, + "CONCEPT_NAME" : "Umbilical cord stump not healing", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "289318004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4126734, + "CONCEPT_NAME" : "Umbilical cord stump oozing", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "289323004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36675671, + "CONCEPT_NAME" : "Umbilical cord stump separated", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "772131003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4126739, + "CONCEPT_NAME" : "Umbilical cord stump smells offensive", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "289329000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45769826, + "CONCEPT_NAME" : "Umbilical cord three times around neck", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "71151000119105", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060157, + "CONCEPT_NAME" : "Umbilical cord tight around neck - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199874004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061971, + "CONCEPT_NAME" : "Umbilical cord tight around neck with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199875003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438259, + "CONCEPT_NAME" : "Umbilical hemorrhage after birth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "82986004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4079860, + "CONCEPT_NAME" : "Umbilical polyp of newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276618000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4098631, + "CONCEPT_NAME" : "Unconjugated estriol measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "250663008", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336229, + "CONCEPT_NAME" : "Unilateral salpingectomy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "86894005", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4301905, + "CONCEPT_NAME" : "Unilateral salpingo-oophorectomy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "78698008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110340, + "CONCEPT_NAME" : "Unlisted fetal invasive procedure, including ultrasound guidance, when performed", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59897", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110342, + "CONCEPT_NAME" : "Unlisted procedure, maternity care and delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59899", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4307820, + "CONCEPT_NAME" : "Unplanned pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "83074005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4059985, + "CONCEPT_NAME" : "Unplanned pregnancy unknown if child is wanted", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169568001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4113986, + "CONCEPT_NAME" : "Unspecified abortion complete", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "198793004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4113983, + "CONCEPT_NAME" : "Unspecified abortion incomplete", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "198781008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004742, + "CONCEPT_NAME" : "Unspecified instrumental delivery", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72.9", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "3-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4113036, + "CONCEPT_NAME" : "Unspecified legal abortion with no mention of complication", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "198702003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4112954, + "CONCEPT_NAME" : "Unspecified spontaneous abortion without mention of complication", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "198642002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 79091, + "CONCEPT_NAME" : "Unstable lie", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86356004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 79889, + "CONCEPT_NAME" : "Unstable lie - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199344003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 72374, + "CONCEPT_NAME" : "Unstable lie with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199345002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4239301, + "CONCEPT_NAME" : "Unwanted pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "58532003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40483205, + "CONCEPT_NAME" : "Urea, electrolytes and glucose measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "443746006", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4151214, + "CONCEPT_NAME" : "Uremia following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "28196006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4129178, + "CONCEPT_NAME" : "Urethra injury - obstetric", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237329006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4289453, + "CONCEPT_NAME" : "Urinalysis, glucose, qualitative", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "69376001", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2212169, + "CONCEPT_NAME" : "Urinalysis; qualitative or semiquantitative, except immunoassays", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "81005", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 46269813, + "CONCEPT_NAME" : "Urinary tract infection due to incomplete miscarriage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10812041000119103", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4062569, + "CONCEPT_NAME" : "Urinary tract infection following delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199111004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4242401, + "CONCEPT_NAME" : "Urinary tract infection following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "38176009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4146482, + "CONCEPT_NAME" : "Urinary tract infection in pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "307534009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4055426, + "CONCEPT_NAME" : "Urine chorionic gonadotrophin measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "167376008", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4192542, + "CONCEPT_NAME" : "Urine clinitest", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "391480003", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4151414, + "CONCEPT_NAME" : "Urine dipstick for glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "269879003", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4055970, + "CONCEPT_NAME" : "Urine glucose chemical titer measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "167523004", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4055823, + "CONCEPT_NAME" : "Urine glucose test = +", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "167264005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4042238, + "CONCEPT_NAME" : "Urine glucose test = ++", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "167265006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4042239, + "CONCEPT_NAME" : "Urine glucose test = +++", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "167266007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4055289, + "CONCEPT_NAME" : "Urine glucose test = ++++", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "167267003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4055822, + "CONCEPT_NAME" : "Urine glucose test negative", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "167261002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4055288, + "CONCEPT_NAME" : "Urine glucose test = trace", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "167262009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4055954, + "CONCEPT_NAME" : "Urine HCG 24 hour assay", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "167391005", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37392365, + "CONCEPT_NAME" : "Urine pregnancy test", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1003161000000106", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Observable Entity" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4055285, + "CONCEPT_NAME" : "Urine pregnancy test", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "167252002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2212173, + "CONCEPT_NAME" : "Urine pregnancy test, by visual color comparison methods", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "81025", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014769, + "CONCEPT_NAME" : "Urine pregnancy test, by visual color comparison methods", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "104405006", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4041878, + "CONCEPT_NAME" : "Urine pregnancy test positive", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "167256004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4149386, + "CONCEPT_NAME" : "Urine screening for glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "268556000", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4174400, + "CONCEPT_NAME" : "Urticaria neonatorum", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "4244005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4170107, + "CONCEPT_NAME" : "US obstetric doppler", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "418090003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060623, + "CONCEPT_NAME" : "US obstetric scan abnormal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169222003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060622, + "CONCEPT_NAME" : "US obstetric scan normal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169221005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061129, + "CONCEPT_NAME" : "US obstetric scan requested", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169220006", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061130, + "CONCEPT_NAME" : "US scan - fetal cephalometry", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169224002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4059697, + "CONCEPT_NAME" : "US scan - fetal maturity", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169225001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4254201, + "CONCEPT_NAME" : "Uterine contraction monitoring using intrauterine pressure catheter", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "408810006", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110338, + "CONCEPT_NAME" : "Uterine evacuation and curettage for hydatidiform mole", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59870", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4064145, + "CONCEPT_NAME" : "Uterine evacuation and curettage of hydatidiform mole", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "215192006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4053158, + "CONCEPT_NAME" : "Uterine incoordination, first degree", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "23508005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4286205, + "CONCEPT_NAME" : "Uterine incoordination, second degree", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6891008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 197938, + "CONCEPT_NAME" : "Uterine inertia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26158002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45757158, + "CONCEPT_NAME" : "Uterine laceration during delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10760261000119106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 194101, + "CONCEPT_NAME" : "Uterine size for dates discrepancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "430933008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3023791, + "CONCEPT_NAME" : "Uterus Fundal height Tape measure", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "11881-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Clinical Observation" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4128172, + "CONCEPT_NAME" : "Uterus involuted", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "289752004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4127208, + "CONCEPT_NAME" : "Uterus involuting", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "289751006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44790180, + "CONCEPT_NAME" : "Vacuum aspiration of products of conception from uterus using flexible cannula", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "229761000000107", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44790181, + "CONCEPT_NAME" : "Vacuum aspiration of products of conception from uterus using rigid cannula", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "229801000000102", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4075171, + "CONCEPT_NAME" : "Vacuum delivery before full dilation of cervix", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177175002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004729, + "CONCEPT_NAME" : "Vacuum extraction with episiotomy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72.71", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442069, + "CONCEPT_NAME" : "Vacuum extractor delivery - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200138003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 193544, + "CONCEPT_NAME" : "Vaginal abnormality - baby delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "267240008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37109810, + "CONCEPT_NAME" : "Vaginal bleeding complicating early pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "723665008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4228344, + "CONCEPT_NAME" : "Vaginal cesarean section", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "89053004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4331179, + "CONCEPT_NAME" : "Vaginal delivery, medical personnel present", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "22633006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44784097, + "CONCEPT_NAME" : "Vaginal delivery of fetus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "700000006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110320, + "CONCEPT_NAME" : "Vaginal delivery only, after previous cesarean delivery (with or without episiotomy and/or forceps)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59612", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110321, + "CONCEPT_NAME" : "Vaginal delivery only, after previous cesarean delivery (with or without episiotomy and/or forceps); including postpartum care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59614", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110308, + "CONCEPT_NAME" : "Vaginal delivery only (with or without episiotomy and/or forceps)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59409", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110309, + "CONCEPT_NAME" : "Vaginal delivery only (with or without episiotomy and/or forceps); including postpartum care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59410", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4167018, + "CONCEPT_NAME" : "Vaginal delivery with forceps including postpartum care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45718005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4145316, + "CONCEPT_NAME" : "Vaginal show", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "268471004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4096535, + "CONCEPT_NAME" : "Vaginal tear resulting from childbirth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "249220002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4147415, + "CONCEPT_NAME" : "Varicose veins of genitalia in puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "308135003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442290, + "CONCEPT_NAME" : "Varicose veins of legs complicating pregnancy AND/OR puerperium", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "5626004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441644, + "CONCEPT_NAME" : "Varicose veins of legs in pregnancy and the puerperium", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "200204002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442059, + "CONCEPT_NAME" : "Varicose veins of legs in pregnancy and the puerperium - delivered", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "200206000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434712, + "CONCEPT_NAME" : "Varicose veins of legs in pregnancy and the puerperium with antenatal complication", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "200208004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4143292, + "CONCEPT_NAME" : "Varicose veins of legs in the puerperium", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "308134004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443242, + "CONCEPT_NAME" : "Varicose veins of perineum and vulva in pregnancy and the puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "267282007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435610, + "CONCEPT_NAME" : "Varicose veins of perineum and vulva in pregnancy and the puerperium - delivered", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "200215007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441929, + "CONCEPT_NAME" : "Varicose veins of perineum and vulva in pregnancy and the puerperium with antenatal complication", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "200217004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432701, + "CONCEPT_NAME" : "Varicose veins of perineum and vulva in pregnancy and the puerperium with postnatal complication", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "200218009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4147395, + "CONCEPT_NAME" : "Varicose veins of vagina in puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "308187004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435609, + "CONCEPT_NAME" : "Vasa previa - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199895009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435021, + "CONCEPT_NAME" : "Vasa previa with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199896005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 321367, + "CONCEPT_NAME" : "Vascular lesions of cord - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199900008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 315884, + "CONCEPT_NAME" : "Vascular lesions of cord with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199901007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4300078, + "CONCEPT_NAME" : "Velamentous insertion of umbilical cord", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "77278008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440158, + "CONCEPT_NAME" : "Venereal disease in mother complicating pregnancy, childbirth AND/OR puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "27075004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 313543, + "CONCEPT_NAME" : "Venous complication of pregnancy and/or puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "267280004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530951, + "CONCEPT_NAME" : "Venous complication of puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609497003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4009180, + "CONCEPT_NAME" : "Venous thrombosis in puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "111458008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4079858, + "CONCEPT_NAME" : "Very low birth weight infant", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276611006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435925, + "CONCEPT_NAME" : "Very premature - less than 1000g or less than 28 weeks", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "268817004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4149523, + "CONCEPT_NAME" : "Very preterm maturity of infant", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "268868001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4129027, + "CONCEPT_NAME" : "Viable fetus in abdominal pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237253003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435604, + "CONCEPT_NAME" : "Viral disease in mother complicating pregnancy, childbirth AND/OR puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "31516002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42742355, + "CONCEPT_NAME" : "VKORC1 (vitamin K epoxide reductase complex, subunit 1) (eg, warfarin metabolism), gene analysis, common variant(s) (eg, -1639G>A, c.173+1000C>T)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "81355", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 35625971, + "CONCEPT_NAME" : "Vomiting during third trimester of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "769087009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4169915, + "CONCEPT_NAME" : "Vomiting in newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48000002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440785, + "CONCEPT_NAME" : "Vomiting of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90325002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40525252, + "CONCEPT_NAME" : "[V]Other specified antenatal screening", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "315975002", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40519557, + "CONCEPT_NAME" : "[V]Other unwanted pregnancy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "316385002", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40524819, + "CONCEPT_NAME" : "[V]Postpartum care and examination", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "315919003", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40517216, + "CONCEPT_NAME" : "[V]Pregnancy examination and test", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "308165008", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40524802, + "CONCEPT_NAME" : "[V]Pregnant state, incidental", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "315903005", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443246, + "CONCEPT_NAME" : "Vulval abnormality - baby delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "267247006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441087, + "CONCEPT_NAME" : "Vulval and/or perineal hematoma during delivery - delivered", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "199944006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438214, + "CONCEPT_NAME" : "Vulval and/or perineal hematoma during delivery with postnatal problem", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "199945007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4071599, + "CONCEPT_NAME" : "Vulval hematoma due to birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206244002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4031282, + "CONCEPT_NAME" : "Vulval hematoma during delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10950002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4091198, + "CONCEPT_NAME" : "Vulval hematoma in labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "249217005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4034153, + "CONCEPT_NAME" : "Vulval obstetric varicose veins", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "237346009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40525253, + "CONCEPT_NAME" : "[V]Unspecified antenatal screening", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "315976001", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40524805, + "CONCEPT_NAME" : "[V]Unspecified pregnant state", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "315906002", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4131031, + "CONCEPT_NAME" : "Ward urine dip stick testing for sugar", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26542009", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4071632, + "CONCEPT_NAME" : "Water birth delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177185001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4132649, + "CONCEPT_NAME" : "Well child visit", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "410620009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4259640, + "CONCEPT_NAME" : "Well child visit, 10 years", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "410642005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4132657, + "CONCEPT_NAME" : "Well child visit, 11 years", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "410643000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4256500, + "CONCEPT_NAME" : "Well child visit, 12 month", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "410629005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4132658, + "CONCEPT_NAME" : "Well child visit, 12 years", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "410644006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4132659, + "CONCEPT_NAME" : "Well child visit, 13 years", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "410645007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4259641, + "CONCEPT_NAME" : "Well child visit, 14 years", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "410646008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4259638, + "CONCEPT_NAME" : "Well child visit, 15 month", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "410631001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4256502, + "CONCEPT_NAME" : "Well child visit, 15 years", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "410647004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4253755, + "CONCEPT_NAME" : "Well child visit, 16 years", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "410648009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4259642, + "CONCEPT_NAME" : "Well child visit, 17 years", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "410649001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4256501, + "CONCEPT_NAME" : "Well child visit, 18 month", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "410632008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4253756, + "CONCEPT_NAME" : "Well child visit, 18 years", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "410650001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4256497, + "CONCEPT_NAME" : "Well child visit, 2 month", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "410624000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4256496, + "CONCEPT_NAME" : "Well child visit, 2 week", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "410623006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4259639, + "CONCEPT_NAME" : "Well child visit, 2 years", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "410633003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4253753, + "CONCEPT_NAME" : "Well child visit, 3 years", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "410634009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4256498, + "CONCEPT_NAME" : "Well child visit, 4 month", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "410626003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4132652, + "CONCEPT_NAME" : "Well child visit, 4 years", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "410636006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4132653, + "CONCEPT_NAME" : "Well child visit, 5 years", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "410637002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4253752, + "CONCEPT_NAME" : "Well child visit, 6 month", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "410627007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4132654, + "CONCEPT_NAME" : "Well child visit, 6 years", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "410638007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4253754, + "CONCEPT_NAME" : "Well child visit, 7 years", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "410639004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4132655, + "CONCEPT_NAME" : "Well child visit, 8 years", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "410640002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4256499, + "CONCEPT_NAME" : "Well child visit, 9 month", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "410628002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4132656, + "CONCEPT_NAME" : "Well child visit, 9 years", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "410641003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4259636, + "CONCEPT_NAME" : "Well child visit, newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "410621008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 765764, + "CONCEPT_NAME" : "Well child visit, newborn 8 to 28 days old", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "446381000124104", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 763782, + "CONCEPT_NAME" : "Well child visit, newborn less than 8 days old", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "446301000124108", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4010343, + "CONCEPT_NAME" : "Well female newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "102502005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4010841, + "CONCEPT_NAME" : "Well male newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "102501003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4010843, + "CONCEPT_NAME" : "Well premature female newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "102505007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4010842, + "CONCEPT_NAME" : "Well premature male newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "102504006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4010344, + "CONCEPT_NAME" : "Well premature newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "102503000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 765794, + "CONCEPT_NAME" : "White or yellow-green tinged lochia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "4961000124100", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40394878, + "CONCEPT_NAME" : "[X]Delivery", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "200548008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40514773, + "CONCEPT_NAME" : "[X]Infection of cesarian section wound following delivery", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "309743009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40388780, + "CONCEPT_NAME" : "[X]Mental and behavioral disorders associated with the puerperium, not elsewhere classified", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "192474006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40356741, + "CONCEPT_NAME" : "[X]Mild mental and behavioral disorders associated with the puerperium, not elsewhere classified", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "268725005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40394902, + "CONCEPT_NAME" : "[X]Vaginitis following delivery", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "200570006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4020897, + "CONCEPT_NAME" : "Zona drilling", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "225248004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4127105, + "CONCEPT_NAME" : "Zygote intrafallopian transfer", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "236914009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444098, + "CONCEPT_NAME" : "Gestation period, 40 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46230007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 62, + "name" : "Spontaneous abortion (SA)", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 436477, + "CONCEPT_NAME" : "Abnormal products of conception", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "39804004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444365, + "CONCEPT_NAME" : "Abortion", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "70317007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42597053, + "CONCEPT_NAME" : "Abortion associated with Equine arteritis virus infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "318481000009103", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED Veterinary", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42597052, + "CONCEPT_NAME" : "Abortion associated with Equine herpesvirus infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "318471000009100", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED Veterinary", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42597051, + "CONCEPT_NAME" : "Abortion associated with umbilical torsion", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "318461000009109", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED Veterinary", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 201076, + "CONCEPT_NAME" : "Abortion complicated by damage to pelvic organs AND/OR tissues", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "373908001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 197612, + "CONCEPT_NAME" : "Abortion complicated by delayed AND/OR excessive hemorrhage", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "111426003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438812, + "CONCEPT_NAME" : "Abortion complicated by genital-pelvic infection", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "373891000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 195319, + "CONCEPT_NAME" : "Abortion complicated by renal failure", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "10123006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42599848, + "CONCEPT_NAME" : "Abortion due to Brucella canis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "360051000009101", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED Veterinary", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2721147, + "CONCEPT_NAME" : "ABORTION FOR MATERNAL INDICATION", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "S2262", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2784560, + "CONCEPT_NAME" : "Abortion of Products of Conception, Abortifacient, Via Natural or Artificial Opening", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10A07ZX", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD10PCS", + "CONCEPT_CLASS_ID" : "ICD10PCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2784559, + "CONCEPT_NAME" : "Abortion of Products of Conception, Laminaria, Via Natural or Artificial Opening", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10A07ZW", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD10PCS", + "CONCEPT_CLASS_ID" : "ICD10PCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2784555, + "CONCEPT_NAME" : "Abortion of Products of Conception, Open Approach", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10A00ZZ", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD10PCS", + "CONCEPT_CLASS_ID" : "ICD10PCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2784556, + "CONCEPT_NAME" : "Abortion of Products of Conception, Percutaneous Approach", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10A03ZZ", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD10PCS", + "CONCEPT_CLASS_ID" : "ICD10PCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2784557, + "CONCEPT_NAME" : "Abortion of Products of Conception, Percutaneous Endoscopic Approach", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10A04ZZ", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD10PCS", + "CONCEPT_CLASS_ID" : "ICD10PCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2784558, + "CONCEPT_NAME" : "Abortion of Products of Conception, Vacuum, Via Natural or Artificial Opening", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10A07Z6", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD10PCS", + "CONCEPT_CLASS_ID" : "ICD10PCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2784561, + "CONCEPT_NAME" : "Abortion of Products of Conception, Via Natural or Artificial Opening", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10A07ZZ", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD10PCS", + "CONCEPT_CLASS_ID" : "ICD10PCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2784562, + "CONCEPT_NAME" : "Abortion of Products of Conception, Via Natural or Artificial Opening Endoscopic", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10A08ZZ", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD10PCS", + "CONCEPT_CLASS_ID" : "ICD10PCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440776, + "CONCEPT_NAME" : "Abortion with complication", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "371332008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440454, + "CONCEPT_NAME" : "Abortion without complication", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "51830007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42739743, + "CONCEPT_NAME" : "Anesthesia for abortion procedures (Deprecated)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "01964", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2101811, + "CONCEPT_NAME" : "Anesthesia for incomplete or missed abortion procedures", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "01965", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2101812, + "CONCEPT_NAME" : "Anesthesia for induced abortion procedures", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "01966", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004526, + "CONCEPT_NAME" : "Aspiration curettage following delivery or abortion", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "69.52", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4212941, + "CONCEPT_NAME" : "Aspiration curettage of uterus for termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "391897002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004525, + "CONCEPT_NAME" : "Aspiration curettage of uterus for termination of pregnancy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "69.51", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4028644, + "CONCEPT_NAME" : "Biochemical pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237243004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4262136, + "CONCEPT_NAME" : "Blighted ovum", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "35999006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4261479, + "CONCEPT_NAME" : "Carneous mole", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "44979007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40482050, + "CONCEPT_NAME" : "Chemical pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "445086005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437046, + "CONCEPT_NAME" : "Complete abortion", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "69124005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439085, + "CONCEPT_NAME" : "Complete inevitable miscarriage complicated by delayed or excessive hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "307735008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441629, + "CONCEPT_NAME" : "Complete inevitable miscarriage complicated by embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "307750004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441921, + "CONCEPT_NAME" : "Complete inevitable miscarriage complicated by genital tract and pelvic infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "307734007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4146774, + "CONCEPT_NAME" : "Complete inevitable miscarriage without complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "307738005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441073, + "CONCEPT_NAME" : "Complete legal termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "267194005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438196, + "CONCEPT_NAME" : "Complete legal termination of pregnancy with delayed or excessive hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198719001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40318618, + "CONCEPT_NAME" : "Complete miscarriage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "156073000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441910, + "CONCEPT_NAME" : "Complete miscarriage with damage to pelvic organs or tissues", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198657009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432682, + "CONCEPT_NAME" : "Complete miscarriage with delayed or excessive hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198656000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441632, + "CONCEPT_NAME" : "Complete miscarriage with embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198663000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435318, + "CONCEPT_NAME" : "Complete miscarriage with genital tract or pelvic infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198655001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435000, + "CONCEPT_NAME" : "Complete miscarriage with metabolic disorder", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198660002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 436742, + "CONCEPT_NAME" : "Complete miscarriage with renal failure", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198659007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438805, + "CONCEPT_NAME" : "Complete miscarriage with shock", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198661003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4113352, + "CONCEPT_NAME" : "Complete spontaneous abortion NOS", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "198667004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45757769, + "CONCEPT_NAME" : "Continuing triplet pregnancy after spontaneous abortion of one or more fetuses", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36801000119105", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42537759, + "CONCEPT_NAME" : "Delayed hemorrhage due to and following miscarriage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "737318003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4114265, + "CONCEPT_NAME" : "Delayed or excessive hemorrhage following abortive pregnancy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "198827002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4149472, + "CONCEPT_NAME" : "Digital evacuation of retained products of conception", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "310603006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4106559, + "CONCEPT_NAME" : "Dilation and curettage for termination of pregnancy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "29682007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004489, + "CONCEPT_NAME" : "Dilation and curettage for termination of pregnancy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "69.01", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4168396, + "CONCEPT_NAME" : "Dilation of cervix uteri and curettage for termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "274973002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4138740, + "CONCEPT_NAME" : "Dilation of cervix uteri and curettage of products of conception from uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "265062002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4074867, + "CONCEPT_NAME" : "Dilation of cervix uteri and curettage of uterus for removal of missed miscarriage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "176833006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4074297, + "CONCEPT_NAME" : "Dilation of cervix uteri and vacuum aspiration of products of conception from uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "176827002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42537769, + "CONCEPT_NAME" : "Disorder of vein following miscarriage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "737331008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4113994, + "CONCEPT_NAME" : "Endometritis following abortive pregnancy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "198820000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42573076, + "CONCEPT_NAME" : "Enzootic abortion", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "352191000009102", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED Veterinary", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4032621, + "CONCEPT_NAME" : "Evacuation of retained product of conception", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "236883005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4170151, + "CONCEPT_NAME" : "Evacuation of uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "275166002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37206231, + "CONCEPT_NAME" : "Excessive hemorrhage due to and following illegally induced termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "785872000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37206226, + "CONCEPT_NAME" : "Excessive hemorrhage due to and following induced termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "785867009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37206230, + "CONCEPT_NAME" : "Excessive hemorrhage due to and following legally induced termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "785871007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4147858, + "CONCEPT_NAME" : "Expression of retained products of conception", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "310602001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4257043, + "CONCEPT_NAME" : "Extra-amniotic termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "408840008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44513450, + "CONCEPT_NAME" : "Extraction of menses", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "Q11.4", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "OPCS4", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4017134, + "CONCEPT_NAME" : "Failed attempted termination of pregnancy with amniotic fluid embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "11454006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 194694, + "CONCEPT_NAME" : "Failed attempted termination of pregnancy with complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59919008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4281684, + "CONCEPT_NAME" : "Failed attempted termination of pregnancy with urinary tract infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "66892003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 75605, + "CONCEPT_NAME" : "Fetal death, affecting management of mother", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14022007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 436228, + "CONCEPT_NAME" : "Fetal death due to termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "67313008", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Event" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110292, + "CONCEPT_NAME" : "Hysterotomy, abdominal (eg, for hydatidiform mole, abortion)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59100", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4082412, + "CONCEPT_NAME" : "Hysterotomy and termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "18302006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444048, + "CONCEPT_NAME" : "Illegal termination of pregnancy complicated by damage to pelvic organs and/or tissues", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "38784004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 193821, + "CONCEPT_NAME" : "Illegal termination of pregnancy complicated by embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26743002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439400, + "CONCEPT_NAME" : "Illegal termination of pregnancy complicated by genital-pelvic infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "373902000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443705, + "CONCEPT_NAME" : "Illegal termination of pregnancy complicated by metabolic disorder", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "18684002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 195600, + "CONCEPT_NAME" : "Illegal termination of pregnancy complicated by renal failure", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "8996006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442596, + "CONCEPT_NAME" : "Illegal termination of pregnancy complicated by shock", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "61752008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439325, + "CONCEPT_NAME" : "Illegal termination of pregnancy, incomplete", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198743003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4143190, + "CONCEPT_NAME" : "Illegal termination of pregnancy with acute renal failure", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "33561005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4138267, + "CONCEPT_NAME" : "Illegal termination of pregnancy with afibrinogenemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "3230006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4185440, + "CONCEPT_NAME" : "Illegal termination of pregnancy with air embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "44101005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4303980, + "CONCEPT_NAME" : "Illegal termination of pregnancy with amniotic fluid embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "38905006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4066227, + "CONCEPT_NAME" : "Illegal termination of pregnancy with blood-clot embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "21604008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4182549, + "CONCEPT_NAME" : "Illegal termination of pregnancy with cardiac arrest AND/OR failure", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "54529009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4223627, + "CONCEPT_NAME" : "Illegal termination of pregnancy with cerebral anoxia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40405003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 436169, + "CONCEPT_NAME" : "Illegal termination of pregnancy with complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "74978008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4264914, + "CONCEPT_NAME" : "Illegal termination of pregnancy with defibrination syndrome", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "61810006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4101477, + "CONCEPT_NAME" : "Illegal termination of pregnancy with electrolyte imbalance", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25404008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4023781, + "CONCEPT_NAME" : "Illegal termination of pregnancy with endometritis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "195005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4107907, + "CONCEPT_NAME" : "Illegal termination of pregnancy with fat embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "29995000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4323434, + "CONCEPT_NAME" : "Illegal termination of pregnancy with intravascular hemolysis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "70823006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4180859, + "CONCEPT_NAME" : "Illegal termination of pregnancy with laceration of bladder", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "53247006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4066994, + "CONCEPT_NAME" : "Illegal termination of pregnancy with laceration of bowel", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "17335003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4105762, + "CONCEPT_NAME" : "Illegal termination of pregnancy with laceration of broad ligament", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "29583006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4077275, + "CONCEPT_NAME" : "Illegal termination of pregnancy with laceration of cervix", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "18872002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4025828, + "CONCEPT_NAME" : "Illegal termination of pregnancy with laceration of periurethral tissue", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "19564003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4229716, + "CONCEPT_NAME" : "Illegal termination of pregnancy with laceration of uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40500006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4249728, + "CONCEPT_NAME" : "Illegal termination of pregnancy with laceration of vagina", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "73280003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4266243, + "CONCEPT_NAME" : "Illegal termination of pregnancy with oliguria", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6134000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4305348, + "CONCEPT_NAME" : "Illegal termination of pregnancy with parametritis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "82204006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4234979, + "CONCEPT_NAME" : "Illegal termination of pregnancy with pelvic peritonitis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90450000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4197900, + "CONCEPT_NAME" : "Illegal termination of pregnancy with perforation of bladder", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80438008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4051784, + "CONCEPT_NAME" : "Illegal termination of pregnancy with perforation of bowel", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "23401002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4195243, + "CONCEPT_NAME" : "Illegal termination of pregnancy with perforation of broad ligament", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6802007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4224143, + "CONCEPT_NAME" : "Illegal termination of pregnancy with perforation of cervix", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84143004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4239192, + "CONCEPT_NAME" : "Illegal termination of pregnancy with perforation of periurethral tissue", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "68189005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4296872, + "CONCEPT_NAME" : "Illegal termination of pregnancy with perforation of uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "77099001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4103148, + "CONCEPT_NAME" : "Illegal termination of pregnancy with perforation of vagina", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25519006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4143018, + "CONCEPT_NAME" : "Illegal termination of pregnancy with postoperative shock", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "34701001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4206453, + "CONCEPT_NAME" : "Illegal termination of pregnancy with pulmonary embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55589000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4195297, + "CONCEPT_NAME" : "Illegal termination of pregnancy with renal tubular necrosis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "4451004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4318662, + "CONCEPT_NAME" : "Illegal termination of pregnancy with salpingitis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "22046002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4313005, + "CONCEPT_NAME" : "Illegal termination of pregnancy with salpingo-oophoritis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "8670007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4034753, + "CONCEPT_NAME" : "Illegal termination of pregnancy with sepsis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "11373009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4324965, + "CONCEPT_NAME" : "Illegal termination of pregnancy with septic embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "71362000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4219608, + "CONCEPT_NAME" : "Illegal termination of pregnancy with septic shock", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "82338001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4183557, + "CONCEPT_NAME" : "Illegal termination of pregnancy with uremia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54155004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4140509, + "CONCEPT_NAME" : "Illegal termination of pregnancy with urinary tract infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "33046001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439323, + "CONCEPT_NAME" : "Incomplete illegal termination of pregnancy with damage to pelvic organs or tissues", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198746006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437929, + "CONCEPT_NAME" : "Incomplete illegal termination of pregnancy with delayed or excessive hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198745005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438487, + "CONCEPT_NAME" : "Incomplete illegal termination of pregnancy with embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198750004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439324, + "CONCEPT_NAME" : "Incomplete illegal termination of pregnancy with genital tract or pelvic infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198744009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439321, + "CONCEPT_NAME" : "Incomplete illegal termination of pregnancy with metabolic disorder", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198748007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439322, + "CONCEPT_NAME" : "Incomplete illegal termination of pregnancy with renal failure", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198747002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439320, + "CONCEPT_NAME" : "Incomplete illegal termination of pregnancy with shock", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198749004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45768717, + "CONCEPT_NAME" : "Incomplete induced termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "707207004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45771353, + "CONCEPT_NAME" : "Incomplete induced termination of pregnancy with complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16101000119107", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438211, + "CONCEPT_NAME" : "Incomplete inevitable miscarriage complicated by delayed or excessive hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "307752007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 436748, + "CONCEPT_NAME" : "Incomplete inevitable miscarriage complicated by embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "307746006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437618, + "CONCEPT_NAME" : "Incomplete inevitable miscarriage complicated by genital tract and pelvic infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "307749004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4146775, + "CONCEPT_NAME" : "Incomplete inevitable miscarriage without complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "307748007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439328, + "CONCEPT_NAME" : "Incomplete legal abortion with no mention of complication", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "198715007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37110280, + "CONCEPT_NAME" : "Incomplete legal abortion without complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "724484007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435868, + "CONCEPT_NAME" : "Incomplete legal termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "267193004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434705, + "CONCEPT_NAME" : "Incomplete legal termination of pregnancy with damage to pelvic organs or tissues", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198707009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440453, + "CONCEPT_NAME" : "Incomplete legal termination of pregnancy with delayed or excessive hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198706000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439329, + "CONCEPT_NAME" : "Incomplete legal termination of pregnancy with embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198711003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 193532, + "CONCEPT_NAME" : "Incomplete legal termination of pregnancy with genital tract or pelvic infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198705001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434095, + "CONCEPT_NAME" : "Incomplete legal termination of pregnancy with metabolic disorder", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198709007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439331, + "CONCEPT_NAME" : "Incomplete legal termination of pregnancy with renal failure", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198708004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439330, + "CONCEPT_NAME" : "Incomplete legal termination of pregnancy with shock", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198710002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40318617, + "CONCEPT_NAME" : "Incomplete miscarriage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "156072005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434689, + "CONCEPT_NAME" : "Incomplete miscarriage", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "16863000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434413, + "CONCEPT_NAME" : "Incomplete miscarriage with complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "413338003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437933, + "CONCEPT_NAME" : "Incomplete miscarriage with damage to pelvic organs or tissues", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198646004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440460, + "CONCEPT_NAME" : "Incomplete miscarriage with delayed or excessive hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198645000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437045, + "CONCEPT_NAME" : "Incomplete miscarriage with embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198650006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 195317, + "CONCEPT_NAME" : "Incomplete miscarriage with genital tract or pelvic infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198644001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432689, + "CONCEPT_NAME" : "Incomplete miscarriage with metabolic disorder", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198648003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439688, + "CONCEPT_NAME" : "Incomplete miscarriage with renal failure", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198647008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441631, + "CONCEPT_NAME" : "Incomplete miscarriage with shock", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198649006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42535215, + "CONCEPT_NAME" : "Incomplete spontaneous abortion due to hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16111000119105", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44805020, + "CONCEPT_NAME" : "Incomplete termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "749781000000109", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2721146, + "CONCEPT_NAME" : "Induced abortion, 17 to 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "S2260", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2721148, + "CONCEPT_NAME" : "Induced abortion, 25 to 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "S2265", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2721149, + "CONCEPT_NAME" : "Induced abortion, 29 to 31 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "S2266", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2721150, + "CONCEPT_NAME" : "Induced abortion, 32 weeks or greater", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "S2267", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110331, + "CONCEPT_NAME" : "Induced abortion, by 1 or more intra-amniotic injections (amniocentesis-injections), including hospital admission and visits, delivery of fetus and secundines", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59850", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110332, + "CONCEPT_NAME" : "Induced abortion, by 1 or more intra-amniotic injections (amniocentesis-injections), including hospital admission and visits, delivery of fetus and secundines; with dilation and curettage and/or evacuation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59851", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110333, + "CONCEPT_NAME" : "Induced abortion, by 1 or more intra-amniotic injections (amniocentesis-injections), including hospital admission and visits, delivery of fetus and secundines; with hysterotomy (failed intra-amniotic injection)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59852", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110334, + "CONCEPT_NAME" : "Induced abortion, by 1 or more vaginal suppositories (eg, prostaglandin) with or without cervical dilation (eg, laminaria), including hospital admission and visits, delivery of fetus and secundines", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59855", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110335, + "CONCEPT_NAME" : "Induced abortion, by 1 or more vaginal suppositories (eg, prostaglandin) with or without cervical dilation (eg, laminaria), including hospital admission and visits, delivery of fetus and secundines; with dilation and curettage and/or evacuation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59856", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110336, + "CONCEPT_NAME" : "Induced abortion, by 1 or more vaginal suppositories (eg, prostaglandin) with or without cervical dilation (eg, laminaria), including hospital admission and visits, delivery of fetus and secundines; with hysterotomy (failed medical evacuation)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59857", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110329, + "CONCEPT_NAME" : "Induced abortion, by dilation and curettage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59840", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110330, + "CONCEPT_NAME" : "Induced abortion, by dilation and evacuation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59841", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37018340, + "CONCEPT_NAME" : "Induced termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "714812005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530913, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by acute necrosis of liver", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609454008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530914, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by acute renal failure", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609455009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530928, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by acute renal failure with oliguria", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609472002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530915, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by afibrinogenemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609456005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530916, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by air embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609457001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43531712, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by amniotic fluid embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609458006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530957, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by bladder damage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609503006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530917, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by blood-clot embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609459003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530958, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by bowel damage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609504000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530959, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by broad ligament damage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609505004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530960, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by cardiac arrest", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609506003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530918, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by cardiac arrest and/or failure", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "609460008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530961, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by cardiac failure", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609507007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530919, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by cerebral anoxia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609461007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530962, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by cervix damage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609508002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530908, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by damage to pelvic organs and/or tissues", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609447002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530920, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by defibrination syndrome", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609462000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43531713, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by electrolyte imbalance", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609463005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43531710, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609449004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530921, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by endometritis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609464004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530922, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by fat embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609465003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530910, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by genital-pelvic infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609450004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530964, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by infectious disease", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609510000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530923, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by intravascular hemolysis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609466002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530952, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by laceration of bladder", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609498008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530924, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by laceration of bowel", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609467006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530925, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by laceration of broad ligament", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609468001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43531714, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by laceration of cervix", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609469009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530953, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by laceration of periurethral tissue", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609499000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530926, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by laceration of uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609470005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530927, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by laceration of vagina", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609471009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530911, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by metabolic disorder", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609451000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530966, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by oliguria", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609512008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530929, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by parametritis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609473007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530948, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by pelvic disorder", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609494005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43531715, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by pelvic peritonitis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609474001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530954, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by perforation of bladder", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609500009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530930, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by perforation of bowel", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609475000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530955, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by perforation of broad ligament", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609501008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530931, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by perforation of cervix", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609476004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530956, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by perforation of periurethral tissue", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609502001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530932, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by perforation of uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609477008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530933, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by perforation of vagina", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609478003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530965, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by periurethral tissue damage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609511001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43531716, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by postoperative shock", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609479006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530934, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by pulmonary embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609480009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530912, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by renal failure", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609452007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530935, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by renal tubular necrosis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609482001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530936, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by salpingitis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609483006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530937, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by salpingo-oophoritis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609484000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530939, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by sepsis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609485004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530940, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by septic embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609486003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530941, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by septic shock", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609487007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43531711, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by shock", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609453002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530943, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by soap embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609489005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530947, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by tetanus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609493004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530944, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by uremia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609490001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530945, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by urinary tract infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609491002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530967, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by uterus damage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609513003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530968, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by vaginal damage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609514009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4200986, + "CONCEPT_NAME" : "Induced termination of pregnancy following intra-amniotic injection with hysterotomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "52660002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44784128, + "CONCEPT_NAME" : "Induced termination of pregnancy under unsafe conditions", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "700041001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4244408, + "CONCEPT_NAME" : "Inevitable miscarriage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59363009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4146772, + "CONCEPT_NAME" : "Inevitable miscarriage complete", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "307733001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4121775, + "CONCEPT_NAME" : "Injection of amnion for termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "288045002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4112315, + "CONCEPT_NAME" : "Insertion of abortifacient suppository", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "285434006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4074301, + "CONCEPT_NAME" : "Insertion of prostaglandin abortifacient suppository", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "176854004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4071638, + "CONCEPT_NAME" : "Instrumental removal of products of conception from delivered uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177200004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4063309, + "CONCEPT_NAME" : "Intrauterine death with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199608004", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Event" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4163996, + "CONCEPT_NAME" : "Late fetal death affecting management of mother", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "399363000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4113976, + "CONCEPT_NAME" : "Legally induced abortion NOS", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "198729008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444077, + "CONCEPT_NAME" : "Legal termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "39406005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 192379, + "CONCEPT_NAME" : "Legal termination of pregnancy complicated by damage to pelvic organ and/or tissues", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "111431001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 197617, + "CONCEPT_NAME" : "Legal termination of pregnancy complicated by delayed and/or excessive hemorrhage", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "58071009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442346, + "CONCEPT_NAME" : "Legal termination of pregnancy complicated by embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57734001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439883, + "CONCEPT_NAME" : "Legal termination of pregnancy complicated by genital-pelvic infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "373901007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 436474, + "CONCEPT_NAME" : "Legal termination of pregnancy complicated by metabolic disorder", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "3634007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 195595, + "CONCEPT_NAME" : "Legal termination of pregnancy complicated by renal failure", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "4576001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 197333, + "CONCEPT_NAME" : "Legal termination of pregnancy complicated by shock", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "27169005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181114, + "CONCEPT_NAME" : "Legal termination of pregnancy with acute renal failure", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "52342006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4147533, + "CONCEPT_NAME" : "Legal termination of pregnancy with afibrinogenemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "30479005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4009642, + "CONCEPT_NAME" : "Legal termination of pregnancy with air embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "111432008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4098441, + "CONCEPT_NAME" : "Legal termination of pregnancy with amniotic fluid embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "27015006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4292089, + "CONCEPT_NAME" : "Legal termination of pregnancy with blood-clot embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "37787009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4025639, + "CONCEPT_NAME" : "Legal termination of pregnancy with cardiac arrest and/or failure", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "12095001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4077454, + "CONCEPT_NAME" : "Legal termination of pregnancy with cerebral anoxia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "18894005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441349, + "CONCEPT_NAME" : "Legal termination of pregnancy with complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48433002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4280224, + "CONCEPT_NAME" : "Legal termination of pregnancy with defibrination syndrome", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6647006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4214233, + "CONCEPT_NAME" : "Legal termination of pregnancy with electrolyte imbalance", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "39239006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4294829, + "CONCEPT_NAME" : "Legal termination of pregnancy with endometritis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "75947000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4328084, + "CONCEPT_NAME" : "Legal termination of pregnancy with fat embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "75825001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4046510, + "CONCEPT_NAME" : "Legal termination of pregnancy with intravascular hemolysis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12296009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4243658, + "CONCEPT_NAME" : "Legal termination of pregnancy with laceration of bladder", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59859005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4183680, + "CONCEPT_NAME" : "Legal termination of pregnancy with laceration of bowel", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "5577003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4216436, + "CONCEPT_NAME" : "Legal termination of pregnancy with laceration of broad ligament", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "41806003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4324695, + "CONCEPT_NAME" : "Legal termination of pregnancy with laceration of cervix", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7166002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4324672, + "CONCEPT_NAME" : "Legal termination of pregnancy with laceration of periurethral tissue", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "71216006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4045581, + "CONCEPT_NAME" : "Legal termination of pregnancy with laceration of uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13100007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4204231, + "CONCEPT_NAME" : "Legal termination of pregnancy with laceration of vagina", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54044001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4269450, + "CONCEPT_NAME" : "Legal termination of pregnancy with oliguria", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36473002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 436747, + "CONCEPT_NAME" : "Legal termination of pregnancy without complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "34500003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4049453, + "CONCEPT_NAME" : "Legal termination of pregnancy with parametritis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15511008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4094081, + "CONCEPT_NAME" : "Legal termination of pregnancy with pelvic peritonitis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26010008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4271203, + "CONCEPT_NAME" : "Legal termination of pregnancy with perforation of bladder", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "62888008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4184150, + "CONCEPT_NAME" : "Legal termination of pregnancy with perforation of bowel", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55933000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4198404, + "CONCEPT_NAME" : "Legal termination of pregnancy with perforation of broad ligament", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "51953009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4312358, + "CONCEPT_NAME" : "Legal termination of pregnancy with perforation of cervix", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "85652000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4296459, + "CONCEPT_NAME" : "Legal termination of pregnancy with perforation of periurethral tissue", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "76472002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4068253, + "CONCEPT_NAME" : "Legal termination of pregnancy with perforation of uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "20216003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4327321, + "CONCEPT_NAME" : "Legal termination of pregnancy with perforation of vagina", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "75013000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4058932, + "CONCEPT_NAME" : "Legal termination of pregnancy with postoperative shock", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "21280005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4178578, + "CONCEPT_NAME" : "Legal termination of pregnancy with pulmonary embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "51096002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4070939, + "CONCEPT_NAME" : "Legal termination of pregnancy with renal tubular necrosis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "20483002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4204206, + "CONCEPT_NAME" : "Legal termination of pregnancy with salpingitis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "53098006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4197681, + "CONCEPT_NAME" : "Legal termination of pregnancy with salpingo-oophoritis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "51707007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4188764, + "CONCEPT_NAME" : "Legal termination of pregnancy with sepsis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "39246002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4106892, + "CONCEPT_NAME" : "Legal termination of pregnancy with septic embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "29950007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4105063, + "CONCEPT_NAME" : "Legal termination of pregnancy with septic shock", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25691001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4225572, + "CONCEPT_NAME" : "Legal termination of pregnancy with uremia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "8468007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4245041, + "CONCEPT_NAME" : "Legal termination of pregnancy with urinary tract infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "5945005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4238207, + "CONCEPT_NAME" : "Listeria miscarriage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57420002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44807900, + "CONCEPT_NAME" : "Medical evacuation of retained products of conception using prostaglandin", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "854611000000109", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2721012, + "CONCEPT_NAME" : "Medically induced abortion by oral ingestion of medication including all associated services and supplies (e.g., patient counseling, office visits, confirmation of pregnancy by hcg, ultrasound to confirm duration of pregnancy, ultrasound to confirm com...", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "S0199", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4115153, + "CONCEPT_NAME" : "Medical termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "285409006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40487510, + "CONCEPT_NAME" : "Medical termination of pregnancy using prostaglandin", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "447972007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4067106, + "CONCEPT_NAME" : "Miscarriage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "17369002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4087102, + "CONCEPT_NAME" : "Miscarriage at 8 to 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "184339009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 192678, + "CONCEPT_NAME" : "Miscarriage complicated by damage to pelvic organs and/or tissues", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "58990004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 195594, + "CONCEPT_NAME" : "Miscarriage complicated by delayed and/or excessive hemorrhage", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "2781009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 194704, + "CONCEPT_NAME" : "Miscarriage complicated by embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43306002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437920, + "CONCEPT_NAME" : "Miscarriage complicated by genital-pelvic infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "373896005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441348, + "CONCEPT_NAME" : "Miscarriage complicated by metabolic disorder", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13384007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 193820, + "CONCEPT_NAME" : "Miscarriage complicated by renal failure", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10697004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 196746, + "CONCEPT_NAME" : "Miscarriage complicated by shock", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "34270000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4323612, + "CONCEPT_NAME" : "Miscarriage due to Brucella abortus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428508008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4051244, + "CONCEPT_NAME" : "Miscarriage due to Leptospira", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16038004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4078393, + "CONCEPT_NAME" : "Miscarriage in first trimester", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "19169002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4224646, + "CONCEPT_NAME" : "Miscarriage in second trimester", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "85116003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4167685, + "CONCEPT_NAME" : "Miscarriage in third trimester", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48485000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4224597, + "CONCEPT_NAME" : "Miscarriage with acute necrosis of liver", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40444006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4211863, + "CONCEPT_NAME" : "Miscarriage with acute renal failure", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57469000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4064536, + "CONCEPT_NAME" : "Miscarriage with afibrinogenemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "21360006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4247270, + "CONCEPT_NAME" : "Miscarriage with air embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "60265009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4003276, + "CONCEPT_NAME" : "Miscarriage with amniotic fluid embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10058006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4209126, + "CONCEPT_NAME" : "Miscarriage with blood-clot embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55976003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4175137, + "CONCEPT_NAME" : "Miscarriage with cardiac arrest and/or cardiac failure", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48739004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4047775, + "CONCEPT_NAME" : "Miscarriage with cerebral anoxia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12394009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434094, + "CONCEPT_NAME" : "Miscarriage with complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "34614007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4179796, + "CONCEPT_NAME" : "Miscarriage with defibrination syndrome", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "50770000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4274315, + "CONCEPT_NAME" : "Miscarriage with electrolyte imbalance", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64814003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4149423, + "CONCEPT_NAME" : "Miscarriage with endometritis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "30806007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4278107, + "CONCEPT_NAME" : "Miscarriage with fat embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "66131005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4170457, + "CONCEPT_NAME" : "Miscarriage with heavy bleeding", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "275421004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4180568, + "CONCEPT_NAME" : "Miscarriage with intravascular hemolysis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "53183006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4194113, + "CONCEPT_NAME" : "Miscarriage with laceration of bladder", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "39199000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4041728, + "CONCEPT_NAME" : "Miscarriage with laceration of bowel", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16714009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4309780, + "CONCEPT_NAME" : "Miscarriage with laceration of broad ligament", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "85331004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4130670, + "CONCEPT_NAME" : "Miscarriage with laceration of cervix", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "127009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4261327, + "CONCEPT_NAME" : "Miscarriage with laceration of periurethral tissue", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "44814008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4302162, + "CONCEPT_NAME" : "Miscarriage with laceration of uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7809009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4311698, + "CONCEPT_NAME" : "Miscarriage with laceration of vagina", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "85632001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4217670, + "CONCEPT_NAME" : "Miscarriage with oliguria", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72613009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 436176, + "CONCEPT_NAME" : "Miscarriage without complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "23793007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4221853, + "CONCEPT_NAME" : "Miscarriage with parametritis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "83922009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4313166, + "CONCEPT_NAME" : "Miscarriage with pelvic peritonitis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "85991008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4310654, + "CONCEPT_NAME" : "Miscarriage with perforation of bladder", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "85467007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4216342, + "CONCEPT_NAME" : "Miscarriage with perforation of bowel", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "8071005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4031837, + "CONCEPT_NAME" : "Miscarriage with perforation of broad ligament", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14136000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4253804, + "CONCEPT_NAME" : "Miscarriage with perforation of cervix", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "74369005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4200070, + "CONCEPT_NAME" : "Miscarriage with perforation of periurethral tissue", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "51954003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4049891, + "CONCEPT_NAME" : "Miscarriage with perforation of uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15809008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4339107, + "CONCEPT_NAME" : "Miscarriage with perforation of vagina", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87967003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4168445, + "CONCEPT_NAME" : "Miscarriage with postoperative shock", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "47537002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4219469, + "CONCEPT_NAME" : "Miscarriage with pulmonary embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "82153002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4001856, + "CONCEPT_NAME" : "Miscarriage with renal tubular necrosis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "11026009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4195406, + "CONCEPT_NAME" : "Miscarriage with salpingitis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7910003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4189350, + "CONCEPT_NAME" : "Miscarriage with salpingo-oophoritis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "61568004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4285746, + "CONCEPT_NAME" : "Miscarriage with sepsis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "67465009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4244261, + "CONCEPT_NAME" : "Miscarriage with septic embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59204004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4085627, + "CONCEPT_NAME" : "Miscarriage with septic shock", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "18613002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4006806, + "CONCEPT_NAME" : "Miscarriage with uremia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "11109001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4033096, + "CONCEPT_NAME" : "Miscarriage with urinary tract infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1469007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 76482, + "CONCEPT_NAME" : "Missed miscarriage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16607004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42599849, + "CONCEPT_NAME" : "Mycotic abortion", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "360061000009103", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED Veterinary", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4119975, + "CONCEPT_NAME" : "Operative termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "302375005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44513476, + "CONCEPT_NAME" : "Other specified introduction of abortifacient into uterine cavity", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "Q14.8", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "OPCS4", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4149994, + "CONCEPT_NAME" : "Readmission for abortive pregnancy (NHS codes)", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "267195006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4113503, + "CONCEPT_NAME" : "Readmission for retained products of conception, legal termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198862007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4114280, + "CONCEPT_NAME" : "Readmission for retained products of conception, spontaneous abortion", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198861000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4150401, + "CONCEPT_NAME" : "Reason for termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "310506006", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Observable Entity" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4190767, + "CONCEPT_NAME" : "Referral for termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "415262008", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4153287, + "CONCEPT_NAME" : "Removal of products of conception from fallopian tube", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "271415006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4086797, + "CONCEPT_NAME" : "Requests pregnancy termination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "184005004", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4170121, + "CONCEPT_NAME" : "Retained products after miscarriage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "275425008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37206228, + "CONCEPT_NAME" : "Secondary hemorrhage due to and following illegally induced termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "785869007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37206227, + "CONCEPT_NAME" : "Secondary hemorrhage due to and following induced termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "785868004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37206229, + "CONCEPT_NAME" : "Secondary hemorrhage due to and following legally induced termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "785870008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4150538, + "CONCEPT_NAME" : "Suction evacuation of retained products of conception", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "310604000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4297250, + "CONCEPT_NAME" : "Termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "386639001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4240605, + "CONCEPT_NAME" : "Termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57797005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43020954, + "CONCEPT_NAME" : "Termination of pregnancy after first trimester", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "472839005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530907, + "CONCEPT_NAME" : "Termination of pregnancy with complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609446006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4189561, + "CONCEPT_NAME" : "Therapeutic termination of pregnancy by aspiration curettage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "391896006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4030009, + "CONCEPT_NAME" : "Therapeutic termination of pregnancy by insertion of laminaria", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10763001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4299609, + "CONCEPT_NAME" : "Therapeutic termination of pregnancy procedure", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "386641000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110325, + "CONCEPT_NAME" : "Treatment of incomplete abortion, any trimester, completed surgically", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59812", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110326, + "CONCEPT_NAME" : "Treatment of missed abortion, completed surgically; first trimester", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59820", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110327, + "CONCEPT_NAME" : "Treatment of missed abortion, completed surgically; second trimester", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59821", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110328, + "CONCEPT_NAME" : "Treatment of septic abortion, completed surgically", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59830", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4113986, + "CONCEPT_NAME" : "Unspecified abortion complete", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "198793004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4113983, + "CONCEPT_NAME" : "Unspecified abortion incomplete", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "198781008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4113036, + "CONCEPT_NAME" : "Unspecified legal abortion with no mention of complication", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "198702003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4112954, + "CONCEPT_NAME" : "Unspecified spontaneous abortion without mention of complication", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "198642002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 46269813, + "CONCEPT_NAME" : "Urinary tract infection due to incomplete miscarriage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10812041000119103", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44790180, + "CONCEPT_NAME" : "Vacuum aspiration of products of conception from uterus using flexible cannula", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "229761000000107", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44790181, + "CONCEPT_NAME" : "Vacuum aspiration of products of conception from uterus using rigid cannula", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "229801000000102", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 63, + "name" : "Gestational age (GEST) gt than 1 week", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4015296, + "CONCEPT_NAME" : "Antenatal 12 weeks examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169712008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014149, + "CONCEPT_NAME" : "Antenatal 16 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169713003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014150, + "CONCEPT_NAME" : "Antenatal 20 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169714009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808979, + "CONCEPT_NAME" : "Antenatal 22 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861281000000109", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015141, + "CONCEPT_NAME" : "Antenatal 24 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169715005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808980, + "CONCEPT_NAME" : "Antenatal 25 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861301000000105", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014151, + "CONCEPT_NAME" : "Antenatal 30 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169717002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808981, + "CONCEPT_NAME" : "Antenatal 31 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861321000000101", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015297, + "CONCEPT_NAME" : "Antenatal 32 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169718007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015298, + "CONCEPT_NAME" : "Antenatal 34 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169719004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014434, + "CONCEPT_NAME" : "Antenatal 35 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169720005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015299, + "CONCEPT_NAME" : "Antenatal 36 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169721009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015142, + "CONCEPT_NAME" : "Antenatal 37 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169722002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014152, + "CONCEPT_NAME" : "Antenatal 38 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169723007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015300, + "CONCEPT_NAME" : "Antenatal 39 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169724001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015301, + "CONCEPT_NAME" : "Antenatal 40 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169725000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015302, + "CONCEPT_NAME" : "Antenatal 41 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169726004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014435, + "CONCEPT_NAME" : "Antenatal 42 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169727008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4178165, + "CONCEPT_NAME" : "Gestation 14 - 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428567001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181468, + "CONCEPT_NAME" : "Gestation 9- 13 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428930004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181162, + "CONCEPT_NAME" : "Gestation greater than 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429715006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4324063, + "CONCEPT_NAME" : "Gestation less than 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428566005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438542, + "CONCEPT_NAME" : "Gestation less than 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313178001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45770261, + "CONCEPT_NAME" : "Gestation less than 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "925561000000100", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4322726, + "CONCEPT_NAME" : "Gestation less than 9 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428058009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4242241, + "CONCEPT_NAME" : "Gestation period, 10 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "38039008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4174506, + "CONCEPT_NAME" : "Gestation period, 11 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "50367001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4197245, + "CONCEPT_NAME" : "Gestation period, 12 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "79992004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4266517, + "CONCEPT_NAME" : "Gestation period, 13 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "62333002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4248725, + "CONCEPT_NAME" : "Gestation period, 14 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72846000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4283690, + "CONCEPT_NAME" : "Gestation period, 15 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6678005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4049621, + "CONCEPT_NAME" : "Gestation period, 16 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15633004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4277749, + "CONCEPT_NAME" : "Gestation period, 17 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65683006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4097608, + "CONCEPT_NAME" : "Gestation period, 18 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25026004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181751, + "CONCEPT_NAME" : "Gestation period, 19 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54318006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4051642, + "CONCEPT_NAME" : "Gestation period, 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "23464008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4185780, + "CONCEPT_NAME" : "Gestation period, 21 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "41438001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4274955, + "CONCEPT_NAME" : "Gestation period, 22 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65035007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336226, + "CONCEPT_NAME" : "Gestation period, 23 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86883006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439922, + "CONCEPT_NAME" : "Gestation period, 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313179009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435640, + "CONCEPT_NAME" : "Gestation period, 25 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72544005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444023, + "CONCEPT_NAME" : "Gestation period, 26 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48688005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432430, + "CONCEPT_NAME" : "Gestation period, 27 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46906003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444461, + "CONCEPT_NAME" : "Gestation period, 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90797000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444417, + "CONCEPT_NAME" : "Gestation period, 29 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45139008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4220085, + "CONCEPT_NAME" : "Gestation period, 2 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "82118009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434484, + "CONCEPT_NAME" : "Gestation period, 30 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "71355009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433864, + "CONCEPT_NAME" : "Gestation period, 31 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64920003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442558, + "CONCEPT_NAME" : "Gestation period, 32 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7707000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441678, + "CONCEPT_NAME" : "Gestation period, 33 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "78395001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443874, + "CONCEPT_NAME" : "Gestation period, 34 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13763000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444267, + "CONCEPT_NAME" : "Gestation period, 35 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84132007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438543, + "CONCEPT_NAME" : "Gestation period, 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57907009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442355, + "CONCEPT_NAME" : "Gestation period, 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43697006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443871, + "CONCEPT_NAME" : "Gestation period, 38 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13798002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435655, + "CONCEPT_NAME" : "Gestation period, 39 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80487005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4326232, + "CONCEPT_NAME" : "Gestation period, 3 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "74952004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442769, + "CONCEPT_NAME" : "Gestation period, 41 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63503002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444067, + "CONCEPT_NAME" : "Gestation period, 42 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36428009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4195157, + "CONCEPT_NAME" : "Gestation period, 4 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "44398003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4290009, + "CONCEPT_NAME" : "Gestation period, 5 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "37005007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4313026, + "CONCEPT_NAME" : "Gestation period, 6 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86801005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4270513, + "CONCEPT_NAME" : "Gestation period, 7 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63110000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4132434, + "CONCEPT_NAME" : "Gestation period, 8 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26690008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4245908, + "CONCEPT_NAME" : "Gestation period, 9 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "931004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 762907, + "CONCEPT_NAME" : "Gestation period greater than or equal to 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "433601000124106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336958, + "CONCEPT_NAME" : "Term pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87527008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4180111, + "CONCEPT_NAME" : "Third trimester pregnancy less than 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429240000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444098, + "CONCEPT_NAME" : "Gestation period, 40 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46230007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 64, + "name" : "Gestational age (GEST) gt than 2 week", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4015296, + "CONCEPT_NAME" : "Antenatal 12 weeks examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169712008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014149, + "CONCEPT_NAME" : "Antenatal 16 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169713003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014150, + "CONCEPT_NAME" : "Antenatal 20 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169714009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808979, + "CONCEPT_NAME" : "Antenatal 22 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861281000000109", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015141, + "CONCEPT_NAME" : "Antenatal 24 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169715005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808980, + "CONCEPT_NAME" : "Antenatal 25 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861301000000105", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014151, + "CONCEPT_NAME" : "Antenatal 30 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169717002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808981, + "CONCEPT_NAME" : "Antenatal 31 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861321000000101", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015297, + "CONCEPT_NAME" : "Antenatal 32 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169718007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015298, + "CONCEPT_NAME" : "Antenatal 34 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169719004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014434, + "CONCEPT_NAME" : "Antenatal 35 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169720005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015299, + "CONCEPT_NAME" : "Antenatal 36 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169721009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015142, + "CONCEPT_NAME" : "Antenatal 37 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169722002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014152, + "CONCEPT_NAME" : "Antenatal 38 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169723007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015300, + "CONCEPT_NAME" : "Antenatal 39 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169724001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015301, + "CONCEPT_NAME" : "Antenatal 40 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169725000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015302, + "CONCEPT_NAME" : "Antenatal 41 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169726004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014435, + "CONCEPT_NAME" : "Antenatal 42 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169727008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4178165, + "CONCEPT_NAME" : "Gestation 14 - 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428567001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181468, + "CONCEPT_NAME" : "Gestation 9- 13 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428930004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181162, + "CONCEPT_NAME" : "Gestation greater than 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429715006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4324063, + "CONCEPT_NAME" : "Gestation less than 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428566005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438542, + "CONCEPT_NAME" : "Gestation less than 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313178001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45770261, + "CONCEPT_NAME" : "Gestation less than 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "925561000000100", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4322726, + "CONCEPT_NAME" : "Gestation less than 9 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428058009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4242241, + "CONCEPT_NAME" : "Gestation period, 10 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "38039008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4174506, + "CONCEPT_NAME" : "Gestation period, 11 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "50367001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4197245, + "CONCEPT_NAME" : "Gestation period, 12 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "79992004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4266517, + "CONCEPT_NAME" : "Gestation period, 13 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "62333002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4248725, + "CONCEPT_NAME" : "Gestation period, 14 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72846000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4283690, + "CONCEPT_NAME" : "Gestation period, 15 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6678005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4049621, + "CONCEPT_NAME" : "Gestation period, 16 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15633004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4277749, + "CONCEPT_NAME" : "Gestation period, 17 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65683006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4097608, + "CONCEPT_NAME" : "Gestation period, 18 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25026004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181751, + "CONCEPT_NAME" : "Gestation period, 19 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54318006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4051642, + "CONCEPT_NAME" : "Gestation period, 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "23464008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4185780, + "CONCEPT_NAME" : "Gestation period, 21 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "41438001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4274955, + "CONCEPT_NAME" : "Gestation period, 22 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65035007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336226, + "CONCEPT_NAME" : "Gestation period, 23 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86883006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439922, + "CONCEPT_NAME" : "Gestation period, 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313179009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435640, + "CONCEPT_NAME" : "Gestation period, 25 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72544005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444023, + "CONCEPT_NAME" : "Gestation period, 26 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48688005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432430, + "CONCEPT_NAME" : "Gestation period, 27 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46906003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444461, + "CONCEPT_NAME" : "Gestation period, 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90797000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444417, + "CONCEPT_NAME" : "Gestation period, 29 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45139008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434484, + "CONCEPT_NAME" : "Gestation period, 30 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "71355009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433864, + "CONCEPT_NAME" : "Gestation period, 31 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64920003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442558, + "CONCEPT_NAME" : "Gestation period, 32 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7707000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441678, + "CONCEPT_NAME" : "Gestation period, 33 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "78395001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443874, + "CONCEPT_NAME" : "Gestation period, 34 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13763000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444267, + "CONCEPT_NAME" : "Gestation period, 35 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84132007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438543, + "CONCEPT_NAME" : "Gestation period, 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57907009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442355, + "CONCEPT_NAME" : "Gestation period, 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43697006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443871, + "CONCEPT_NAME" : "Gestation period, 38 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13798002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435655, + "CONCEPT_NAME" : "Gestation period, 39 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80487005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4326232, + "CONCEPT_NAME" : "Gestation period, 3 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "74952004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442769, + "CONCEPT_NAME" : "Gestation period, 41 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63503002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444067, + "CONCEPT_NAME" : "Gestation period, 42 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36428009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4195157, + "CONCEPT_NAME" : "Gestation period, 4 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "44398003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4290009, + "CONCEPT_NAME" : "Gestation period, 5 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "37005007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4313026, + "CONCEPT_NAME" : "Gestation period, 6 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86801005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4270513, + "CONCEPT_NAME" : "Gestation period, 7 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63110000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4132434, + "CONCEPT_NAME" : "Gestation period, 8 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26690008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4245908, + "CONCEPT_NAME" : "Gestation period, 9 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "931004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 762907, + "CONCEPT_NAME" : "Gestation period greater than or equal to 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "433601000124106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336958, + "CONCEPT_NAME" : "Term pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87527008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4180111, + "CONCEPT_NAME" : "Third trimester pregnancy less than 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429240000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444098, + "CONCEPT_NAME" : "Gestation period, 40 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46230007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 65, + "name" : "Gestational age (GEST) gt than 3 week", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4015296, + "CONCEPT_NAME" : "Antenatal 12 weeks examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169712008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014149, + "CONCEPT_NAME" : "Antenatal 16 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169713003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014150, + "CONCEPT_NAME" : "Antenatal 20 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169714009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808979, + "CONCEPT_NAME" : "Antenatal 22 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861281000000109", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015141, + "CONCEPT_NAME" : "Antenatal 24 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169715005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808980, + "CONCEPT_NAME" : "Antenatal 25 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861301000000105", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014151, + "CONCEPT_NAME" : "Antenatal 30 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169717002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808981, + "CONCEPT_NAME" : "Antenatal 31 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861321000000101", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015297, + "CONCEPT_NAME" : "Antenatal 32 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169718007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015298, + "CONCEPT_NAME" : "Antenatal 34 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169719004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014434, + "CONCEPT_NAME" : "Antenatal 35 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169720005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015299, + "CONCEPT_NAME" : "Antenatal 36 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169721009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015142, + "CONCEPT_NAME" : "Antenatal 37 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169722002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014152, + "CONCEPT_NAME" : "Antenatal 38 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169723007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015300, + "CONCEPT_NAME" : "Antenatal 39 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169724001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015301, + "CONCEPT_NAME" : "Antenatal 40 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169725000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015302, + "CONCEPT_NAME" : "Antenatal 41 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169726004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014435, + "CONCEPT_NAME" : "Antenatal 42 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169727008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4178165, + "CONCEPT_NAME" : "Gestation 14 - 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428567001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181468, + "CONCEPT_NAME" : "Gestation 9- 13 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428930004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181162, + "CONCEPT_NAME" : "Gestation greater than 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429715006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4324063, + "CONCEPT_NAME" : "Gestation less than 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428566005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438542, + "CONCEPT_NAME" : "Gestation less than 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313178001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45770261, + "CONCEPT_NAME" : "Gestation less than 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "925561000000100", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4322726, + "CONCEPT_NAME" : "Gestation less than 9 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428058009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4242241, + "CONCEPT_NAME" : "Gestation period, 10 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "38039008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4174506, + "CONCEPT_NAME" : "Gestation period, 11 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "50367001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4197245, + "CONCEPT_NAME" : "Gestation period, 12 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "79992004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4266517, + "CONCEPT_NAME" : "Gestation period, 13 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "62333002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4248725, + "CONCEPT_NAME" : "Gestation period, 14 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72846000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4283690, + "CONCEPT_NAME" : "Gestation period, 15 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6678005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4049621, + "CONCEPT_NAME" : "Gestation period, 16 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15633004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4277749, + "CONCEPT_NAME" : "Gestation period, 17 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65683006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4097608, + "CONCEPT_NAME" : "Gestation period, 18 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25026004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181751, + "CONCEPT_NAME" : "Gestation period, 19 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54318006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4051642, + "CONCEPT_NAME" : "Gestation period, 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "23464008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4185780, + "CONCEPT_NAME" : "Gestation period, 21 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "41438001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4274955, + "CONCEPT_NAME" : "Gestation period, 22 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65035007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336226, + "CONCEPT_NAME" : "Gestation period, 23 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86883006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439922, + "CONCEPT_NAME" : "Gestation period, 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313179009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435640, + "CONCEPT_NAME" : "Gestation period, 25 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72544005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444023, + "CONCEPT_NAME" : "Gestation period, 26 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48688005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432430, + "CONCEPT_NAME" : "Gestation period, 27 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46906003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444461, + "CONCEPT_NAME" : "Gestation period, 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90797000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444417, + "CONCEPT_NAME" : "Gestation period, 29 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45139008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434484, + "CONCEPT_NAME" : "Gestation period, 30 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "71355009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433864, + "CONCEPT_NAME" : "Gestation period, 31 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64920003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442558, + "CONCEPT_NAME" : "Gestation period, 32 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7707000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441678, + "CONCEPT_NAME" : "Gestation period, 33 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "78395001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443874, + "CONCEPT_NAME" : "Gestation period, 34 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13763000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444267, + "CONCEPT_NAME" : "Gestation period, 35 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84132007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438543, + "CONCEPT_NAME" : "Gestation period, 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57907009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442355, + "CONCEPT_NAME" : "Gestation period, 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43697006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443871, + "CONCEPT_NAME" : "Gestation period, 38 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13798002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435655, + "CONCEPT_NAME" : "Gestation period, 39 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80487005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442769, + "CONCEPT_NAME" : "Gestation period, 41 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63503002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444067, + "CONCEPT_NAME" : "Gestation period, 42 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36428009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4195157, + "CONCEPT_NAME" : "Gestation period, 4 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "44398003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4290009, + "CONCEPT_NAME" : "Gestation period, 5 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "37005007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4313026, + "CONCEPT_NAME" : "Gestation period, 6 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86801005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4270513, + "CONCEPT_NAME" : "Gestation period, 7 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63110000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4132434, + "CONCEPT_NAME" : "Gestation period, 8 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26690008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4245908, + "CONCEPT_NAME" : "Gestation period, 9 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "931004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 762907, + "CONCEPT_NAME" : "Gestation period greater than or equal to 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "433601000124106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336958, + "CONCEPT_NAME" : "Term pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87527008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4180111, + "CONCEPT_NAME" : "Third trimester pregnancy less than 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429240000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444098, + "CONCEPT_NAME" : "Gestation period, 40 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46230007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 66, + "name" : "Gestational age (GEST) gt than 4 week", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4015296, + "CONCEPT_NAME" : "Antenatal 12 weeks examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169712008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014149, + "CONCEPT_NAME" : "Antenatal 16 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169713003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014150, + "CONCEPT_NAME" : "Antenatal 20 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169714009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808979, + "CONCEPT_NAME" : "Antenatal 22 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861281000000109", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015141, + "CONCEPT_NAME" : "Antenatal 24 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169715005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808980, + "CONCEPT_NAME" : "Antenatal 25 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861301000000105", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014151, + "CONCEPT_NAME" : "Antenatal 30 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169717002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808981, + "CONCEPT_NAME" : "Antenatal 31 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861321000000101", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015297, + "CONCEPT_NAME" : "Antenatal 32 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169718007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015298, + "CONCEPT_NAME" : "Antenatal 34 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169719004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014434, + "CONCEPT_NAME" : "Antenatal 35 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169720005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015299, + "CONCEPT_NAME" : "Antenatal 36 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169721009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015142, + "CONCEPT_NAME" : "Antenatal 37 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169722002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014152, + "CONCEPT_NAME" : "Antenatal 38 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169723007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015300, + "CONCEPT_NAME" : "Antenatal 39 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169724001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015301, + "CONCEPT_NAME" : "Antenatal 40 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169725000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015302, + "CONCEPT_NAME" : "Antenatal 41 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169726004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014435, + "CONCEPT_NAME" : "Antenatal 42 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169727008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4178165, + "CONCEPT_NAME" : "Gestation 14 - 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428567001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181468, + "CONCEPT_NAME" : "Gestation 9- 13 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428930004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181162, + "CONCEPT_NAME" : "Gestation greater than 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429715006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4324063, + "CONCEPT_NAME" : "Gestation less than 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428566005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438542, + "CONCEPT_NAME" : "Gestation less than 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313178001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45770261, + "CONCEPT_NAME" : "Gestation less than 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "925561000000100", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4322726, + "CONCEPT_NAME" : "Gestation less than 9 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428058009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4242241, + "CONCEPT_NAME" : "Gestation period, 10 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "38039008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4174506, + "CONCEPT_NAME" : "Gestation period, 11 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "50367001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4197245, + "CONCEPT_NAME" : "Gestation period, 12 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "79992004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4266517, + "CONCEPT_NAME" : "Gestation period, 13 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "62333002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4248725, + "CONCEPT_NAME" : "Gestation period, 14 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72846000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4283690, + "CONCEPT_NAME" : "Gestation period, 15 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6678005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4049621, + "CONCEPT_NAME" : "Gestation period, 16 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15633004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4277749, + "CONCEPT_NAME" : "Gestation period, 17 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65683006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4097608, + "CONCEPT_NAME" : "Gestation period, 18 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25026004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181751, + "CONCEPT_NAME" : "Gestation period, 19 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54318006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4051642, + "CONCEPT_NAME" : "Gestation period, 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "23464008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4185780, + "CONCEPT_NAME" : "Gestation period, 21 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "41438001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4274955, + "CONCEPT_NAME" : "Gestation period, 22 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65035007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336226, + "CONCEPT_NAME" : "Gestation period, 23 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86883006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439922, + "CONCEPT_NAME" : "Gestation period, 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313179009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435640, + "CONCEPT_NAME" : "Gestation period, 25 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72544005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444023, + "CONCEPT_NAME" : "Gestation period, 26 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48688005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432430, + "CONCEPT_NAME" : "Gestation period, 27 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46906003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444461, + "CONCEPT_NAME" : "Gestation period, 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90797000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444417, + "CONCEPT_NAME" : "Gestation period, 29 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45139008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434484, + "CONCEPT_NAME" : "Gestation period, 30 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "71355009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433864, + "CONCEPT_NAME" : "Gestation period, 31 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64920003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442558, + "CONCEPT_NAME" : "Gestation period, 32 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7707000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441678, + "CONCEPT_NAME" : "Gestation period, 33 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "78395001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443874, + "CONCEPT_NAME" : "Gestation period, 34 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13763000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444267, + "CONCEPT_NAME" : "Gestation period, 35 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84132007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438543, + "CONCEPT_NAME" : "Gestation period, 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57907009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442355, + "CONCEPT_NAME" : "Gestation period, 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43697006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443871, + "CONCEPT_NAME" : "Gestation period, 38 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13798002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435655, + "CONCEPT_NAME" : "Gestation period, 39 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80487005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442769, + "CONCEPT_NAME" : "Gestation period, 41 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63503002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444067, + "CONCEPT_NAME" : "Gestation period, 42 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36428009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4290009, + "CONCEPT_NAME" : "Gestation period, 5 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "37005007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4313026, + "CONCEPT_NAME" : "Gestation period, 6 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86801005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4270513, + "CONCEPT_NAME" : "Gestation period, 7 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63110000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4132434, + "CONCEPT_NAME" : "Gestation period, 8 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26690008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4245908, + "CONCEPT_NAME" : "Gestation period, 9 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "931004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 762907, + "CONCEPT_NAME" : "Gestation period greater than or equal to 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "433601000124106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336958, + "CONCEPT_NAME" : "Term pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87527008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4180111, + "CONCEPT_NAME" : "Third trimester pregnancy less than 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429240000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444098, + "CONCEPT_NAME" : "Gestation period, 40 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46230007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 67, + "name" : "Gestational age (GEST) gt than 5 week", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4015296, + "CONCEPT_NAME" : "Antenatal 12 weeks examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169712008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014149, + "CONCEPT_NAME" : "Antenatal 16 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169713003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014150, + "CONCEPT_NAME" : "Antenatal 20 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169714009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808979, + "CONCEPT_NAME" : "Antenatal 22 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861281000000109", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015141, + "CONCEPT_NAME" : "Antenatal 24 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169715005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808980, + "CONCEPT_NAME" : "Antenatal 25 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861301000000105", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014151, + "CONCEPT_NAME" : "Antenatal 30 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169717002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808981, + "CONCEPT_NAME" : "Antenatal 31 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861321000000101", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015297, + "CONCEPT_NAME" : "Antenatal 32 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169718007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015298, + "CONCEPT_NAME" : "Antenatal 34 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169719004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014434, + "CONCEPT_NAME" : "Antenatal 35 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169720005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015299, + "CONCEPT_NAME" : "Antenatal 36 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169721009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015142, + "CONCEPT_NAME" : "Antenatal 37 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169722002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014152, + "CONCEPT_NAME" : "Antenatal 38 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169723007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015300, + "CONCEPT_NAME" : "Antenatal 39 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169724001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015301, + "CONCEPT_NAME" : "Antenatal 40 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169725000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015302, + "CONCEPT_NAME" : "Antenatal 41 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169726004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014435, + "CONCEPT_NAME" : "Antenatal 42 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169727008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4178165, + "CONCEPT_NAME" : "Gestation 14 - 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428567001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181468, + "CONCEPT_NAME" : "Gestation 9- 13 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428930004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181162, + "CONCEPT_NAME" : "Gestation greater than 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429715006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4324063, + "CONCEPT_NAME" : "Gestation less than 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428566005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438542, + "CONCEPT_NAME" : "Gestation less than 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313178001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45770261, + "CONCEPT_NAME" : "Gestation less than 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "925561000000100", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4322726, + "CONCEPT_NAME" : "Gestation less than 9 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428058009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4242241, + "CONCEPT_NAME" : "Gestation period, 10 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "38039008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4174506, + "CONCEPT_NAME" : "Gestation period, 11 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "50367001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4197245, + "CONCEPT_NAME" : "Gestation period, 12 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "79992004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4266517, + "CONCEPT_NAME" : "Gestation period, 13 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "62333002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4248725, + "CONCEPT_NAME" : "Gestation period, 14 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72846000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4283690, + "CONCEPT_NAME" : "Gestation period, 15 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6678005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4049621, + "CONCEPT_NAME" : "Gestation period, 16 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15633004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4277749, + "CONCEPT_NAME" : "Gestation period, 17 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65683006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4097608, + "CONCEPT_NAME" : "Gestation period, 18 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25026004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181751, + "CONCEPT_NAME" : "Gestation period, 19 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54318006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4051642, + "CONCEPT_NAME" : "Gestation period, 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "23464008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4185780, + "CONCEPT_NAME" : "Gestation period, 21 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "41438001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4274955, + "CONCEPT_NAME" : "Gestation period, 22 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65035007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336226, + "CONCEPT_NAME" : "Gestation period, 23 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86883006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439922, + "CONCEPT_NAME" : "Gestation period, 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313179009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435640, + "CONCEPT_NAME" : "Gestation period, 25 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72544005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444023, + "CONCEPT_NAME" : "Gestation period, 26 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48688005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432430, + "CONCEPT_NAME" : "Gestation period, 27 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46906003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444461, + "CONCEPT_NAME" : "Gestation period, 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90797000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444417, + "CONCEPT_NAME" : "Gestation period, 29 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45139008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434484, + "CONCEPT_NAME" : "Gestation period, 30 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "71355009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433864, + "CONCEPT_NAME" : "Gestation period, 31 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64920003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442558, + "CONCEPT_NAME" : "Gestation period, 32 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7707000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441678, + "CONCEPT_NAME" : "Gestation period, 33 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "78395001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443874, + "CONCEPT_NAME" : "Gestation period, 34 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13763000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444267, + "CONCEPT_NAME" : "Gestation period, 35 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84132007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438543, + "CONCEPT_NAME" : "Gestation period, 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57907009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442355, + "CONCEPT_NAME" : "Gestation period, 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43697006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443871, + "CONCEPT_NAME" : "Gestation period, 38 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13798002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435655, + "CONCEPT_NAME" : "Gestation period, 39 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80487005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442769, + "CONCEPT_NAME" : "Gestation period, 41 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63503002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444067, + "CONCEPT_NAME" : "Gestation period, 42 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36428009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4313026, + "CONCEPT_NAME" : "Gestation period, 6 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86801005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4270513, + "CONCEPT_NAME" : "Gestation period, 7 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63110000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4132434, + "CONCEPT_NAME" : "Gestation period, 8 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26690008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4245908, + "CONCEPT_NAME" : "Gestation period, 9 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "931004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 762907, + "CONCEPT_NAME" : "Gestation period greater than or equal to 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "433601000124106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336958, + "CONCEPT_NAME" : "Term pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87527008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4180111, + "CONCEPT_NAME" : "Third trimester pregnancy less than 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429240000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444098, + "CONCEPT_NAME" : "Gestation period, 40 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46230007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 68, + "name" : "Gestational age (GEST) gt than 6 week", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4015296, + "CONCEPT_NAME" : "Antenatal 12 weeks examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169712008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014149, + "CONCEPT_NAME" : "Antenatal 16 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169713003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014150, + "CONCEPT_NAME" : "Antenatal 20 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169714009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808979, + "CONCEPT_NAME" : "Antenatal 22 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861281000000109", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015141, + "CONCEPT_NAME" : "Antenatal 24 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169715005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808980, + "CONCEPT_NAME" : "Antenatal 25 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861301000000105", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014151, + "CONCEPT_NAME" : "Antenatal 30 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169717002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808981, + "CONCEPT_NAME" : "Antenatal 31 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861321000000101", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015297, + "CONCEPT_NAME" : "Antenatal 32 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169718007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015298, + "CONCEPT_NAME" : "Antenatal 34 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169719004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014434, + "CONCEPT_NAME" : "Antenatal 35 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169720005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015299, + "CONCEPT_NAME" : "Antenatal 36 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169721009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015142, + "CONCEPT_NAME" : "Antenatal 37 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169722002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014152, + "CONCEPT_NAME" : "Antenatal 38 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169723007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015300, + "CONCEPT_NAME" : "Antenatal 39 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169724001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015301, + "CONCEPT_NAME" : "Antenatal 40 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169725000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015302, + "CONCEPT_NAME" : "Antenatal 41 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169726004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014435, + "CONCEPT_NAME" : "Antenatal 42 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169727008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4178165, + "CONCEPT_NAME" : "Gestation 14 - 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428567001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181468, + "CONCEPT_NAME" : "Gestation 9- 13 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428930004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181162, + "CONCEPT_NAME" : "Gestation greater than 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429715006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4324063, + "CONCEPT_NAME" : "Gestation less than 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428566005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438542, + "CONCEPT_NAME" : "Gestation less than 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313178001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45770261, + "CONCEPT_NAME" : "Gestation less than 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "925561000000100", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4322726, + "CONCEPT_NAME" : "Gestation less than 9 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428058009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4242241, + "CONCEPT_NAME" : "Gestation period, 10 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "38039008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4174506, + "CONCEPT_NAME" : "Gestation period, 11 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "50367001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4197245, + "CONCEPT_NAME" : "Gestation period, 12 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "79992004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4266517, + "CONCEPT_NAME" : "Gestation period, 13 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "62333002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4248725, + "CONCEPT_NAME" : "Gestation period, 14 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72846000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4283690, + "CONCEPT_NAME" : "Gestation period, 15 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6678005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4049621, + "CONCEPT_NAME" : "Gestation period, 16 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15633004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4277749, + "CONCEPT_NAME" : "Gestation period, 17 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65683006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4097608, + "CONCEPT_NAME" : "Gestation period, 18 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25026004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181751, + "CONCEPT_NAME" : "Gestation period, 19 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54318006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4051642, + "CONCEPT_NAME" : "Gestation period, 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "23464008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4185780, + "CONCEPT_NAME" : "Gestation period, 21 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "41438001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4274955, + "CONCEPT_NAME" : "Gestation period, 22 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65035007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336226, + "CONCEPT_NAME" : "Gestation period, 23 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86883006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439922, + "CONCEPT_NAME" : "Gestation period, 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313179009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435640, + "CONCEPT_NAME" : "Gestation period, 25 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72544005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444023, + "CONCEPT_NAME" : "Gestation period, 26 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48688005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432430, + "CONCEPT_NAME" : "Gestation period, 27 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46906003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444461, + "CONCEPT_NAME" : "Gestation period, 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90797000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444417, + "CONCEPT_NAME" : "Gestation period, 29 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45139008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434484, + "CONCEPT_NAME" : "Gestation period, 30 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "71355009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433864, + "CONCEPT_NAME" : "Gestation period, 31 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64920003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442558, + "CONCEPT_NAME" : "Gestation period, 32 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7707000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441678, + "CONCEPT_NAME" : "Gestation period, 33 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "78395001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443874, + "CONCEPT_NAME" : "Gestation period, 34 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13763000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444267, + "CONCEPT_NAME" : "Gestation period, 35 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84132007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438543, + "CONCEPT_NAME" : "Gestation period, 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57907009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442355, + "CONCEPT_NAME" : "Gestation period, 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43697006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443871, + "CONCEPT_NAME" : "Gestation period, 38 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13798002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435655, + "CONCEPT_NAME" : "Gestation period, 39 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80487005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442769, + "CONCEPT_NAME" : "Gestation period, 41 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63503002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444067, + "CONCEPT_NAME" : "Gestation period, 42 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36428009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4270513, + "CONCEPT_NAME" : "Gestation period, 7 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63110000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4132434, + "CONCEPT_NAME" : "Gestation period, 8 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26690008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4245908, + "CONCEPT_NAME" : "Gestation period, 9 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "931004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 762907, + "CONCEPT_NAME" : "Gestation period greater than or equal to 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "433601000124106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336958, + "CONCEPT_NAME" : "Term pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87527008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4180111, + "CONCEPT_NAME" : "Third trimester pregnancy less than 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429240000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444098, + "CONCEPT_NAME" : "Gestation period, 40 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46230007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 69, + "name" : "Gestational age (GEST) gt than 7 week", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4015296, + "CONCEPT_NAME" : "Antenatal 12 weeks examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169712008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014149, + "CONCEPT_NAME" : "Antenatal 16 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169713003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014150, + "CONCEPT_NAME" : "Antenatal 20 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169714009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808979, + "CONCEPT_NAME" : "Antenatal 22 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861281000000109", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015141, + "CONCEPT_NAME" : "Antenatal 24 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169715005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808980, + "CONCEPT_NAME" : "Antenatal 25 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861301000000105", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014151, + "CONCEPT_NAME" : "Antenatal 30 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169717002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808981, + "CONCEPT_NAME" : "Antenatal 31 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861321000000101", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015297, + "CONCEPT_NAME" : "Antenatal 32 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169718007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015298, + "CONCEPT_NAME" : "Antenatal 34 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169719004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014434, + "CONCEPT_NAME" : "Antenatal 35 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169720005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015299, + "CONCEPT_NAME" : "Antenatal 36 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169721009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015142, + "CONCEPT_NAME" : "Antenatal 37 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169722002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014152, + "CONCEPT_NAME" : "Antenatal 38 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169723007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015300, + "CONCEPT_NAME" : "Antenatal 39 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169724001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015301, + "CONCEPT_NAME" : "Antenatal 40 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169725000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015302, + "CONCEPT_NAME" : "Antenatal 41 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169726004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014435, + "CONCEPT_NAME" : "Antenatal 42 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169727008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4178165, + "CONCEPT_NAME" : "Gestation 14 - 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428567001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181468, + "CONCEPT_NAME" : "Gestation 9- 13 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428930004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181162, + "CONCEPT_NAME" : "Gestation greater than 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429715006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4324063, + "CONCEPT_NAME" : "Gestation less than 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428566005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438542, + "CONCEPT_NAME" : "Gestation less than 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313178001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45770261, + "CONCEPT_NAME" : "Gestation less than 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "925561000000100", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4322726, + "CONCEPT_NAME" : "Gestation less than 9 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428058009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4242241, + "CONCEPT_NAME" : "Gestation period, 10 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "38039008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4174506, + "CONCEPT_NAME" : "Gestation period, 11 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "50367001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4197245, + "CONCEPT_NAME" : "Gestation period, 12 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "79992004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4266517, + "CONCEPT_NAME" : "Gestation period, 13 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "62333002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4248725, + "CONCEPT_NAME" : "Gestation period, 14 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72846000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4283690, + "CONCEPT_NAME" : "Gestation period, 15 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6678005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4049621, + "CONCEPT_NAME" : "Gestation period, 16 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15633004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4277749, + "CONCEPT_NAME" : "Gestation period, 17 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65683006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4097608, + "CONCEPT_NAME" : "Gestation period, 18 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25026004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181751, + "CONCEPT_NAME" : "Gestation period, 19 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54318006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4051642, + "CONCEPT_NAME" : "Gestation period, 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "23464008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4185780, + "CONCEPT_NAME" : "Gestation period, 21 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "41438001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4274955, + "CONCEPT_NAME" : "Gestation period, 22 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65035007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336226, + "CONCEPT_NAME" : "Gestation period, 23 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86883006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439922, + "CONCEPT_NAME" : "Gestation period, 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313179009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435640, + "CONCEPT_NAME" : "Gestation period, 25 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72544005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444023, + "CONCEPT_NAME" : "Gestation period, 26 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48688005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432430, + "CONCEPT_NAME" : "Gestation period, 27 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46906003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444461, + "CONCEPT_NAME" : "Gestation period, 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90797000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444417, + "CONCEPT_NAME" : "Gestation period, 29 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45139008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434484, + "CONCEPT_NAME" : "Gestation period, 30 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "71355009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433864, + "CONCEPT_NAME" : "Gestation period, 31 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64920003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442558, + "CONCEPT_NAME" : "Gestation period, 32 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7707000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441678, + "CONCEPT_NAME" : "Gestation period, 33 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "78395001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443874, + "CONCEPT_NAME" : "Gestation period, 34 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13763000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444267, + "CONCEPT_NAME" : "Gestation period, 35 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84132007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438543, + "CONCEPT_NAME" : "Gestation period, 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57907009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442355, + "CONCEPT_NAME" : "Gestation period, 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43697006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443871, + "CONCEPT_NAME" : "Gestation period, 38 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13798002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435655, + "CONCEPT_NAME" : "Gestation period, 39 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80487005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442769, + "CONCEPT_NAME" : "Gestation period, 41 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63503002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444067, + "CONCEPT_NAME" : "Gestation period, 42 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36428009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4132434, + "CONCEPT_NAME" : "Gestation period, 8 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26690008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4245908, + "CONCEPT_NAME" : "Gestation period, 9 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "931004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 762907, + "CONCEPT_NAME" : "Gestation period greater than or equal to 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "433601000124106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336958, + "CONCEPT_NAME" : "Term pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87527008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4180111, + "CONCEPT_NAME" : "Third trimester pregnancy less than 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429240000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444098, + "CONCEPT_NAME" : "Gestation period, 40 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46230007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 70, + "name" : "Gestational age (GEST) gt than 8 week", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4015296, + "CONCEPT_NAME" : "Antenatal 12 weeks examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169712008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014149, + "CONCEPT_NAME" : "Antenatal 16 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169713003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014150, + "CONCEPT_NAME" : "Antenatal 20 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169714009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808979, + "CONCEPT_NAME" : "Antenatal 22 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861281000000109", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015141, + "CONCEPT_NAME" : "Antenatal 24 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169715005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808980, + "CONCEPT_NAME" : "Antenatal 25 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861301000000105", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014151, + "CONCEPT_NAME" : "Antenatal 30 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169717002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808981, + "CONCEPT_NAME" : "Antenatal 31 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861321000000101", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015297, + "CONCEPT_NAME" : "Antenatal 32 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169718007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015298, + "CONCEPT_NAME" : "Antenatal 34 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169719004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014434, + "CONCEPT_NAME" : "Antenatal 35 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169720005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015299, + "CONCEPT_NAME" : "Antenatal 36 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169721009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015142, + "CONCEPT_NAME" : "Antenatal 37 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169722002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014152, + "CONCEPT_NAME" : "Antenatal 38 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169723007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015300, + "CONCEPT_NAME" : "Antenatal 39 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169724001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015301, + "CONCEPT_NAME" : "Antenatal 40 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169725000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015302, + "CONCEPT_NAME" : "Antenatal 41 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169726004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014435, + "CONCEPT_NAME" : "Antenatal 42 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169727008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4178165, + "CONCEPT_NAME" : "Gestation 14 - 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428567001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181468, + "CONCEPT_NAME" : "Gestation 9- 13 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428930004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181162, + "CONCEPT_NAME" : "Gestation greater than 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429715006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4324063, + "CONCEPT_NAME" : "Gestation less than 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428566005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438542, + "CONCEPT_NAME" : "Gestation less than 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313178001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45770261, + "CONCEPT_NAME" : "Gestation less than 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "925561000000100", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4242241, + "CONCEPT_NAME" : "Gestation period, 10 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "38039008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4174506, + "CONCEPT_NAME" : "Gestation period, 11 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "50367001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4197245, + "CONCEPT_NAME" : "Gestation period, 12 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "79992004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4266517, + "CONCEPT_NAME" : "Gestation period, 13 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "62333002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4248725, + "CONCEPT_NAME" : "Gestation period, 14 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72846000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4283690, + "CONCEPT_NAME" : "Gestation period, 15 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6678005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4049621, + "CONCEPT_NAME" : "Gestation period, 16 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15633004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4277749, + "CONCEPT_NAME" : "Gestation period, 17 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65683006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4097608, + "CONCEPT_NAME" : "Gestation period, 18 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25026004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181751, + "CONCEPT_NAME" : "Gestation period, 19 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54318006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4051642, + "CONCEPT_NAME" : "Gestation period, 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "23464008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4185780, + "CONCEPT_NAME" : "Gestation period, 21 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "41438001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4274955, + "CONCEPT_NAME" : "Gestation period, 22 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65035007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336226, + "CONCEPT_NAME" : "Gestation period, 23 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86883006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439922, + "CONCEPT_NAME" : "Gestation period, 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313179009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435640, + "CONCEPT_NAME" : "Gestation period, 25 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72544005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444023, + "CONCEPT_NAME" : "Gestation period, 26 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48688005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432430, + "CONCEPT_NAME" : "Gestation period, 27 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46906003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444461, + "CONCEPT_NAME" : "Gestation period, 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90797000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444417, + "CONCEPT_NAME" : "Gestation period, 29 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45139008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434484, + "CONCEPT_NAME" : "Gestation period, 30 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "71355009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433864, + "CONCEPT_NAME" : "Gestation period, 31 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64920003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442558, + "CONCEPT_NAME" : "Gestation period, 32 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7707000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441678, + "CONCEPT_NAME" : "Gestation period, 33 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "78395001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443874, + "CONCEPT_NAME" : "Gestation period, 34 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13763000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444267, + "CONCEPT_NAME" : "Gestation period, 35 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84132007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438543, + "CONCEPT_NAME" : "Gestation period, 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57907009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442355, + "CONCEPT_NAME" : "Gestation period, 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43697006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443871, + "CONCEPT_NAME" : "Gestation period, 38 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13798002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435655, + "CONCEPT_NAME" : "Gestation period, 39 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80487005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442769, + "CONCEPT_NAME" : "Gestation period, 41 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63503002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444067, + "CONCEPT_NAME" : "Gestation period, 42 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36428009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4245908, + "CONCEPT_NAME" : "Gestation period, 9 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "931004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 762907, + "CONCEPT_NAME" : "Gestation period greater than or equal to 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "433601000124106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336958, + "CONCEPT_NAME" : "Term pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87527008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4180111, + "CONCEPT_NAME" : "Third trimester pregnancy less than 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429240000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444098, + "CONCEPT_NAME" : "Gestation period, 40 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46230007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 71, + "name" : "Gestational age (GEST) gt than 9 week", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4015296, + "CONCEPT_NAME" : "Antenatal 12 weeks examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169712008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014149, + "CONCEPT_NAME" : "Antenatal 16 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169713003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014150, + "CONCEPT_NAME" : "Antenatal 20 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169714009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808979, + "CONCEPT_NAME" : "Antenatal 22 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861281000000109", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015141, + "CONCEPT_NAME" : "Antenatal 24 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169715005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808980, + "CONCEPT_NAME" : "Antenatal 25 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861301000000105", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014151, + "CONCEPT_NAME" : "Antenatal 30 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169717002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808981, + "CONCEPT_NAME" : "Antenatal 31 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861321000000101", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015297, + "CONCEPT_NAME" : "Antenatal 32 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169718007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015298, + "CONCEPT_NAME" : "Antenatal 34 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169719004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014434, + "CONCEPT_NAME" : "Antenatal 35 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169720005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015299, + "CONCEPT_NAME" : "Antenatal 36 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169721009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015142, + "CONCEPT_NAME" : "Antenatal 37 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169722002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014152, + "CONCEPT_NAME" : "Antenatal 38 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169723007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015300, + "CONCEPT_NAME" : "Antenatal 39 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169724001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015301, + "CONCEPT_NAME" : "Antenatal 40 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169725000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015302, + "CONCEPT_NAME" : "Antenatal 41 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169726004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014435, + "CONCEPT_NAME" : "Antenatal 42 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169727008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4178165, + "CONCEPT_NAME" : "Gestation 14 - 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428567001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181468, + "CONCEPT_NAME" : "Gestation 9- 13 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428930004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181162, + "CONCEPT_NAME" : "Gestation greater than 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429715006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4324063, + "CONCEPT_NAME" : "Gestation less than 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428566005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438542, + "CONCEPT_NAME" : "Gestation less than 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313178001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45770261, + "CONCEPT_NAME" : "Gestation less than 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "925561000000100", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4242241, + "CONCEPT_NAME" : "Gestation period, 10 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "38039008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4174506, + "CONCEPT_NAME" : "Gestation period, 11 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "50367001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4197245, + "CONCEPT_NAME" : "Gestation period, 12 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "79992004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4266517, + "CONCEPT_NAME" : "Gestation period, 13 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "62333002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4248725, + "CONCEPT_NAME" : "Gestation period, 14 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72846000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4283690, + "CONCEPT_NAME" : "Gestation period, 15 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6678005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4049621, + "CONCEPT_NAME" : "Gestation period, 16 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15633004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4277749, + "CONCEPT_NAME" : "Gestation period, 17 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65683006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4097608, + "CONCEPT_NAME" : "Gestation period, 18 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25026004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181751, + "CONCEPT_NAME" : "Gestation period, 19 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54318006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4051642, + "CONCEPT_NAME" : "Gestation period, 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "23464008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4185780, + "CONCEPT_NAME" : "Gestation period, 21 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "41438001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4274955, + "CONCEPT_NAME" : "Gestation period, 22 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65035007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336226, + "CONCEPT_NAME" : "Gestation period, 23 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86883006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439922, + "CONCEPT_NAME" : "Gestation period, 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313179009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435640, + "CONCEPT_NAME" : "Gestation period, 25 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72544005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444023, + "CONCEPT_NAME" : "Gestation period, 26 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48688005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432430, + "CONCEPT_NAME" : "Gestation period, 27 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46906003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444461, + "CONCEPT_NAME" : "Gestation period, 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90797000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444417, + "CONCEPT_NAME" : "Gestation period, 29 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45139008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434484, + "CONCEPT_NAME" : "Gestation period, 30 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "71355009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433864, + "CONCEPT_NAME" : "Gestation period, 31 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64920003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442558, + "CONCEPT_NAME" : "Gestation period, 32 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7707000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441678, + "CONCEPT_NAME" : "Gestation period, 33 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "78395001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443874, + "CONCEPT_NAME" : "Gestation period, 34 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13763000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444267, + "CONCEPT_NAME" : "Gestation period, 35 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84132007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438543, + "CONCEPT_NAME" : "Gestation period, 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57907009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442355, + "CONCEPT_NAME" : "Gestation period, 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43697006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443871, + "CONCEPT_NAME" : "Gestation period, 38 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13798002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435655, + "CONCEPT_NAME" : "Gestation period, 39 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80487005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442769, + "CONCEPT_NAME" : "Gestation period, 41 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63503002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444067, + "CONCEPT_NAME" : "Gestation period, 42 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36428009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 762907, + "CONCEPT_NAME" : "Gestation period greater than or equal to 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "433601000124106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336958, + "CONCEPT_NAME" : "Term pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87527008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4180111, + "CONCEPT_NAME" : "Third trimester pregnancy less than 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429240000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444098, + "CONCEPT_NAME" : "Gestation period, 40 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46230007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 72, + "name" : "Gestational age (GEST) gt than 10 week", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4015296, + "CONCEPT_NAME" : "Antenatal 12 weeks examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169712008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014149, + "CONCEPT_NAME" : "Antenatal 16 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169713003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014150, + "CONCEPT_NAME" : "Antenatal 20 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169714009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808979, + "CONCEPT_NAME" : "Antenatal 22 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861281000000109", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015141, + "CONCEPT_NAME" : "Antenatal 24 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169715005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808980, + "CONCEPT_NAME" : "Antenatal 25 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861301000000105", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014151, + "CONCEPT_NAME" : "Antenatal 30 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169717002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808981, + "CONCEPT_NAME" : "Antenatal 31 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861321000000101", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015297, + "CONCEPT_NAME" : "Antenatal 32 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169718007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015298, + "CONCEPT_NAME" : "Antenatal 34 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169719004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014434, + "CONCEPT_NAME" : "Antenatal 35 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169720005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015299, + "CONCEPT_NAME" : "Antenatal 36 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169721009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015142, + "CONCEPT_NAME" : "Antenatal 37 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169722002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014152, + "CONCEPT_NAME" : "Antenatal 38 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169723007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015300, + "CONCEPT_NAME" : "Antenatal 39 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169724001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015301, + "CONCEPT_NAME" : "Antenatal 40 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169725000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015302, + "CONCEPT_NAME" : "Antenatal 41 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169726004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014435, + "CONCEPT_NAME" : "Antenatal 42 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169727008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4178165, + "CONCEPT_NAME" : "Gestation 14 - 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428567001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181468, + "CONCEPT_NAME" : "Gestation 9- 13 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428930004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181162, + "CONCEPT_NAME" : "Gestation greater than 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429715006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4324063, + "CONCEPT_NAME" : "Gestation less than 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428566005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438542, + "CONCEPT_NAME" : "Gestation less than 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313178001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45770261, + "CONCEPT_NAME" : "Gestation less than 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "925561000000100", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4174506, + "CONCEPT_NAME" : "Gestation period, 11 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "50367001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4197245, + "CONCEPT_NAME" : "Gestation period, 12 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "79992004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4266517, + "CONCEPT_NAME" : "Gestation period, 13 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "62333002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4248725, + "CONCEPT_NAME" : "Gestation period, 14 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72846000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4283690, + "CONCEPT_NAME" : "Gestation period, 15 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6678005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4049621, + "CONCEPT_NAME" : "Gestation period, 16 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15633004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4277749, + "CONCEPT_NAME" : "Gestation period, 17 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65683006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4097608, + "CONCEPT_NAME" : "Gestation period, 18 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25026004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181751, + "CONCEPT_NAME" : "Gestation period, 19 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54318006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4051642, + "CONCEPT_NAME" : "Gestation period, 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "23464008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4185780, + "CONCEPT_NAME" : "Gestation period, 21 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "41438001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4274955, + "CONCEPT_NAME" : "Gestation period, 22 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65035007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336226, + "CONCEPT_NAME" : "Gestation period, 23 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86883006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439922, + "CONCEPT_NAME" : "Gestation period, 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313179009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435640, + "CONCEPT_NAME" : "Gestation period, 25 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72544005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444023, + "CONCEPT_NAME" : "Gestation period, 26 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48688005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432430, + "CONCEPT_NAME" : "Gestation period, 27 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46906003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444461, + "CONCEPT_NAME" : "Gestation period, 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90797000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444417, + "CONCEPT_NAME" : "Gestation period, 29 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45139008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434484, + "CONCEPT_NAME" : "Gestation period, 30 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "71355009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433864, + "CONCEPT_NAME" : "Gestation period, 31 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64920003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442558, + "CONCEPT_NAME" : "Gestation period, 32 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7707000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441678, + "CONCEPT_NAME" : "Gestation period, 33 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "78395001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443874, + "CONCEPT_NAME" : "Gestation period, 34 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13763000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444267, + "CONCEPT_NAME" : "Gestation period, 35 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84132007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438543, + "CONCEPT_NAME" : "Gestation period, 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57907009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442355, + "CONCEPT_NAME" : "Gestation period, 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43697006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443871, + "CONCEPT_NAME" : "Gestation period, 38 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13798002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435655, + "CONCEPT_NAME" : "Gestation period, 39 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80487005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442769, + "CONCEPT_NAME" : "Gestation period, 41 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63503002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444067, + "CONCEPT_NAME" : "Gestation period, 42 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36428009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 762907, + "CONCEPT_NAME" : "Gestation period greater than or equal to 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "433601000124106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336958, + "CONCEPT_NAME" : "Term pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87527008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4180111, + "CONCEPT_NAME" : "Third trimester pregnancy less than 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429240000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444098, + "CONCEPT_NAME" : "Gestation period, 40 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46230007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 73, + "name" : "Gestational age (GEST) gt than 11 week", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4015296, + "CONCEPT_NAME" : "Antenatal 12 weeks examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169712008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014149, + "CONCEPT_NAME" : "Antenatal 16 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169713003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014150, + "CONCEPT_NAME" : "Antenatal 20 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169714009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808979, + "CONCEPT_NAME" : "Antenatal 22 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861281000000109", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015141, + "CONCEPT_NAME" : "Antenatal 24 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169715005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808980, + "CONCEPT_NAME" : "Antenatal 25 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861301000000105", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014151, + "CONCEPT_NAME" : "Antenatal 30 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169717002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808981, + "CONCEPT_NAME" : "Antenatal 31 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861321000000101", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015297, + "CONCEPT_NAME" : "Antenatal 32 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169718007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015298, + "CONCEPT_NAME" : "Antenatal 34 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169719004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014434, + "CONCEPT_NAME" : "Antenatal 35 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169720005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015299, + "CONCEPT_NAME" : "Antenatal 36 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169721009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015142, + "CONCEPT_NAME" : "Antenatal 37 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169722002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014152, + "CONCEPT_NAME" : "Antenatal 38 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169723007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015300, + "CONCEPT_NAME" : "Antenatal 39 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169724001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015301, + "CONCEPT_NAME" : "Antenatal 40 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169725000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015302, + "CONCEPT_NAME" : "Antenatal 41 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169726004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014435, + "CONCEPT_NAME" : "Antenatal 42 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169727008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4178165, + "CONCEPT_NAME" : "Gestation 14 - 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428567001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181468, + "CONCEPT_NAME" : "Gestation 9- 13 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428930004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181162, + "CONCEPT_NAME" : "Gestation greater than 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429715006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4324063, + "CONCEPT_NAME" : "Gestation less than 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428566005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438542, + "CONCEPT_NAME" : "Gestation less than 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313178001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45770261, + "CONCEPT_NAME" : "Gestation less than 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "925561000000100", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4197245, + "CONCEPT_NAME" : "Gestation period, 12 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "79992004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4266517, + "CONCEPT_NAME" : "Gestation period, 13 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "62333002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4248725, + "CONCEPT_NAME" : "Gestation period, 14 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72846000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4283690, + "CONCEPT_NAME" : "Gestation period, 15 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6678005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4049621, + "CONCEPT_NAME" : "Gestation period, 16 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15633004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4277749, + "CONCEPT_NAME" : "Gestation period, 17 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65683006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4097608, + "CONCEPT_NAME" : "Gestation period, 18 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25026004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181751, + "CONCEPT_NAME" : "Gestation period, 19 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54318006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4051642, + "CONCEPT_NAME" : "Gestation period, 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "23464008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4185780, + "CONCEPT_NAME" : "Gestation period, 21 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "41438001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4274955, + "CONCEPT_NAME" : "Gestation period, 22 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65035007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336226, + "CONCEPT_NAME" : "Gestation period, 23 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86883006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439922, + "CONCEPT_NAME" : "Gestation period, 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313179009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435640, + "CONCEPT_NAME" : "Gestation period, 25 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72544005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444023, + "CONCEPT_NAME" : "Gestation period, 26 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48688005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432430, + "CONCEPT_NAME" : "Gestation period, 27 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46906003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444461, + "CONCEPT_NAME" : "Gestation period, 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90797000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444417, + "CONCEPT_NAME" : "Gestation period, 29 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45139008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434484, + "CONCEPT_NAME" : "Gestation period, 30 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "71355009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433864, + "CONCEPT_NAME" : "Gestation period, 31 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64920003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442558, + "CONCEPT_NAME" : "Gestation period, 32 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7707000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441678, + "CONCEPT_NAME" : "Gestation period, 33 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "78395001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443874, + "CONCEPT_NAME" : "Gestation period, 34 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13763000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444267, + "CONCEPT_NAME" : "Gestation period, 35 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84132007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438543, + "CONCEPT_NAME" : "Gestation period, 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57907009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442355, + "CONCEPT_NAME" : "Gestation period, 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43697006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443871, + "CONCEPT_NAME" : "Gestation period, 38 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13798002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435655, + "CONCEPT_NAME" : "Gestation period, 39 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80487005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442769, + "CONCEPT_NAME" : "Gestation period, 41 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63503002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444067, + "CONCEPT_NAME" : "Gestation period, 42 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36428009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 762907, + "CONCEPT_NAME" : "Gestation period greater than or equal to 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "433601000124106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336958, + "CONCEPT_NAME" : "Term pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87527008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4180111, + "CONCEPT_NAME" : "Third trimester pregnancy less than 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429240000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444098, + "CONCEPT_NAME" : "Gestation period, 40 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46230007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 74, + "name" : "Gestational age (GEST) gt than 12 week", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4014149, + "CONCEPT_NAME" : "Antenatal 16 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169713003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014150, + "CONCEPT_NAME" : "Antenatal 20 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169714009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808979, + "CONCEPT_NAME" : "Antenatal 22 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861281000000109", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015141, + "CONCEPT_NAME" : "Antenatal 24 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169715005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808980, + "CONCEPT_NAME" : "Antenatal 25 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861301000000105", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014151, + "CONCEPT_NAME" : "Antenatal 30 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169717002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808981, + "CONCEPT_NAME" : "Antenatal 31 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861321000000101", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015297, + "CONCEPT_NAME" : "Antenatal 32 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169718007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015298, + "CONCEPT_NAME" : "Antenatal 34 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169719004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014434, + "CONCEPT_NAME" : "Antenatal 35 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169720005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015299, + "CONCEPT_NAME" : "Antenatal 36 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169721009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015142, + "CONCEPT_NAME" : "Antenatal 37 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169722002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014152, + "CONCEPT_NAME" : "Antenatal 38 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169723007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015300, + "CONCEPT_NAME" : "Antenatal 39 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169724001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015301, + "CONCEPT_NAME" : "Antenatal 40 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169725000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015302, + "CONCEPT_NAME" : "Antenatal 41 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169726004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014435, + "CONCEPT_NAME" : "Antenatal 42 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169727008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4178165, + "CONCEPT_NAME" : "Gestation 14 - 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428567001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181468, + "CONCEPT_NAME" : "Gestation 9- 13 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428930004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181162, + "CONCEPT_NAME" : "Gestation greater than 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429715006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4324063, + "CONCEPT_NAME" : "Gestation less than 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428566005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438542, + "CONCEPT_NAME" : "Gestation less than 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313178001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45770261, + "CONCEPT_NAME" : "Gestation less than 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "925561000000100", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4266517, + "CONCEPT_NAME" : "Gestation period, 13 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "62333002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4248725, + "CONCEPT_NAME" : "Gestation period, 14 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72846000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4283690, + "CONCEPT_NAME" : "Gestation period, 15 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6678005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4049621, + "CONCEPT_NAME" : "Gestation period, 16 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15633004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4277749, + "CONCEPT_NAME" : "Gestation period, 17 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65683006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4097608, + "CONCEPT_NAME" : "Gestation period, 18 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25026004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181751, + "CONCEPT_NAME" : "Gestation period, 19 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54318006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4051642, + "CONCEPT_NAME" : "Gestation period, 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "23464008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4185780, + "CONCEPT_NAME" : "Gestation period, 21 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "41438001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4274955, + "CONCEPT_NAME" : "Gestation period, 22 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65035007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336226, + "CONCEPT_NAME" : "Gestation period, 23 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86883006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439922, + "CONCEPT_NAME" : "Gestation period, 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313179009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435640, + "CONCEPT_NAME" : "Gestation period, 25 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72544005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444023, + "CONCEPT_NAME" : "Gestation period, 26 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48688005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432430, + "CONCEPT_NAME" : "Gestation period, 27 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46906003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444461, + "CONCEPT_NAME" : "Gestation period, 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90797000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444417, + "CONCEPT_NAME" : "Gestation period, 29 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45139008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434484, + "CONCEPT_NAME" : "Gestation period, 30 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "71355009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433864, + "CONCEPT_NAME" : "Gestation period, 31 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64920003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442558, + "CONCEPT_NAME" : "Gestation period, 32 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7707000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441678, + "CONCEPT_NAME" : "Gestation period, 33 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "78395001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443874, + "CONCEPT_NAME" : "Gestation period, 34 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13763000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444267, + "CONCEPT_NAME" : "Gestation period, 35 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84132007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438543, + "CONCEPT_NAME" : "Gestation period, 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57907009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442355, + "CONCEPT_NAME" : "Gestation period, 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43697006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443871, + "CONCEPT_NAME" : "Gestation period, 38 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13798002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435655, + "CONCEPT_NAME" : "Gestation period, 39 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80487005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442769, + "CONCEPT_NAME" : "Gestation period, 41 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63503002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444067, + "CONCEPT_NAME" : "Gestation period, 42 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36428009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 762907, + "CONCEPT_NAME" : "Gestation period greater than or equal to 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "433601000124106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336958, + "CONCEPT_NAME" : "Term pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87527008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4180111, + "CONCEPT_NAME" : "Third trimester pregnancy less than 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429240000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444098, + "CONCEPT_NAME" : "Gestation period, 40 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46230007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 75, + "name" : "Gestational age (GEST) gt than 13 week", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4014149, + "CONCEPT_NAME" : "Antenatal 16 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169713003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014150, + "CONCEPT_NAME" : "Antenatal 20 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169714009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808979, + "CONCEPT_NAME" : "Antenatal 22 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861281000000109", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015141, + "CONCEPT_NAME" : "Antenatal 24 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169715005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808980, + "CONCEPT_NAME" : "Antenatal 25 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861301000000105", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014151, + "CONCEPT_NAME" : "Antenatal 30 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169717002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808981, + "CONCEPT_NAME" : "Antenatal 31 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861321000000101", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015297, + "CONCEPT_NAME" : "Antenatal 32 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169718007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015298, + "CONCEPT_NAME" : "Antenatal 34 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169719004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014434, + "CONCEPT_NAME" : "Antenatal 35 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169720005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015299, + "CONCEPT_NAME" : "Antenatal 36 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169721009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015142, + "CONCEPT_NAME" : "Antenatal 37 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169722002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014152, + "CONCEPT_NAME" : "Antenatal 38 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169723007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015300, + "CONCEPT_NAME" : "Antenatal 39 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169724001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015301, + "CONCEPT_NAME" : "Antenatal 40 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169725000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015302, + "CONCEPT_NAME" : "Antenatal 41 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169726004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014435, + "CONCEPT_NAME" : "Antenatal 42 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169727008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4178165, + "CONCEPT_NAME" : "Gestation 14 - 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428567001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181162, + "CONCEPT_NAME" : "Gestation greater than 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429715006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4324063, + "CONCEPT_NAME" : "Gestation less than 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428566005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438542, + "CONCEPT_NAME" : "Gestation less than 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313178001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45770261, + "CONCEPT_NAME" : "Gestation less than 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "925561000000100", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4248725, + "CONCEPT_NAME" : "Gestation period, 14 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72846000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4283690, + "CONCEPT_NAME" : "Gestation period, 15 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6678005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4049621, + "CONCEPT_NAME" : "Gestation period, 16 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15633004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4277749, + "CONCEPT_NAME" : "Gestation period, 17 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65683006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4097608, + "CONCEPT_NAME" : "Gestation period, 18 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25026004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181751, + "CONCEPT_NAME" : "Gestation period, 19 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54318006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4051642, + "CONCEPT_NAME" : "Gestation period, 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "23464008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4185780, + "CONCEPT_NAME" : "Gestation period, 21 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "41438001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4274955, + "CONCEPT_NAME" : "Gestation period, 22 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65035007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336226, + "CONCEPT_NAME" : "Gestation period, 23 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86883006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439922, + "CONCEPT_NAME" : "Gestation period, 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313179009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435640, + "CONCEPT_NAME" : "Gestation period, 25 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72544005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444023, + "CONCEPT_NAME" : "Gestation period, 26 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48688005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432430, + "CONCEPT_NAME" : "Gestation period, 27 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46906003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444461, + "CONCEPT_NAME" : "Gestation period, 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90797000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444417, + "CONCEPT_NAME" : "Gestation period, 29 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45139008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434484, + "CONCEPT_NAME" : "Gestation period, 30 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "71355009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433864, + "CONCEPT_NAME" : "Gestation period, 31 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64920003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442558, + "CONCEPT_NAME" : "Gestation period, 32 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7707000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441678, + "CONCEPT_NAME" : "Gestation period, 33 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "78395001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443874, + "CONCEPT_NAME" : "Gestation period, 34 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13763000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444267, + "CONCEPT_NAME" : "Gestation period, 35 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84132007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438543, + "CONCEPT_NAME" : "Gestation period, 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57907009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442355, + "CONCEPT_NAME" : "Gestation period, 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43697006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443871, + "CONCEPT_NAME" : "Gestation period, 38 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13798002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435655, + "CONCEPT_NAME" : "Gestation period, 39 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80487005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442769, + "CONCEPT_NAME" : "Gestation period, 41 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63503002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444067, + "CONCEPT_NAME" : "Gestation period, 42 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36428009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 762907, + "CONCEPT_NAME" : "Gestation period greater than or equal to 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "433601000124106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336958, + "CONCEPT_NAME" : "Term pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87527008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4180111, + "CONCEPT_NAME" : "Third trimester pregnancy less than 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429240000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444098, + "CONCEPT_NAME" : "Gestation period, 40 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46230007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 76, + "name" : "Gestational age (GEST) gt than 14 week", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4014149, + "CONCEPT_NAME" : "Antenatal 16 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169713003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014150, + "CONCEPT_NAME" : "Antenatal 20 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169714009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808979, + "CONCEPT_NAME" : "Antenatal 22 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861281000000109", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015141, + "CONCEPT_NAME" : "Antenatal 24 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169715005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808980, + "CONCEPT_NAME" : "Antenatal 25 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861301000000105", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014151, + "CONCEPT_NAME" : "Antenatal 30 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169717002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808981, + "CONCEPT_NAME" : "Antenatal 31 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861321000000101", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015297, + "CONCEPT_NAME" : "Antenatal 32 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169718007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015298, + "CONCEPT_NAME" : "Antenatal 34 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169719004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014434, + "CONCEPT_NAME" : "Antenatal 35 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169720005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015299, + "CONCEPT_NAME" : "Antenatal 36 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169721009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015142, + "CONCEPT_NAME" : "Antenatal 37 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169722002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014152, + "CONCEPT_NAME" : "Antenatal 38 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169723007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015300, + "CONCEPT_NAME" : "Antenatal 39 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169724001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015301, + "CONCEPT_NAME" : "Antenatal 40 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169725000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015302, + "CONCEPT_NAME" : "Antenatal 41 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169726004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014435, + "CONCEPT_NAME" : "Antenatal 42 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169727008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4178165, + "CONCEPT_NAME" : "Gestation 14 - 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428567001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181162, + "CONCEPT_NAME" : "Gestation greater than 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429715006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4324063, + "CONCEPT_NAME" : "Gestation less than 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428566005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438542, + "CONCEPT_NAME" : "Gestation less than 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313178001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45770261, + "CONCEPT_NAME" : "Gestation less than 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "925561000000100", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4283690, + "CONCEPT_NAME" : "Gestation period, 15 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6678005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4049621, + "CONCEPT_NAME" : "Gestation period, 16 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15633004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4277749, + "CONCEPT_NAME" : "Gestation period, 17 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65683006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4097608, + "CONCEPT_NAME" : "Gestation period, 18 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25026004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181751, + "CONCEPT_NAME" : "Gestation period, 19 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54318006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4051642, + "CONCEPT_NAME" : "Gestation period, 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "23464008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4185780, + "CONCEPT_NAME" : "Gestation period, 21 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "41438001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4274955, + "CONCEPT_NAME" : "Gestation period, 22 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65035007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336226, + "CONCEPT_NAME" : "Gestation period, 23 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86883006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439922, + "CONCEPT_NAME" : "Gestation period, 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313179009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435640, + "CONCEPT_NAME" : "Gestation period, 25 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72544005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444023, + "CONCEPT_NAME" : "Gestation period, 26 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48688005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432430, + "CONCEPT_NAME" : "Gestation period, 27 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46906003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444461, + "CONCEPT_NAME" : "Gestation period, 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90797000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444417, + "CONCEPT_NAME" : "Gestation period, 29 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45139008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434484, + "CONCEPT_NAME" : "Gestation period, 30 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "71355009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433864, + "CONCEPT_NAME" : "Gestation period, 31 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64920003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442558, + "CONCEPT_NAME" : "Gestation period, 32 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7707000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441678, + "CONCEPT_NAME" : "Gestation period, 33 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "78395001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443874, + "CONCEPT_NAME" : "Gestation period, 34 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13763000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444267, + "CONCEPT_NAME" : "Gestation period, 35 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84132007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438543, + "CONCEPT_NAME" : "Gestation period, 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57907009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442355, + "CONCEPT_NAME" : "Gestation period, 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43697006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443871, + "CONCEPT_NAME" : "Gestation period, 38 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13798002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435655, + "CONCEPT_NAME" : "Gestation period, 39 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80487005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442769, + "CONCEPT_NAME" : "Gestation period, 41 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63503002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444067, + "CONCEPT_NAME" : "Gestation period, 42 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36428009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 762907, + "CONCEPT_NAME" : "Gestation period greater than or equal to 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "433601000124106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336958, + "CONCEPT_NAME" : "Term pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87527008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4180111, + "CONCEPT_NAME" : "Third trimester pregnancy less than 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429240000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444098, + "CONCEPT_NAME" : "Gestation period, 40 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46230007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 77, + "name" : "Gestational age (GEST) gt than 15 week", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4014149, + "CONCEPT_NAME" : "Antenatal 16 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169713003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014150, + "CONCEPT_NAME" : "Antenatal 20 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169714009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808979, + "CONCEPT_NAME" : "Antenatal 22 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861281000000109", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015141, + "CONCEPT_NAME" : "Antenatal 24 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169715005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808980, + "CONCEPT_NAME" : "Antenatal 25 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861301000000105", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014151, + "CONCEPT_NAME" : "Antenatal 30 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169717002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808981, + "CONCEPT_NAME" : "Antenatal 31 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861321000000101", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015297, + "CONCEPT_NAME" : "Antenatal 32 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169718007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015298, + "CONCEPT_NAME" : "Antenatal 34 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169719004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014434, + "CONCEPT_NAME" : "Antenatal 35 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169720005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015299, + "CONCEPT_NAME" : "Antenatal 36 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169721009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015142, + "CONCEPT_NAME" : "Antenatal 37 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169722002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014152, + "CONCEPT_NAME" : "Antenatal 38 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169723007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015300, + "CONCEPT_NAME" : "Antenatal 39 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169724001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015301, + "CONCEPT_NAME" : "Antenatal 40 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169725000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015302, + "CONCEPT_NAME" : "Antenatal 41 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169726004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014435, + "CONCEPT_NAME" : "Antenatal 42 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169727008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4178165, + "CONCEPT_NAME" : "Gestation 14 - 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428567001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181162, + "CONCEPT_NAME" : "Gestation greater than 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429715006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4324063, + "CONCEPT_NAME" : "Gestation less than 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428566005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438542, + "CONCEPT_NAME" : "Gestation less than 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313178001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45770261, + "CONCEPT_NAME" : "Gestation less than 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "925561000000100", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4049621, + "CONCEPT_NAME" : "Gestation period, 16 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15633004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4277749, + "CONCEPT_NAME" : "Gestation period, 17 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65683006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4097608, + "CONCEPT_NAME" : "Gestation period, 18 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25026004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181751, + "CONCEPT_NAME" : "Gestation period, 19 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54318006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4051642, + "CONCEPT_NAME" : "Gestation period, 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "23464008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4185780, + "CONCEPT_NAME" : "Gestation period, 21 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "41438001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4274955, + "CONCEPT_NAME" : "Gestation period, 22 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65035007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336226, + "CONCEPT_NAME" : "Gestation period, 23 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86883006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439922, + "CONCEPT_NAME" : "Gestation period, 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313179009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435640, + "CONCEPT_NAME" : "Gestation period, 25 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72544005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444023, + "CONCEPT_NAME" : "Gestation period, 26 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48688005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432430, + "CONCEPT_NAME" : "Gestation period, 27 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46906003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444461, + "CONCEPT_NAME" : "Gestation period, 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90797000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444417, + "CONCEPT_NAME" : "Gestation period, 29 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45139008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434484, + "CONCEPT_NAME" : "Gestation period, 30 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "71355009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433864, + "CONCEPT_NAME" : "Gestation period, 31 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64920003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442558, + "CONCEPT_NAME" : "Gestation period, 32 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7707000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441678, + "CONCEPT_NAME" : "Gestation period, 33 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "78395001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443874, + "CONCEPT_NAME" : "Gestation period, 34 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13763000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444267, + "CONCEPT_NAME" : "Gestation period, 35 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84132007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438543, + "CONCEPT_NAME" : "Gestation period, 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57907009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442355, + "CONCEPT_NAME" : "Gestation period, 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43697006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443871, + "CONCEPT_NAME" : "Gestation period, 38 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13798002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435655, + "CONCEPT_NAME" : "Gestation period, 39 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80487005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442769, + "CONCEPT_NAME" : "Gestation period, 41 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63503002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444067, + "CONCEPT_NAME" : "Gestation period, 42 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36428009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 762907, + "CONCEPT_NAME" : "Gestation period greater than or equal to 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "433601000124106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336958, + "CONCEPT_NAME" : "Term pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87527008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4180111, + "CONCEPT_NAME" : "Third trimester pregnancy less than 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429240000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444098, + "CONCEPT_NAME" : "Gestation period, 40 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46230007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 78, + "name" : "Gestational age (GEST) gt than 41 week", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4014435, + "CONCEPT_NAME" : "Antenatal 42 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169727008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444067, + "CONCEPT_NAME" : "Gestation period, 42 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36428009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 79, + "name" : "Gestational age (GEST) gt than 40 week", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4015302, + "CONCEPT_NAME" : "Antenatal 41 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169726004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014435, + "CONCEPT_NAME" : "Antenatal 42 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169727008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442769, + "CONCEPT_NAME" : "Gestation period, 41 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63503002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444067, + "CONCEPT_NAME" : "Gestation period, 42 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36428009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 80, + "name" : "Gestational age (GEST) gt than 39 week", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4015301, + "CONCEPT_NAME" : "Antenatal 40 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169725000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015302, + "CONCEPT_NAME" : "Antenatal 41 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169726004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014435, + "CONCEPT_NAME" : "Antenatal 42 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169727008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442769, + "CONCEPT_NAME" : "Gestation period, 41 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63503002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444067, + "CONCEPT_NAME" : "Gestation period, 42 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36428009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336958, + "CONCEPT_NAME" : "Term pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87527008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444098, + "CONCEPT_NAME" : "Gestation period, 40 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46230007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 81, + "name" : "Gestational age (GEST) gt than 16 week", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4014150, + "CONCEPT_NAME" : "Antenatal 20 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169714009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808979, + "CONCEPT_NAME" : "Antenatal 22 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861281000000109", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015141, + "CONCEPT_NAME" : "Antenatal 24 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169715005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808980, + "CONCEPT_NAME" : "Antenatal 25 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861301000000105", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014151, + "CONCEPT_NAME" : "Antenatal 30 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169717002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808981, + "CONCEPT_NAME" : "Antenatal 31 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861321000000101", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015297, + "CONCEPT_NAME" : "Antenatal 32 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169718007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015298, + "CONCEPT_NAME" : "Antenatal 34 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169719004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014434, + "CONCEPT_NAME" : "Antenatal 35 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169720005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015299, + "CONCEPT_NAME" : "Antenatal 36 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169721009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015142, + "CONCEPT_NAME" : "Antenatal 37 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169722002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014152, + "CONCEPT_NAME" : "Antenatal 38 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169723007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015300, + "CONCEPT_NAME" : "Antenatal 39 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169724001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015301, + "CONCEPT_NAME" : "Antenatal 40 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169725000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015302, + "CONCEPT_NAME" : "Antenatal 41 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169726004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014435, + "CONCEPT_NAME" : "Antenatal 42 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169727008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4178165, + "CONCEPT_NAME" : "Gestation 14 - 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428567001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181162, + "CONCEPT_NAME" : "Gestation greater than 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429715006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4324063, + "CONCEPT_NAME" : "Gestation less than 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428566005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438542, + "CONCEPT_NAME" : "Gestation less than 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313178001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45770261, + "CONCEPT_NAME" : "Gestation less than 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "925561000000100", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4277749, + "CONCEPT_NAME" : "Gestation period, 17 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65683006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4097608, + "CONCEPT_NAME" : "Gestation period, 18 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25026004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181751, + "CONCEPT_NAME" : "Gestation period, 19 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54318006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4051642, + "CONCEPT_NAME" : "Gestation period, 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "23464008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4185780, + "CONCEPT_NAME" : "Gestation period, 21 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "41438001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4274955, + "CONCEPT_NAME" : "Gestation period, 22 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65035007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336226, + "CONCEPT_NAME" : "Gestation period, 23 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86883006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439922, + "CONCEPT_NAME" : "Gestation period, 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313179009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435640, + "CONCEPT_NAME" : "Gestation period, 25 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72544005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444023, + "CONCEPT_NAME" : "Gestation period, 26 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48688005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432430, + "CONCEPT_NAME" : "Gestation period, 27 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46906003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444461, + "CONCEPT_NAME" : "Gestation period, 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90797000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444417, + "CONCEPT_NAME" : "Gestation period, 29 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45139008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434484, + "CONCEPT_NAME" : "Gestation period, 30 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "71355009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433864, + "CONCEPT_NAME" : "Gestation period, 31 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64920003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442558, + "CONCEPT_NAME" : "Gestation period, 32 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7707000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441678, + "CONCEPT_NAME" : "Gestation period, 33 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "78395001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443874, + "CONCEPT_NAME" : "Gestation period, 34 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13763000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444267, + "CONCEPT_NAME" : "Gestation period, 35 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84132007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438543, + "CONCEPT_NAME" : "Gestation period, 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57907009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442355, + "CONCEPT_NAME" : "Gestation period, 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43697006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443871, + "CONCEPT_NAME" : "Gestation period, 38 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13798002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435655, + "CONCEPT_NAME" : "Gestation period, 39 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80487005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442769, + "CONCEPT_NAME" : "Gestation period, 41 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63503002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444067, + "CONCEPT_NAME" : "Gestation period, 42 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36428009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 762907, + "CONCEPT_NAME" : "Gestation period greater than or equal to 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "433601000124106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336958, + "CONCEPT_NAME" : "Term pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87527008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4180111, + "CONCEPT_NAME" : "Third trimester pregnancy less than 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429240000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444098, + "CONCEPT_NAME" : "Gestation period, 40 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46230007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 82, + "name" : "Gestational age (GEST) gt than 17 week", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4014150, + "CONCEPT_NAME" : "Antenatal 20 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169714009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808979, + "CONCEPT_NAME" : "Antenatal 22 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861281000000109", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015141, + "CONCEPT_NAME" : "Antenatal 24 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169715005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808980, + "CONCEPT_NAME" : "Antenatal 25 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861301000000105", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014151, + "CONCEPT_NAME" : "Antenatal 30 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169717002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808981, + "CONCEPT_NAME" : "Antenatal 31 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861321000000101", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015297, + "CONCEPT_NAME" : "Antenatal 32 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169718007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015298, + "CONCEPT_NAME" : "Antenatal 34 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169719004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014434, + "CONCEPT_NAME" : "Antenatal 35 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169720005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015299, + "CONCEPT_NAME" : "Antenatal 36 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169721009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015142, + "CONCEPT_NAME" : "Antenatal 37 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169722002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014152, + "CONCEPT_NAME" : "Antenatal 38 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169723007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015300, + "CONCEPT_NAME" : "Antenatal 39 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169724001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015301, + "CONCEPT_NAME" : "Antenatal 40 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169725000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015302, + "CONCEPT_NAME" : "Antenatal 41 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169726004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014435, + "CONCEPT_NAME" : "Antenatal 42 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169727008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4178165, + "CONCEPT_NAME" : "Gestation 14 - 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428567001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181162, + "CONCEPT_NAME" : "Gestation greater than 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429715006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4324063, + "CONCEPT_NAME" : "Gestation less than 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428566005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438542, + "CONCEPT_NAME" : "Gestation less than 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313178001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45770261, + "CONCEPT_NAME" : "Gestation less than 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "925561000000100", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4097608, + "CONCEPT_NAME" : "Gestation period, 18 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25026004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181751, + "CONCEPT_NAME" : "Gestation period, 19 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54318006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4051642, + "CONCEPT_NAME" : "Gestation period, 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "23464008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4185780, + "CONCEPT_NAME" : "Gestation period, 21 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "41438001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4274955, + "CONCEPT_NAME" : "Gestation period, 22 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65035007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336226, + "CONCEPT_NAME" : "Gestation period, 23 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86883006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439922, + "CONCEPT_NAME" : "Gestation period, 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313179009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435640, + "CONCEPT_NAME" : "Gestation period, 25 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72544005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444023, + "CONCEPT_NAME" : "Gestation period, 26 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48688005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432430, + "CONCEPT_NAME" : "Gestation period, 27 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46906003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444461, + "CONCEPT_NAME" : "Gestation period, 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90797000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444417, + "CONCEPT_NAME" : "Gestation period, 29 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45139008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434484, + "CONCEPT_NAME" : "Gestation period, 30 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "71355009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433864, + "CONCEPT_NAME" : "Gestation period, 31 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64920003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442558, + "CONCEPT_NAME" : "Gestation period, 32 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7707000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441678, + "CONCEPT_NAME" : "Gestation period, 33 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "78395001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443874, + "CONCEPT_NAME" : "Gestation period, 34 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13763000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444267, + "CONCEPT_NAME" : "Gestation period, 35 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84132007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438543, + "CONCEPT_NAME" : "Gestation period, 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57907009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442355, + "CONCEPT_NAME" : "Gestation period, 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43697006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443871, + "CONCEPT_NAME" : "Gestation period, 38 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13798002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435655, + "CONCEPT_NAME" : "Gestation period, 39 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80487005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442769, + "CONCEPT_NAME" : "Gestation period, 41 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63503002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444067, + "CONCEPT_NAME" : "Gestation period, 42 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36428009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 762907, + "CONCEPT_NAME" : "Gestation period greater than or equal to 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "433601000124106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336958, + "CONCEPT_NAME" : "Term pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87527008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4180111, + "CONCEPT_NAME" : "Third trimester pregnancy less than 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429240000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444098, + "CONCEPT_NAME" : "Gestation period, 40 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46230007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 83, + "name" : "Gestational age (GEST) gt than 18 week", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4014150, + "CONCEPT_NAME" : "Antenatal 20 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169714009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808979, + "CONCEPT_NAME" : "Antenatal 22 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861281000000109", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015141, + "CONCEPT_NAME" : "Antenatal 24 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169715005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808980, + "CONCEPT_NAME" : "Antenatal 25 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861301000000105", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014151, + "CONCEPT_NAME" : "Antenatal 30 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169717002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808981, + "CONCEPT_NAME" : "Antenatal 31 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861321000000101", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015297, + "CONCEPT_NAME" : "Antenatal 32 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169718007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015298, + "CONCEPT_NAME" : "Antenatal 34 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169719004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014434, + "CONCEPT_NAME" : "Antenatal 35 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169720005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015299, + "CONCEPT_NAME" : "Antenatal 36 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169721009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015142, + "CONCEPT_NAME" : "Antenatal 37 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169722002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014152, + "CONCEPT_NAME" : "Antenatal 38 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169723007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015300, + "CONCEPT_NAME" : "Antenatal 39 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169724001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015301, + "CONCEPT_NAME" : "Antenatal 40 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169725000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015302, + "CONCEPT_NAME" : "Antenatal 41 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169726004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014435, + "CONCEPT_NAME" : "Antenatal 42 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169727008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4178165, + "CONCEPT_NAME" : "Gestation 14 - 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428567001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181162, + "CONCEPT_NAME" : "Gestation greater than 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429715006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4324063, + "CONCEPT_NAME" : "Gestation less than 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428566005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438542, + "CONCEPT_NAME" : "Gestation less than 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313178001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45770261, + "CONCEPT_NAME" : "Gestation less than 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "925561000000100", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181751, + "CONCEPT_NAME" : "Gestation period, 19 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54318006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4051642, + "CONCEPT_NAME" : "Gestation period, 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "23464008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4185780, + "CONCEPT_NAME" : "Gestation period, 21 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "41438001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4274955, + "CONCEPT_NAME" : "Gestation period, 22 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65035007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336226, + "CONCEPT_NAME" : "Gestation period, 23 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86883006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439922, + "CONCEPT_NAME" : "Gestation period, 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313179009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435640, + "CONCEPT_NAME" : "Gestation period, 25 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72544005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444023, + "CONCEPT_NAME" : "Gestation period, 26 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48688005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432430, + "CONCEPT_NAME" : "Gestation period, 27 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46906003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444461, + "CONCEPT_NAME" : "Gestation period, 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90797000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444417, + "CONCEPT_NAME" : "Gestation period, 29 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45139008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434484, + "CONCEPT_NAME" : "Gestation period, 30 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "71355009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433864, + "CONCEPT_NAME" : "Gestation period, 31 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64920003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442558, + "CONCEPT_NAME" : "Gestation period, 32 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7707000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441678, + "CONCEPT_NAME" : "Gestation period, 33 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "78395001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443874, + "CONCEPT_NAME" : "Gestation period, 34 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13763000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444267, + "CONCEPT_NAME" : "Gestation period, 35 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84132007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438543, + "CONCEPT_NAME" : "Gestation period, 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57907009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442355, + "CONCEPT_NAME" : "Gestation period, 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43697006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443871, + "CONCEPT_NAME" : "Gestation period, 38 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13798002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435655, + "CONCEPT_NAME" : "Gestation period, 39 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80487005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442769, + "CONCEPT_NAME" : "Gestation period, 41 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63503002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444067, + "CONCEPT_NAME" : "Gestation period, 42 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36428009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 762907, + "CONCEPT_NAME" : "Gestation period greater than or equal to 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "433601000124106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336958, + "CONCEPT_NAME" : "Term pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87527008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4180111, + "CONCEPT_NAME" : "Third trimester pregnancy less than 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429240000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444098, + "CONCEPT_NAME" : "Gestation period, 40 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46230007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 84, + "name" : "Gestational age (GEST) gt than 19 week", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4014150, + "CONCEPT_NAME" : "Antenatal 20 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169714009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808979, + "CONCEPT_NAME" : "Antenatal 22 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861281000000109", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015141, + "CONCEPT_NAME" : "Antenatal 24 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169715005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808980, + "CONCEPT_NAME" : "Antenatal 25 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861301000000105", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014151, + "CONCEPT_NAME" : "Antenatal 30 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169717002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808981, + "CONCEPT_NAME" : "Antenatal 31 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861321000000101", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015297, + "CONCEPT_NAME" : "Antenatal 32 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169718007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015298, + "CONCEPT_NAME" : "Antenatal 34 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169719004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014434, + "CONCEPT_NAME" : "Antenatal 35 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169720005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015299, + "CONCEPT_NAME" : "Antenatal 36 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169721009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015142, + "CONCEPT_NAME" : "Antenatal 37 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169722002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014152, + "CONCEPT_NAME" : "Antenatal 38 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169723007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015300, + "CONCEPT_NAME" : "Antenatal 39 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169724001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015301, + "CONCEPT_NAME" : "Antenatal 40 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169725000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015302, + "CONCEPT_NAME" : "Antenatal 41 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169726004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014435, + "CONCEPT_NAME" : "Antenatal 42 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169727008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4178165, + "CONCEPT_NAME" : "Gestation 14 - 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428567001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181162, + "CONCEPT_NAME" : "Gestation greater than 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429715006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438542, + "CONCEPT_NAME" : "Gestation less than 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313178001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45770261, + "CONCEPT_NAME" : "Gestation less than 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "925561000000100", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4051642, + "CONCEPT_NAME" : "Gestation period, 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "23464008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4185780, + "CONCEPT_NAME" : "Gestation period, 21 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "41438001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4274955, + "CONCEPT_NAME" : "Gestation period, 22 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65035007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336226, + "CONCEPT_NAME" : "Gestation period, 23 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86883006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439922, + "CONCEPT_NAME" : "Gestation period, 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313179009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435640, + "CONCEPT_NAME" : "Gestation period, 25 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72544005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444023, + "CONCEPT_NAME" : "Gestation period, 26 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48688005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432430, + "CONCEPT_NAME" : "Gestation period, 27 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46906003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444461, + "CONCEPT_NAME" : "Gestation period, 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90797000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444417, + "CONCEPT_NAME" : "Gestation period, 29 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45139008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434484, + "CONCEPT_NAME" : "Gestation period, 30 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "71355009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433864, + "CONCEPT_NAME" : "Gestation period, 31 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64920003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442558, + "CONCEPT_NAME" : "Gestation period, 32 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7707000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441678, + "CONCEPT_NAME" : "Gestation period, 33 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "78395001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443874, + "CONCEPT_NAME" : "Gestation period, 34 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13763000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444267, + "CONCEPT_NAME" : "Gestation period, 35 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84132007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438543, + "CONCEPT_NAME" : "Gestation period, 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57907009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442355, + "CONCEPT_NAME" : "Gestation period, 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43697006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443871, + "CONCEPT_NAME" : "Gestation period, 38 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13798002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435655, + "CONCEPT_NAME" : "Gestation period, 39 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80487005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442769, + "CONCEPT_NAME" : "Gestation period, 41 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63503002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444067, + "CONCEPT_NAME" : "Gestation period, 42 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36428009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 762907, + "CONCEPT_NAME" : "Gestation period greater than or equal to 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "433601000124106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336958, + "CONCEPT_NAME" : "Term pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87527008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4180111, + "CONCEPT_NAME" : "Third trimester pregnancy less than 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429240000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444098, + "CONCEPT_NAME" : "Gestation period, 40 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46230007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 85, + "name" : "Gestational age (GEST) gt than 20 week", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 44808979, + "CONCEPT_NAME" : "Antenatal 22 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861281000000109", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015141, + "CONCEPT_NAME" : "Antenatal 24 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169715005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808980, + "CONCEPT_NAME" : "Antenatal 25 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861301000000105", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014151, + "CONCEPT_NAME" : "Antenatal 30 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169717002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808981, + "CONCEPT_NAME" : "Antenatal 31 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861321000000101", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015297, + "CONCEPT_NAME" : "Antenatal 32 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169718007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015298, + "CONCEPT_NAME" : "Antenatal 34 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169719004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014434, + "CONCEPT_NAME" : "Antenatal 35 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169720005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015299, + "CONCEPT_NAME" : "Antenatal 36 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169721009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015142, + "CONCEPT_NAME" : "Antenatal 37 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169722002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014152, + "CONCEPT_NAME" : "Antenatal 38 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169723007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015300, + "CONCEPT_NAME" : "Antenatal 39 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169724001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015301, + "CONCEPT_NAME" : "Antenatal 40 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169725000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015302, + "CONCEPT_NAME" : "Antenatal 41 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169726004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014435, + "CONCEPT_NAME" : "Antenatal 42 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169727008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438542, + "CONCEPT_NAME" : "Gestation less than 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313178001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45770261, + "CONCEPT_NAME" : "Gestation less than 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "925561000000100", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4185780, + "CONCEPT_NAME" : "Gestation period, 21 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "41438001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4274955, + "CONCEPT_NAME" : "Gestation period, 22 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65035007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336226, + "CONCEPT_NAME" : "Gestation period, 23 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86883006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439922, + "CONCEPT_NAME" : "Gestation period, 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313179009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435640, + "CONCEPT_NAME" : "Gestation period, 25 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72544005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444023, + "CONCEPT_NAME" : "Gestation period, 26 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48688005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432430, + "CONCEPT_NAME" : "Gestation period, 27 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46906003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444461, + "CONCEPT_NAME" : "Gestation period, 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90797000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444417, + "CONCEPT_NAME" : "Gestation period, 29 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45139008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434484, + "CONCEPT_NAME" : "Gestation period, 30 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "71355009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433864, + "CONCEPT_NAME" : "Gestation period, 31 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64920003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442558, + "CONCEPT_NAME" : "Gestation period, 32 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7707000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441678, + "CONCEPT_NAME" : "Gestation period, 33 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "78395001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443874, + "CONCEPT_NAME" : "Gestation period, 34 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13763000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444267, + "CONCEPT_NAME" : "Gestation period, 35 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84132007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438543, + "CONCEPT_NAME" : "Gestation period, 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57907009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442355, + "CONCEPT_NAME" : "Gestation period, 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43697006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443871, + "CONCEPT_NAME" : "Gestation period, 38 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13798002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435655, + "CONCEPT_NAME" : "Gestation period, 39 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80487005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442769, + "CONCEPT_NAME" : "Gestation period, 41 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63503002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444067, + "CONCEPT_NAME" : "Gestation period, 42 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36428009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 762907, + "CONCEPT_NAME" : "Gestation period greater than or equal to 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "433601000124106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336958, + "CONCEPT_NAME" : "Term pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87527008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4180111, + "CONCEPT_NAME" : "Third trimester pregnancy less than 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429240000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181162, + "CONCEPT_NAME" : "Gestation greater than 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429715006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444098, + "CONCEPT_NAME" : "Gestation period, 40 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46230007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 86, + "name" : "Gestational age (GEST) gt than 29 week", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4014151, + "CONCEPT_NAME" : "Antenatal 30 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169717002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808981, + "CONCEPT_NAME" : "Antenatal 31 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861321000000101", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015297, + "CONCEPT_NAME" : "Antenatal 32 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169718007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015298, + "CONCEPT_NAME" : "Antenatal 34 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169719004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014434, + "CONCEPT_NAME" : "Antenatal 35 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169720005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015299, + "CONCEPT_NAME" : "Antenatal 36 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169721009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015142, + "CONCEPT_NAME" : "Antenatal 37 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169722002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014152, + "CONCEPT_NAME" : "Antenatal 38 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169723007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015300, + "CONCEPT_NAME" : "Antenatal 39 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169724001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015301, + "CONCEPT_NAME" : "Antenatal 40 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169725000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015302, + "CONCEPT_NAME" : "Antenatal 41 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169726004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014435, + "CONCEPT_NAME" : "Antenatal 42 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169727008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434484, + "CONCEPT_NAME" : "Gestation period, 30 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "71355009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433864, + "CONCEPT_NAME" : "Gestation period, 31 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64920003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442558, + "CONCEPT_NAME" : "Gestation period, 32 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7707000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441678, + "CONCEPT_NAME" : "Gestation period, 33 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "78395001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443874, + "CONCEPT_NAME" : "Gestation period, 34 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13763000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444267, + "CONCEPT_NAME" : "Gestation period, 35 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84132007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438543, + "CONCEPT_NAME" : "Gestation period, 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57907009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442355, + "CONCEPT_NAME" : "Gestation period, 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43697006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443871, + "CONCEPT_NAME" : "Gestation period, 38 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13798002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435655, + "CONCEPT_NAME" : "Gestation period, 39 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80487005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442769, + "CONCEPT_NAME" : "Gestation period, 41 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63503002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444067, + "CONCEPT_NAME" : "Gestation period, 42 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36428009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 762907, + "CONCEPT_NAME" : "Gestation period greater than or equal to 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "433601000124106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336958, + "CONCEPT_NAME" : "Term pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87527008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4180111, + "CONCEPT_NAME" : "Third trimester pregnancy less than 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429240000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444098, + "CONCEPT_NAME" : "Gestation period, 40 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46230007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 87, + "name" : "Gestational age (GEST) gt than 21 week", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 44808979, + "CONCEPT_NAME" : "Antenatal 22 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861281000000109", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015141, + "CONCEPT_NAME" : "Antenatal 24 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169715005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808980, + "CONCEPT_NAME" : "Antenatal 25 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861301000000105", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014151, + "CONCEPT_NAME" : "Antenatal 30 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169717002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808981, + "CONCEPT_NAME" : "Antenatal 31 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861321000000101", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015297, + "CONCEPT_NAME" : "Antenatal 32 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169718007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015298, + "CONCEPT_NAME" : "Antenatal 34 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169719004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014434, + "CONCEPT_NAME" : "Antenatal 35 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169720005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015299, + "CONCEPT_NAME" : "Antenatal 36 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169721009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015142, + "CONCEPT_NAME" : "Antenatal 37 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169722002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014152, + "CONCEPT_NAME" : "Antenatal 38 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169723007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015300, + "CONCEPT_NAME" : "Antenatal 39 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169724001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015301, + "CONCEPT_NAME" : "Antenatal 40 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169725000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015302, + "CONCEPT_NAME" : "Antenatal 41 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169726004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014435, + "CONCEPT_NAME" : "Antenatal 42 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169727008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438542, + "CONCEPT_NAME" : "Gestation less than 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313178001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45770261, + "CONCEPT_NAME" : "Gestation less than 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "925561000000100", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4274955, + "CONCEPT_NAME" : "Gestation period, 22 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65035007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336226, + "CONCEPT_NAME" : "Gestation period, 23 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86883006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439922, + "CONCEPT_NAME" : "Gestation period, 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313179009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435640, + "CONCEPT_NAME" : "Gestation period, 25 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72544005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444023, + "CONCEPT_NAME" : "Gestation period, 26 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48688005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432430, + "CONCEPT_NAME" : "Gestation period, 27 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46906003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444461, + "CONCEPT_NAME" : "Gestation period, 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90797000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444417, + "CONCEPT_NAME" : "Gestation period, 29 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45139008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434484, + "CONCEPT_NAME" : "Gestation period, 30 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "71355009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433864, + "CONCEPT_NAME" : "Gestation period, 31 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64920003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442558, + "CONCEPT_NAME" : "Gestation period, 32 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7707000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441678, + "CONCEPT_NAME" : "Gestation period, 33 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "78395001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443874, + "CONCEPT_NAME" : "Gestation period, 34 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13763000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444267, + "CONCEPT_NAME" : "Gestation period, 35 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84132007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438543, + "CONCEPT_NAME" : "Gestation period, 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57907009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442355, + "CONCEPT_NAME" : "Gestation period, 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43697006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443871, + "CONCEPT_NAME" : "Gestation period, 38 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13798002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435655, + "CONCEPT_NAME" : "Gestation period, 39 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80487005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442769, + "CONCEPT_NAME" : "Gestation period, 41 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63503002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444067, + "CONCEPT_NAME" : "Gestation period, 42 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36428009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 762907, + "CONCEPT_NAME" : "Gestation period greater than or equal to 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "433601000124106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336958, + "CONCEPT_NAME" : "Term pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87527008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4180111, + "CONCEPT_NAME" : "Third trimester pregnancy less than 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429240000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444098, + "CONCEPT_NAME" : "Gestation period, 40 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46230007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 88, + "name" : "Gestational age (GEST) gt than 30 week", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 44808981, + "CONCEPT_NAME" : "Antenatal 31 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861321000000101", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015297, + "CONCEPT_NAME" : "Antenatal 32 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169718007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015298, + "CONCEPT_NAME" : "Antenatal 34 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169719004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014434, + "CONCEPT_NAME" : "Antenatal 35 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169720005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015299, + "CONCEPT_NAME" : "Antenatal 36 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169721009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015142, + "CONCEPT_NAME" : "Antenatal 37 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169722002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014152, + "CONCEPT_NAME" : "Antenatal 38 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169723007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015300, + "CONCEPT_NAME" : "Antenatal 39 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169724001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015301, + "CONCEPT_NAME" : "Antenatal 40 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169725000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015302, + "CONCEPT_NAME" : "Antenatal 41 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169726004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014435, + "CONCEPT_NAME" : "Antenatal 42 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169727008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433864, + "CONCEPT_NAME" : "Gestation period, 31 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64920003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442558, + "CONCEPT_NAME" : "Gestation period, 32 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7707000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441678, + "CONCEPT_NAME" : "Gestation period, 33 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "78395001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443874, + "CONCEPT_NAME" : "Gestation period, 34 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13763000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444267, + "CONCEPT_NAME" : "Gestation period, 35 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84132007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438543, + "CONCEPT_NAME" : "Gestation period, 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57907009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442355, + "CONCEPT_NAME" : "Gestation period, 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43697006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443871, + "CONCEPT_NAME" : "Gestation period, 38 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13798002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435655, + "CONCEPT_NAME" : "Gestation period, 39 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80487005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442769, + "CONCEPT_NAME" : "Gestation period, 41 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63503002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444067, + "CONCEPT_NAME" : "Gestation period, 42 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36428009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 762907, + "CONCEPT_NAME" : "Gestation period greater than or equal to 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "433601000124106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336958, + "CONCEPT_NAME" : "Term pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87527008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4180111, + "CONCEPT_NAME" : "Third trimester pregnancy less than 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429240000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444098, + "CONCEPT_NAME" : "Gestation period, 40 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46230007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 89, + "name" : "Gestational age (GEST) gt than 38 week", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4015300, + "CONCEPT_NAME" : "Antenatal 39 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169724001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015301, + "CONCEPT_NAME" : "Antenatal 40 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169725000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015302, + "CONCEPT_NAME" : "Antenatal 41 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169726004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014435, + "CONCEPT_NAME" : "Antenatal 42 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169727008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435655, + "CONCEPT_NAME" : "Gestation period, 39 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80487005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442769, + "CONCEPT_NAME" : "Gestation period, 41 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63503002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444067, + "CONCEPT_NAME" : "Gestation period, 42 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36428009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336958, + "CONCEPT_NAME" : "Term pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87527008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444098, + "CONCEPT_NAME" : "Gestation period, 40 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46230007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 90, + "name" : "Gestational age (GEST) gt than 37 week", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4014152, + "CONCEPT_NAME" : "Antenatal 38 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169723007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015300, + "CONCEPT_NAME" : "Antenatal 39 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169724001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015301, + "CONCEPT_NAME" : "Antenatal 40 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169725000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015302, + "CONCEPT_NAME" : "Antenatal 41 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169726004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014435, + "CONCEPT_NAME" : "Antenatal 42 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169727008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443871, + "CONCEPT_NAME" : "Gestation period, 38 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13798002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435655, + "CONCEPT_NAME" : "Gestation period, 39 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80487005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442769, + "CONCEPT_NAME" : "Gestation period, 41 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63503002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444067, + "CONCEPT_NAME" : "Gestation period, 42 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36428009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336958, + "CONCEPT_NAME" : "Term pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87527008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444098, + "CONCEPT_NAME" : "Gestation period, 40 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46230007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 91, + "name" : "Gestational age (GEST) gt than 36 week", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4015142, + "CONCEPT_NAME" : "Antenatal 37 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169722002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014152, + "CONCEPT_NAME" : "Antenatal 38 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169723007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015300, + "CONCEPT_NAME" : "Antenatal 39 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169724001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015301, + "CONCEPT_NAME" : "Antenatal 40 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169725000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015302, + "CONCEPT_NAME" : "Antenatal 41 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169726004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014435, + "CONCEPT_NAME" : "Antenatal 42 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169727008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442355, + "CONCEPT_NAME" : "Gestation period, 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43697006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443871, + "CONCEPT_NAME" : "Gestation period, 38 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13798002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435655, + "CONCEPT_NAME" : "Gestation period, 39 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80487005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442769, + "CONCEPT_NAME" : "Gestation period, 41 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63503002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444067, + "CONCEPT_NAME" : "Gestation period, 42 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36428009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 762907, + "CONCEPT_NAME" : "Gestation period greater than or equal to 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "433601000124106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336958, + "CONCEPT_NAME" : "Term pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87527008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444098, + "CONCEPT_NAME" : "Gestation period, 40 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46230007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 92, + "name" : "Gestational age (GEST) gt than 35 week", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4015299, + "CONCEPT_NAME" : "Antenatal 36 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169721009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015142, + "CONCEPT_NAME" : "Antenatal 37 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169722002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014152, + "CONCEPT_NAME" : "Antenatal 38 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169723007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015300, + "CONCEPT_NAME" : "Antenatal 39 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169724001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015301, + "CONCEPT_NAME" : "Antenatal 40 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169725000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015302, + "CONCEPT_NAME" : "Antenatal 41 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169726004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014435, + "CONCEPT_NAME" : "Antenatal 42 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169727008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438543, + "CONCEPT_NAME" : "Gestation period, 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57907009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442355, + "CONCEPT_NAME" : "Gestation period, 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43697006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443871, + "CONCEPT_NAME" : "Gestation period, 38 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13798002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435655, + "CONCEPT_NAME" : "Gestation period, 39 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80487005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442769, + "CONCEPT_NAME" : "Gestation period, 41 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63503002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444067, + "CONCEPT_NAME" : "Gestation period, 42 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36428009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 762907, + "CONCEPT_NAME" : "Gestation period greater than or equal to 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "433601000124106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336958, + "CONCEPT_NAME" : "Term pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87527008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444098, + "CONCEPT_NAME" : "Gestation period, 40 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46230007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 93, + "name" : "Gestational age (GEST) gt than 34 week", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4014434, + "CONCEPT_NAME" : "Antenatal 35 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169720005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015299, + "CONCEPT_NAME" : "Antenatal 36 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169721009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015142, + "CONCEPT_NAME" : "Antenatal 37 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169722002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014152, + "CONCEPT_NAME" : "Antenatal 38 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169723007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015300, + "CONCEPT_NAME" : "Antenatal 39 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169724001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015301, + "CONCEPT_NAME" : "Antenatal 40 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169725000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015302, + "CONCEPT_NAME" : "Antenatal 41 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169726004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014435, + "CONCEPT_NAME" : "Antenatal 42 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169727008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444267, + "CONCEPT_NAME" : "Gestation period, 35 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84132007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438543, + "CONCEPT_NAME" : "Gestation period, 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57907009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442355, + "CONCEPT_NAME" : "Gestation period, 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43697006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443871, + "CONCEPT_NAME" : "Gestation period, 38 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13798002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435655, + "CONCEPT_NAME" : "Gestation period, 39 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80487005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442769, + "CONCEPT_NAME" : "Gestation period, 41 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63503002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444067, + "CONCEPT_NAME" : "Gestation period, 42 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36428009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 762907, + "CONCEPT_NAME" : "Gestation period greater than or equal to 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "433601000124106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336958, + "CONCEPT_NAME" : "Term pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87527008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4180111, + "CONCEPT_NAME" : "Third trimester pregnancy less than 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429240000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444098, + "CONCEPT_NAME" : "Gestation period, 40 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46230007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 94, + "name" : "Gestational age (GEST) gt than 22 week", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4015141, + "CONCEPT_NAME" : "Antenatal 24 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169715005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808980, + "CONCEPT_NAME" : "Antenatal 25 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861301000000105", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014151, + "CONCEPT_NAME" : "Antenatal 30 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169717002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808981, + "CONCEPT_NAME" : "Antenatal 31 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861321000000101", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015297, + "CONCEPT_NAME" : "Antenatal 32 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169718007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015298, + "CONCEPT_NAME" : "Antenatal 34 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169719004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014434, + "CONCEPT_NAME" : "Antenatal 35 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169720005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015299, + "CONCEPT_NAME" : "Antenatal 36 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169721009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015142, + "CONCEPT_NAME" : "Antenatal 37 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169722002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014152, + "CONCEPT_NAME" : "Antenatal 38 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169723007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015300, + "CONCEPT_NAME" : "Antenatal 39 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169724001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015301, + "CONCEPT_NAME" : "Antenatal 40 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169725000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015302, + "CONCEPT_NAME" : "Antenatal 41 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169726004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014435, + "CONCEPT_NAME" : "Antenatal 42 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169727008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438542, + "CONCEPT_NAME" : "Gestation less than 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313178001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45770261, + "CONCEPT_NAME" : "Gestation less than 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "925561000000100", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336226, + "CONCEPT_NAME" : "Gestation period, 23 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86883006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439922, + "CONCEPT_NAME" : "Gestation period, 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313179009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435640, + "CONCEPT_NAME" : "Gestation period, 25 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72544005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444023, + "CONCEPT_NAME" : "Gestation period, 26 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48688005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432430, + "CONCEPT_NAME" : "Gestation period, 27 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46906003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444461, + "CONCEPT_NAME" : "Gestation period, 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90797000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444417, + "CONCEPT_NAME" : "Gestation period, 29 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45139008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434484, + "CONCEPT_NAME" : "Gestation period, 30 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "71355009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433864, + "CONCEPT_NAME" : "Gestation period, 31 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64920003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442558, + "CONCEPT_NAME" : "Gestation period, 32 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7707000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441678, + "CONCEPT_NAME" : "Gestation period, 33 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "78395001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443874, + "CONCEPT_NAME" : "Gestation period, 34 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13763000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444267, + "CONCEPT_NAME" : "Gestation period, 35 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84132007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438543, + "CONCEPT_NAME" : "Gestation period, 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57907009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442355, + "CONCEPT_NAME" : "Gestation period, 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43697006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443871, + "CONCEPT_NAME" : "Gestation period, 38 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13798002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435655, + "CONCEPT_NAME" : "Gestation period, 39 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80487005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442769, + "CONCEPT_NAME" : "Gestation period, 41 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63503002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444067, + "CONCEPT_NAME" : "Gestation period, 42 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36428009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 762907, + "CONCEPT_NAME" : "Gestation period greater than or equal to 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "433601000124106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336958, + "CONCEPT_NAME" : "Term pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87527008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4180111, + "CONCEPT_NAME" : "Third trimester pregnancy less than 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429240000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444098, + "CONCEPT_NAME" : "Gestation period, 40 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46230007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 95, + "name" : "Gestational age (GEST) gt than 23 week", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4015141, + "CONCEPT_NAME" : "Antenatal 24 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169715005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808980, + "CONCEPT_NAME" : "Antenatal 25 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861301000000105", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014151, + "CONCEPT_NAME" : "Antenatal 30 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169717002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808981, + "CONCEPT_NAME" : "Antenatal 31 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861321000000101", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015297, + "CONCEPT_NAME" : "Antenatal 32 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169718007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015298, + "CONCEPT_NAME" : "Antenatal 34 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169719004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014434, + "CONCEPT_NAME" : "Antenatal 35 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169720005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015299, + "CONCEPT_NAME" : "Antenatal 36 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169721009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015142, + "CONCEPT_NAME" : "Antenatal 37 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169722002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014152, + "CONCEPT_NAME" : "Antenatal 38 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169723007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015300, + "CONCEPT_NAME" : "Antenatal 39 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169724001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015301, + "CONCEPT_NAME" : "Antenatal 40 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169725000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015302, + "CONCEPT_NAME" : "Antenatal 41 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169726004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014435, + "CONCEPT_NAME" : "Antenatal 42 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169727008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45770261, + "CONCEPT_NAME" : "Gestation less than 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "925561000000100", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439922, + "CONCEPT_NAME" : "Gestation period, 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313179009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435640, + "CONCEPT_NAME" : "Gestation period, 25 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72544005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444023, + "CONCEPT_NAME" : "Gestation period, 26 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48688005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432430, + "CONCEPT_NAME" : "Gestation period, 27 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46906003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444461, + "CONCEPT_NAME" : "Gestation period, 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90797000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444417, + "CONCEPT_NAME" : "Gestation period, 29 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45139008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434484, + "CONCEPT_NAME" : "Gestation period, 30 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "71355009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433864, + "CONCEPT_NAME" : "Gestation period, 31 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64920003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442558, + "CONCEPT_NAME" : "Gestation period, 32 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7707000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441678, + "CONCEPT_NAME" : "Gestation period, 33 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "78395001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443874, + "CONCEPT_NAME" : "Gestation period, 34 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13763000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444267, + "CONCEPT_NAME" : "Gestation period, 35 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84132007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438543, + "CONCEPT_NAME" : "Gestation period, 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57907009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442355, + "CONCEPT_NAME" : "Gestation period, 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43697006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443871, + "CONCEPT_NAME" : "Gestation period, 38 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13798002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435655, + "CONCEPT_NAME" : "Gestation period, 39 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80487005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442769, + "CONCEPT_NAME" : "Gestation period, 41 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63503002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444067, + "CONCEPT_NAME" : "Gestation period, 42 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36428009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 762907, + "CONCEPT_NAME" : "Gestation period greater than or equal to 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "433601000124106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336958, + "CONCEPT_NAME" : "Term pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87527008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4180111, + "CONCEPT_NAME" : "Third trimester pregnancy less than 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429240000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444098, + "CONCEPT_NAME" : "Gestation period, 40 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46230007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 96, + "name" : "Gestational age (GEST) gt than 24 week", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 44808980, + "CONCEPT_NAME" : "Antenatal 25 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861301000000105", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014151, + "CONCEPT_NAME" : "Antenatal 30 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169717002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808981, + "CONCEPT_NAME" : "Antenatal 31 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861321000000101", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015297, + "CONCEPT_NAME" : "Antenatal 32 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169718007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015298, + "CONCEPT_NAME" : "Antenatal 34 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169719004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014434, + "CONCEPT_NAME" : "Antenatal 35 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169720005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015299, + "CONCEPT_NAME" : "Antenatal 36 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169721009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015142, + "CONCEPT_NAME" : "Antenatal 37 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169722002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014152, + "CONCEPT_NAME" : "Antenatal 38 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169723007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015300, + "CONCEPT_NAME" : "Antenatal 39 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169724001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015301, + "CONCEPT_NAME" : "Antenatal 40 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169725000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015302, + "CONCEPT_NAME" : "Antenatal 41 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169726004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014435, + "CONCEPT_NAME" : "Antenatal 42 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169727008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45770261, + "CONCEPT_NAME" : "Gestation less than 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "925561000000100", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435640, + "CONCEPT_NAME" : "Gestation period, 25 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72544005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444023, + "CONCEPT_NAME" : "Gestation period, 26 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48688005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432430, + "CONCEPT_NAME" : "Gestation period, 27 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46906003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444461, + "CONCEPT_NAME" : "Gestation period, 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90797000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444417, + "CONCEPT_NAME" : "Gestation period, 29 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45139008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434484, + "CONCEPT_NAME" : "Gestation period, 30 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "71355009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433864, + "CONCEPT_NAME" : "Gestation period, 31 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64920003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442558, + "CONCEPT_NAME" : "Gestation period, 32 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7707000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441678, + "CONCEPT_NAME" : "Gestation period, 33 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "78395001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443874, + "CONCEPT_NAME" : "Gestation period, 34 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13763000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444267, + "CONCEPT_NAME" : "Gestation period, 35 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84132007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438543, + "CONCEPT_NAME" : "Gestation period, 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57907009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442355, + "CONCEPT_NAME" : "Gestation period, 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43697006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443871, + "CONCEPT_NAME" : "Gestation period, 38 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13798002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435655, + "CONCEPT_NAME" : "Gestation period, 39 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80487005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442769, + "CONCEPT_NAME" : "Gestation period, 41 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63503002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444067, + "CONCEPT_NAME" : "Gestation period, 42 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36428009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 762907, + "CONCEPT_NAME" : "Gestation period greater than or equal to 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "433601000124106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336958, + "CONCEPT_NAME" : "Term pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87527008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4180111, + "CONCEPT_NAME" : "Third trimester pregnancy less than 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429240000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444098, + "CONCEPT_NAME" : "Gestation period, 40 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46230007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 97, + "name" : "Gestational age (GEST) gt than 25 week", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4014151, + "CONCEPT_NAME" : "Antenatal 30 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169717002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808981, + "CONCEPT_NAME" : "Antenatal 31 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861321000000101", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015297, + "CONCEPT_NAME" : "Antenatal 32 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169718007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015298, + "CONCEPT_NAME" : "Antenatal 34 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169719004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014434, + "CONCEPT_NAME" : "Antenatal 35 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169720005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015299, + "CONCEPT_NAME" : "Antenatal 36 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169721009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015142, + "CONCEPT_NAME" : "Antenatal 37 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169722002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014152, + "CONCEPT_NAME" : "Antenatal 38 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169723007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015300, + "CONCEPT_NAME" : "Antenatal 39 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169724001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015301, + "CONCEPT_NAME" : "Antenatal 40 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169725000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015302, + "CONCEPT_NAME" : "Antenatal 41 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169726004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014435, + "CONCEPT_NAME" : "Antenatal 42 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169727008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45770261, + "CONCEPT_NAME" : "Gestation less than 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "925561000000100", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444023, + "CONCEPT_NAME" : "Gestation period, 26 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48688005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432430, + "CONCEPT_NAME" : "Gestation period, 27 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46906003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444461, + "CONCEPT_NAME" : "Gestation period, 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90797000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444417, + "CONCEPT_NAME" : "Gestation period, 29 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45139008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434484, + "CONCEPT_NAME" : "Gestation period, 30 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "71355009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433864, + "CONCEPT_NAME" : "Gestation period, 31 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64920003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442558, + "CONCEPT_NAME" : "Gestation period, 32 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7707000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441678, + "CONCEPT_NAME" : "Gestation period, 33 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "78395001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443874, + "CONCEPT_NAME" : "Gestation period, 34 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13763000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444267, + "CONCEPT_NAME" : "Gestation period, 35 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84132007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438543, + "CONCEPT_NAME" : "Gestation period, 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57907009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442355, + "CONCEPT_NAME" : "Gestation period, 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43697006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443871, + "CONCEPT_NAME" : "Gestation period, 38 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13798002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435655, + "CONCEPT_NAME" : "Gestation period, 39 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80487005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442769, + "CONCEPT_NAME" : "Gestation period, 41 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63503002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444067, + "CONCEPT_NAME" : "Gestation period, 42 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36428009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 762907, + "CONCEPT_NAME" : "Gestation period greater than or equal to 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "433601000124106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336958, + "CONCEPT_NAME" : "Term pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87527008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4180111, + "CONCEPT_NAME" : "Third trimester pregnancy less than 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429240000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444098, + "CONCEPT_NAME" : "Gestation period, 40 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46230007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 98, + "name" : "Gestational age (GEST) gt than 26 week", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4014151, + "CONCEPT_NAME" : "Antenatal 30 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169717002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808981, + "CONCEPT_NAME" : "Antenatal 31 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861321000000101", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015297, + "CONCEPT_NAME" : "Antenatal 32 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169718007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015298, + "CONCEPT_NAME" : "Antenatal 34 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169719004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014434, + "CONCEPT_NAME" : "Antenatal 35 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169720005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015299, + "CONCEPT_NAME" : "Antenatal 36 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169721009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015142, + "CONCEPT_NAME" : "Antenatal 37 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169722002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014152, + "CONCEPT_NAME" : "Antenatal 38 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169723007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015300, + "CONCEPT_NAME" : "Antenatal 39 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169724001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015301, + "CONCEPT_NAME" : "Antenatal 40 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169725000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015302, + "CONCEPT_NAME" : "Antenatal 41 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169726004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014435, + "CONCEPT_NAME" : "Antenatal 42 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169727008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45770261, + "CONCEPT_NAME" : "Gestation less than 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "925561000000100", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432430, + "CONCEPT_NAME" : "Gestation period, 27 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46906003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444461, + "CONCEPT_NAME" : "Gestation period, 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90797000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444417, + "CONCEPT_NAME" : "Gestation period, 29 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45139008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434484, + "CONCEPT_NAME" : "Gestation period, 30 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "71355009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433864, + "CONCEPT_NAME" : "Gestation period, 31 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64920003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442558, + "CONCEPT_NAME" : "Gestation period, 32 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7707000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441678, + "CONCEPT_NAME" : "Gestation period, 33 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "78395001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443874, + "CONCEPT_NAME" : "Gestation period, 34 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13763000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444267, + "CONCEPT_NAME" : "Gestation period, 35 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84132007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438543, + "CONCEPT_NAME" : "Gestation period, 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57907009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442355, + "CONCEPT_NAME" : "Gestation period, 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43697006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443871, + "CONCEPT_NAME" : "Gestation period, 38 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13798002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435655, + "CONCEPT_NAME" : "Gestation period, 39 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80487005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442769, + "CONCEPT_NAME" : "Gestation period, 41 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63503002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444067, + "CONCEPT_NAME" : "Gestation period, 42 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36428009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 762907, + "CONCEPT_NAME" : "Gestation period greater than or equal to 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "433601000124106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336958, + "CONCEPT_NAME" : "Term pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87527008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4180111, + "CONCEPT_NAME" : "Third trimester pregnancy less than 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429240000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444098, + "CONCEPT_NAME" : "Gestation period, 40 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46230007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 99, + "name" : "Gestational age (GEST) gt than 27 week", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4014151, + "CONCEPT_NAME" : "Antenatal 30 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169717002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808981, + "CONCEPT_NAME" : "Antenatal 31 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861321000000101", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015297, + "CONCEPT_NAME" : "Antenatal 32 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169718007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015298, + "CONCEPT_NAME" : "Antenatal 34 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169719004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014434, + "CONCEPT_NAME" : "Antenatal 35 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169720005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015299, + "CONCEPT_NAME" : "Antenatal 36 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169721009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015142, + "CONCEPT_NAME" : "Antenatal 37 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169722002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014152, + "CONCEPT_NAME" : "Antenatal 38 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169723007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015300, + "CONCEPT_NAME" : "Antenatal 39 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169724001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015301, + "CONCEPT_NAME" : "Antenatal 40 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169725000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015302, + "CONCEPT_NAME" : "Antenatal 41 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169726004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014435, + "CONCEPT_NAME" : "Antenatal 42 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169727008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444461, + "CONCEPT_NAME" : "Gestation period, 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90797000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444417, + "CONCEPT_NAME" : "Gestation period, 29 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45139008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434484, + "CONCEPT_NAME" : "Gestation period, 30 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "71355009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433864, + "CONCEPT_NAME" : "Gestation period, 31 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64920003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442558, + "CONCEPT_NAME" : "Gestation period, 32 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7707000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441678, + "CONCEPT_NAME" : "Gestation period, 33 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "78395001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443874, + "CONCEPT_NAME" : "Gestation period, 34 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13763000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444267, + "CONCEPT_NAME" : "Gestation period, 35 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84132007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438543, + "CONCEPT_NAME" : "Gestation period, 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57907009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442355, + "CONCEPT_NAME" : "Gestation period, 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43697006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443871, + "CONCEPT_NAME" : "Gestation period, 38 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13798002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435655, + "CONCEPT_NAME" : "Gestation period, 39 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80487005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442769, + "CONCEPT_NAME" : "Gestation period, 41 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63503002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444067, + "CONCEPT_NAME" : "Gestation period, 42 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36428009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 762907, + "CONCEPT_NAME" : "Gestation period greater than or equal to 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "433601000124106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336958, + "CONCEPT_NAME" : "Term pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87527008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4180111, + "CONCEPT_NAME" : "Third trimester pregnancy less than 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429240000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444098, + "CONCEPT_NAME" : "Gestation period, 40 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46230007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 100, + "name" : "Gestational age (GEST) gt than 28 week", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4014151, + "CONCEPT_NAME" : "Antenatal 30 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169717002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808981, + "CONCEPT_NAME" : "Antenatal 31 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861321000000101", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015297, + "CONCEPT_NAME" : "Antenatal 32 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169718007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015298, + "CONCEPT_NAME" : "Antenatal 34 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169719004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014434, + "CONCEPT_NAME" : "Antenatal 35 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169720005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015299, + "CONCEPT_NAME" : "Antenatal 36 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169721009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015142, + "CONCEPT_NAME" : "Antenatal 37 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169722002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014152, + "CONCEPT_NAME" : "Antenatal 38 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169723007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015300, + "CONCEPT_NAME" : "Antenatal 39 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169724001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015301, + "CONCEPT_NAME" : "Antenatal 40 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169725000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015302, + "CONCEPT_NAME" : "Antenatal 41 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169726004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014435, + "CONCEPT_NAME" : "Antenatal 42 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169727008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444417, + "CONCEPT_NAME" : "Gestation period, 29 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45139008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434484, + "CONCEPT_NAME" : "Gestation period, 30 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "71355009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433864, + "CONCEPT_NAME" : "Gestation period, 31 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64920003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442558, + "CONCEPT_NAME" : "Gestation period, 32 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7707000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441678, + "CONCEPT_NAME" : "Gestation period, 33 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "78395001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443874, + "CONCEPT_NAME" : "Gestation period, 34 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13763000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444267, + "CONCEPT_NAME" : "Gestation period, 35 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84132007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438543, + "CONCEPT_NAME" : "Gestation period, 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57907009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442355, + "CONCEPT_NAME" : "Gestation period, 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43697006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443871, + "CONCEPT_NAME" : "Gestation period, 38 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13798002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435655, + "CONCEPT_NAME" : "Gestation period, 39 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80487005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442769, + "CONCEPT_NAME" : "Gestation period, 41 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63503002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444067, + "CONCEPT_NAME" : "Gestation period, 42 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36428009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 762907, + "CONCEPT_NAME" : "Gestation period greater than or equal to 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "433601000124106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336958, + "CONCEPT_NAME" : "Term pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87527008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4180111, + "CONCEPT_NAME" : "Third trimester pregnancy less than 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429240000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444098, + "CONCEPT_NAME" : "Gestation period, 40 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46230007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 101, + "name" : "Gestational age (GEST) gt than 31 week", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4015297, + "CONCEPT_NAME" : "Antenatal 32 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169718007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015298, + "CONCEPT_NAME" : "Antenatal 34 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169719004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014434, + "CONCEPT_NAME" : "Antenatal 35 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169720005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015299, + "CONCEPT_NAME" : "Antenatal 36 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169721009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015142, + "CONCEPT_NAME" : "Antenatal 37 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169722002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014152, + "CONCEPT_NAME" : "Antenatal 38 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169723007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015300, + "CONCEPT_NAME" : "Antenatal 39 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169724001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015301, + "CONCEPT_NAME" : "Antenatal 40 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169725000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015302, + "CONCEPT_NAME" : "Antenatal 41 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169726004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014435, + "CONCEPT_NAME" : "Antenatal 42 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169727008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442558, + "CONCEPT_NAME" : "Gestation period, 32 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7707000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441678, + "CONCEPT_NAME" : "Gestation period, 33 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "78395001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443874, + "CONCEPT_NAME" : "Gestation period, 34 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13763000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444267, + "CONCEPT_NAME" : "Gestation period, 35 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84132007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438543, + "CONCEPT_NAME" : "Gestation period, 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57907009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442355, + "CONCEPT_NAME" : "Gestation period, 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43697006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443871, + "CONCEPT_NAME" : "Gestation period, 38 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13798002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435655, + "CONCEPT_NAME" : "Gestation period, 39 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80487005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442769, + "CONCEPT_NAME" : "Gestation period, 41 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63503002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444067, + "CONCEPT_NAME" : "Gestation period, 42 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36428009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 762907, + "CONCEPT_NAME" : "Gestation period greater than or equal to 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "433601000124106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336958, + "CONCEPT_NAME" : "Term pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87527008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4180111, + "CONCEPT_NAME" : "Third trimester pregnancy less than 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429240000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444098, + "CONCEPT_NAME" : "Gestation period, 40 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46230007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 102, + "name" : "Gestational age (GEST) gt than 32 week", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4015298, + "CONCEPT_NAME" : "Antenatal 34 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169719004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014434, + "CONCEPT_NAME" : "Antenatal 35 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169720005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015299, + "CONCEPT_NAME" : "Antenatal 36 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169721009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015142, + "CONCEPT_NAME" : "Antenatal 37 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169722002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014152, + "CONCEPT_NAME" : "Antenatal 38 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169723007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015300, + "CONCEPT_NAME" : "Antenatal 39 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169724001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015301, + "CONCEPT_NAME" : "Antenatal 40 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169725000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015302, + "CONCEPT_NAME" : "Antenatal 41 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169726004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014435, + "CONCEPT_NAME" : "Antenatal 42 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169727008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441678, + "CONCEPT_NAME" : "Gestation period, 33 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "78395001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443874, + "CONCEPT_NAME" : "Gestation period, 34 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13763000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444267, + "CONCEPT_NAME" : "Gestation period, 35 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84132007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438543, + "CONCEPT_NAME" : "Gestation period, 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57907009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442355, + "CONCEPT_NAME" : "Gestation period, 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43697006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443871, + "CONCEPT_NAME" : "Gestation period, 38 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13798002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435655, + "CONCEPT_NAME" : "Gestation period, 39 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80487005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442769, + "CONCEPT_NAME" : "Gestation period, 41 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63503002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444067, + "CONCEPT_NAME" : "Gestation period, 42 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36428009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 762907, + "CONCEPT_NAME" : "Gestation period greater than or equal to 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "433601000124106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336958, + "CONCEPT_NAME" : "Term pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87527008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4180111, + "CONCEPT_NAME" : "Third trimester pregnancy less than 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429240000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444098, + "CONCEPT_NAME" : "Gestation period, 40 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46230007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 103, + "name" : "Gestational age (GEST) gt than 33 week", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4015298, + "CONCEPT_NAME" : "Antenatal 34 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169719004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014434, + "CONCEPT_NAME" : "Antenatal 35 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169720005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015299, + "CONCEPT_NAME" : "Antenatal 36 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169721009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015142, + "CONCEPT_NAME" : "Antenatal 37 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169722002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014152, + "CONCEPT_NAME" : "Antenatal 38 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169723007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015300, + "CONCEPT_NAME" : "Antenatal 39 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169724001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015301, + "CONCEPT_NAME" : "Antenatal 40 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169725000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015302, + "CONCEPT_NAME" : "Antenatal 41 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169726004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014435, + "CONCEPT_NAME" : "Antenatal 42 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169727008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443874, + "CONCEPT_NAME" : "Gestation period, 34 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13763000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444267, + "CONCEPT_NAME" : "Gestation period, 35 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84132007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438543, + "CONCEPT_NAME" : "Gestation period, 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57907009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442355, + "CONCEPT_NAME" : "Gestation period, 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43697006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443871, + "CONCEPT_NAME" : "Gestation period, 38 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13798002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435655, + "CONCEPT_NAME" : "Gestation period, 39 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80487005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442769, + "CONCEPT_NAME" : "Gestation period, 41 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63503002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444067, + "CONCEPT_NAME" : "Gestation period, 42 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36428009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 762907, + "CONCEPT_NAME" : "Gestation period greater than or equal to 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "433601000124106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336958, + "CONCEPT_NAME" : "Term pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87527008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4180111, + "CONCEPT_NAME" : "Third trimester pregnancy less than 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429240000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444098, + "CONCEPT_NAME" : "Gestation period, 40 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46230007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 104, + "name" : "Ectopic pregnancy (ECT)", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4215648, + "CONCEPT_NAME" : "Acute renal failure following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "71909003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4312095, + "CONCEPT_NAME" : "Afibrinogenemia following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "85796009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3655216, + "CONCEPT_NAME" : "Air embolism due to and following ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "860689000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3655215, + "CONCEPT_NAME" : "Air embolism due to and following molar pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "860688008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3655206, + "CONCEPT_NAME" : "Amniotic fluid embolism due to and following ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "860677002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3655205, + "CONCEPT_NAME" : "Amniotic fluid embolism due to and following molar pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "860676006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4152444, + "CONCEPT_NAME" : "Antenatal ultrasound confirms ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "370382007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45763635, + "CONCEPT_NAME" : "Aspiration of ectopic pregnancy from cornu of fallopian tube", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "700073007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3655208, + "CONCEPT_NAME" : "Blood clot embolism due to and following ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "860679004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3655207, + "CONCEPT_NAME" : "Blood clot embolism due to and following molar pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "860678007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4147060, + "CONCEPT_NAME" : "Cerebral anoxia following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "30243004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44783183, + "CONCEPT_NAME" : "Combined intrauterine and ovarian pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "699240001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4135209, + "CONCEPT_NAME" : "Combined pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "31601007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40483581, + "CONCEPT_NAME" : "Combined tubal and intrauterine pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "442478007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440464, + "CONCEPT_NAME" : "Complication following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "2989004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4100193, + "CONCEPT_NAME" : "Damage to bladder following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "27552001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4185718, + "CONCEPT_NAME" : "Damage to bowel following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "44017002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4232953, + "CONCEPT_NAME" : "Damage to broad ligament following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "89573004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4173946, + "CONCEPT_NAME" : "Damage to cervix following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "42294002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42537767, + "CONCEPT_NAME" : "Damage to pelvic organs and tissues following ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "737329004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42537768, + "CONCEPT_NAME" : "Damage to pelvic organs and tissues following molar pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "737330009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4174543, + "CONCEPT_NAME" : "Damage to periurethral tissue following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "42536002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4194053, + "CONCEPT_NAME" : "Damage to uterus following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "79333004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4216382, + "CONCEPT_NAME" : "Damage to vagina following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72209007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4266839, + "CONCEPT_NAME" : "Defibrination syndrome following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "62698000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42537762, + "CONCEPT_NAME" : "Delayed hemorrhage due to and following ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "737322008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42537770, + "CONCEPT_NAME" : "Disorder of vein following ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "737332001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42537771, + "CONCEPT_NAME" : "Disorder of vein following molar pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "737333006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437611, + "CONCEPT_NAME" : "Ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "34801009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4276942, + "CONCEPT_NAME" : "Electrolyte imbalance following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6509007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42539701, + "CONCEPT_NAME" : "Embolism due to and following ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "737324009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42537764, + "CONCEPT_NAME" : "Embolism due to and following molar pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "737325005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4066014, + "CONCEPT_NAME" : "Endometritis following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "172001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42537763, + "CONCEPT_NAME" : "Excessive hemorrhage due to and following ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "737323003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40493226, + "CONCEPT_NAME" : "Excision of fallopian tube and surgical removal of ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "445912000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3655214, + "CONCEPT_NAME" : "Fat embolism due to and following ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "860687003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3655213, + "CONCEPT_NAME" : "Fat embolism due to and following molar pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "860686007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4149029, + "CONCEPT_NAME" : "Intraligamentous pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "35656003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4066151, + "CONCEPT_NAME" : "Intraperitoneal pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "17285009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4063939, + "CONCEPT_NAME" : "Intravascular hemolysis following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "20084001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42872572, + "CONCEPT_NAME" : "Laparoscopic excision of ectopic ovarian pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "450563004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42872571, + "CONCEPT_NAME" : "Laparoscopic excision of ruptured ectopic tubal pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "450562009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4112952, + "CONCEPT_NAME" : "Membranous pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198624007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4113218, + "CONCEPT_NAME" : "Mesenteric pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198626009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530979, + "CONCEPT_NAME" : "Miscarriage of tubal ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609525000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4107071, + "CONCEPT_NAME" : "Oliguria following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "29908007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 200153, + "CONCEPT_NAME" : "Ovarian pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "9899009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336392, + "CONCEPT_NAME" : "Parametritis following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87169001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4314877, + "CONCEPT_NAME" : "Pelvic peritonitis following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86709000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42537765, + "CONCEPT_NAME" : "Physiological shock due to and following molar pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "737326006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4023382, + "CONCEPT_NAME" : "Postoperative shock following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "11669000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3655209, + "CONCEPT_NAME" : "Pulmonary embolism due to and following ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "860680001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3655210, + "CONCEPT_NAME" : "Pulmonary embolism due to and following molar pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "860681002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4308664, + "CONCEPT_NAME" : "Removal of ectopic fetus from abdominal cavity", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "387709005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4227423, + "CONCEPT_NAME" : "Removal of ectopic fetus from fallopian tube without salpingectomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "88362001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4247895, + "CONCEPT_NAME" : "Removal of ectopic fetus from ovary without oophorectomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "73341009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4300391, + "CONCEPT_NAME" : "Removal of extrauterine ectopic fetus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "387710000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45757120, + "CONCEPT_NAME" : "Renal failure after ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10752771000119100", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42537766, + "CONCEPT_NAME" : "Renal failure following molar pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "737327002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4095115, + "CONCEPT_NAME" : "Renal tubular necrosis following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26235008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4316051, + "CONCEPT_NAME" : "Salpingitis following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "9516007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4239009, + "CONCEPT_NAME" : "Salpingo-oophoritis following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57468008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4174577, + "CONCEPT_NAME" : "Secondary abdominal pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276881003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4187090, + "CONCEPT_NAME" : "Sepsis following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46848006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3655212, + "CONCEPT_NAME" : "Septic embolism due to and following ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "860683004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3655211, + "CONCEPT_NAME" : "Septic embolism due to and following molar pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "860682009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4080587, + "CONCEPT_NAME" : "Septic shock following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "24051007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110295, + "CONCEPT_NAME" : "Surgical treatment of ectopic pregnancy; abdominal pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59130", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110298, + "CONCEPT_NAME" : "Surgical treatment of ectopic pregnancy; cervical, with evacuation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59140", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110297, + "CONCEPT_NAME" : "Surgical treatment of ectopic pregnancy; interstitial, uterine pregnancy with partial resection of uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59136", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4296038, + "CONCEPT_NAME" : "Tetanus complicating ectopic AND/OR molar pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "76843005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 199076, + "CONCEPT_NAME" : "Tubal pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "79586000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4151214, + "CONCEPT_NAME" : "Uremia following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "28196006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4242401, + "CONCEPT_NAME" : "Urinary tract infection following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "38176009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4129027, + "CONCEPT_NAME" : "Viable fetus in abdominal pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237253003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 107, + "name" : "Ectopic pregnancy procedure (ECT1 & ECT 2)", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4200678, + "CONCEPT_NAME" : "Abdominal hysterectomy and left salpingo-oophorectomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "302191001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4300368, + "CONCEPT_NAME" : "Aspiration of ectopic pregnancy from fallopian tube", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "387617009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4093429, + "CONCEPT_NAME" : "Bilateral complete salpingectomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25811000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004347, + "CONCEPT_NAME" : "Bilateral partial salpingectomy, not otherwise specified", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "66.63", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4107080, + "CONCEPT_NAME" : "Bilateral salpingectomy with oophorectomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "29827000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4142956, + "CONCEPT_NAME" : "Diagnostic laparoscopy of female pelvis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "264973001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757216, + "CONCEPT_NAME" : "Discharge disposition [CARE]", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "52688-9", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Survey" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757177, + "CONCEPT_NAME" : "Discharge Status", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "52523-8", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Survey" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40259069, + "CONCEPT_NAME" : "Dye test of fallopian tube", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "177006000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4074443, + "CONCEPT_NAME" : "Endoscopic freeing of adhesions of fallopian tube", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "176994003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4074426, + "CONCEPT_NAME" : "Excision of ectopic ovarian pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "176928008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4074427, + "CONCEPT_NAME" : "Excision of ruptured ectopic tubal pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "176929000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004345, + "CONCEPT_NAME" : "Excision or destruction of lesion of fallopian tube", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "66.61", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4196129, + "CONCEPT_NAME" : "Failed minimum access approach", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "313004003", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4001541, + "CONCEPT_NAME" : "Fallopian tube excision", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "120053002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4306064, + "CONCEPT_NAME" : "Fimbrial extraction of tubal pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "387616000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4100257, + "CONCEPT_NAME" : "Fimbriectomy of fallopian tube", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25344002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4084217, + "CONCEPT_NAME" : "Gynecological emergency hospital admission", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "183459001", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4085257, + "CONCEPT_NAME" : "Inhalation anesthesia, machine system, closed, circulation of primary agent", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "24277005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40347147, + "CONCEPT_NAME" : "Laparoscopic", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "260508005", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Qualifier Value" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40378260, + "CONCEPT_NAME" : "Laparoscopic approach", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "180627003", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Qualifier Value" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4319321, + "CONCEPT_NAME" : "Laparoscopic lysis of adhesions", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "9540004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40490893, + "CONCEPT_NAME" : "Laparoscopic lysis of adhesions of ovary and fallopian tube", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "447077004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4190526, + "CONCEPT_NAME" : "Laparoscopic total abdominal hysterectomy and bilateral salpingo-oophorectomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "414575003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110299, + "CONCEPT_NAME" : "Laparoscopic treatment of ectopic pregnancy; without salpingectomy and/or oophorectomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59150", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110300, + "CONCEPT_NAME" : "Laparoscopic treatment of ectopic pregnancy; with salpingectomy and/or oophorectomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59151", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4251314, + "CONCEPT_NAME" : "Laparoscopy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "73632009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40480864, + "CONCEPT_NAME" : "Laparoscopy assisted vaginal hysterectomy with bilateral salpingo-oophorectomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "441820006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4032749, + "CONCEPT_NAME" : "Laparoscopy of fallopian tube", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "236938008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110240, + "CONCEPT_NAME" : "Laparoscopy, surgical; with removal of adnexal structures (partial or total oophorectomy and/or salpingectomy)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "58661", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2722205, + "CONCEPT_NAME" : "Laparoscopy, surgical; with removal of adnexal structures (partial or total oophorectomy and/or salpingectomy). (Deprecated)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "56307", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110245, + "CONCEPT_NAME" : "Laparoscopy, surgical; with salpingostomy (salpingoneostomy)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "58673", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2722217, + "CONCEPT_NAME" : "Laparoscopy, surgical; with salpingostomy (salpingoneostomy). (Deprecated)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "56343", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4074877, + "CONCEPT_NAME" : "Left salpingectomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "176917009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4074876, + "CONCEPT_NAME" : "Left salpingo-oophorectomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "176915001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4214980, + "CONCEPT_NAME" : "Lysis of adhesions", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "39270003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004348, + "CONCEPT_NAME" : "Other partial salpingectomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "66.69", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4267567, + "CONCEPT_NAME" : "Partial salpingectomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "62692004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004342, + "CONCEPT_NAME" : "Removal of both fallopian tubes at same operative episode", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "66.51", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004788, + "CONCEPT_NAME" : "Removal of extratubal ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "74.3", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "3-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004343, + "CONCEPT_NAME" : "Removal of remaining fallopian tube", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "66.52", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4074424, + "CONCEPT_NAME" : "Right salpingectomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "176916000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4072837, + "CONCEPT_NAME" : "Right salpingo-oophorectomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "176914002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110247, + "CONCEPT_NAME" : "Salpingectomy, complete or partial, unilateral or bilateral (separate procedure)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "58700", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4032000, + "CONCEPT_NAME" : "Salpingectomy of remaining fallopian tube", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "14353000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004346, + "CONCEPT_NAME" : "Salpingectomy with removal of tubal pregnancy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "66.62", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4021363, + "CONCEPT_NAME" : "Salpingo-oophorectomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "116028008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4073272, + "CONCEPT_NAME" : "Salpingo-oophorectomy of remaining solitary fallopian tube and ovary", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "176909001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004351, + "CONCEPT_NAME" : "Salpingo-oophorostomy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "66.72", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004362, + "CONCEPT_NAME" : "Salpingo-salpingostomy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "66.73", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4263669, + "CONCEPT_NAME" : "Salpingostomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "60463004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004308, + "CONCEPT_NAME" : "Salpingostomy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "66.02", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110253, + "CONCEPT_NAME" : "Salpingostomy (salpingoneostomy)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "58770", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004307, + "CONCEPT_NAME" : "Salpingotomy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "66.01", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004306, + "CONCEPT_NAME" : "Salpingotomy and salpingostomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "66.0", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "3-dig nonbill code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110296, + "CONCEPT_NAME" : "Surgical treatment of ectopic pregnancy; interstitial, uterine pregnancy requiring total hysterectomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59135", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110293, + "CONCEPT_NAME" : "Surgical treatment of ectopic pregnancy; tubal or ovarian, requiring salpingectomy and/or oophorectomy, abdominal or vaginal approach", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59120", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110294, + "CONCEPT_NAME" : "Surgical treatment of ectopic pregnancy; tubal or ovarian, without salpingectomy and/or oophorectomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59121", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40258875, + "CONCEPT_NAME" : "Termination of pregnancy NEC", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "176831008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4019096, + "CONCEPT_NAME" : "Total abdominal hysterectomy with bilateral salpingo-oophorectomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "116144002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004331, + "CONCEPT_NAME" : "Total bilateral salpingectomy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "66.5", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "3-dig nonbill code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004330, + "CONCEPT_NAME" : "Total unilateral salpingectomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "66.4", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "3-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336229, + "CONCEPT_NAME" : "Unilateral salpingectomy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "86894005", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4301905, + "CONCEPT_NAME" : "Unilateral salpingo-oophorectomy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "78698008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 108, + "name" : "Preterm (PREM)", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 432452, + "CONCEPT_NAME" : "Anemia of prematurity", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "47100003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014461, + "CONCEPT_NAME" : "Baby birth weight equal to 50 percent to 74 percent (3450-3749g)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169864006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4151169, + "CONCEPT_NAME" : "Baby birth weight less than 751gm", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "310491007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015275, + "CONCEPT_NAME" : "Baby extremely premature 28-32 weeks", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "169851005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4149449, + "CONCEPT_NAME" : "Baby premature 24-26 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "310523002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37016220, + "CONCEPT_NAME" : "Baby premature 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15887011000119107", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37016221, + "CONCEPT_NAME" : "Baby premature 25 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15887051000119108", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4149457, + "CONCEPT_NAME" : "Baby premature 26-28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "310548004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37016222, + "CONCEPT_NAME" : "Baby premature 26 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15887091000119103", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37018684, + "CONCEPT_NAME" : "Baby premature 27 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15887131000119101", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 46271955, + "CONCEPT_NAME" : "Baby premature 28-32 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "710235005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37016216, + "CONCEPT_NAME" : "Baby premature 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15750001000119103", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37016217, + "CONCEPT_NAME" : "Baby premature 29 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15750041000119101", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37016218, + "CONCEPT_NAME" : "Baby premature 30 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15750081000119106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37016213, + "CONCEPT_NAME" : "Baby premature 31 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15635451000119107", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 46271814, + "CONCEPT_NAME" : "Baby premature 32-36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "710068006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37018683, + "CONCEPT_NAME" : "Baby premature 32 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15635411000119106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37018889, + "CONCEPT_NAME" : "Baby premature 33 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15635371000119105", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37016212, + "CONCEPT_NAME" : "Baby premature 34 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15635331000119107", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 762577, + "CONCEPT_NAME" : "Baby premature 35-36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429151000124100", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37016211, + "CONCEPT_NAME" : "Baby premature 35 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15635291000119101", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014299, + "CONCEPT_NAME" : "Baby premature 36-38 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169849006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4149451, + "CONCEPT_NAME" : "Baby premature 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "310530008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4150406, + "CONCEPT_NAME" : "Baby premature 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "310529003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4150405, + "CONCEPT_NAME" : "Baby premature 38 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "310528006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4150404, + "CONCEPT_NAME" : "Baby premature 39 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "310527001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015274, + "CONCEPT_NAME" : "Baby very premature 32 to 36 weeks", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "169850006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36684754, + "CONCEPT_NAME" : "Bilateral retinopathy of prematurity", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "343791000119101", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37207968, + "CONCEPT_NAME" : "Bilateral retinopathy of prematurity of eyes stage 0", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "343781000119104", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36684753, + "CONCEPT_NAME" : "Bilateral retinopathy of prematurity of eyes stage 1 - demarcation line", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "343771000119102", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36684752, + "CONCEPT_NAME" : "Bilateral retinopathy of prematurity of eyes stage 2 - intraretinal ridge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "343761000119108", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36684751, + "CONCEPT_NAME" : "Bilateral retinopathy of prematurity of eyes stage 3 - ridge with extraretinal fibrovascular proliferation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "343751000119106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4141513, + "CONCEPT_NAME" : "Complication of prematurity", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "426850008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4195545, + "CONCEPT_NAME" : "Disorder relating to short gestation AND/OR low birthweight", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "67645006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 38001501, + "CONCEPT_NAME" : "Extreme immaturity or respiratory distress syndrome, neonate", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "790", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "DRG", + "CONCEPT_CLASS_ID" : "MS-DRG" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439128, + "CONCEPT_NAME" : "Extreme prematurity of infant", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276658003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4148097, + "CONCEPT_NAME" : "Fetal or neonatal effect of abruptio placentae", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "268803008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4118056, + "CONCEPT_NAME" : "Fetal or neonatal effect of maternal premature rupture of membrane", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206037001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 72726, + "CONCEPT_NAME" : "Light-for-dates with signs of fetal malnutrition", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64177003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36675173, + "CONCEPT_NAME" : "Moderate to late prematurity of infant", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "771507004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440847, + "CONCEPT_NAME" : "Neonatal jaundice associated with preterm delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "73749009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4086393, + "CONCEPT_NAME" : "Premature delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "282020008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4217564, + "CONCEPT_NAME" : "Premature infant", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "395507008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4147874, + "CONCEPT_NAME" : "Premature infant 28-37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "310661005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4273560, + "CONCEPT_NAME" : "Premature labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6383007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4175637, + "CONCEPT_NAME" : "Premature pregnancy delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "49550006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4064709, + "CONCEPT_NAME" : "Premature rupture of membranes, labor delayed by therapy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199661007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4058403, + "CONCEPT_NAME" : "Premature separation of placenta with coagulation defect", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198912003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440519, + "CONCEPT_NAME" : "Premature - weight 1000g-2499g or gestation of 28-37weeks", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "206169007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440525, + "CONCEPT_NAME" : "Prematurity of fetus", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "44247006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36675035, + "CONCEPT_NAME" : "Prematurity of infant", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "771299009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37311892, + "CONCEPT_NAME" : "Primary central sleep apnea of prematurity", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "789009003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2109484, + "CONCEPT_NAME" : "Repair, initial inguinal hernia, preterm infant (younger than 37 weeks gestation at birth), performed from birth up to 50 weeks postconception age, with or without hydrocelectomy; incarcerated or strangulated", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "49492", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2109483, + "CONCEPT_NAME" : "Repair, initial inguinal hernia, preterm infant (younger than 37 weeks gestation at birth), performed from birth up to 50 weeks postconception age, with or without hydrocelectomy; reducible", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "49491", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 373766, + "CONCEPT_NAME" : "Retinopathy of prematurity", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "415297005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36684687, + "CONCEPT_NAME" : "Retinopathy of prematurity of left eye", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "338021000119106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36684686, + "CONCEPT_NAME" : "Retinopathy of prematurity of left eye stage 1 - demarcation line", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "338001000119102", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36684685, + "CONCEPT_NAME" : "Retinopathy of prematurity of left eye stage 2 - intraretinal ridge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "337991000119106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36684684, + "CONCEPT_NAME" : "Retinopathy of prematurity of left eye stage 3 - ridge with extraretinal fibrovascular proliferation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "337981000119108", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36684624, + "CONCEPT_NAME" : "Retinopathy of prematurity of right eye", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "332411000119108", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36684623, + "CONCEPT_NAME" : "Retinopathy of prematurity of right eye stage 1 - demarcation line", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "332391000119108", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36684622, + "CONCEPT_NAME" : "Retinopathy of prematurity of right eye stage 2 - intraretinal ridge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "332381000119105", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36684621, + "CONCEPT_NAME" : "Retinopathy of prematurity of right eye stage 3 - ridge with extraretinal fibrovascular proliferation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "332371000119107", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45772079, + "CONCEPT_NAME" : "Retinopathy of prematurity stage 0", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "124111000119102", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 375250, + "CONCEPT_NAME" : "Retinopathy of prematurity stage 1 - demarcation line", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "408847006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 375251, + "CONCEPT_NAME" : "Retinopathy of prematurity stage 2 - intraretinal ridge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "408848001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 379009, + "CONCEPT_NAME" : "Retinopathy of prematurity stage 3 - ridge with extraretinal fibrovascular proliferation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "408849009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443519, + "CONCEPT_NAME" : "Retinopathy of prematurity stage 4 - subtotal retinal detachment", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "408850009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443520, + "CONCEPT_NAME" : "Retinopathy of prematurity stage 5 - total retinal detachment", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "408851008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 136530, + "CONCEPT_NAME" : "Sclerema neonatorum", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206539008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2514572, + "CONCEPT_NAME" : "Subsequent intensive care, per day, for the evaluation and management of the recovering infant (present body weight of 2501-5000 grams)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "99480", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42740403, + "CONCEPT_NAME" : "Subsequent intensive care, per day, for the evaluation and management of the recovering low birth weight infant (present body weight of 1500-2500 g)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "99299", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2514571, + "CONCEPT_NAME" : "Subsequent intensive care, per day, for the evaluation and management of the recovering low birth weight infant (present body weight of 1500-2500 grams)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "99479", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42739401, + "CONCEPT_NAME" : "Subsequent intensive care, per day, for the evaluation and management of the recovering very low birth weight infant (present body weight less than 1500 g)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "99298", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2514570, + "CONCEPT_NAME" : "Subsequent intensive care, per day, for the evaluation and management of the recovering very low birth weight infant (present body weight less than 1500 grams)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "99478", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2111055, + "CONCEPT_NAME" : "Treatment of extensive or progressive retinopathy, 1 or more sessions, preterm infant (less than 37 weeks gestation at birth), performed from birth up to 1 year of age (eg, retinopathy of prematurity), photocoagulation or cryotherapy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "67229", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435925, + "CONCEPT_NAME" : "Very premature - less than 1000g or less than 28 weeks", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "268817004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4149523, + "CONCEPT_NAME" : "Very preterm maturity of infant", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "268868001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 109, + "name" : "Methotrexate", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 1305058, + "CONCEPT_NAME" : "methotrexate", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6851", + "DOMAIN_ID" : "Drug", + "VOCABULARY_ID" : "RxNorm", + "CONCEPT_CLASS_ID" : "Ingredient" + }, + "isExcluded" : false, + "includeDescendants" : true, + "includeMapped" : false + } + ] + } + }, + { + "id" : 111, + "name" : "Pregnancy Confirmation (PCONF)", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 441092, + "CONCEPT_NAME" : "Advanced maternal age gravida", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "416413003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061424, + "CONCEPT_NAME" : "Antenatal care: primigravida", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169573007", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40760833, + "CONCEPT_NAME" : "Birth plurality of Pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57722-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Clinical Observation" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4139126, + "CONCEPT_NAME" : "Braxton Hicks contractions", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "32644009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015590, + "CONCEPT_NAME" : "Counseling for termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10383002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3011536, + "CONCEPT_NAME" : "Delivery date Estimated", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "11778-8", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Clinical Observation" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43054893, + "CONCEPT_NAME" : "Delivery location", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72150-6", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Survey" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43021054, + "CONCEPT_NAME" : "Dichorionic diamniotic twin pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "459166009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37017322, + "CONCEPT_NAME" : "Dizygotic twin pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "713575004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441085, + "CONCEPT_NAME" : "Elderly primigravida", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "29399001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 192380, + "CONCEPT_NAME" : "Failed attempted termination of pregnancy without complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90645002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4210896, + "CONCEPT_NAME" : "Fetal gestational age", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57036006", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Observable Entity" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3006722, + "CONCEPT_NAME" : "Fetal Heart Narrative Activity US", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "11616-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Clinical Observation" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40759953, + "CONCEPT_NAME" : "Fetal Narrative Movement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "56834-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Clinical Observation" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 195877, + "CONCEPT_NAME" : "Finding of gravid uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "289675001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061522, + "CONCEPT_NAME" : "General practitioner unit delivery booking", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169622009", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437937, + "CONCEPT_NAME" : "Grand multipara", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "18656007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4030415, + "CONCEPT_NAME" : "Illegitimate pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14080002", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 197031, + "CONCEPT_NAME" : "Intrauterine pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65727000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061672, + "CONCEPT_NAME" : "IUD failure - pregnant", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169488004", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43021951, + "CONCEPT_NAME" : "Monochorionic diamniotic twin pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "459168005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43021952, + "CONCEPT_NAME" : "Monochorionic monoamniotic twin pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "459171002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3045823, + "CONCEPT_NAME" : "Multiple pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45371-2", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Clinical Observation" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432969, + "CONCEPT_NAME" : "Multiple pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16356006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3000119, + "CONCEPT_NAME" : "Narrative Fetal presentation US", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "18850-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Clinical Observation" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4217975, + "CONCEPT_NAME" : "Normal pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72892002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038942, + "CONCEPT_NAME" : "O/E - fetal movements", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163535001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4150948, + "CONCEPT_NAME" : "O/E - fetal presentation", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "268952006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4148890, + "CONCEPT_NAME" : "Pregnancy benefits", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "270471004", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Qualifier Value" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4094910, + "CONCEPT_NAME" : "Pregnancy test positive", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "250423000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061785, + "CONCEPT_NAME" : "Pregnancy unplanned and unwanted", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169567006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060237, + "CONCEPT_NAME" : "Pregnancy unplanned but wanted", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169566002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4299535, + "CONCEPT_NAME" : "Pregnant", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "77386006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4059982, + "CONCEPT_NAME" : "Pregnant - blood test confirms", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169561007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061686, + "CONCEPT_NAME" : "Pregnant - on history", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169563005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4059984, + "CONCEPT_NAME" : "Pregnant - planned", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169565003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061411, + "CONCEPT_NAME" : "Pregnant, sheath failure", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169508004", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4059981, + "CONCEPT_NAME" : "Pregnant - urine test confirms", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169560008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4133029, + "CONCEPT_NAME" : "Primigravida", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "127364007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442594, + "CONCEPT_NAME" : "Quadruplet pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "60810003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440466, + "CONCEPT_NAME" : "Quadruplet pregnancy with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199326006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061423, + "CONCEPT_NAME" : "Questionable if pregnancy was planned", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169569009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4214930, + "CONCEPT_NAME" : "Refer to early pregnancy unit", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "417577000", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040000, + "CONCEPT_NAME" : "Reliability of last menstrual period observation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "53661-5", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Clinical Observation" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 196484, + "CONCEPT_NAME" : "Retroverted incarcerated gravid uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199466009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4042412, + "CONCEPT_NAME" : "Serum pregnancy test positive", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "166437003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 198212, + "CONCEPT_NAME" : "Spotting per vagina in pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "284075002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4129023, + "CONCEPT_NAME" : "Teenage pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237240001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4218813, + "CONCEPT_NAME" : "Third trimester pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "41587001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432375, + "CONCEPT_NAME" : "Triplet pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64254006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441919, + "CONCEPT_NAME" : "Twin pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65147003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4307820, + "CONCEPT_NAME" : "Unplanned pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "83074005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4059985, + "CONCEPT_NAME" : "Unplanned pregnancy unknown if child is wanted", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169568001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4239301, + "CONCEPT_NAME" : "Unwanted pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "58532003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4041878, + "CONCEPT_NAME" : "Urine pregnancy test positive", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "167256004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3023791, + "CONCEPT_NAME" : "Uterus Fundal height Tape measure", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "11881-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Clinical Observation" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40519557, + "CONCEPT_NAME" : "[V]Other unwanted pregnancy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "316385002", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40524802, + "CONCEPT_NAME" : "[V]Pregnant state, incidental", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "315903005", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40524805, + "CONCEPT_NAME" : "[V]Unspecified pregnant state", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "315906002", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 113, + "name" : "Threatened miscarriage (TA)", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 440457, + "CONCEPT_NAME" : "Threatened miscarriage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54048003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4252252, + "CONCEPT_NAME" : "Threatened miscarriage in first trimester", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "73790007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4294259, + "CONCEPT_NAME" : "Threatened miscarriage in second trimester", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "75933004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4032055, + "CONCEPT_NAME" : "Threatened miscarriage in third trimester", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10884004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 112, + "name" : "Pregnancy complications (PCOMP)", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4198125, + "CONCEPT_NAME" : "Abdominal pain in early pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "314041007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4149783, + "CONCEPT_NAME" : "Abdominal pain in pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "309737007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 193525, + "CONCEPT_NAME" : "Abdominal pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "82661006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 314099, + "CONCEPT_NAME" : "Abnormal fetal heart rate", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "312668007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437688, + "CONCEPT_NAME" : "Abnormal findings on antenatal screening of mother", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199732004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440216, + "CONCEPT_NAME" : "Abnormal glucose tolerance test", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "274858002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439403, + "CONCEPT_NAME" : "Abnormal glucose tolerance test during pregnancy - baby not yet delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "372054004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4162865, + "CONCEPT_NAME" : "Abnormal glucose tolerance test during pregnancy, childbirth and the puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "372046001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 197050, + "CONCEPT_NAME" : "Abnormality of organs AND/OR soft tissues of pelvis affecting pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1639007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4034308, + "CONCEPT_NAME" : "Acromion presentation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "23954006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004824, + "CONCEPT_NAME" : "Amnioinfusion", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "75.37", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435880, + "CONCEPT_NAME" : "Amniotic cavity infection with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199678003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435616, + "CONCEPT_NAME" : "Amniotic fluid embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "17263003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4154997, + "CONCEPT_NAME" : "Amniotic fluid leaking", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "371380006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441959, + "CONCEPT_NAME" : "Amniotic fluid -meconium stain", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "168092006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 436768, + "CONCEPT_NAME" : "Amniotic fluid pulmonary embolism with antenatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200296007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432967, + "CONCEPT_NAME" : "Anemia during pregnancy - baby not yet delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199246003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434701, + "CONCEPT_NAME" : "Anemia in mother complicating pregnancy, childbirth AND/OR puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45828008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4099889, + "CONCEPT_NAME" : "Anemia of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "27342004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4079835, + "CONCEPT_NAME" : "Antenatal risk factors", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276445008", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435887, + "CONCEPT_NAME" : "Antepartum deep vein thrombosis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "49956009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434089, + "CONCEPT_NAME" : "Antepartum hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "34842007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4143074, + "CONCEPT_NAME" : "Antepartum hemorrhage, abruptio placentae and placenta previa", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "267197003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438489, + "CONCEPT_NAME" : "Antepartum hemorrhage associated with coagulation defect", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "267199000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438203, + "CONCEPT_NAME" : "Antepartum hemorrhage with coagulation defect - not delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198918004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4129039, + "CONCEPT_NAME" : "Anti-D antibodies", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "237301008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 80156, + "CONCEPT_NAME" : "Asymptomatic bacteriuria in pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "31563000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 321638, + "CONCEPT_NAME" : "Benign essential hypertension complicating pregnancy, childbirth and the puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198942000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 314423, + "CONCEPT_NAME" : "Benign essential hypertension complicating pregnancy, childbirth and the puerperium - not delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198946002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4027371, + "CONCEPT_NAME" : "Bone AND/OR joint disorder in mother complicating pregnancy, childbirth AND/OR puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "128076000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 73282, + "CONCEPT_NAME" : "Breast engorgement in pregnancy, the puerperium or lactation with antenatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200420005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 76756, + "CONCEPT_NAME" : "Breech presentation with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199355003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 375016, + "CONCEPT_NAME" : "Central nervous system malformation in fetus affecting obstetrical care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1538006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110305, + "CONCEPT_NAME" : "Cerclage of cervix, during pregnancy; abdominal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59325", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110304, + "CONCEPT_NAME" : "Cerclage of cervix, during pregnancy; vaginal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59320", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4321386, + "CONCEPT_NAME" : "Cervical cerclage suture present", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "69802008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 436740, + "CONCEPT_NAME" : "Cervical incompetence", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "17382005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437334, + "CONCEPT_NAME" : "Cervical incompetence with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199484006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 72973, + "CONCEPT_NAME" : "Chromosomal abnormality in fetus affecting obstetrical care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "42686001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3170656, + "CONCEPT_NAME" : "Complcated pregnancy due to surgical history: uterine myomectomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6980001000004103", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "Nebraska Lexicon", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435875, + "CONCEPT_NAME" : "Complication of pregnancy, childbirth and/or puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198609003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433822, + "CONCEPT_NAME" : "Complication related to pregnancy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "90821003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 80205, + "CONCEPT_NAME" : "Condition in fetus originating in the perinatal period", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "41168002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 197339, + "CONCEPT_NAME" : "Congenital abnormality of uterus, affecting pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "41215002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 193825, + "CONCEPT_NAME" : "Congenital abnormality of uterus complicating antenatal care, baby not yet delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "267216000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 314426, + "CONCEPT_NAME" : "Congenital cardiovascular disorder during pregnancy - baby not yet delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199268008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 196175, + "CONCEPT_NAME" : "Congenital OR acquired abnormality of cervix affecting pregnancy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "111443000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 201920, + "CONCEPT_NAME" : "Congenital OR acquired abnormality of vagina affecting pregnancy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "111444006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440162, + "CONCEPT_NAME" : "Congenital or acquired abnormality of vulva complicating antenatal care - baby not yet delivered", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "267249009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433826, + "CONCEPT_NAME" : "Continuing pregnancy after abortion of one fetus or more", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199306007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432373, + "CONCEPT_NAME" : "Continuing pregnancy after intrauterine death of one or more fetuses", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199307003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43020670, + "CONCEPT_NAME" : "Continuing pregnancy after intrauterine death of one twin with intrauterine retention of dead twin", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "472321009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441647, + "CONCEPT_NAME" : "Continuing pregnancy after intrauterine death of twin fetus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429187001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4120986, + "CONCEPT_NAME" : "Controlled cord traction of placenta", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "302384005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433828, + "CONCEPT_NAME" : "Cord tangled or knotted with compression", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "267266006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442421, + "CONCEPT_NAME" : "Cord tangled with compression with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199881006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004823, + "CONCEPT_NAME" : "Correction of fetal defect", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "75.36", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4170118, + "CONCEPT_NAME" : "Cystitis of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "275412000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 73265, + "CONCEPT_NAME" : "Deep transverse arrest with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199775005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 192691, + "CONCEPT_NAME" : "Diabetes mellitus during pregnancy - baby not yet delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199227004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 194700, + "CONCEPT_NAME" : "Diabetes mellitus in mother complicating pregnancy, childbirth AND/OR puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "76751001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 201958, + "CONCEPT_NAME" : "Disorder involving the integument of fetus OR newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "111474003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438815, + "CONCEPT_NAME" : "Disorder of amniotic cavity AND/OR membrane", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72860003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 79890, + "CONCEPT_NAME" : "Disorder of pelvic size and disproportion", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237256006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4053583, + "CONCEPT_NAME" : "Disorder of placenta", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "125586008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 201091, + "CONCEPT_NAME" : "Disproportion - major pelvic abnormality", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199398004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4059763, + "CONCEPT_NAME" : "Disproportion - major pelvic abnormality with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199402008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442913, + "CONCEPT_NAME" : "Drug dependence during pregnancy - baby not yet delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199254001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440787, + "CONCEPT_NAME" : "Drug dependence in mother complicating pregnancy, childbirth AND/OR puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "34150001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443700, + "CONCEPT_NAME" : "Eclampsia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15938005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 137613, + "CONCEPT_NAME" : "Eclampsia in pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198992004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438204, + "CONCEPT_NAME" : "Edema or excessive weight gain in pregnancy without mention of hypertension", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "267202005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442442, + "CONCEPT_NAME" : "Elderly primigravida with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199719009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 81636, + "CONCEPT_NAME" : "Excessive fetal growth affecting management of mother", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "22173004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40479820, + "CONCEPT_NAME" : "Exposure to rubella in pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "444517009", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Event" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 78210, + "CONCEPT_NAME" : "Face OR brow presentation of fetus", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "37762002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4071437, + "CONCEPT_NAME" : "Face presentation of fetus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "21882006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437341, + "CONCEPT_NAME" : "Failed mechanical induction with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199695006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 201083, + "CONCEPT_NAME" : "Fetal AND/OR placental disorder affecting management of mother", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "22753004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43022052, + "CONCEPT_NAME" : "Fetal anemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "462166006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 79146, + "CONCEPT_NAME" : "Fetal blood loss", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206390008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4196670, + "CONCEPT_NAME" : "Fetal blood loss from vasa previa", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "50544004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 80165, + "CONCEPT_NAME" : "Fetal disproportion", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "31805001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 73268, + "CONCEPT_NAME" : "Fetal distress affecting management of mother", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12867002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4203009, + "CONCEPT_NAME" : "Fetal exsanguination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "52977000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 80204, + "CONCEPT_NAME" : "Fetal growth restriction", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "22033007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 201366, + "CONCEPT_NAME" : "Fetal-maternal hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "71028008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 196757, + "CONCEPT_NAME" : "Fetal-maternal hemorrhage with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199578005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4145315, + "CONCEPT_NAME" : "Fetal movements felt", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "268470003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441682, + "CONCEPT_NAME" : "Fetal or neonatal effect of compression of umbilical cord", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86629005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433027, + "CONCEPT_NAME" : "Fetal or neonatal effect of maternal hypertensive disease", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "268794002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 436219, + "CONCEPT_NAME" : "Fetal or neonatal effect of maternal infection", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "206005002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441680, + "CONCEPT_NAME" : "Fetal or neonatal effect of multiple pregnancy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "18001006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 81360, + "CONCEPT_NAME" : "Fetus papyraceous", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90127001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4047725, + "CONCEPT_NAME" : "Fetus small-for-dates with signs of malnutrition", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206164002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442827, + "CONCEPT_NAME" : "Fetus with central nervous system malformation with antenatal problem", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "199520001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 80463, + "CONCEPT_NAME" : "Fetus with chromosomal abnormality with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199527003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4064277, + "CONCEPT_NAME" : "Fetus with damage due to intrauterine contraceptive device", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199558002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4063297, + "CONCEPT_NAME" : "Fetus with damage due to intrauterine contraceptive device with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199561001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060672, + "CONCEPT_NAME" : "Fetus with drug damage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199547006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4064178, + "CONCEPT_NAME" : "Fetus with drug damage with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199550009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4064169, + "CONCEPT_NAME" : "Fetus with hereditary disease", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199531009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4064172, + "CONCEPT_NAME" : "Fetus with hereditary disease with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199534001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4143204, + "CONCEPT_NAME" : "Fetus with viral damage via mother", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "267254000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4064175, + "CONCEPT_NAME" : "Fetus with viral damage via mother with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199539006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3657563, + "CONCEPT_NAME" : "First trimester bleeding", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1323351000000104", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 76772, + "CONCEPT_NAME" : "Galactorrhea in pregnancy and the puerperium with antenatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200448005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 76750, + "CONCEPT_NAME" : "Generally contracted pelvis with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199406006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 77340, + "CONCEPT_NAME" : "Genitourinary tract infection in pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "267204006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 74415, + "CONCEPT_NAME" : "Genitourinary tract infection in pregnancy - not delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199108000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4024659, + "CONCEPT_NAME" : "Gestational diabetes mellitus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "11687002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443214, + "CONCEPT_NAME" : "Gestational edema", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237285000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442565, + "CONCEPT_NAME" : "Gestational edema without hypertension", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "77376005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4058113, + "CONCEPT_NAME" : "Gestational edema with proteinuria", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199141002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442441, + "CONCEPT_NAME" : "Grand multiparity with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199715003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 316478, + "CONCEPT_NAME" : "Heart disease in mother complicating pregnancy, childbirth AND/OR puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "78381004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2212713, + "CONCEPT_NAME" : "Hemoglobin or RBCs, fetal, for fetomaternal hemorrhage; differential lysis (Kleihauer-Betke)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "85460", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437090, + "CONCEPT_NAME" : "Hemolytic disease of fetus OR newborn due to ABO immunization", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "32858009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433603, + "CONCEPT_NAME" : "Hemolytic disease of fetus OR newborn due to RhD isoimmunization", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86986002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438478, + "CONCEPT_NAME" : "Hemorrhage in early pregnancy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "25825004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437935, + "CONCEPT_NAME" : "Hemorrhage in early pregnancy, antepartum", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "30850008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4311256, + "CONCEPT_NAME" : "Herpes gestationis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86081009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442088, + "CONCEPT_NAME" : "High head at term", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199373000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 72696, + "CONCEPT_NAME" : "High head at term with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199376008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4302252, + "CONCEPT_NAME" : "High risk pregnancy care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "386322007", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4062565, + "CONCEPT_NAME" : "History of recurrent miscarriage - not delivered", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199088001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 81923, + "CONCEPT_NAME" : "Hydrocephalic disproportion with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199428006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444245, + "CONCEPT_NAME" : "Hydrocephalic fetus causing disproportion", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "111439004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 77662, + "CONCEPT_NAME" : "Hydrops fetalis due to isoimmunization", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15539009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4030872, + "CONCEPT_NAME" : "Hyperemesis gravidarum", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14094001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4098582, + "CONCEPT_NAME" : "Hyperemesis gravidarum before end of 22 week gestation with carbohydrate depletion", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "27152008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4227141, + "CONCEPT_NAME" : "Hyperemesis gravidarum before end of 22 week gestation with dehydration", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87621000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4142340, + "CONCEPT_NAME" : "Hyperemesis gravidarum before end of 22 week gestation with electrolyte imbalance", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "33370009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 436485, + "CONCEPT_NAME" : "Hyperemesis gravidarum with metabolic disturbance", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199025001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440788, + "CONCEPT_NAME" : "Hyperemesis gravidarum with metabolic disturbance - not delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199028004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 321080, + "CONCEPT_NAME" : "Hypertension complicating pregnancy, childbirth and the puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198941007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 133284, + "CONCEPT_NAME" : "Impetigo herpetiformis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65539006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 436180, + "CONCEPT_NAME" : "Infection of amniotic cavity", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10573002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433823, + "CONCEPT_NAME" : "Infectious disease in mother complicating pregnancy, childbirth AND/OR puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40609001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433266, + "CONCEPT_NAME" : "Infective/parasitic disease in preg/childbirth/puerperium", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "199153003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 79896, + "CONCEPT_NAME" : "Inlet pelvic contraction with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199410009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4197403, + "CONCEPT_NAME" : "Intervillous thrombosis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80256005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4023420, + "CONCEPT_NAME" : "Intra-amniotic infection of fetus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "11618000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4180743, + "CONCEPT_NAME" : "Intraventricular hemorrhage of fetus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428241007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4058246, + "CONCEPT_NAME" : "Iron deficiency anemia of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199248002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4079751, + "CONCEPT_NAME" : "Iron supplement in pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "182947002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442772, + "CONCEPT_NAME" : "Isoimmunization from non-ABO, non-Rh blood-group incompatibility affecting pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "66958002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530880, + "CONCEPT_NAME" : "Known or suspected fetal abnormality", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "609414006", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 77335, + "CONCEPT_NAME" : "Known OR suspected fetal abnormality affecting management of mother", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "66064007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 78818, + "CONCEPT_NAME" : "Large fetus causing disproportion with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199423002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443325, + "CONCEPT_NAME" : "Late pregnancy vomiting - not delivered", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "199033000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439880, + "CONCEPT_NAME" : "Late vomiting of pregnancy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "38331001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 194699, + "CONCEPT_NAME" : "Liver disorder in pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15230009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443292, + "CONCEPT_NAME" : "Liver disorder in pregnancy - not delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199118005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4130310, + "CONCEPT_NAME" : "Macdonald's cervical cerclage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "236946009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 77338, + "CONCEPT_NAME" : "Malposition and malpresentation of fetus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "270498000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004764, + "CONCEPT_NAME" : "Manual rotation of fetal head", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "73.51", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4016059, + "CONCEPT_NAME" : "Maternal alcohol abuse", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "169942003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443295, + "CONCEPT_NAME" : "Maternal care for diminished fetal movements", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "200473005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432977, + "CONCEPT_NAME" : "Maternal distress with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200101003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441081, + "CONCEPT_NAME" : "Maternal gonorrhea during pregnancy - baby not yet delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199165004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 314432, + "CONCEPT_NAME" : "Maternal hypotension syndrome", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "88887003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 315327, + "CONCEPT_NAME" : "Maternal hypotension syndrome with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200113008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42872398, + "CONCEPT_NAME" : "Maternal obesity complicating pregnancy, childbirth and the puerperium, antepartum", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "171000119107", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439893, + "CONCEPT_NAME" : "Maternal obesity syndrome", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "44772007", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438205, + "CONCEPT_NAME" : "Maternal syphilis during pregnancy - baby not yet delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199158007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434697, + "CONCEPT_NAME" : "Maternal tobacco abuse", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169940006", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442918, + "CONCEPT_NAME" : "Mental disorder during pregnancy - baby not yet delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199261002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060424, + "CONCEPT_NAME" : "Mental disorders during pregnancy, childbirth and the puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199257008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 436166, + "CONCEPT_NAME" : "Mild hyperemesis gravidarum", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "19569008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435023, + "CONCEPT_NAME" : "Mild hyperemesis-not delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199023008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 314090, + "CONCEPT_NAME" : "Mild pre-eclampsia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "41114007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4063183, + "CONCEPT_NAME" : "Mixed feto-pelvic disproportion", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199416003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 78817, + "CONCEPT_NAME" : "Mixed feto-pelvic disproportion with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199419005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4030429, + "CONCEPT_NAME" : "Moderate hyperemesis gravidarum", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "129597002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4034094, + "CONCEPT_NAME" : "Moderate proteinuric hypertension of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237281009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4199931, + "CONCEPT_NAME" : "Morning sickness", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "51885006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437041, + "CONCEPT_NAME" : "Mother not delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "289257009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110337, + "CONCEPT_NAME" : "Multifetal pregnancy reduction(s) (MPR)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59866", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 75015, + "CONCEPT_NAME" : "Multiple gestation with one OR more fetal malpresentations", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80224003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4063175, + "CONCEPT_NAME" : "Multiple pregnancy with malpresentation with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199381004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4178154, + "CONCEPT_NAME" : "Multiple pregnancy with one fetal loss", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428511009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 194598, + "CONCEPT_NAME" : "Neoplasm of uncertain behavior of placenta", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "95005005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4080067, + "CONCEPT_NAME" : "Non-urgent obstetric admission", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "183494008", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442051, + "CONCEPT_NAME" : "Obstetric air pulmonary embolism with antenatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200290001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433545, + "CONCEPT_NAME" : "Obstetric blood-clot pulmonary embolism with antenatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200303005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 78218, + "CONCEPT_NAME" : "Obstetric breast abscess with antenatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200376001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4080059, + "CONCEPT_NAME" : "Obstetric emergency hospital admission", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "183460006", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441926, + "CONCEPT_NAME" : "Obstetric nipple infection with antenatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200369006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 76491, + "CONCEPT_NAME" : "Obstetric non-purulent mastitis with antenatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200383008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442071, + "CONCEPT_NAME" : "Obstetric shock with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200107004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038426, + "CONCEPT_NAME" : "O/E - fetal movements felt", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163538004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038755, + "CONCEPT_NAME" : "O/E - fundus 34-36 week size", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163506009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434111, + "CONCEPT_NAME" : "Oligohydramnios", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59566000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432386, + "CONCEPT_NAME" : "Oligohydramnios with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199654008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 72378, + "CONCEPT_NAME" : "Outlet pelvic contraction with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199414000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443323, + "CONCEPT_NAME" : "Papyraceous fetus - not delivered", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "199070009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 195019, + "CONCEPT_NAME" : "Pelvic soft tissue abnormality in pregnancy, childbirth and the puerperium with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199513008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 135370, + "CONCEPT_NAME" : "Perinatal cutaneous hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "18503002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 258564, + "CONCEPT_NAME" : "Perinatal interstitial emphysema", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "60125001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 313590, + "CONCEPT_NAME" : "Perinatal respiratory failure", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "91581004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 197608, + "CONCEPT_NAME" : "Peripheral neuritis in pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "17787002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 199086, + "CONCEPT_NAME" : "Peripheral neuritis in pregnancy - not delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199095005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444374, + "CONCEPT_NAME" : "Persistent occipitoposterior position", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "70068004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 317941, + "CONCEPT_NAME" : "Phlebitis AND/OR thrombosis complicating pregnancy AND/OR puerperium", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "26850007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014718, + "CONCEPT_NAME" : "Placental abnormality", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169957005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 198488, + "CONCEPT_NAME" : "Placental abruption", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "415105001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 201350, + "CONCEPT_NAME" : "Placental abruption - not delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198911005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 200784, + "CONCEPT_NAME" : "Placental condition affecting management of mother", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "111447004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014716, + "CONCEPT_NAME" : "Placental finding", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169952004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4034100, + "CONCEPT_NAME" : "Placental insufficiency", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237292005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4064854, + "CONCEPT_NAME" : "Placental localization", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "164817009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4284028, + "CONCEPT_NAME" : "Placenta previa", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36813001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 196751, + "CONCEPT_NAME" : "Placenta previa with hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198903000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 200149, + "CONCEPT_NAME" : "Placenta previa with hemorrhage - not delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198906008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 194710, + "CONCEPT_NAME" : "Placenta previa without hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7792000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 192372, + "CONCEPT_NAME" : "Placenta previa without hemorrhage - not delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198900002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437623, + "CONCEPT_NAME" : "Polyhydramnios", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86203003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433540, + "CONCEPT_NAME" : "Polyhydramnios with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199647002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 72693, + "CONCEPT_NAME" : "Poor fetal growth affecting management", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "397949005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 75639, + "CONCEPT_NAME" : "Poor fetal nutrition", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276608005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439393, + "CONCEPT_NAME" : "Pre-eclampsia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "398254007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 141084, + "CONCEPT_NAME" : "Pre-eclampsia or eclampsia with pre-existing hypertension", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198997005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 136743, + "CONCEPT_NAME" : "Pre-eclampsia or eclampsia with pre-existing hypertension - not delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199002002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4146816, + "CONCEPT_NAME" : "Pre-existing hypertension complicating AND/OR reason for care during childbirth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "34694006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4277110, + "CONCEPT_NAME" : "Pre-existing hypertension complicating AND/OR reason for care during pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65402008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 321074, + "CONCEPT_NAME" : "Pre-existing hypertension complicating pregnancy, childbirth and puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199005000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438209, + "CONCEPT_NAME" : "Pregnancy care of habitual aborter", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "199089009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4062674, + "CONCEPT_NAME" : "Pregnancy complication NOS", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "199152008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439348, + "CONCEPT_NAME" : "Pregnancy complications", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "198881004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4167493, + "CONCEPT_NAME" : "Pregnancy-induced hypertension", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48194001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4062574, + "CONCEPT_NAME" : "Pregnancy-related glycosuria", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199132007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 194702, + "CONCEPT_NAME" : "Premature rupture of membranes", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "44223004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 200468, + "CONCEPT_NAME" : "Premature rupture of membranes with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199659003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 201516, + "CONCEPT_NAME" : "Primary malignant neoplasm of placenta", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "93965008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435883, + "CONCEPT_NAME" : "Prolapse of cord with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199870008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4082504, + "CONCEPT_NAME" : "Pruritus of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "239102001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 313272, + "CONCEPT_NAME" : "Puerperal cerebrovascular disorder with antenatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200332008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 192679, + "CONCEPT_NAME" : "Renal disease in pregnancy AND/OR puerperium without hypertension", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "75150001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 192684, + "CONCEPT_NAME" : "Renal hypertension complicating pregnancy, childbirth and the puerperium - not delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198953006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 196486, + "CONCEPT_NAME" : "Retroverted incarcerated gravid uterus with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199470001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 199891, + "CONCEPT_NAME" : "Rhesus isoimmunization affecting pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "44795003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 192376, + "CONCEPT_NAME" : "Rhesus isoimmunization with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199583002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4327745, + "CONCEPT_NAME" : "Second trimester bleeding", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "430881000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4032345, + "CONCEPT_NAME" : "Severe hyperemesis gravidarum", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "129598007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433536, + "CONCEPT_NAME" : "Severe pre-eclampsia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46764007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 132685, + "CONCEPT_NAME" : "Severe pre-eclampsia - not delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198985009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4127241, + "CONCEPT_NAME" : "Shirodkar's cervical cerclage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "236947000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438226, + "CONCEPT_NAME" : "Short cord", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59795007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437946, + "CONCEPT_NAME" : "Short cord with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199890004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 75608, + "CONCEPT_NAME" : "Shoulder dystocia with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199784005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4087113, + "CONCEPT_NAME" : "Slow fetal growth AND/OR fetal malnutrition", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "18471004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435331, + "CONCEPT_NAME" : "Superficial thrombophlebitis in pregnancy and the puerperium with antenatal complication", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "200226001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530886, + "CONCEPT_NAME" : "Suspected fetal damage from disease in the mother", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609420007", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530888, + "CONCEPT_NAME" : "Suspected fetal damage from radiation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609422004", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4142581, + "CONCEPT_NAME" : "Third trimester bleeding", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "427139004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 138479, + "CONCEPT_NAME" : "Thyroid dysfunction during pregnancy - baby not yet delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199239007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 139895, + "CONCEPT_NAME" : "Thyroid dysfunction during pregnancy, childbirth and the puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199235001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110288, + "CONCEPT_NAME" : "Transabdominal amnioinfusion, including ultrasound guidance", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59070", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441922, + "CONCEPT_NAME" : "Transient hypertension of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237279007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 136760, + "CONCEPT_NAME" : "Transient hypertension of pregnancy - not delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198967002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 81358, + "CONCEPT_NAME" : "Transverse OR oblique presentation of fetus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "11914001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437931, + "CONCEPT_NAME" : "Triplet pregnancy with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199322008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 196758, + "CONCEPT_NAME" : "Tumor of body of uterus affecting pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "223003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 192385, + "CONCEPT_NAME" : "Tumor of uterine body complicating antenatal care, baby not yet delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "267223004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434097, + "CONCEPT_NAME" : "Twin pregnancy with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199318003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2211782, + "CONCEPT_NAME" : "Ultrasonic guidance for intrauterine fetal transfusion or cordocentesis, imaging supervision and interpretation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "76941", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061971, + "CONCEPT_NAME" : "Umbilical cord tight around neck with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199875003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110340, + "CONCEPT_NAME" : "Unlisted fetal invasive procedure, including ultrasound guidance, when performed", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59897", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 79091, + "CONCEPT_NAME" : "Unstable lie", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86356004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 72374, + "CONCEPT_NAME" : "Unstable lie with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199345002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4146482, + "CONCEPT_NAME" : "Urinary tract infection in pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "307534009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 194101, + "CONCEPT_NAME" : "Uterine size for dates discrepancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "430933008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37109810, + "CONCEPT_NAME" : "Vaginal bleeding complicating early pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "723665008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442290, + "CONCEPT_NAME" : "Varicose veins of legs complicating pregnancy AND/OR puerperium", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "5626004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434712, + "CONCEPT_NAME" : "Varicose veins of legs in pregnancy and the puerperium with antenatal complication", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "200208004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441929, + "CONCEPT_NAME" : "Varicose veins of perineum and vulva in pregnancy and the puerperium with antenatal complication", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "200217004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435021, + "CONCEPT_NAME" : "Vasa previa with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199896005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 315884, + "CONCEPT_NAME" : "Vascular lesions of cord with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199901007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4300078, + "CONCEPT_NAME" : "Velamentous insertion of umbilical cord", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "77278008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440158, + "CONCEPT_NAME" : "Venereal disease in mother complicating pregnancy, childbirth AND/OR puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "27075004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 313543, + "CONCEPT_NAME" : "Venous complication of pregnancy and/or puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "267280004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435604, + "CONCEPT_NAME" : "Viral disease in mother complicating pregnancy, childbirth AND/OR puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "31516002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 35625971, + "CONCEPT_NAME" : "Vomiting during third trimester of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "769087009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440785, + "CONCEPT_NAME" : "Vomiting of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90325002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + } + ], + "QualifiedLimit" : { + "Type" : "Last" + }, + "ExpressionLimit" : { + "Type" : "All" + }, + "InclusionRules" : [ + { + "name" : "Outcome between 42d-84d from entry event", + "expression" : { + "Type" : "ANY", + "CriteriaList" : [ + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 107, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 42, + "Coeff" : 1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 107, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 42, + "Coeff" : 1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : true + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "DrugEra" : { + "CodesetId" : 109 + } + }, + "StartWindow" : { + "Start" : { + "Days" : 42, + "Coeff" : 1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + }, + { + "name" : "No outcome between 0d-41d from entry event", + "expression" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 107, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 41, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 107, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 41, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "DrugEra" : { + "CodesetId" : 109 + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 41, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + }, + { + "name" : "No outcome in the 14d before entry event", + "expression" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 60, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 28, + "Coeff" : -1 + }, + "End" : { + "Days" : 0, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 60, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 28, + "Coeff" : -1 + }, + "End" : { + "Days" : 0, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 1, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 28, + "Coeff" : -1 + }, + "End" : { + "Days" : 0, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 1, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 28, + "Coeff" : -1 + }, + "End" : { + "Days" : 0, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 107, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 14, + "Coeff" : -1 + }, + "End" : { + "Days" : 0, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 107, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 14, + "Coeff" : -1 + }, + "End" : { + "Days" : 0, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "DrugEra" : { + "CodesetId" : 109 + } + }, + "StartWindow" : { + "Start" : { + "Days" : 14, + "Coeff" : -1 + }, + "End" : { + "Days" : 0, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 62, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 14, + "Coeff" : -1 + }, + "End" : { + "Days" : 0, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 62, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 14, + "Coeff" : -1 + }, + "End" : { + "Days" : 0, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 62, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 14, + "Coeff" : -1 + }, + "End" : { + "Days" : 0, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + }, + { + "name" : "Has a second pregnancy marker", + "description" : "has a second marker", + "expression" : { + "Type" : "ANY", + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 61, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 2, + "IsDistinct" : true, + "CountColumn" : "DOMAIN_CONCEPT" + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 61, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 2, + "IsDistinct" : true, + "CountColumn" : "DOMAIN_CONCEPT" + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 61, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 2, + "IsDistinct" : true, + "CountColumn" : "DOMAIN_CONCEPT" + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 61, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 2, + "IsDistinct" : true, + "CountColumn" : "DOMAIN_CONCEPT" + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 2, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 61, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false, + "CountColumn" : "START_DATE" + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 61, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false, + "CountColumn" : "START_DATE" + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 61, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false, + "CountColumn" : "START_DATE" + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 61, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false, + "CountColumn" : "START_DATE" + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + } + }, + { + "name" : "Female, aged 12-55 on outcome date", + "expression" : { + "Type" : "ANY", + "CriteriaList" : [ + { + "Criteria" : { + "Observation" : { + "CodesetId" : 107, + "ObservationTypeExclude" : false, + "Age" : { + "Value" : 12, + "Op" : "bt", + "Extent" : 55 + }, + "Gender" : [ + { + "CONCEPT_ID" : 8532, + "CONCEPT_NAME" : "FEMALE", + "STANDARD_CONCEPT" : null, + "STANDARD_CONCEPT_CAPTION" : "Unknown", + "INVALID_REASON" : null, + "INVALID_REASON_CAPTION" : "Unknown", + "CONCEPT_CODE" : "F", + "DOMAIN_ID" : "Gender", + "VOCABULARY_ID" : "Gender", + "CONCEPT_CLASS_ID" : null + } + ] + } + }, + "StartWindow" : { + "Start" : { + "Days" : 42, + "Coeff" : 1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 107, + "ProcedureTypeExclude" : false, + "Age" : { + "Value" : 12, + "Op" : "bt", + "Extent" : 55 + }, + "Gender" : [ + { + "CONCEPT_ID" : 8532, + "CONCEPT_NAME" : "FEMALE", + "STANDARD_CONCEPT" : null, + "STANDARD_CONCEPT_CAPTION" : "Unknown", + "INVALID_REASON" : null, + "INVALID_REASON_CAPTION" : "Unknown", + "CONCEPT_CODE" : "F", + "DOMAIN_ID" : "Gender", + "VOCABULARY_ID" : "Gender", + "CONCEPT_CLASS_ID" : null + } + ] + } + }, + "StartWindow" : { + "Start" : { + "Days" : 42, + "Coeff" : 1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "DrugEra" : { + "CodesetId" : 109, + "AgeAtStart" : { + "Value" : 12, + "Op" : "bt", + "Extent" : 55 + }, + "Gender" : [ + { + "CONCEPT_ID" : 8532, + "CONCEPT_NAME" : "FEMALE", + "STANDARD_CONCEPT" : null, + "STANDARD_CONCEPT_CAPTION" : "Unknown", + "INVALID_REASON" : null, + "INVALID_REASON_CAPTION" : "Unknown", + "CONCEPT_CODE" : "F", + "DOMAIN_ID" : "Gender", + "VOCABULARY_ID" : "Gender", + "CONCEPT_CLASS_ID" : null + } + ] + } + }, + "StartWindow" : { + "Start" : { + "Days" : 42, + "Coeff" : 1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + }, + { + "name" : "No post outcome event in 42d (AGP, PCONF)", + "expression" : { + "Type" : "ANY", + "CriteriaList" : [ + { + "Criteria" : { + "Observation" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 57, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 1, + "Coeff" : 1 + }, + "End" : { + "Days" : 42, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 57, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 1, + "Coeff" : 1 + }, + "End" : { + "Days" : 42, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 57, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 1, + "Coeff" : 1 + }, + "End" : { + "Days" : 42, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 57, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 1, + "Coeff" : 1 + }, + "End" : { + "Days" : 42, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 56, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 1, + "Coeff" : 1 + }, + "End" : { + "Days" : 42, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 56, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 1, + "Coeff" : 1 + }, + "End" : { + "Days" : 42, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 56, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 1, + "Coeff" : 1 + }, + "End" : { + "Days" : 42, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "VisitOccurrence" : { + "CodesetId" : 56, + "VisitTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 1, + "Coeff" : 1 + }, + "End" : { + "Days" : 42, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + }, + "CodesetId" : 107, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 42, + "Coeff" : 1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 57, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 1, + "Coeff" : 1 + }, + "End" : { + "Days" : 42, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 57, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 1, + "Coeff" : 1 + }, + "End" : { + "Days" : 42, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 57, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 1, + "Coeff" : 1 + }, + "End" : { + "Days" : 42, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 57, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 1, + "Coeff" : 1 + }, + "End" : { + "Days" : 42, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 56, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 1, + "Coeff" : 1 + }, + "End" : { + "Days" : 42, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 56, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 1, + "Coeff" : 1 + }, + "End" : { + "Days" : 42, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 56, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 1, + "Coeff" : 1 + }, + "End" : { + "Days" : 42, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "VisitOccurrence" : { + "CodesetId" : 56, + "VisitTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 1, + "Coeff" : 1 + }, + "End" : { + "Days" : 42, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + }, + "CodesetId" : 107, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 42, + "Coeff" : 1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "DrugEra" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 57, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 1, + "Coeff" : 1 + }, + "End" : { + "Days" : 42, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 57, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 1, + "Coeff" : 1 + }, + "End" : { + "Days" : 42, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 57, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 1, + "Coeff" : 1 + }, + "End" : { + "Days" : 42, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 57, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 1, + "Coeff" : 1 + }, + "End" : { + "Days" : 42, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 56, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 1, + "Coeff" : 1 + }, + "End" : { + "Days" : 42, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 56, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 1, + "Coeff" : 1 + }, + "End" : { + "Days" : 42, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 56, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 1, + "Coeff" : 1 + }, + "End" : { + "Days" : 42, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "VisitOccurrence" : { + "CodesetId" : 56, + "VisitTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 1, + "Coeff" : 1 + }, + "End" : { + "Days" : 42, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + }, + "CodesetId" : 109 + } + }, + "StartWindow" : { + "Start" : { + "Days" : 42, + "Coeff" : 1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + }, + { + "name" : "No live birth/stillbirth around outcome date", + "expression" : { + "Type" : "ANY", + "CriteriaList" : [ + { + "Criteria" : { + "Observation" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 1, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 70, + "Coeff" : -1 + }, + "End" : { + "Days" : 168, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 1, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 70, + "Coeff" : -1 + }, + "End" : { + "Days" : 168, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 60, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 70, + "Coeff" : -1 + }, + "End" : { + "Days" : 154, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 60, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 70, + "Coeff" : -1 + }, + "End" : { + "Days" : 154, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + }, + "CodesetId" : 107, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 42, + "Coeff" : 1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 1, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 70, + "Coeff" : -1 + }, + "End" : { + "Days" : 168, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 1, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 70, + "Coeff" : -1 + }, + "End" : { + "Days" : 168, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 60, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 70, + "Coeff" : -1 + }, + "End" : { + "Days" : 154, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 60, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 70, + "Coeff" : -1 + }, + "End" : { + "Days" : 154, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + }, + "CodesetId" : 107, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 42, + "Coeff" : 1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "DrugEra" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 1, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 70, + "Coeff" : -1 + }, + "End" : { + "Days" : 168, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 1, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 70, + "Coeff" : -1 + }, + "End" : { + "Days" : 168, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 60, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 70, + "Coeff" : -1 + }, + "End" : { + "Days" : 154, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 60, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 70, + "Coeff" : -1 + }, + "End" : { + "Days" : 154, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + }, + "CodesetId" : 109 + } + }, + "StartWindow" : { + "Start" : { + "Days" : 42, + "Coeff" : 1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + }, + { + "name" : "OBSERVATION PERIOD: End marker in observation period", + "expression" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "ObservationPeriod" : { + "CorrelatedCriteria" : { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "Observation" : { + "CodesetId" : 107, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "EndWindow" : { + "Start" : { + "Coeff" : -1 + }, + "End" : { + "Days" : 0, + "Coeff" : 1 + }, + "UseIndexEnd" : true, + "UseEventEnd" : true + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 107, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "EndWindow" : { + "Start" : { + "Coeff" : -1 + }, + "End" : { + "Days" : 0, + "Coeff" : 1 + }, + "UseIndexEnd" : true, + "UseEventEnd" : true + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "DrugEra" : { + "CodesetId" : 109 + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "EndWindow" : { + "Start" : { + "Coeff" : -1 + }, + "End" : { + "Days" : 0, + "Coeff" : 1 + }, + "UseIndexEnd" : true, + "UseEventEnd" : true + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + } + }, + "StartWindow" : { + "Start" : { + "Coeff" : -1 + }, + "End" : { + "Days" : 0, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + }, + { + "name" : "ECT procedure within 14d of ECT condition", + "expression" : { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 107, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 14, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 107, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 14, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "DrugEra" : { + "CodesetId" : 109 + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 14, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + }, + "CodesetId" : 104, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CorrelatedCriteria" : { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 107, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 14, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 107, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 14, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "DrugEra" : { + "CodesetId" : 109 + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 14, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + }, + "CodesetId" : 104, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 84, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + } + ], + "EndStrategy" : { + "DateOffset" : { + "DateField" : "StartDate", + "Offset" : 84 + } + }, + "CensoringCriteria" : [ + { + "Observation" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 107, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 30, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 60, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 70, + "Coeff" : -1 + }, + "End" : { + "Days" : 154, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 60, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 70, + "Coeff" : -1 + }, + "End" : { + "Days" : 154, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 1, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 70, + "Coeff" : -1 + }, + "End" : { + "Days" : 168, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 1, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 70, + "Coeff" : -1 + }, + "End" : { + "Days" : 168, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + }, + "CodesetId" : 107, + "ObservationTypeExclude" : false + } + }, + { + "DrugEra" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 107, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 30, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 107, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : 1 + }, + "End" : { + "Days" : 30, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 1, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 70, + "Coeff" : -1 + }, + "End" : { + "Days" : 168, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 1, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 70, + "Coeff" : -1 + }, + "End" : { + "Days" : 168, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 60, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 70, + "Coeff" : -1 + }, + "End" : { + "Days" : 154, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 60, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 70, + "Coeff" : -1 + }, + "End" : { + "Days" : 154, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + }, + "CodesetId" : 109 + } + }, + { + "ProcedureOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 60, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 70, + "Coeff" : -1 + }, + "End" : { + "Days" : 154, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 60, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 70, + "Coeff" : -1 + }, + "End" : { + "Days" : 154, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 1, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 70, + "Coeff" : -1 + }, + "End" : { + "Days" : 168, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 1, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 70, + "Coeff" : -1 + }, + "End" : { + "Days" : 168, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + }, + "CodesetId" : 107, + "ProcedureTypeExclude" : false + } + } + ], + "CollapseSettings" : { + "CollapseType" : "ERA", + "EraPad" : 0 + }, + "CensorWindow" : {} +} \ No newline at end of file diff --git a/inst/cohorts/1432.json b/inst/cohorts/1432.json new file mode 100644 index 00000000..ee1422b7 --- /dev/null +++ b/inst/cohorts/1432.json @@ -0,0 +1,159494 @@ +{ + "cdmVersionRange" : ">=5.0.0", + "PrimaryCriteria" : { + "CriteriaList" : [ + { + "Measurement" : { + "CorrelatedCriteria" : { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 60, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 60, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + }, + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + { + "ConditionOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 63, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 63, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 60, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 60, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 20, + "ConditionTypeExclude" : false + } + }, + { + "ConditionOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 64, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 64, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 60, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 60, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 21, + "ConditionTypeExclude" : false + } + }, + { + "ConditionOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 65, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 65, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 60, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 60, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 22, + "ConditionTypeExclude" : false + } + }, + { + "ConditionOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 66, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 66, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 60, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 60, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 23, + "ConditionTypeExclude" : false + } + }, + { + "ConditionOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 67, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 67, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 60, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 60, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 24, + "ConditionTypeExclude" : false + } + }, + { + "ConditionOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 68, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 68, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 60, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 60, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 25, + "ConditionTypeExclude" : false + } + }, + { + "ConditionOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 69, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 69, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 60, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 60, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 26, + "ConditionTypeExclude" : false + } + }, + { + "ConditionOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 70, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 70, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 60, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 60, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 3, + "ConditionTypeExclude" : false + } + }, + { + "ProcedureOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 70, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 70, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 60, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 60, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 3, + "ProcedureTypeExclude" : false + } + }, + { + "ConditionOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 71, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 71, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 60, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 60, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 14, + "ConditionTypeExclude" : false + } + }, + { + "ConditionOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 72, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 72, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 60, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 60, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 17, + "ConditionTypeExclude" : false + } + }, + { + "ConditionOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionEra" : { + "CodesetId" : 73 + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 73, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 60, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 60, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 18, + "ConditionTypeExclude" : false + } + }, + { + "ConditionOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 74, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 74, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 60, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 60, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 9, + "ConditionTypeExclude" : false + } + }, + { + "ProcedureOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 74, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 74, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 60, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 60, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 9, + "ProcedureTypeExclude" : false + } + }, + { + "ConditionOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 75, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 75, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 60, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 60, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 19, + "ConditionTypeExclude" : false + } + }, + { + "ConditionOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 76, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 76, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 60, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false, + "CountColumn" : "DOMAIN_CONCEPT" + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 60, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 28, + "ConditionTypeExclude" : false + } + }, + { + "ConditionOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 77, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 77, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 60, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 60, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 29, + "ConditionTypeExclude" : false + } + }, + { + "ConditionOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 81, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 81, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 60, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 60, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 30, + "ConditionTypeExclude" : false + } + }, + { + "ProcedureOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 81, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 81, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 60, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 60, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 30, + "ProcedureTypeExclude" : false + } + }, + { + "ConditionOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 82, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 82, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 60, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 60, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 31, + "ConditionTypeExclude" : false + } + }, + { + "ConditionOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 83, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 83, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 60, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 60, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 32, + "ConditionTypeExclude" : false + } + }, + { + "ConditionOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 84, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 84, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 60, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 60, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 33, + "ConditionTypeExclude" : false + } + }, + { + "ConditionOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 85, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 85, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 60, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 60, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 34, + "ConditionTypeExclude" : false + } + }, + { + "ProcedureOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 85, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 85, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 60, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 60, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 34, + "ProcedureTypeExclude" : false + } + }, + { + "ConditionOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 87, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 87, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 60, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 60, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 35, + "ConditionTypeExclude" : false + } + }, + { + "ConditionOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 94, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 94, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 60, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 60, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 36, + "ConditionTypeExclude" : false + } + }, + { + "ProcedureOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 94, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 94, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 60, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 60, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 36, + "ProcedureTypeExclude" : false + } + }, + { + "ConditionOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 95, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 95, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 60, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 60, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 37, + "ConditionTypeExclude" : false + } + }, + { + "ProcedureOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 96, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 96, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 60, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 60, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 38, + "ProcedureTypeExclude" : false + } + }, + { + "ConditionOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 96, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 96, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 60, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 60, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 38, + "ConditionTypeExclude" : false + } + }, + { + "ConditionOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 97, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 97, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 60, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 60, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 40, + "ConditionTypeExclude" : false + } + }, + { + "ProcedureOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 97, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 97, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 60, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 60, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 40, + "ProcedureTypeExclude" : false + } + }, + { + "ConditionOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 98, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 98, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 60, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 60, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 41, + "ConditionTypeExclude" : false + } + }, + { + "ConditionOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 99, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 99, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 60, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 60, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 42, + "ConditionTypeExclude" : false + } + }, + { + "ConditionOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 100, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 100, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 60, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 60, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 43, + "ConditionTypeExclude" : false + } + }, + { + "ConditionOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 86, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 86, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 60, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 60, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 44, + "ConditionTypeExclude" : false + } + }, + { + "ConditionOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 88, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 88, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 60, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 60, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 45, + "ConditionTypeExclude" : false + } + }, + { + "ProcedureOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 88, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 88, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 60, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 60, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 45, + "ProcedureTypeExclude" : false + } + }, + { + "ConditionOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 101, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 101, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 60, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 60, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 47, + "ConditionTypeExclude" : false + } + }, + { + "ProcedureOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 101, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 101, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 60, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 60, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 47, + "ProcedureTypeExclude" : false + } + }, + { + "ConditionOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 102, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 102, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 60, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 60, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 48, + "ConditionTypeExclude" : false + } + }, + { + "ProcedureOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 102, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 102, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 60, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 60, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 48, + "ProcedureTypeExclude" : false + } + }, + { + "ConditionOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 103, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 103, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 60, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 60, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 49, + "ConditionTypeExclude" : false + } + }, + { + "ConditionOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 93, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 93, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 60, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 60, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 50, + "ConditionTypeExclude" : false + } + }, + { + "ProcedureOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 93, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 93, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 60, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 60, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 50, + "ProcedureTypeExclude" : false + } + }, + { + "ProcedureOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 92, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 92, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 60, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 60, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 12, + "ProcedureTypeExclude" : false + } + }, + { + "ConditionOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 92, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 92, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 60, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 60, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 12, + "ConditionTypeExclude" : false + } + }, + { + "ConditionOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 91, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 91, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 60, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 60, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 11, + "ConditionTypeExclude" : false + } + }, + { + "ProcedureOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 91, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 91, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 60, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 60, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 11, + "ProcedureTypeExclude" : false + } + }, + { + "ConditionOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 90, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 90, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 60, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 60, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 10, + "ConditionTypeExclude" : false + } + }, + { + "ProcedureOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 90, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 90, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 60, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 60, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 10, + "ProcedureTypeExclude" : false + } + }, + { + "ConditionOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 89, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 89, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 60, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 60, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 51, + "ConditionTypeExclude" : false + } + }, + { + "ProcedureOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 89, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 89, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 60, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 60, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 51, + "ProcedureTypeExclude" : false + } + }, + { + "ConditionOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 80, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 80, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 60, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 60, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 13, + "ConditionTypeExclude" : false + } + }, + { + "ProcedureOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 80, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 80, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 60, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 60, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 13, + "ProcedureTypeExclude" : false + } + }, + { + "ConditionOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 79, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 79, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 60, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 60, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 15, + "ConditionTypeExclude" : false + } + }, + { + "ProcedureOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 79, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 79, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 60, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 60, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 15, + "ProcedureTypeExclude" : false + } + }, + { + "ProcedureOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 78, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 78, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 60, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 60, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 52, + "ProcedureTypeExclude" : false + } + }, + { + "ConditionOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 78, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 78, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 60, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 60, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 52, + "ConditionTypeExclude" : false + } + }, + { + "ConditionOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "Observation" : { + "CodesetId" : 60, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 60, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 53, + "ConditionTypeExclude" : false + } + }, + { + "ProcedureOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 60, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 60, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 53, + "ProcedureTypeExclude" : false + } + }, + { + "ConditionOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 2, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 2, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 60, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 60, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 55, + "ConditionTypeExclude" : false + } + }, + { + "Observation" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 2, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 2, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 60, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 60, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 55, + "ObservationTypeExclude" : false + } + }, + { + "ProcedureOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 2, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 2, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 60, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 60, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 55, + "ProcedureTypeExclude" : false + } + }, + { + "ProcedureOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 2, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 2, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 55, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 55, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 55, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 60, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 60, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 5, + "ProcedureTypeExclude" : false + } + }, + { + "ConditionOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 2, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 2, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 55, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 55, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 55, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 5, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 60, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 60, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 6, + "ConditionTypeExclude" : false + } + }, + { + "Observation" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 2, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 2, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 55, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 55, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 55, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 5, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 60, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 60, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 6, + "ObservationTypeExclude" : false + } + }, + { + "Measurement" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 2, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 2, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 55, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 55, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 55, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 5, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 60, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 60, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 6, + "MeasurementTypeExclude" : false + } + }, + { + "ConditionOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 2, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 2, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 55, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 55, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 55, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 5, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 6, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 6, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 6, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 7, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 196, + "Coeff" : -1 + }, + "End" : { + "Days" : 112, + "Coeff" : -1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "EndWindow" : { + "Start" : { + "Days" : 55, + "Coeff" : -1 + }, + "End" : { + "Days" : 0, + "Coeff" : -1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + }, + "CodesetId" : 60, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : 1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 7, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 196, + "Coeff" : -1 + }, + "End" : { + "Days" : 112, + "Coeff" : -1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "EndWindow" : { + "Start" : { + "Days" : 55, + "Coeff" : -1 + }, + "End" : { + "Days" : 0, + "Coeff" : -1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + }, + "CodesetId" : 60, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : 1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 7, + "ConditionTypeExclude" : false + } + }, + { + "Observation" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 2, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 2, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 55, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 55, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 55, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 5, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 6, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 6, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 6, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Observation" : { + "CodesetId" : 7, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 196, + "Coeff" : -1 + }, + "End" : { + "Days" : 112, + "Coeff" : -1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "EndWindow" : { + "Start" : { + "Days" : 55, + "Coeff" : -1 + }, + "End" : { + "Days" : 0, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + }, + "CodesetId" : 60, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : 1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Observation" : { + "CodesetId" : 7, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 196, + "Coeff" : -1 + }, + "End" : { + "Days" : 112, + "Coeff" : -1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "EndWindow" : { + "Start" : { + "Days" : 55, + "Coeff" : -1 + }, + "End" : { + "Days" : 0, + "Coeff" : -1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + }, + "CodesetId" : 60, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : 1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 7, + "ObservationTypeExclude" : false + } + }, + { + "Measurement" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 2, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 2, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 55, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 55, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 55, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 5, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 6, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 6, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 6, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 7, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 7, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 8, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 196, + "Coeff" : -1 + }, + "End" : { + "Days" : 112, + "Coeff" : -1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "EndWindow" : { + "Start" : { + "Days" : 55, + "Coeff" : -1 + }, + "End" : { + "Days" : 0, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + }, + "CodesetId" : 60, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : 1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 8, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 196, + "Coeff" : -1 + }, + "End" : { + "Days" : 112, + "Coeff" : -1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "EndWindow" : { + "Start" : { + "Days" : 55, + "Coeff" : -1 + }, + "End" : { + "Days" : 0, + "Coeff" : -1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + }, + "CodesetId" : 60, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : 1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 8, + "MeasurementTypeExclude" : false + } + }, + { + "ProcedureOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 2, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 2, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 55, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 55, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 55, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 5, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 6, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 6, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 6, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 7, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 7, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 8, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 196, + "Coeff" : -1 + }, + "End" : { + "Days" : 112, + "Coeff" : -1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "EndWindow" : { + "Start" : { + "Days" : 55, + "Coeff" : -1 + }, + "End" : { + "Days" : 0, + "Coeff" : -1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + }, + "CodesetId" : 60, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : 1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 8, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 196, + "Coeff" : -1 + }, + "End" : { + "Days" : 112, + "Coeff" : -1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "EndWindow" : { + "Start" : { + "Days" : 55, + "Coeff" : -1 + }, + "End" : { + "Days" : 0, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + }, + "CodesetId" : 60, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : 1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 8, + "ProcedureTypeExclude" : false + } + }, + { + "ConditionOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 2, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 2, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 55, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 55, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 55, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 5, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 6, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 6, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 6, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 60, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 60, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 111, + "ConditionTypeExclude" : false + } + }, + { + "Observation" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 2, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 2, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 55, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 55, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 55, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 5, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 6, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 6, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 6, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 60, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 60, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 111, + "ObservationTypeExclude" : false + } + }, + { + "Measurement" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 2, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 2, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 55, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 55, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 55, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 5, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 6, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 6, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 6, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 60, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 60, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 111, + "MeasurementTypeExclude" : false + } + }, + { + "ProcedureOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 2, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 2, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 55, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 55, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 55, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 5, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 6, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 6, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 6, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 60, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 60, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 111, + "ProcedureTypeExclude" : false + } + }, + { + "ConditionOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 2, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 2, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 55, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 55, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 55, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 5, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 6, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 6, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 6, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 60, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 60, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 56, + "ConditionTypeExclude" : false + } + }, + { + "Observation" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 2, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 2, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 55, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 55, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 55, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 5, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 6, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 6, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 6, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 60, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 60, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 56, + "ObservationTypeExclude" : false + } + }, + { + "ProcedureOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 2, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 2, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 55, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 55, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 55, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 5, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 6, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 6, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 6, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 60, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 60, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 56, + "ProcedureTypeExclude" : false + } + }, + { + "ConditionOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 2, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 2, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 55, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 55, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 55, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 5, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 6, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 6, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 6, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 60, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 60, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 113, + "ConditionTypeExclude" : false + } + }, + { + "ConditionOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 2, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 2, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 55, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 55, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 55, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 5, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 6, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 6, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 6, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 60, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 60, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 112, + "ConditionTypeExclude" : false + } + }, + { + "Observation" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 2, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 2, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 55, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 55, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 55, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 5, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 6, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 6, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 6, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 60, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 60, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 112, + "ObservationTypeExclude" : false + } + }, + { + "ProcedureOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 2, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 2, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 55, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 55, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 55, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 5, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 6, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 6, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 6, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 60, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 60, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 112, + "ProcedureTypeExclude" : false + } + }, + { + "Measurement" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 2, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 2, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 55, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 55, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 55, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 5, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 6, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 6, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 6, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 60, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 60, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 112, + "MeasurementTypeExclude" : false + } + }, + { + "ConditionOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 2, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 2, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 55, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 55, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 55, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 5, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : 1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 6, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : 1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 6, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : 1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 6, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : 1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 7, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 56, + "Coeff" : 1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 7, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 56, + "Coeff" : 1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 8, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 56, + "Coeff" : 1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 8, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 56, + "Coeff" : 1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + }, + "CodesetId" : 60, + "ConditionTypeExclude" : false + } + }, + { + "Observation" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 2, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 2, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 55, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 55, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 55, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 5, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : 1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 6, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : 1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 6, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : 1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 6, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : 1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 7, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 56, + "Coeff" : 1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 7, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 56, + "Coeff" : 1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 8, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 56, + "Coeff" : 1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 8, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 56, + "Coeff" : 1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + }, + "CodesetId" : 60, + "ObservationTypeExclude" : false + } + } + ], + "ObservationWindow" : { + "PriorDays" : 0, + "PostDays" : 0 + }, + "PrimaryCriteriaLimit" : { + "Type" : "All" + } + }, + "ConceptSets" : [ + { + "id" : 0, + "name" : "Delivery (DELIV)", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4130321, + "CONCEPT_NAME" : "Abdominal delivery for shoulder dystocia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "236989008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439402, + "CONCEPT_NAME" : "Abnormal glucose tolerance test during pregnancy - baby delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "372055003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4155282, + "CONCEPT_NAME" : "Abnormal glucose tolerance test in the puerperium - baby delivered during current episode of care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "372051007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437936, + "CONCEPT_NAME" : "Amniotic cavity infection - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199677008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4248954, + "CONCEPT_NAME" : "Amniotomy at delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "408817009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432968, + "CONCEPT_NAME" : "Anemia during pregnancy - baby delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199244000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442923, + "CONCEPT_NAME" : "Anemia in the puerperium - baby delivered during current episode of care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199245004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442922, + "CONCEPT_NAME" : "Anemia in the puerperium - baby delivered during previous episode of care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199247007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2101814, + "CONCEPT_NAME" : "Anesthesia for cesarean delivery following neuraxial labor analgesia/anesthesia (List separately in addition to code for primary procedure performed)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "01968", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441649, + "CONCEPT_NAME" : "Antenatal deep vein thrombosis - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200232006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443133, + "CONCEPT_NAME" : "Antepartum hemorrhage with coagulation defect - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198917009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4075168, + "CONCEPT_NAME" : "Assisted breech delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177158008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 76761, + "CONCEPT_NAME" : "Asymptomatic bacteriuria in pregnancy - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199099004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 73526, + "CONCEPT_NAME" : "Asymptomatic bacteriuria in pregnancy - delivered with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199100007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4078138, + "CONCEPT_NAME" : "Baby normal at birth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "275735001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4075169, + "CONCEPT_NAME" : "Barton forceps cephalic delivery with rotation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177167008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4147974, + "CONCEPT_NAME" : "Barton's forceps delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "30476003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 314103, + "CONCEPT_NAME" : "Benign essential hypertension complicating pregnancy, childbirth and the puerperium - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198944004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 320456, + "CONCEPT_NAME" : "Benign essential hypertension complicating pregnancy, childbirth and the puerperium - delivered with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198945003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014291, + "CONCEPT_NAME" : "Birth detail", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169811007", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Observable Entity" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4016064, + "CONCEPT_NAME" : "Birth details not known", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169963001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015277, + "CONCEPT_NAME" : "Birth head circumference", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169876006", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Observable Entity" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015270, + "CONCEPT_NAME" : "Birth of child", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169836001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4192676, + "CONCEPT_NAME" : "Born by cesarean section", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "394699000", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 77624, + "CONCEPT_NAME" : "Breast engorgement in pregnancy, the puerperium or lactation - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200418007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 81086, + "CONCEPT_NAME" : "Breast engorgement in pregnancy, the puerperium or lactation - delivered with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200419004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3662128, + "CONCEPT_NAME" : "Breech delivery following termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1147961000000102", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 436767, + "CONCEPT_NAME" : "Breech extraction - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200142000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4075165, + "CONCEPT_NAME" : "Breech extraction delivery with version", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177152009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 73537, + "CONCEPT_NAME" : "Breech presentation - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199354004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4235752, + "CONCEPT_NAME" : "Central laceration during delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90532005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3662129, + "CONCEPT_NAME" : "Cephalic delivery following termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1147971000000109", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4071629, + "CONCEPT_NAME" : "Cephalic vaginal delivery with abnormal presentation of head at delivery without instrument", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177179008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441369, + "CONCEPT_NAME" : "Cervical incompetence - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199482005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435607, + "CONCEPT_NAME" : "Cervical incompetence - delivered with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199483000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437942, + "CONCEPT_NAME" : "Cesarean delivery - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200146002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110316, + "CONCEPT_NAME" : "Cesarean delivery only", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59514", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110323, + "CONCEPT_NAME" : "Cesarean delivery only, following attempted vaginal delivery after previous cesarean delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59620", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4165077, + "CONCEPT_NAME" : "Cesarean hysterectomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "41059002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015701, + "CONCEPT_NAME" : "Cesarean section", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "11466000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004789, + "CONCEPT_NAME" : "Cesarean section of other specified type", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "74.4", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "3-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42872492, + "CONCEPT_NAME" : "Cesarean section through inverted T shaped incision of uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "450483001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42872493, + "CONCEPT_NAME" : "Cesarean section through J shaped incision of uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "450484007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4152029, + "CONCEPT_NAME" : "Childbirth examination - normal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "268484008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014738, + "CONCEPT_NAME" : "Child examination - birth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "170099002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4223536, + "CONCEPT_NAME" : "Classical cesarean section", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84195007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37208486, + "CONCEPT_NAME" : "Clitoral tear during delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1105801000000107", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4034145, + "CONCEPT_NAME" : "Complete breech delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237311001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 194707, + "CONCEPT_NAME" : "Congenital abnormality of uterus - baby delivered with postpartum complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "267215001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 315013, + "CONCEPT_NAME" : "Congenital cardiovascular disorder during pregnancy - baby delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199266007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435879, + "CONCEPT_NAME" : "Congenital or acquired abnormality of vulva - baby delivered with postpartum complication", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "267248001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4129041, + "CONCEPT_NAME" : "Cord beside head", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237306003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433270, + "CONCEPT_NAME" : "Cord entanglement without compression", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "11209007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439092, + "CONCEPT_NAME" : "Cord tangled with compression - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199880007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 75882, + "CONCEPT_NAME" : "Deep transverse arrest - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199774009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441361, + "CONCEPT_NAME" : "Delayed delivery after artificial rupture of membranes", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "35347003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4075190, + "CONCEPT_NAME" : "DeLee forceps cephalic delivery with rotation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177168003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440793, + "CONCEPT_NAME" : "Deliveries by breech extraction", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "271370008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 193277, + "CONCEPT_NAME" : "Deliveries by cesarean", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200144004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4106406, + "CONCEPT_NAME" : "Delivery by double application of forceps", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "29613008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061457, + "CONCEPT_NAME" : "Delivery by elective cesarean section", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200148001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4066112, + "CONCEPT_NAME" : "Delivery by emergency cesarean section", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200149009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4232028, + "CONCEPT_NAME" : "Delivery by Kielland rotation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "89346004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4234710, + "CONCEPT_NAME" : "Delivery by Malstrom's extraction", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90438006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4223638, + "CONCEPT_NAME" : "Delivery by Malstrom's extraction with episiotomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40219000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4278225, + "CONCEPT_NAME" : "Delivery by midwife", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65243006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4100410, + "CONCEPT_NAME" : "Delivery by Scanzoni maneuver", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25296001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4189205, + "CONCEPT_NAME" : "Delivery by vacuum extraction", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "61586001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4096145, + "CONCEPT_NAME" : "Delivery by vacuum extraction with episiotomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26313002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038495, + "CONCEPT_NAME" : "Delivery finding", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "118215003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441641, + "CONCEPT_NAME" : "Delivery normal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48782003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40551541, + "CONCEPT_NAME" : "Delivery of cephalic presentation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "384730009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4056129, + "CONCEPT_NAME" : "Delivery of face presentation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16819009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42872805, + "CONCEPT_NAME" : "Delivery of occipitoposterior presentation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "450798003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4130319, + "CONCEPT_NAME" : "Delivery of the after coming head", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "236982004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4293034, + "CONCEPT_NAME" : "Delivery of vertex presentation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "384729004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443012, + "CONCEPT_NAME" : "Diabetes mellitus during pregnancy - baby delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199225007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4062685, + "CONCEPT_NAME" : "Diabetes mellitus in the puerperium - baby delivered during current episode of care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199226008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4309425, + "CONCEPT_NAME" : "Dilation and curettage of uterus after delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "391998006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 198486, + "CONCEPT_NAME" : "Disproportion - major pelvic abnormality - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199400000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4134722, + "CONCEPT_NAME" : "Disruption of episiotomy wound in the puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "398262004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442915, + "CONCEPT_NAME" : "Drug dependence during pregnancy - baby delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199252002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 133816, + "CONCEPT_NAME" : "Eclampsia - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198990007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443321, + "CONCEPT_NAME" : "Edema or excessive weight gain in pregnancy without mention of hypertension, delivered with mention of postpartum complication", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "199075004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440794, + "CONCEPT_NAME" : "Elderly primigravida - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199718001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4075182, + "CONCEPT_NAME" : "Elective cesarean section", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177141003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4075161, + "CONCEPT_NAME" : "Elective lower segment cesarean section", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177143000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42536960, + "CONCEPT_NAME" : "Elective lower segment cesarean section with bilateral tubal ligation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "736026009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4075160, + "CONCEPT_NAME" : "Elective upper segment cesarean section", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177142005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42536952, + "CONCEPT_NAME" : "Elective upper segment cesarean section with bilateral tubal ligation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "736018001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4167089, + "CONCEPT_NAME" : "Emergency cesarean section", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "274130007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4127252, + "CONCEPT_NAME" : "Emergency lower segment cesarean section", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "236985002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42537021, + "CONCEPT_NAME" : "Emergency lower segment cesarean section with bilateral tubal ligation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "736118004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 46270991, + "CONCEPT_NAME" : "Emergency lower segment cesarean section with inverted T incision", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "709004006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4032767, + "CONCEPT_NAME" : "Emergency upper segment cesarean section", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "236986001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42536954, + "CONCEPT_NAME" : "Emergency upper segment cesarean section with bilateral tubal ligation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "736020003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4272812, + "CONCEPT_NAME" : "Episioproctotomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63407004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4311671, + "CONCEPT_NAME" : "Episiotomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "85548006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44513763, + "CONCEPT_NAME" : "Episiotomy to facilitate delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "R27.1", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "OPCS4", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4211824, + "CONCEPT_NAME" : "Extraperitoneal cesarean section", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57271003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45757775, + "CONCEPT_NAME" : "Failed attempted vaginal birth after previous cesarean section", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "38451000119105", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441924, + "CONCEPT_NAME" : "Failed mechanical induction - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199694005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443521, + "CONCEPT_NAME" : "Failed trial of labor - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "413339006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 193535, + "CONCEPT_NAME" : "Fetal-maternal hemorrhage - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199577000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 72697, + "CONCEPT_NAME" : "Fetus with chromosomal abnormality - delivered", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "199526007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4063296, + "CONCEPT_NAME" : "Fetus with damage due to intrauterine contraceptive device - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199560000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4064177, + "CONCEPT_NAME" : "Fetus with drug damage - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199549009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4064171, + "CONCEPT_NAME" : "Fetus with hereditary disease - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199533007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4064174, + "CONCEPT_NAME" : "Fetus with viral damage via mother - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199538003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 192978, + "CONCEPT_NAME" : "First degree perineal tear during delivery - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199916005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 199088, + "CONCEPT_NAME" : "First degree perineal tear during delivery with postnatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199917001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4217642, + "CONCEPT_NAME" : "Footling breech delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72492007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4075187, + "CONCEPT_NAME" : "Forceps cephalic delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177161009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4114637, + "CONCEPT_NAME" : "Forceps delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "302383004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435022, + "CONCEPT_NAME" : "Forceps delivery - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200130005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4032761, + "CONCEPT_NAME" : "Forceps delivery, face to pubes", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "236977006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4324549, + "CONCEPT_NAME" : "Forceps delivery with rotation of fetal head", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "71166009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004702, + "CONCEPT_NAME" : "Forceps, vacuum, and breech delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "2-dig nonbill code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 194429, + "CONCEPT_NAME" : "Fourth degree perineal tear during delivery - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199934009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4244672, + "CONCEPT_NAME" : "Frank breech delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "38479009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 74440, + "CONCEPT_NAME" : "Galactorrhea in pregnancy and the puerperium - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200446009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 77052, + "CONCEPT_NAME" : "Generally contracted pelvis - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199405005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4091200, + "CONCEPT_NAME" : "Genital tear resulting from childbirth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "249219008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 81357, + "CONCEPT_NAME" : "Genitourinary tract infection in pregnancy - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199106001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 80778, + "CONCEPT_NAME" : "Genitourinary tract infection in pregnancy - delivered with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199107005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4009879, + "CONCEPT_NAME" : "Good neonatal condition at birth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "102500002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014452, + "CONCEPT_NAME" : "GP unit birth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169814004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434110, + "CONCEPT_NAME" : "Grand multiparity - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199714004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4032764, + "CONCEPT_NAME" : "Groin traction at breech delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "236980007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435323, + "CONCEPT_NAME" : "Hemorrhage in early pregnancy, delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "81448000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44513743, + "CONCEPT_NAME" : "High forceps cephalic delivery NEC", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "R21.2", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "OPCS4", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4075188, + "CONCEPT_NAME" : "High forceps cephalic delivery with rotation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177162002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4231702, + "CONCEPT_NAME" : "High forceps delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "89849000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4035778, + "CONCEPT_NAME" : "High forceps delivery with episiotomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15413009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 77615, + "CONCEPT_NAME" : "High head at term - delivered", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "199375007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4075170, + "CONCEPT_NAME" : "High vacuum delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177173009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441630, + "CONCEPT_NAME" : "History of recurrent miscarriage - delivered", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199087006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014451, + "CONCEPT_NAME" : "Home birth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169813005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 73538, + "CONCEPT_NAME" : "Hydrocephalic disproportion - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199427001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 436173, + "CONCEPT_NAME" : "Hyperemesis gravidarum with metabolic disturbance - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199027009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4064834, + "CONCEPT_NAME" : "Hypertonic uterine inertia - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199838008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004771, + "CONCEPT_NAME" : "Incision of cervix to assist delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "73.93", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 77621, + "CONCEPT_NAME" : "Inlet pelvic contraction - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199409004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4128031, + "CONCEPT_NAME" : "Instrumental delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "236974004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40760193, + "CONCEPT_NAME" : "Labor and delivery process Narrative", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57074-7", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Clinical Observation" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 80782, + "CONCEPT_NAME" : "Large fetus causing disproportion - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199422007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441082, + "CONCEPT_NAME" : "Late pregnancy vomiting - delivered", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "199032005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 196170, + "CONCEPT_NAME" : "Liver disorder in pregnancy - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199117000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004786, + "CONCEPT_NAME" : "Low cervical cesarean section", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "74.1", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "3-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4161944, + "CONCEPT_NAME" : "Low cervical cesarean section", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "398307005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37312440, + "CONCEPT_NAME" : "Lower uterine segment cesarean section", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "788180009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44513746, + "CONCEPT_NAME" : "Low forceps cephalic delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "R21.5", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "OPCS4", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4088084, + "CONCEPT_NAME" : "Low forceps delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "18625004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4075735, + "CONCEPT_NAME" : "Low forceps delivery with episiotomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "17860005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4075191, + "CONCEPT_NAME" : "Low vacuum delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177174003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4071505, + "CONCEPT_NAME" : "Manipulative cephalic vaginal delivery with abnormal presentation of head at delivery without instrument", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177180006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4069969, + "CONCEPT_NAME" : "Manual removal of placenta from delivered uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177204008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 313829, + "CONCEPT_NAME" : "Maternal hypotension syndrome - delivered with postnatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200112003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438206, + "CONCEPT_NAME" : "Maternal rubella during pregnancy - baby delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199192005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435606, + "CONCEPT_NAME" : "Maternal syphilis during pregnancy - baby delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199156006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442920, + "CONCEPT_NAME" : "Mental disorder during pregnancy - baby delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199259006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442919, + "CONCEPT_NAME" : "Mental disorder in the puerperium - baby delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199260001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44513745, + "CONCEPT_NAME" : "Mid forceps cephalic delivery NEC", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "R21.4", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "OPCS4", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4075189, + "CONCEPT_NAME" : "Midforceps cephalic delivery with rotation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177164001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4266683, + "CONCEPT_NAME" : "Mid forceps delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "62508004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4093774, + "CONCEPT_NAME" : "Mid forceps delivery with episiotomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25828002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4143647, + "CONCEPT_NAME" : "Midforceps delivery without rotation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "265639000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42535817, + "CONCEPT_NAME" : "Mid vacuum delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "734276001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 72970, + "CONCEPT_NAME" : "Mixed feto-pelvic disproportion - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199418002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433260, + "CONCEPT_NAME" : "Mother delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "289256000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4063163, + "CONCEPT_NAME" : "Multiple delivery, all by cesarean section", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199331008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4063162, + "CONCEPT_NAME" : "Multiple delivery, all by forceps and vacuum extractor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199330009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4059751, + "CONCEPT_NAME" : "Multiple delivery, all spontaneous", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199329004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42539267, + "CONCEPT_NAME" : "Multiple liveborn in hospital by vaginal delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16089691000119102", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442082, + "CONCEPT_NAME" : "Multiple pregnancy with malpresentation - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199380003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2101016, + "CONCEPT_NAME" : "Neuraxial analgesia/anesthesia for labor ending in a cesarean delivery (includes any repeat subarachnoid needle placement and drug injection and/or any necessary replacement of an epidural catheter during labor) (Deprecated)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "00857", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4071630, + "CONCEPT_NAME" : "Non-manipulative cephalic vaginal delivery with abnormal presentation of head at delivery without instrument", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177181005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4127248, + "CONCEPT_NAME" : "Nonrotational forceps delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "236975003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014720, + "CONCEPT_NAME" : "Normal birth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169961004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4063160, + "CONCEPT_NAME" : "Normal delivery but ante- or post- natal conditions present", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199314001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4071507, + "CONCEPT_NAME" : "Normal delivery procedure", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177184002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442053, + "CONCEPT_NAME" : "Obstetric blood-clot pulmonary embolism - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200301007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 74433, + "CONCEPT_NAME" : "Obstetric breast abscess - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200374003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 78494, + "CONCEPT_NAME" : "Obstetric breast abscess - delivered with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200375002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 75326, + "CONCEPT_NAME" : "Obstetric damage to pelvic joints and ligaments - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199990003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 193269, + "CONCEPT_NAME" : "Obstetric high vaginal laceration - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199979008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 197048, + "CONCEPT_NAME" : "Obstetric inversion of uterus - delivered with postnatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199969006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442080, + "CONCEPT_NAME" : "Obstetric laceration of cervix - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199974003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 79897, + "CONCEPT_NAME" : "Obstetric non-purulent mastitis - delivered with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200382003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 201368, + "CONCEPT_NAME" : "Obstetric pelvic hematoma - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199995008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 193271, + "CONCEPT_NAME" : "Obstetric pelvic hematoma - delivered with postnatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199996009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 195025, + "CONCEPT_NAME" : "Obstetric shock - delivered with postnatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200106008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 199087, + "CONCEPT_NAME" : "Obstructed labor caused by bony pelvis - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199759007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 196182, + "CONCEPT_NAME" : "Obstructed labor caused by pelvic soft tissues - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199769001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 194711, + "CONCEPT_NAME" : "Obstructed labor due to fetal malposition - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199749006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433274, + "CONCEPT_NAME" : "Oligohydramnios - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199653002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004767, + "CONCEPT_NAME" : "Operations on fetus to facilitate delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "73.8", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "3-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004802, + "CONCEPT_NAME" : "Other cesarean section of unspecified type", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "74.99", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004765, + "CONCEPT_NAME" : "Other manually assisted delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "73.59", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004768, + "CONCEPT_NAME" : "Other operations assisting delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "73.9", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "3-dig nonbill code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004783, + "CONCEPT_NAME" : "Other operations assisting delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "73.99", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4191809, + "CONCEPT_NAME" : "Other procedures inducing or assisting delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "73", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "2-dig nonbill code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44513736, + "CONCEPT_NAME" : "Other specified breech extraction delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "R19.8", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "OPCS4", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44513756, + "CONCEPT_NAME" : "Other specified cephalic vaginal delivery with abnormal presentation of head at delivery without instrument", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "R23.8", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "OPCS4", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44513729, + "CONCEPT_NAME" : "Other specified elective caesarean delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "R17.8", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "OPCS4", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44513747, + "CONCEPT_NAME" : "Other specified forceps cephalic delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "R21.8", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "OPCS4", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004731, + "CONCEPT_NAME" : "Other specified instrumental delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72.8", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "3-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44513740, + "CONCEPT_NAME" : "Other specified other breech delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "R20.8", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "OPCS4", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44513733, + "CONCEPT_NAME" : "Other specified other caesarean delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "R18.8", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "OPCS4", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44513752, + "CONCEPT_NAME" : "Other specified vacuum delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "R22.8", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "OPCS4", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4145318, + "CONCEPT_NAME" : "Outcome of delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "268475008", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Observable Entity" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4127249, + "CONCEPT_NAME" : "Outlet forceps delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "236976002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 73824, + "CONCEPT_NAME" : "Outlet pelvic contraction - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199413006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42535816, + "CONCEPT_NAME" : "Outlet vacuum delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "734275002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4234421, + "CONCEPT_NAME" : "Partial breech delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "359943008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4023797, + "CONCEPT_NAME" : "Partial breech delivery with forceps to aftercoming head", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "19390001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4307825, + "CONCEPT_NAME" : "Perineal hematoma during delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "83094001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4073438, + "CONCEPT_NAME" : "Piper forceps delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177170007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 193539, + "CONCEPT_NAME" : "Placental abruption - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198910006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4172142, + "CONCEPT_NAME" : "Placenta previa found before labor AND delivery by cesarean section without hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48888007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 193264, + "CONCEPT_NAME" : "Placenta previa with hemorrhage - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198905007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 201359, + "CONCEPT_NAME" : "Placenta previa without hemorrhage - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198899007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014292, + "CONCEPT_NAME" : "Place of birth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169812000", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Observable Entity" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434427, + "CONCEPT_NAME" : "Polyhydramnios - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199646006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435031, + "CONCEPT_NAME" : "Postnatal deep vein thrombosis - delivered with postnatal complication", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "200237000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441363, + "CONCEPT_NAME" : "Postpartum coagulation defects - delivered with postnatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200030007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438220, + "CONCEPT_NAME" : "Precipitate labor - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199833004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 200160, + "CONCEPT_NAME" : "Premature rupture of membranes - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199658006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37110284, + "CONCEPT_NAME" : "Preterm delivery following Cesarean section", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "724489002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37110283, + "CONCEPT_NAME" : "Preterm delivery following induction of labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "724488005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45757175, + "CONCEPT_NAME" : "Preterm labor in second trimester with preterm delivery in second trimester", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10761141000119107", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45757176, + "CONCEPT_NAME" : "Preterm labor in third trimester with preterm delivery in third trimester", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10761191000119104", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36712702, + "CONCEPT_NAME" : "Preterm labor with preterm delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10761241000119104", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44784550, + "CONCEPT_NAME" : "Preterm spontaneous labor with preterm delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "698716002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44784551, + "CONCEPT_NAME" : "Preterm spontaneous labor with term delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "698717006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 196762, + "CONCEPT_NAME" : "Primary uterine inertia - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199819004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 72692, + "CONCEPT_NAME" : "Prolapsed arm - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199384007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440476, + "CONCEPT_NAME" : "Prolapse of cord", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "270500004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441645, + "CONCEPT_NAME" : "Prolapse of cord - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199869007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440475, + "CONCEPT_NAME" : "Prolonged first stage - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199847000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434431, + "CONCEPT_NAME" : "Prolonged second stage - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199857004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442419, + "CONCEPT_NAME" : "Puerperal cerebrovascular disorder - delivered", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "200330000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442418, + "CONCEPT_NAME" : "Puerperal cerebrovascular disorder - delivered with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200331001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4065749, + "CONCEPT_NAME" : "Puerperal endometritis - delivered with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200181000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434713, + "CONCEPT_NAME" : "Puerperal pyrexia of unknown origin - delivered with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200280009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438481, + "CONCEPT_NAME" : "Quadruplet pregnancy - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199325005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 200157, + "CONCEPT_NAME" : "Renal hypertension complicating pregnancy, childbirth and the puerperium - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198951008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442078, + "CONCEPT_NAME" : "Retained placenta with no hemorrhage - delivered with postnatal problem", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "200037005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 198216, + "CONCEPT_NAME" : "Retroverted incarcerated gravid uterus - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199468005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 195878, + "CONCEPT_NAME" : "Rhesus isoimmunization - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199582007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4127253, + "CONCEPT_NAME" : "Right mediolateral episiotomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "236992007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4121924, + "CONCEPT_NAME" : "Routine episiotomy and repair", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "288194000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 198816, + "CONCEPT_NAME" : "Rupture of uterus before labor - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199960005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 192699, + "CONCEPT_NAME" : "Rupture of uterus during and after labor - delivered", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "199964001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4064960, + "CONCEPT_NAME" : "Rupture of uterus during and after labor - delivered with postnatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199965000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4065618, + "CONCEPT_NAME" : "Secondary postpartum hemorrhage - delivered with postnatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200025008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 192384, + "CONCEPT_NAME" : "Secondary uterine inertia - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199824001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 198499, + "CONCEPT_NAME" : "Second degree perineal tear during delivery - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199925004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4264738, + "CONCEPT_NAME" : "Separation of symphysis pubis during delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "61007003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438490, + "CONCEPT_NAME" : "Severe pre-eclampsia - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198983002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439077, + "CONCEPT_NAME" : "Severe pre-eclampsia - delivered with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198984008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4092760, + "CONCEPT_NAME" : "Sex of baby at delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "281053000", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Observable Entity" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435020, + "CONCEPT_NAME" : "Short cord - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199889008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 80474, + "CONCEPT_NAME" : "Shoulder dystocia - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199783004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4170152, + "CONCEPT_NAME" : "Simpson's forceps delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "275169009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36713074, + "CONCEPT_NAME" : "Single liveborn born in hospital by vaginal delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "17561000119102", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4073422, + "CONCEPT_NAME" : "Spontaneous breech delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177157003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4167497, + "CONCEPT_NAME" : "Spontaneous unassisted delivery, medical personnel present", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48204000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4205240, + "CONCEPT_NAME" : "Spontaneous vertex delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "309469004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110318, + "CONCEPT_NAME" : "Subtotal or total hysterectomy after cesarean delivery (List separately in addition to code for primary procedure)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59525", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439094, + "CONCEPT_NAME" : "Superficial thrombophlebitis in pregnancy and the puerperium - delivered", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "200224003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439095, + "CONCEPT_NAME" : "Superficial thrombophlebitis in pregnancy and the puerperium - delivered with postnatal complication", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "267283002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 193275, + "CONCEPT_NAME" : "Third degree perineal tear during delivery - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199930000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3186670, + "CONCEPT_NAME" : "Threatened premature labor - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "480001000004104", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "Nebraska Lexicon", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 136755, + "CONCEPT_NAME" : "Thyroid dysfunction during pregnancy - baby delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199237009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 138207, + "CONCEPT_NAME" : "Thyroid dysfunction in the puerperium - baby delivered during current episode of care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199238004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4204679, + "CONCEPT_NAME" : "Total breech delivery with forceps to aftercoming head", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54973000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 137940, + "CONCEPT_NAME" : "Transient hypertension of pregnancy - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198965005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4063171, + "CONCEPT_NAME" : "Transverse lie - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199362007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4174854, + "CONCEPT_NAME" : "Trauma from instrument during delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "42599006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4267072, + "CONCEPT_NAME" : "Traumatic extension of episiotomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36497006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439093, + "CONCEPT_NAME" : "Traumatic lesion during delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64229006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432975, + "CONCEPT_NAME" : "Trauma to perineum and/or vulva during delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "267268007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4161678, + "CONCEPT_NAME" : "Trauma to perineum during delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "397952002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3655718, + "CONCEPT_NAME" : "Trauma to urethra and bladder during delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "866229004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4134431, + "CONCEPT_NAME" : "Trauma to vagina during delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "128077009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4326563, + "CONCEPT_NAME" : "Trauma to vulva during delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7504005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4290245, + "CONCEPT_NAME" : "Trial forceps delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "69422002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4073424, + "CONCEPT_NAME" : "Trial of vacuum delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177176001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440462, + "CONCEPT_NAME" : "Triplet pregnancy - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199321001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 196181, + "CONCEPT_NAME" : "Tumor of uterine body - baby delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "267221002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 197049, + "CONCEPT_NAME" : "Tumor of uterine body - baby delivered with postpartum complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "267222009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4101844, + "CONCEPT_NAME" : "Twin birth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "28030000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42535052, + "CONCEPT_NAME" : "Twin live born in hospital by vaginal delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "151441000119105", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435018, + "CONCEPT_NAME" : "Twin pregnancy - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199317008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060157, + "CONCEPT_NAME" : "Umbilical cord tight around neck - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199874004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110342, + "CONCEPT_NAME" : "Unlisted procedure, maternity care and delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59899", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004742, + "CONCEPT_NAME" : "Unspecified instrumental delivery", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72.9", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "3-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 79889, + "CONCEPT_NAME" : "Unstable lie - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199344003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45757158, + "CONCEPT_NAME" : "Uterine laceration during delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10760261000119106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4075171, + "CONCEPT_NAME" : "Vacuum delivery before full dilation of cervix", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177175002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442069, + "CONCEPT_NAME" : "Vacuum extractor delivery - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200138003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 193544, + "CONCEPT_NAME" : "Vaginal abnormality - baby delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "267240008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4228344, + "CONCEPT_NAME" : "Vaginal cesarean section", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "89053004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4331179, + "CONCEPT_NAME" : "Vaginal delivery, medical personnel present", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "22633006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44784097, + "CONCEPT_NAME" : "Vaginal delivery of fetus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "700000006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110320, + "CONCEPT_NAME" : "Vaginal delivery only, after previous cesarean delivery (with or without episiotomy and/or forceps)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59612", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110308, + "CONCEPT_NAME" : "Vaginal delivery only (with or without episiotomy and/or forceps)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59409", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4167018, + "CONCEPT_NAME" : "Vaginal delivery with forceps including postpartum care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45718005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442059, + "CONCEPT_NAME" : "Varicose veins of legs in pregnancy and the puerperium - delivered", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "200206000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435610, + "CONCEPT_NAME" : "Varicose veins of perineum and vulva in pregnancy and the puerperium - delivered", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "200215007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435609, + "CONCEPT_NAME" : "Vasa previa - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199895009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 321367, + "CONCEPT_NAME" : "Vascular lesions of cord - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199900008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443246, + "CONCEPT_NAME" : "Vulval abnormality - baby delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "267247006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441087, + "CONCEPT_NAME" : "Vulval and/or perineal hematoma during delivery - delivered", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "199944006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4071632, + "CONCEPT_NAME" : "Water birth delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177185001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40394878, + "CONCEPT_NAME" : "[X]Delivery", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "200548008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 1, + "name" : "Livebirth (LB)", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4092289, + "CONCEPT_NAME" : "Livebirth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "281050002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4307044, + "CONCEPT_NAME" : "Live birth surviving more than one year", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "390959009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40482735, + "CONCEPT_NAME" : "Liveborn born in hospital", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "442311008", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40483126, + "CONCEPT_NAME" : "Liveborn born in hospital by cesarean section", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "442365008", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4163851, + "CONCEPT_NAME" : "Multiple birth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45384004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36713468, + "CONCEPT_NAME" : "Multiple liveborn other than twins born in hospital", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "717807001", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3174212, + "CONCEPT_NAME" : "Premature 28 week quadruplet", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7550001000004101", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "Nebraska Lexicon", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4097427, + "CONCEPT_NAME" : "Premature birth of fraternal twins, both living", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25192009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4147043, + "CONCEPT_NAME" : "Premature birth of fraternal twins, one living, one stillborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "30165006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4142021, + "CONCEPT_NAME" : "Premature birth of identical twins, both living", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "34100008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4310910, + "CONCEPT_NAME" : "Premature birth of identical twins, one living, one stillborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "39213008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4069200, + "CONCEPT_NAME" : "Premature birth of multiple newborns", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "20272009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4145125, + "CONCEPT_NAME" : "Premature birth of newborn quadruplets", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "34089005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4082863, + "CONCEPT_NAME" : "Premature birth of newborn quintuplets", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "24146004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4008884, + "CONCEPT_NAME" : "Premature birth of newborn sextuplets", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "112075006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4107401, + "CONCEPT_NAME" : "Premature birth of newborn triplets", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "29997008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4029786, + "CONCEPT_NAME" : "Premature birth of newborn twins", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13859001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45765500, + "CONCEPT_NAME" : "Quadruplet birth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "702452007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45757166, + "CONCEPT_NAME" : "Quadruplets, all live born", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10760701000119102", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45773428, + "CONCEPT_NAME" : "Quadruplets, some live born", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10760741000119100", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45765501, + "CONCEPT_NAME" : "Quintuplet birth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "702453002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45757167, + "CONCEPT_NAME" : "Quintuplets, all live born", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10760781000119105", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45757168, + "CONCEPT_NAME" : "Quintuplets, some live born", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10760821000119100", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45765502, + "CONCEPT_NAME" : "Sextuplet birth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "702454008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45772082, + "CONCEPT_NAME" : "Sextuplets, all live born", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10760861000119105", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45757169, + "CONCEPT_NAME" : "Sextuplets, some live born", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10760901000119104", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014295, + "CONCEPT_NAME" : "Single live birth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169826009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40483521, + "CONCEPT_NAME" : "Single liveborn born in hospital by cesarean section", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "442423001", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36713465, + "CONCEPT_NAME" : "Singleton liveborn born in hospital", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "717803002", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4227728, + "CONCEPT_NAME" : "Term birth of fraternal twins, both living", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87662006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4330570, + "CONCEPT_NAME" : "Term birth of fraternal twins, one living, one stillborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "22514005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4049333, + "CONCEPT_NAME" : "Term birth of identical twins, both living", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15467003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4243026, + "CONCEPT_NAME" : "Term birth of identical twins, one living, one stillborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "38257001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4066292, + "CONCEPT_NAME" : "Term birth of multiple newborns", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "17333005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4193224, + "CONCEPT_NAME" : "Term birth of newborn quadruplets", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7888004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336090, + "CONCEPT_NAME" : "Term birth of newborn quintuplets", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86803008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4199146, + "CONCEPT_NAME" : "Term birth of newborn sextuplets", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "52483005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4307237, + "CONCEPT_NAME" : "Term birth of newborn triplets", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "8333008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4178275, + "CONCEPT_NAME" : "Term birth of newborn twins", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "50758004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4094046, + "CONCEPT_NAME" : "Triplet birth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "281052005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42539210, + "CONCEPT_NAME" : "Triplet liveborn in hospital by cesarean section", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16089571000119102", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014456, + "CONCEPT_NAME" : "Triplets - all live born", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169831006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015422, + "CONCEPT_NAME" : "Triplets - one live and two stillborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169833009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45757165, + "CONCEPT_NAME" : "Triplets, some live born", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10760661000119109", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015421, + "CONCEPT_NAME" : "Triplets - two live and one stillborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169832004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40483084, + "CONCEPT_NAME" : "Twin liveborn born in hospital", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "442327001", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40483101, + "CONCEPT_NAME" : "Twin liveborn born in hospital by cesarean section", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "442342003", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014296, + "CONCEPT_NAME" : "Twins - both live born", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169828005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014455, + "CONCEPT_NAME" : "Twins - one still and one live born", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169829002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 2, + "name" : "Gestational age (GEST)", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4015296, + "CONCEPT_NAME" : "Antenatal 12 weeks examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169712008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014149, + "CONCEPT_NAME" : "Antenatal 16 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169713003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014150, + "CONCEPT_NAME" : "Antenatal 20 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169714009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808979, + "CONCEPT_NAME" : "Antenatal 22 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861281000000109", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015141, + "CONCEPT_NAME" : "Antenatal 24 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169715005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808980, + "CONCEPT_NAME" : "Antenatal 25 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861301000000105", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014151, + "CONCEPT_NAME" : "Antenatal 30 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169717002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808981, + "CONCEPT_NAME" : "Antenatal 31 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861321000000101", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015297, + "CONCEPT_NAME" : "Antenatal 32 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169718007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015298, + "CONCEPT_NAME" : "Antenatal 34 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169719004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014434, + "CONCEPT_NAME" : "Antenatal 35 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169720005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015299, + "CONCEPT_NAME" : "Antenatal 36 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169721009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015142, + "CONCEPT_NAME" : "Antenatal 37 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169722002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014152, + "CONCEPT_NAME" : "Antenatal 38 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169723007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015300, + "CONCEPT_NAME" : "Antenatal 39 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169724001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015301, + "CONCEPT_NAME" : "Antenatal 40 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169725000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015302, + "CONCEPT_NAME" : "Antenatal 41 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169726004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014435, + "CONCEPT_NAME" : "Antenatal 42 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169727008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4178165, + "CONCEPT_NAME" : "Gestation 14 - 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428567001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181468, + "CONCEPT_NAME" : "Gestation 9- 13 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428930004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181162, + "CONCEPT_NAME" : "Gestation greater than 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429715006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4324063, + "CONCEPT_NAME" : "Gestation less than 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428566005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438542, + "CONCEPT_NAME" : "Gestation less than 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313178001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45770261, + "CONCEPT_NAME" : "Gestation less than 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "925561000000100", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4322726, + "CONCEPT_NAME" : "Gestation less than 9 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428058009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4242241, + "CONCEPT_NAME" : "Gestation period, 10 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "38039008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4174506, + "CONCEPT_NAME" : "Gestation period, 11 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "50367001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4197245, + "CONCEPT_NAME" : "Gestation period, 12 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "79992004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4266517, + "CONCEPT_NAME" : "Gestation period, 13 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "62333002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4248725, + "CONCEPT_NAME" : "Gestation period, 14 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72846000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4283690, + "CONCEPT_NAME" : "Gestation period, 15 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6678005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4049621, + "CONCEPT_NAME" : "Gestation period, 16 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15633004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4277749, + "CONCEPT_NAME" : "Gestation period, 17 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65683006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4097608, + "CONCEPT_NAME" : "Gestation period, 18 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25026004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181751, + "CONCEPT_NAME" : "Gestation period, 19 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54318006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4337360, + "CONCEPT_NAME" : "Gestation period, 1 week", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87178007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4051642, + "CONCEPT_NAME" : "Gestation period, 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "23464008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4185780, + "CONCEPT_NAME" : "Gestation period, 21 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "41438001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4274955, + "CONCEPT_NAME" : "Gestation period, 22 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65035007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336226, + "CONCEPT_NAME" : "Gestation period, 23 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86883006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439922, + "CONCEPT_NAME" : "Gestation period, 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313179009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435640, + "CONCEPT_NAME" : "Gestation period, 25 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72544005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444023, + "CONCEPT_NAME" : "Gestation period, 26 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48688005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432430, + "CONCEPT_NAME" : "Gestation period, 27 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46906003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444461, + "CONCEPT_NAME" : "Gestation period, 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90797000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444417, + "CONCEPT_NAME" : "Gestation period, 29 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45139008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4220085, + "CONCEPT_NAME" : "Gestation period, 2 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "82118009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434484, + "CONCEPT_NAME" : "Gestation period, 30 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "71355009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433864, + "CONCEPT_NAME" : "Gestation period, 31 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64920003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442558, + "CONCEPT_NAME" : "Gestation period, 32 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7707000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441678, + "CONCEPT_NAME" : "Gestation period, 33 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "78395001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443874, + "CONCEPT_NAME" : "Gestation period, 34 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13763000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444267, + "CONCEPT_NAME" : "Gestation period, 35 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84132007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438543, + "CONCEPT_NAME" : "Gestation period, 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57907009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442355, + "CONCEPT_NAME" : "Gestation period, 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43697006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443871, + "CONCEPT_NAME" : "Gestation period, 38 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13798002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435655, + "CONCEPT_NAME" : "Gestation period, 39 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80487005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4326232, + "CONCEPT_NAME" : "Gestation period, 3 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "74952004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442769, + "CONCEPT_NAME" : "Gestation period, 41 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63503002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444067, + "CONCEPT_NAME" : "Gestation period, 42 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36428009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4195157, + "CONCEPT_NAME" : "Gestation period, 4 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "44398003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4290009, + "CONCEPT_NAME" : "Gestation period, 5 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "37005007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4313026, + "CONCEPT_NAME" : "Gestation period, 6 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86801005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4270513, + "CONCEPT_NAME" : "Gestation period, 7 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63110000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4132434, + "CONCEPT_NAME" : "Gestation period, 8 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26690008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4245908, + "CONCEPT_NAME" : "Gestation period, 9 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "931004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 762907, + "CONCEPT_NAME" : "Gestation period greater than or equal to 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "433601000124106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336958, + "CONCEPT_NAME" : "Term pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87527008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4180111, + "CONCEPT_NAME" : "Third trimester pregnancy less than 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429240000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444098, + "CONCEPT_NAME" : "Gestation period, 40 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46230007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 3, + "name" : "Gestational period, 8 weeks", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4132434, + "CONCEPT_NAME" : "Gestation period, 8 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26690008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4322726, + "CONCEPT_NAME" : "Gestation less than 9 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428058009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 4, + "name" : "Last menstrual period (LMP)", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4072438, + "CONCEPT_NAME" : "Date of last menstrual period", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "21840007", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Observable Entity" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4088445, + "CONCEPT_NAME" : "Date of last normal period", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "248993009", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Observable Entity" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4058439, + "CONCEPT_NAME" : "Last menstrual period -1st day", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "161713000", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Observable Entity" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 5, + "name" : "Nuchal ultrasound (ULS)", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4186424, + "CONCEPT_NAME" : "Nuchal ultrasound scan", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "414880004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4324606, + "CONCEPT_NAME" : "Transvaginal nuchal ultrasonography", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "430063002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40489798, + "CONCEPT_NAME" : "Ultrasonography of multiple pregnancy for fetal nuchal translucency", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "446810002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2211754, + "CONCEPT_NAME" : "Ultrasound, pregnant uterus, real time with image documentation, first trimester fetal nuchal translucency measurement, transabdominal or transvaginal approach; each additional gestation (List separately in addition to code for primary procedure)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "76814", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2211753, + "CONCEPT_NAME" : "Ultrasound, pregnant uterus, real time with image documentation, first trimester fetal nuchal translucency measurement, transabdominal or transvaginal approach; single or first gestation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "76813", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4237339, + "CONCEPT_NAME" : "Ultrasound scan for fetal nuchal translucency", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "408815001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 6, + "name" : "Alpha fetal protein (AFP)", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 40480490, + "CONCEPT_NAME" : "Abnormal presence of alpha-fetoprotein", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "441772009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061810, + "CONCEPT_NAME" : "AFP - blood sent", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169688006", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061809, + "CONCEPT_NAME" : "AFP blood test not wanted", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169687001", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040768, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein interpretation in Amniotic fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "41273-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3038294, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein interpretation in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "41274-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3010296, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Mass/volume] in Amniotic fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1832-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42529192, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Mass/volume] in Amniotic fluid by Immunoassay", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "83075-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3027634, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Mass/volume] in Cerebral spinal fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1833-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757479, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Mass/volume] in Cord blood", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54348-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3032506, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Mass/volume] in Peritoneal fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "49761-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3033080, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Mass/volume] in Pleural fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "49762-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3009306, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Mass/volume] in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1834-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42529190, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Mass/volume] in Serum or Plasma by Immunoassay", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "83073-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4197249, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80152001", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4099476, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein measurement, amniotic fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "27220002", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014768, + "CONCEPT_NAME" : "Alpha-1-fetoprotein measurement, serum", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "104404005", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3012116, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Moles/volume] in Amniotic fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15019-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3024289, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Moles/volume] in Pleural fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "19173-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3021607, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Moles/volume] in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "19177-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3046154, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Multiple of the median] adjusted for diabetes in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43998-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3044142, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Multiple of the median] adjusted for diabetes+weight in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43996-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3030180, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Multiple of the median] adjusted for multiple gestations in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "50610-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3046979, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Multiple of the median] adjusted for weight in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43997-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3022269, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Multiple of the median] adjusted in Amniotic fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "29253-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3016670, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Multiple of the median] adjusted in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "23811-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3024370, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Multiple of the median] in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "20450-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40761829, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein panel - Amniotic fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "58735-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3044397, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Presence] in Amniotic fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43798-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3025053, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Presence] in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "31993-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3027505, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Units/volume] in Amniotic fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "19171-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42529191, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Units/volume] in Amniotic fluid by Immunoassay", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "83074-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3045958, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Units/volume] in Body fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "44910-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40762626, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Units/volume] in Cerebral spinal fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59564-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3028331, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Units/volume] in Pleural fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "19172-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42529189, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Units/volume] in Serum or Plasma by Immunoassay", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "83072-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2212200, + "CONCEPT_NAME" : "Alpha-fetoprotein (AFP); AFP-L3 fraction isoform and total AFP (including ratio)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "82107", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2212199, + "CONCEPT_NAME" : "Alpha-fetoprotein (AFP); amniotic fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "82106", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2212198, + "CONCEPT_NAME" : "Alpha-fetoprotein (AFP); serum", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "82105", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4147940, + "CONCEPT_NAME" : "Alpha-fetoprotein blood test", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "268468007", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4269851, + "CONCEPT_NAME" : "Alpha-fetoprotein level - finding", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "365802003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4041177, + "CONCEPT_NAME" : "Alpha-fetoprotein low", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "166562001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44807243, + "CONCEPT_NAME" : "Alpha fetoprotein multiple of median measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "816011000000101", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4042555, + "CONCEPT_NAME" : "Alpha-fetoprotein normal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "166558007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4059689, + "CONCEPT_NAME" : "Alpha-fetoprotein radioimmunoassay", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169188005", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4042557, + "CONCEPT_NAME" : "Alpha-fetoprotein raised", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "166561008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4078285, + "CONCEPT_NAME" : "Alpha-fetoprotein test - antenatal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "275833003", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4057158, + "CONCEPT_NAME" : "Amniotic fluid AFP equivocal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "168108003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4269860, + "CONCEPT_NAME" : "Amniotic fluid AFP - finding", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "365827005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4042936, + "CONCEPT_NAME" : "Blood sent: alpha-fetoprotein", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "166557002", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40761828, + "CONCEPT_NAME" : "Collection date of Amniotic fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "58734-5", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Clinical Observation" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37396772, + "CONCEPT_NAME" : "Congenital deficiency of alpha-fetoprotein", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "716698007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37396771, + "CONCEPT_NAME" : "Hereditary persistence of alpha-fetoprotein", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "716697002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40478936, + "CONCEPT_NAME" : "Measurement of alpha fetoprotein and analysis of chromosomes in amniotic fluid specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "444311009", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40483704, + "CONCEPT_NAME" : "Measurement of alpha fetoprotein and human chorionic gonadotropin and unconjugated estriol in serum or plasma specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "443883001", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40480870, + "CONCEPT_NAME" : "Measurement of alpha fetoprotein as marker for malignant neoplasm", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "441825001", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40483600, + "CONCEPT_NAME" : "Measurement of alpha fetoprotein in second trimester", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "442495004", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4310471, + "CONCEPT_NAME" : "MS alpha-fetoprotein level", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "391516001", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4210719, + "CONCEPT_NAME" : "Plasma alpha-fetoprotein multiple of median measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313867006", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4161969, + "CONCEPT_NAME" : "Serum alpha-fetoprotein level elevated", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "399643001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4275335, + "CONCEPT_NAME" : "Serum alpha-fetoprotein level - finding", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "365804002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4195345, + "CONCEPT_NAME" : "Serum alpha-fetoprotein multiple of median measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313868001", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4078287, + "CONCEPT_NAME" : "Triple test", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "275835005", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3051868, + "CONCEPT_NAME" : "Trisomy 21 risk based on maternal age+Alpha-1-Fetoprotein+Choriogonadotropin+Estriol.unconjugated [Likelihood] in Fetus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "47222-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 7, + "name" : "Amenorrhea (AMEN)", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 443800, + "CONCEPT_NAME" : "Amenorrhea", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14302001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4184965, + "CONCEPT_NAME" : "Amenorrhea associated with obesity", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "413487000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40480713, + "CONCEPT_NAME" : "Anovulatory amenorrhea", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "444769001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4242590, + "CONCEPT_NAME" : "Cryptomenorrhea", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "58851004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4211822, + "CONCEPT_NAME" : "Dietary amenorrhea", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57260004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4070773, + "CONCEPT_NAME" : "Dysponderal amenorrhea", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "21669001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4034017, + "CONCEPT_NAME" : "Exercise-related amenorrhea", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237119008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4034018, + "CONCEPT_NAME" : "Lactational amenorrhea", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237122005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45765512, + "CONCEPT_NAME" : "Normogonadotropic amenorrhea", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "702466002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4211227, + "CONCEPT_NAME" : "Pathologic amenorrhea", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "56561006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4261326, + "CONCEPT_NAME" : "Physiologic amenorrhea", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "44811000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4219015, + "CONCEPT_NAME" : "Postpill amenorrhea", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "39931000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4138554, + "CONCEPT_NAME" : "Premenopausal amenorrhea", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "32590007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40318194, + "CONCEPT_NAME" : "Primary amenorrhea", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "156035004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4230947, + "CONCEPT_NAME" : "Primary physiologic amenorrhea", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "8913004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40318195, + "CONCEPT_NAME" : "Secondary amenorrhea", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "156036003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4312727, + "CONCEPT_NAME" : "Secondary physiologic amenorrhea", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86030004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 8, + "name" : "Urine pregnancy test (URINE)", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4055287, + "CONCEPT_NAME" : "High sensitivity urine pregnancy test", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "167257008", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37392366, + "CONCEPT_NAME" : "High sensitivity urine pregnancy test", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1003171000000104", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Observable Entity" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4250175, + "CONCEPT_NAME" : "Pregnancy detection examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "74036000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4091293, + "CONCEPT_NAME" : "Sensitive pregnancy test", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "252161000", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4091461, + "CONCEPT_NAME" : "Standard pregnancy test", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "252160004", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4055285, + "CONCEPT_NAME" : "Urine pregnancy test", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "167252002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37392365, + "CONCEPT_NAME" : "Urine pregnancy test", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1003161000000106", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Observable Entity" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2212173, + "CONCEPT_NAME" : "Urine pregnancy test, by visual color comparison methods", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "81025", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014769, + "CONCEPT_NAME" : "Urine pregnancy test, by visual color comparison methods", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "104405006", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 9, + "name" : "Gestational period, 12 weeks", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4015296, + "CONCEPT_NAME" : "Antenatal 12 weeks examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169712008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4197245, + "CONCEPT_NAME" : "Gestation period, 12 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "79992004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 10, + "name" : "Gestational period, 37 weeks", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4015142, + "CONCEPT_NAME" : "Antenatal 37 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169722002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442355, + "CONCEPT_NAME" : "Gestation period, 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43697006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 762907, + "CONCEPT_NAME" : "Gestation period greater than or equal to 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "433601000124106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 11, + "name" : "Gestational period, 36 weeks", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4015299, + "CONCEPT_NAME" : "Antenatal 36 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169721009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438543, + "CONCEPT_NAME" : "Gestation period, 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57907009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 12, + "name" : "Gestational period, 35 weeks", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4014434, + "CONCEPT_NAME" : "Antenatal 35 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169720005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444267, + "CONCEPT_NAME" : "Gestation period, 35 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84132007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4180111, + "CONCEPT_NAME" : "Third trimester pregnancy less than 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429240000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 13, + "name" : "Gestational period, 39 weeks", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4015300, + "CONCEPT_NAME" : "Antenatal 39 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169724001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435655, + "CONCEPT_NAME" : "Gestation period, 39 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80487005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 14, + "name" : "Gestational period, 9 weeks", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4245908, + "CONCEPT_NAME" : "Gestation period, 9 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "931004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 15, + "name" : "Gestational period, 40 weeks", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4015301, + "CONCEPT_NAME" : "Antenatal 40 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169725000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336958, + "CONCEPT_NAME" : "Term pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87527008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444098, + "CONCEPT_NAME" : "Gestation period, 40 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46230007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 17, + "name" : "Gestational period, 10 weeks", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4242241, + "CONCEPT_NAME" : "Gestation period, 10 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "38039008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 18, + "name" : "Gestational period, 11 weeks", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4174506, + "CONCEPT_NAME" : "Gestation period, 11 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "50367001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 19, + "name" : "Gestational period, 13 weeks", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4181468, + "CONCEPT_NAME" : "Gestation 9- 13 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428930004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4266517, + "CONCEPT_NAME" : "Gestation period, 13 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "62333002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 20, + "name" : "Gestational period, 1 week", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4337360, + "CONCEPT_NAME" : "Gestation period, 1 week", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87178007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 21, + "name" : "Gestational period, 2 weeks", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4220085, + "CONCEPT_NAME" : "Gestation period, 2 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "82118009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 22, + "name" : "Gestational period, 3 weeks", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4326232, + "CONCEPT_NAME" : "Gestation period, 3 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "74952004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 23, + "name" : "Gestational period, 4 weeks", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4195157, + "CONCEPT_NAME" : "Gestation period, 4 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "44398003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 24, + "name" : "Gestational period, 5 weeks", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4290009, + "CONCEPT_NAME" : "Gestation period, 5 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "37005007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 25, + "name" : "Gestational period, 6 weeks", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4313026, + "CONCEPT_NAME" : "Gestation period, 6 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86801005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 26, + "name" : "Gestational period, 7 weeks", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4270513, + "CONCEPT_NAME" : "Gestation period, 7 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63110000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 28, + "name" : "Gestational period, 14 weeks", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4248725, + "CONCEPT_NAME" : "Gestation period, 14 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72846000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 29, + "name" : "Gestational period, 15 weeks", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4283690, + "CONCEPT_NAME" : "Gestation period, 15 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6678005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 30, + "name" : "Gestational period, 16 weeks", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4014149, + "CONCEPT_NAME" : "Antenatal 16 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169713003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4049621, + "CONCEPT_NAME" : "Gestation period, 16 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15633004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 31, + "name" : "Gestational period, 17 weeks", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4277749, + "CONCEPT_NAME" : "Gestation period, 17 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65683006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 32, + "name" : "Gestational period, 18 weeks", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4097608, + "CONCEPT_NAME" : "Gestation period, 18 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25026004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 33, + "name" : "Gestational period, 19 weeks", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4324063, + "CONCEPT_NAME" : "Gestation less than 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428566005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181751, + "CONCEPT_NAME" : "Gestation period, 19 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54318006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 34, + "name" : "Gestational period, 20 weeks", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4014150, + "CONCEPT_NAME" : "Antenatal 20 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169714009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4178165, + "CONCEPT_NAME" : "Gestation 14 - 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428567001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4051642, + "CONCEPT_NAME" : "Gestation period, 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "23464008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 35, + "name" : "Gestational period, 21 weeks", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4181162, + "CONCEPT_NAME" : "Gestation greater than 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429715006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4185780, + "CONCEPT_NAME" : "Gestation period, 21 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "41438001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 36, + "name" : "Gestational period, 22 weeks", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 44808979, + "CONCEPT_NAME" : "Antenatal 22 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861281000000109", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4274955, + "CONCEPT_NAME" : "Gestation period, 22 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65035007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 37, + "name" : "Gestational period, 23 weeks", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 438542, + "CONCEPT_NAME" : "Gestation less than 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313178001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336226, + "CONCEPT_NAME" : "Gestation period, 23 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86883006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 38, + "name" : "Gestational period, 24 weeks", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4015141, + "CONCEPT_NAME" : "Antenatal 24 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169715005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439922, + "CONCEPT_NAME" : "Gestation period, 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313179009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 40, + "name" : "Gestational period, 25 weeks", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 44808980, + "CONCEPT_NAME" : "Antenatal 25 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861301000000105", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435640, + "CONCEPT_NAME" : "Gestation period, 25 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72544005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 41, + "name" : "Gestational period, 26 weeks", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 444023, + "CONCEPT_NAME" : "Gestation period, 26 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48688005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 42, + "name" : "Gestational period, 27 weeks", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 45770261, + "CONCEPT_NAME" : "Gestation less than 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "925561000000100", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432430, + "CONCEPT_NAME" : "Gestation period, 27 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46906003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 43, + "name" : "Gestational period, 28 weeks", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 444461, + "CONCEPT_NAME" : "Gestation period, 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90797000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 44, + "name" : "Gestational period, 29 weeks", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 444417, + "CONCEPT_NAME" : "Gestation period, 29 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45139008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 45, + "name" : "Gestational period, 30 weeks", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4014151, + "CONCEPT_NAME" : "Antenatal 30 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169717002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434484, + "CONCEPT_NAME" : "Gestation period, 30 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "71355009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 47, + "name" : "Gestational period, 31 weeks", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 44808981, + "CONCEPT_NAME" : "Antenatal 31 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861321000000101", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433864, + "CONCEPT_NAME" : "Gestation period, 31 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64920003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 48, + "name" : "Gestational period, 32 weeks", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4015297, + "CONCEPT_NAME" : "Antenatal 32 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169718007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442558, + "CONCEPT_NAME" : "Gestation period, 32 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7707000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 49, + "name" : "Gestational period, 33 weeks", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 441678, + "CONCEPT_NAME" : "Gestation period, 33 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "78395001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 50, + "name" : "Gestational period, 34 weeks", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4015298, + "CONCEPT_NAME" : "Antenatal 34 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169719004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443874, + "CONCEPT_NAME" : "Gestation period, 34 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13763000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 51, + "name" : "Gestational period, 38 weeks", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4014152, + "CONCEPT_NAME" : "Antenatal 38 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169723007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443871, + "CONCEPT_NAME" : "Gestation period, 38 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13798002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 52, + "name" : "Gestational period, 41 weeks", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4015302, + "CONCEPT_NAME" : "Antenatal 41 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169726004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442769, + "CONCEPT_NAME" : "Gestation period, 41 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63503002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 53, + "name" : "Gestational period, 42 weeks", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4014435, + "CONCEPT_NAME" : "Antenatal 42 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169727008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444067, + "CONCEPT_NAME" : "Gestation period, 42 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36428009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 55, + "name" : "Fertility procedure, condition or observation (NFERT)", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4239302, + "CONCEPT_NAME" : "Artificial insemination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "58533008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004542, + "CONCEPT_NAME" : "Artificial insemination", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "69.92", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4130186, + "CONCEPT_NAME" : "Artificial insemination by donor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "236896006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4127094, + "CONCEPT_NAME" : "Artificial insemination by husband", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "236895005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4187819, + "CONCEPT_NAME" : "Artificial insemination, heterologous", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46249006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4280831, + "CONCEPT_NAME" : "Artificial insemination, homologous", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "66601000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110196, + "CONCEPT_NAME" : "Artificial insemination; intra-cervical", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "58321", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110197, + "CONCEPT_NAME" : "Artificial insemination; intra-uterine", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "58322", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4238828, + "CONCEPT_NAME" : "Artificial insemination with sperm washing and capacitation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57233006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2213350, + "CONCEPT_NAME" : "Assisted embryo hatching, microtechniques (any method)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "89253", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4272937, + "CONCEPT_NAME" : "Assisted fertilization", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63487001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2721246, + "CONCEPT_NAME" : "Assisted oocyte fertilization, case rate", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "S4022", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42739500, + "CONCEPT_NAME" : "Assisted oocyte fertilization, microtechnique (any method) (Deprecated)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "89252", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2213363, + "CONCEPT_NAME" : "Assisted oocyte fertilization, microtechnique; greater than 10 oocytes", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "89281", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2213362, + "CONCEPT_NAME" : "Assisted oocyte fertilization, microtechnique; less than or equal to 10 oocytes", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "89280", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2213365, + "CONCEPT_NAME" : "Biopsy, oocyte polar body or embryo blastomere, microtechnique (for pre-implantation genetic diagnosis); greater than 5 embryos", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "89291", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2213364, + "CONCEPT_NAME" : "Biopsy, oocyte polar body or embryo blastomere, microtechnique (for pre-implantation genetic diagnosis); less than or equal to 5 embryos", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "89290", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2721238, + "CONCEPT_NAME" : "Complete cycle, gamete intrafallopian transfer (gift), case rate", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "S4013", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2721239, + "CONCEPT_NAME" : "Complete cycle, zygote intrafallopian transfer (zift), case rate", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "S4014", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2721240, + "CONCEPT_NAME" : "Complete in vitro fertilization cycle, not otherwise specified, case rate", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "S4015", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4309021, + "CONCEPT_NAME" : "Complications of attempted introduction of fertilized ovum following in vitro fertilization", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "213202009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40482399, + "CONCEPT_NAME" : "Conceived by in vitro fertilization", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "443633009", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2213355, + "CONCEPT_NAME" : "Cryopreservation; embryo(s)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "89258", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2721256, + "CONCEPT_NAME" : "Cryopreserved embryo transfer, case rate", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "S4037", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2213347, + "CONCEPT_NAME" : "Culture of oocyte(s)/embryo(s), less than 4 days", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "89250", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2213348, + "CONCEPT_NAME" : "Culture of oocyte(s)/embryo(s), less than 4 days; with co-culture of oocyte(s)/embryos", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "89251", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4022096, + "CONCEPT_NAME" : "Direct injection of sperm into cytoplasm of the oocyte", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "225244002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4024589, + "CONCEPT_NAME" : "Direct intraperitoneal insemination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "225247009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2721247, + "CONCEPT_NAME" : "Donor egg cycle, incomplete, case rate", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "S4023", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2721248, + "CONCEPT_NAME" : "Donor services for in vitro fertilization (sperm or embryo), case rate", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "S4025", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4327048, + "CONCEPT_NAME" : "Embryo transfer", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "75456002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110275, + "CONCEPT_NAME" : "Embryo transfer, intrauterine", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "58974", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4072852, + "CONCEPT_NAME" : "Endoscopic intrafallopian transfer of gamete", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "176996001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4072863, + "CONCEPT_NAME" : "Endoscopic transurethral ultrasound directed oocyte recovery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177038005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4074569, + "CONCEPT_NAME" : "Endoscopic transvesical oocyte recovery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177039002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2213361, + "CONCEPT_NAME" : "Extended culture of oocyte(s)/embryo(s), 4-7 days", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "89272", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4127892, + "CONCEPT_NAME" : "Fallopian replacement of egg with delayed insemination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "236913003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110274, + "CONCEPT_NAME" : "Follicle puncture for oocyte retrieval, any method", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "58970", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4032737, + "CONCEPT_NAME" : "Frozen embryo transfer", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "236894009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2721243, + "CONCEPT_NAME" : "Frozen embryo transfer procedure cancelled before transfer, case rate", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "S4018", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2721241, + "CONCEPT_NAME" : "Frozen in vitro fertilization cycle, case rate", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "S4016", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4127104, + "CONCEPT_NAME" : "Gamete intrafallopian transfer", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "236912008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4072421, + "CONCEPT_NAME" : "Gamete intrauterine transfer", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "176843009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110276, + "CONCEPT_NAME" : "Gamete, zygote, or embryo intrafallopian transfer, any method", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "58976", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4309019, + "CONCEPT_NAME" : "Infection associated with artificial insemination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "213200001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2213360, + "CONCEPT_NAME" : "Insemination of oocytes", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "89268", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4072715, + "CONCEPT_NAME" : "Intracervical artificial insemination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "176844003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4030829, + "CONCEPT_NAME" : "Intraperitoneal insemination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "238312005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4138741, + "CONCEPT_NAME" : "Intrauterine artificial insemination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "265064001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4139858, + "CONCEPT_NAME" : "Intrauterine insemination using donor sperm", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "426250000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4139060, + "CONCEPT_NAME" : "Intrauterine insemination using partner sperm", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "426389008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4137390, + "CONCEPT_NAME" : "Intrauterine insemination with controlled ovarian hyperstimulation using donor sperm", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "425644009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4145843, + "CONCEPT_NAME" : "Intrauterine insemination with controlled ovarian hyperstimulation using partner sperm", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "426968007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4020898, + "CONCEPT_NAME" : "Intravaginal artificial insemination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "225250007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2721255, + "CONCEPT_NAME" : "INTRAVAGINAL CULTURE (IVC)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "S4036", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4199599, + "CONCEPT_NAME" : "In vitro fertilization", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "52637005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2788842, + "CONCEPT_NAME" : "In Vitro Fertilization", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "8E0ZXY1", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD10PCS", + "CONCEPT_CLASS_ID" : "ICD10PCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2721237, + "CONCEPT_NAME" : "In vitro fertilization; including but not limited to identification and incubation of mature oocytes, fertilization with sperm, incubation of embryo(s), and subsequent visualization for determination of development", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "S4011", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3049700, + "CONCEPT_NAME" : "In vitro fertilization pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "47224-1", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Clinical Observation" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2721245, + "CONCEPT_NAME" : "In vitro fertilization procedure cancelled after aspiration, case rate", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "S4021", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2721244, + "CONCEPT_NAME" : "In vitro fertilization procedure cancelled before aspiration, case rate", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "S4020", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4138627, + "CONCEPT_NAME" : "In vitro fertilization using donor eggs", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "425866000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 46273065, + "CONCEPT_NAME" : "In vitro fertilization with surrogacy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "711544002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4145664, + "CONCEPT_NAME" : "IVF - In vitro fertilization using donor sperm", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "427664000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4138633, + "CONCEPT_NAME" : "IVF - In vitro fertilization with intracytoplasmic sperm injection (ICSI)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "425901007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4141534, + "CONCEPT_NAME" : "IVF - In vitro fertilization with intracytoplasmic sperm injection (ICSI) and donor egg", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "426914002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4142402, + "CONCEPT_NAME" : "IVF - In vitro fertilization with pre-implantation genetic diagnosis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "426417003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4144415, + "CONCEPT_NAME" : "Laparoscopic oocyte recovery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "265082003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40259107, + "CONCEPT_NAME" : "Laparoscopic oocyte recovery (& NEC)", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "177040000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2213351, + "CONCEPT_NAME" : "Oocyte identification from follicular fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "89254", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4072862, + "CONCEPT_NAME" : "Oocyte recovery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177037000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 46232934, + "CONCEPT_NAME" : "Other introduction of gametes into uterine cavity", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "Q21", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "OPCS4", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44513468, + "CONCEPT_NAME" : "Other specified introduction of gametes into uterine cavity", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "Q13.8", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "OPCS4", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44517168, + "CONCEPT_NAME" : "Other specified in vitro fertilisation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "Y96.8", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "OPCS4", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4075024, + "CONCEPT_NAME" : "Other specified oocyte recovery", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "177043003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44513634, + "CONCEPT_NAME" : "Other specified oocyte recovery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "Q48.8", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "OPCS4", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44513516, + "CONCEPT_NAME" : "Other specified other introduction of gametes into uterine cavity", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "Q21.8", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "OPCS4", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2213352, + "CONCEPT_NAME" : "Preparation of embryo for transfer (any method)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "89255", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40490338, + "CONCEPT_NAME" : "Retrieval of oocyte by transabdominal approach", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "446934006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2213358, + "CONCEPT_NAME" : "Sperm isolation; complex prep (eg, Percoll gradient, albumin gradient) for insemination or diagnosis with semen analysis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "89261", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2213357, + "CONCEPT_NAME" : "Sperm isolation; simple prep (eg, sperm wash and swim-up) for insemination or diagnosis with semen analysis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "89260", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110198, + "CONCEPT_NAME" : "Sperm washing for artificial insemination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "58323", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2721254, + "CONCEPT_NAME" : "Stimulated intrauterine insemination (iui), case rate", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "S4035", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4022098, + "CONCEPT_NAME" : "Subzonal insemination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "225249007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44790511, + "CONCEPT_NAME" : "Transfer of embryo to uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "233111000000108", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40490447, + "CONCEPT_NAME" : "Transmyometrial transfer of embryo to uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "448543003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4073406, + "CONCEPT_NAME" : "Transvaginal oocyte recovery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177042008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4127106, + "CONCEPT_NAME" : "Tubal embryo transfer", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "236915005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4020897, + "CONCEPT_NAME" : "Zona drilling", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "225248004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4127105, + "CONCEPT_NAME" : "Zygote intrafallopian transfer", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "236914009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 56, + "name" : "Antenatal GP visits (AGP)", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4014433, + "CONCEPT_NAME" : "Antenatal 28 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169716006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014148, + "CONCEPT_NAME" : "Antenatal booking examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169711001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4173786, + "CONCEPT_NAME" : "Antenatal care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "424525001", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061786, + "CONCEPT_NAME" : "Antenatal care categorized by gravida number", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169572002", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060243, + "CONCEPT_NAME" : "Antenatal care: elderly primiparous", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169588002", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530904, + "CONCEPT_NAME" : "Antenatal care for woman with history of recurrent miscarriage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609442008", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061437, + "CONCEPT_NAME" : "Antenatal care from consultant", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169615001", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060251, + "CONCEPT_NAME" : "Antenatal care from general practitioner", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169614002", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439656, + "CONCEPT_NAME" : "Antenatal care: grand multiparity", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169581008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060246, + "CONCEPT_NAME" : "Antenatal care: history of child abuse", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169595006", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060097, + "CONCEPT_NAME" : "Antenatal care: history of infertility", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169589005", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060242, + "CONCEPT_NAME" : "Antenatal care: history of perinatal death", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169583006", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060241, + "CONCEPT_NAME" : "Antenatal care: history of stillbirth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169582001", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4059989, + "CONCEPT_NAME" : "Antenatal care: history of trophoblastic disease", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169585004", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060247, + "CONCEPT_NAME" : "Antenatal care: medical risk", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169597003", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4147564, + "CONCEPT_NAME" : "Antenatal care midwifery led", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "310248000", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060239, + "CONCEPT_NAME" : "Antenatal care: multip", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169576004", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061433, + "CONCEPT_NAME" : "Antenatal care: multiparous, older than 35 years", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169605007", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061426, + "CONCEPT_NAME" : "Antenatal care: obstetric risk", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169578003", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36713461, + "CONCEPT_NAME" : "Antenatal care of elderly primigravida", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "717797001", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061425, + "CONCEPT_NAME" : "Antenatal care of second pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169574001", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061787, + "CONCEPT_NAME" : "Antenatal care of third pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169575000", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060098, + "CONCEPT_NAME" : "Antenatal care: poor home conditions", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169592009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4059988, + "CONCEPT_NAME" : "Antenatal care: poor obstetric history", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169584000", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061789, + "CONCEPT_NAME" : "Antenatal care: precious pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169587007", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060248, + "CONCEPT_NAME" : "Antenatal care: primiparous, older than 30 years", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169604006", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060101, + "CONCEPT_NAME" : "Antenatal care: primiparous, under 17 years", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169603000", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061793, + "CONCEPT_NAME" : "Antenatal care provider", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169613008", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060240, + "CONCEPT_NAME" : "Antenatal care: recurrent aborter", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169580009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060244, + "CONCEPT_NAME" : "Antenatal care: social risk", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169591002", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4059987, + "CONCEPT_NAME" : "Antenatal care: uncertain dates", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169579006", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4190427, + "CONCEPT_NAME" : "Antenatal clinic", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "394574007", + "DOMAIN_ID" : "Visit", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Location" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4147941, + "CONCEPT_NAME" : "Antenatal data", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "268469004", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Observable Entity" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4047845, + "CONCEPT_NAME" : "Antenatal education", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "135892000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4084186, + "CONCEPT_NAME" : "Antenatal exercises", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "183329005", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4062361, + "CONCEPT_NAME" : "Antenatal relaxation class", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "171066005", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061521, + "CONCEPT_NAME" : "Antenatal - shared care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169616000", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4081196, + "CONCEPT_NAME" : "Antepartum", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276986009", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Qualifier Value" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110312, + "CONCEPT_NAME" : "Antepartum care only; 4-6 visits", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59425", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110313, + "CONCEPT_NAME" : "Antepartum care only; 7 or more visits", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59426", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2108689, + "CONCEPT_NAME" : "Anti-D immune globulin received between 26 and 30 weeks gestation (Pre-Cr)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "4178F", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015159, + "CONCEPT_NAME" : "Consultant unit birth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169815003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060252, + "CONCEPT_NAME" : "Consultant unit booking", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169623004", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37016958, + "CONCEPT_NAME" : "Counting fetal movement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "713120004", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4076939, + "CONCEPT_NAME" : "Delivery booking place", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "275816005", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Observable Entity" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061795, + "CONCEPT_NAME" : "Delivery: no place booked", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169620001", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4156955, + "CONCEPT_NAME" : "Delivery place booked", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "271402002", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4150421, + "CONCEPT_NAME" : "Delivery place planned", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "310585007", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4059478, + "CONCEPT_NAME" : "Estimated date of delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "161714006", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Observable Entity" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4128833, + "CONCEPT_NAME" : "Estimated date of delivery from last period", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "289206005", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Observable Entity" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4226978, + "CONCEPT_NAME" : "External fetal monitor surveillance during multiple pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87663001", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060255, + "CONCEPT_NAME" : "Feeding intention - breast", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169643005", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4084439, + "CONCEPT_NAME" : "Fetal heart monitoring", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "281568006", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015304, + "CONCEPT_NAME" : "Fetal size accords with dates", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169732009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060104, + "CONCEPT_NAME" : "Home delivery booked", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169621002", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4151190, + "CONCEPT_NAME" : "Home delivery planned", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "310586008", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2514574, + "CONCEPT_NAME" : "Home visit for prenatal monitoring and assessment to include fetal heart rate, non-stress test, uterine monitoring, and gestational diabetes monitoring", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "99500", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061791, + "CONCEPT_NAME" : "Late onset antenatal care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169594005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4066354, + "CONCEPT_NAME" : "Maternal care for poor fetal growth", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "200474004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4305717, + "CONCEPT_NAME" : "Midwife unit delivery booking", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "390782000", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37016955, + "CONCEPT_NAME" : "Monitoring fetal development", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "713117007", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4084521, + "CONCEPT_NAME" : "Obstetric D.V. done", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "183760007", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038747, + "CONCEPT_NAME" : "Obstetric examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "163497009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4140250, + "CONCEPT_NAME" : "Obstetric monitoring", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "265642006", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038420, + "CONCEPT_NAME" : "O/E - breech presentation", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163514003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038571, + "CONCEPT_NAME" : "O/E - fetal heart 120-160", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163548002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038945, + "CONCEPT_NAME" : "O/E - fetal heart heard", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163542001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4039088, + "CONCEPT_NAME" : "O/E - fetal heart not heard", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163543006", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038943, + "CONCEPT_NAME" : "O/E - fetal movement diminished", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163540009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4039610, + "CONCEPT_NAME" : "O/E - fetal movements seen", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163537009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038938, + "CONCEPT_NAME" : "O/E -fetal presentation unsure", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163518000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038760, + "CONCEPT_NAME" : "O/E - fetus very active", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163539007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038418, + "CONCEPT_NAME" : "O/E - fundal size = dates", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163510007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038749, + "CONCEPT_NAME" : "O/E - fundus 12-16 week size", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163499007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038751, + "CONCEPT_NAME" : "O/E - fundus 16-20 week size", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163500003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038932, + "CONCEPT_NAME" : "O/E - fundus 20-24 week size", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163501004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4039602, + "CONCEPT_NAME" : "O/E - fundus 24-28 week size", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163502006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038753, + "CONCEPT_NAME" : "O/E - fundus 28-32 week size", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163504007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038935, + "CONCEPT_NAME" : "O/E - fundus = term size", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163509002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038748, + "CONCEPT_NAME" : "O/E - gravid uterus size", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163498004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4039609, + "CONCEPT_NAME" : "O/E - no fetal movements", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163536000", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038759, + "CONCEPT_NAME" : "O/E - partial engagement - 3/5", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163531005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4175225, + "CONCEPT_NAME" : "O/E - PP free - not engaged", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "275968002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038424, + "CONCEPT_NAME" : "O/E - presentation engaged-1/5", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163533008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4171428, + "CONCEPT_NAME" : "O/E - presenting part engaged", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "275969005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4039608, + "CONCEPT_NAME" : "O/E - presenting part free-4/5", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163530006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038941, + "CONCEPT_NAME" : "O/E - presenting part free-5/5", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163529001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038939, + "CONCEPT_NAME" : "O/E - presenting part position", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163520002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038937, + "CONCEPT_NAME" : "O/E - transverse lie", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163516001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038573, + "CONCEPT_NAME" : "O/E - VE for pelvic assessment", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163555000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4039603, + "CONCEPT_NAME" : "O/E - vertex presentation", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163513009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4194143, + "CONCEPT_NAME" : "O/E - viable fetus", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "312354009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4016475, + "CONCEPT_NAME" : "Placenta normal O/E", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "169954003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2618150, + "CONCEPT_NAME" : "Prenatal care, at-risk assessment", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "H1000", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2618151, + "CONCEPT_NAME" : "Prenatal care, at-risk enhanced service; antepartum management", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "H1001", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2618152, + "CONCEPT_NAME" : "Prenatal care, at risk enhanced service; care coordination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "H1002", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2618154, + "CONCEPT_NAME" : "Prenatal care, at-risk enhanced service; follow-up home visit", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "H1004", + "DOMAIN_ID" : "Visit", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2618155, + "CONCEPT_NAME" : "Prenatal care, at-risk enhanced service package (includes h1001-h1004)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "H1005", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4176966, + "CONCEPT_NAME" : "Prenatal education", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "363266006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4112701, + "CONCEPT_NAME" : "Prenatal examination and care of mother", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "18114009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4311447, + "CONCEPT_NAME" : "Prenatal initial visit", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "424441002", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4172038, + "CONCEPT_NAME" : "Prenatal supplemental visit", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "422808006", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4313474, + "CONCEPT_NAME" : "Prenatal visit", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "424619006", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060105, + "CONCEPT_NAME" : "Private home delivery booking", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169624005", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 77619, + "CONCEPT_NAME" : "Reduced fetal movement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276369006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4081292, + "CONCEPT_NAME" : "Referral to antenatal clinic", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "183860003", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 46272536, + "CONCEPT_NAME" : "Referral to breastfeeding education class during prenatal period", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "710916001", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4084693, + "CONCEPT_NAME" : "Referral to obstetrics service", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "183548008", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4047564, + "CONCEPT_NAME" : "Routine antenatal care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "134435003", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4083415, + "CONCEPT_NAME" : "Seen in antenatal clinic", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "185226003", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4260976, + "CONCEPT_NAME" : "Seen in fetal medicine clinic", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "440580005", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2101831, + "CONCEPT_NAME" : "Subsequent prenatal care visit (Prenatal) [Excludes: patients who are seen for a condition unrelated to pregnancy or prenatal care (eg, an upper respiratory infection; patients seen for consultation only, not for continuing care)]", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "0502F", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40517216, + "CONCEPT_NAME" : "[V]Pregnancy examination and test", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "308165008", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40525253, + "CONCEPT_NAME" : "[V]Unspecified antenatal screening", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "315976001", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 57, + "name" : "Confirmation of pregnancy (PCONF)", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 441092, + "CONCEPT_NAME" : "Advanced maternal age gravida", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "416413003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061424, + "CONCEPT_NAME" : "Antenatal care: primigravida", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169573007", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40760833, + "CONCEPT_NAME" : "Birth plurality of Pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57722-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Clinical Observation" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4139126, + "CONCEPT_NAME" : "Braxton Hicks contractions", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "32644009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015590, + "CONCEPT_NAME" : "Counseling for termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10383002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3011536, + "CONCEPT_NAME" : "Delivery date Estimated", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "11778-8", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Clinical Observation" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43054893, + "CONCEPT_NAME" : "Delivery location", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72150-6", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Survey" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43021054, + "CONCEPT_NAME" : "Dichorionic diamniotic twin pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "459166009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37017322, + "CONCEPT_NAME" : "Dizygotic twin pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "713575004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441085, + "CONCEPT_NAME" : "Elderly primigravida", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "29399001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 192380, + "CONCEPT_NAME" : "Failed attempted termination of pregnancy without complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90645002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4210896, + "CONCEPT_NAME" : "Fetal gestational age", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57036006", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Observable Entity" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3006722, + "CONCEPT_NAME" : "Fetal Heart Narrative Activity US", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "11616-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Clinical Observation" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40759953, + "CONCEPT_NAME" : "Fetal Narrative Movement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "56834-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Clinical Observation" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 195877, + "CONCEPT_NAME" : "Finding of gravid uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "289675001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061522, + "CONCEPT_NAME" : "General practitioner unit delivery booking", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169622009", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437937, + "CONCEPT_NAME" : "Grand multipara", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "18656007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4030415, + "CONCEPT_NAME" : "Illegitimate pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14080002", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 197031, + "CONCEPT_NAME" : "Intrauterine pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65727000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061672, + "CONCEPT_NAME" : "IUD failure - pregnant", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169488004", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43021951, + "CONCEPT_NAME" : "Monochorionic diamniotic twin pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "459168005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43021952, + "CONCEPT_NAME" : "Monochorionic monoamniotic twin pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "459171002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3045823, + "CONCEPT_NAME" : "Multiple pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45371-2", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Clinical Observation" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432969, + "CONCEPT_NAME" : "Multiple pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16356006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3000119, + "CONCEPT_NAME" : "Narrative Fetal presentation US", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "18850-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Clinical Observation" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4217975, + "CONCEPT_NAME" : "Normal pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72892002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038942, + "CONCEPT_NAME" : "O/E - fetal movements", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163535001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4150948, + "CONCEPT_NAME" : "O/E - fetal presentation", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "268952006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4148890, + "CONCEPT_NAME" : "Pregnancy benefits", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "270471004", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Qualifier Value" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4094910, + "CONCEPT_NAME" : "Pregnancy test positive", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "250423000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061785, + "CONCEPT_NAME" : "Pregnancy unplanned and unwanted", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169567006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060237, + "CONCEPT_NAME" : "Pregnancy unplanned but wanted", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169566002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4299535, + "CONCEPT_NAME" : "Pregnant", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "77386006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4059982, + "CONCEPT_NAME" : "Pregnant - blood test confirms", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169561007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061686, + "CONCEPT_NAME" : "Pregnant - on history", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169563005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4059984, + "CONCEPT_NAME" : "Pregnant - planned", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169565003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061411, + "CONCEPT_NAME" : "Pregnant, sheath failure", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169508004", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4059981, + "CONCEPT_NAME" : "Pregnant - urine test confirms", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169560008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4133029, + "CONCEPT_NAME" : "Primigravida", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "127364007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442594, + "CONCEPT_NAME" : "Quadruplet pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "60810003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440466, + "CONCEPT_NAME" : "Quadruplet pregnancy with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199326006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061423, + "CONCEPT_NAME" : "Questionable if pregnancy was planned", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169569009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4214930, + "CONCEPT_NAME" : "Refer to early pregnancy unit", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "417577000", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040000, + "CONCEPT_NAME" : "Reliability of last menstrual period observation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "53661-5", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Clinical Observation" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 196484, + "CONCEPT_NAME" : "Retroverted incarcerated gravid uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199466009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4042412, + "CONCEPT_NAME" : "Serum pregnancy test positive", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "166437003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 198212, + "CONCEPT_NAME" : "Spotting per vagina in pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "284075002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4129023, + "CONCEPT_NAME" : "Teenage pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237240001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4218813, + "CONCEPT_NAME" : "Third trimester pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "41587001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432375, + "CONCEPT_NAME" : "Triplet pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64254006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441919, + "CONCEPT_NAME" : "Twin pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65147003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4307820, + "CONCEPT_NAME" : "Unplanned pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "83074005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4059985, + "CONCEPT_NAME" : "Unplanned pregnancy unknown if child is wanted", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169568001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4239301, + "CONCEPT_NAME" : "Unwanted pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "58532003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4041878, + "CONCEPT_NAME" : "Urine pregnancy test positive", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "167256004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3023791, + "CONCEPT_NAME" : "Uterus Fundal height Tape measure", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "11881-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Clinical Observation" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40519557, + "CONCEPT_NAME" : "[V]Other unwanted pregnancy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "316385002", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40524802, + "CONCEPT_NAME" : "[V]Pregnant state, incidental", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "315903005", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40524805, + "CONCEPT_NAME" : "[V]Unspecified pregnant state", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "315906002", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 58, + "name" : "Gonadotropin, chorionic (hCG) (HCG)", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 2721180, + "CONCEPT_NAME" : "BLOOD CHEMISTRY FOR FREE BETA HUMAN CHORIONIC GONADOTROPIN (HCG)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "S3618", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3019145, + "CONCEPT_NAME" : "Choriogonadotropin.beta subunit free [Mass/volume] in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25373-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3011465, + "CONCEPT_NAME" : "Choriogonadotropin.beta subunit free [Units/volume] in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "19180-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3011996, + "CONCEPT_NAME" : "Choriogonadotropin.beta subunit [Moles/volume] in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "2111-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3010164, + "CONCEPT_NAME" : "Choriogonadotropin.beta subunit [Multiple of the median] adjusted in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "23841-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40758989, + "CONCEPT_NAME" : "Choriogonadotropin.beta subunit [Multiple of the median] in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55868-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3011149, + "CONCEPT_NAME" : "Choriogonadotropin.beta subunit (pregnancy test) [Presence] in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "2110-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3009417, + "CONCEPT_NAME" : "Choriogonadotropin.beta subunit (pregnancy test) [Presence] in Urine", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "2112-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3038136, + "CONCEPT_NAME" : "Choriogonadotropin.beta subunit [Units/volume] in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "21198-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3004303, + "CONCEPT_NAME" : "Choriogonadotropin.intact [Moles/volume] in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "2117-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3036988, + "CONCEPT_NAME" : "Choriogonadotropin.intact [Units/volume] in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "30243-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3002091, + "CONCEPT_NAME" : "Choriogonadotropin [Moles/volume] in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "2119-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3008714, + "CONCEPT_NAME" : "Choriogonadotropin [Multiple of the median] adjusted in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "32166-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3003191, + "CONCEPT_NAME" : "Choriogonadotropin (pregnancy test) [Presence] in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "2118-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3018954, + "CONCEPT_NAME" : "Choriogonadotropin (pregnancy test) [Presence] in Urine", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "2106-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3018171, + "CONCEPT_NAME" : "Choriogonadotropin [Units/volume] in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "19080-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4018189, + "CONCEPT_NAME" : "Chorionic gonadotropin, alpha subunit measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "104595003", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4296540, + "CONCEPT_NAME" : "Chorionic gonadotropin, beta-subunit measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "386558001", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4296541, + "CONCEPT_NAME" : "Chorionic gonadotropin, beta-subunit measurement, spinal fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "386559009", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4016953, + "CONCEPT_NAME" : "Chorionic gonadotropin, intact measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "104596002", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4017479, + "CONCEPT_NAME" : "Chorionic gonadotropin measurement, qualitative", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "104406007", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4263011, + "CONCEPT_NAME" : "Elevated serum human chorionic gonadotropin level, beta subunit", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "396700001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43527960, + "CONCEPT_NAME" : "Fetal congenital abnormalities, biochemical assays of three proteins (PAPP-A, hCG [any form], DIA), utilizing maternal serum, algorithm reported as a risk score", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "81509", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43527959, + "CONCEPT_NAME" : "Fetal congenital abnormalities, biochemical assays of two proteins (PAPP-A, hCG [any form]), utilizing maternal serum, algorithm reported as a risk score", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "81508", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4096237, + "CONCEPT_NAME" : "Free beta human chorionic gonadotrophin measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "250658009", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44807244, + "CONCEPT_NAME" : "Free beta human chorionic gonadotrophin multiple of median measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "816021000000107", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2212633, + "CONCEPT_NAME" : "Gonadotropin, chorionic (hCG); free beta chain", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84704", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2212632, + "CONCEPT_NAME" : "Gonadotropin, chorionic (hCG); qualitative", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84703", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2212631, + "CONCEPT_NAME" : "Gonadotropin, chorionic (hCG); quantitative", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84702", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44807240, + "CONCEPT_NAME" : "Human chorionic gonadotrophin multiple of median measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "815981000000104", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4285271, + "CONCEPT_NAME" : "Human chorionic gonadotropin measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "67900009", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44806337, + "CONCEPT_NAME" : "Human chorionic gonadotropin output measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "800821000000104", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038817, + "CONCEPT_NAME" : "Increased human chorionic gonadotropin level", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "131102000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44812174, + "CONCEPT_NAME" : "Plasma human chorionic gonadotrophin concentration measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "911491000000101", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4210718, + "CONCEPT_NAME" : "Plasma human chorionic gonadotropin multiple of median measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313865003", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4210722, + "CONCEPT_NAME" : "Serum free beta human chorionic gonadotrophin measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313872002", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4195509, + "CONCEPT_NAME" : "Serum free beta human chorionic gonadotropin multiple of median measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "314070003", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4198892, + "CONCEPT_NAME" : "Serum human chorionic gonadotropin multiple of median measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313866002", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4041161, + "CONCEPT_NAME" : "Serum pregnancy test (B-HCG)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "166434005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4042751, + "CONCEPT_NAME" : "Serum total HCG measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "167037004", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4214677, + "CONCEPT_NAME" : "Total beta human chorionic gonadotrophin level", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "394721004", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44789306, + "CONCEPT_NAME" : "Total human chorionic gonadotropin measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "195261000000107", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4055426, + "CONCEPT_NAME" : "Urine chorionic gonadotrophin measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "167376008", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4055954, + "CONCEPT_NAME" : "Urine HCG 24 hour assay", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "167391005", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 60, + "name" : "Stillbirth (SB)", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4129846, + "CONCEPT_NAME" : "Antepartum fetal death", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237361005", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Event" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37017027, + "CONCEPT_NAME" : "Antepartum stillbirth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "713202001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4079844, + "CONCEPT_NAME" : "Fetal death", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276507005", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Event" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4071603, + "CONCEPT_NAME" : "Fetal death due to prelabor anoxia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206258000", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Event" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442338, + "CONCEPT_NAME" : "Fetal death from asphyxia AND/OR anoxia before onset of labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "44174001", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Event" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443695, + "CONCEPT_NAME" : "Fetal death from asphyxia AND/OR anoxia during labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1762004", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Event" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4034159, + "CONCEPT_NAME" : "Fresh stillbirth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237365001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45773593, + "CONCEPT_NAME" : "Intrapartum stillbirth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "921611000000101", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060687, + "CONCEPT_NAME" : "Intrauterine death - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199607009", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Event" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4028787, + "CONCEPT_NAME" : "Macerated stillbirth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237366000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4222915, + "CONCEPT_NAME" : "Premature birth of fraternal twins, both stillborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84382006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4242724, + "CONCEPT_NAME" : "Premature birth of identical twins, both stillborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "3798002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4184594, + "CONCEPT_NAME" : "Premature birth of stillborn twins", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54650005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42539377, + "CONCEPT_NAME" : "Quadruplets with all four stillborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "762612009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42538805, + "CONCEPT_NAME" : "Quintuplets with all five stillborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "762613004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42538806, + "CONCEPT_NAME" : "Sextuplets with all six stillborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "762614005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014454, + "CONCEPT_NAME" : "Single stillbirth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169827000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443213, + "CONCEPT_NAME" : "Stillbirth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237364002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40406337, + "CONCEPT_NAME" : "Stillbirth", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "206581002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4287409, + "CONCEPT_NAME" : "Stillbirth of immature female (500-999 gms.)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "68509000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4217655, + "CONCEPT_NAME" : "Stillbirth of immature fetus, sex undetermined (500-999 gms.)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72543004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4261819, + "CONCEPT_NAME" : "Stillbirth of immature male (500-999 gms.)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "35608009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4321563, + "CONCEPT_NAME" : "Stillbirth of mature female (2500 gms. or more)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "70112005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4301269, + "CONCEPT_NAME" : "Stillbirth of mature male (2500 gms. or more)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7860005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4103876, + "CONCEPT_NAME" : "Stillbirth of premature female (1000-2499 gms.)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "28996007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4300979, + "CONCEPT_NAME" : "Stillbirth of premature male (1000-2499 gms.)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "77814006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443463, + "CONCEPT_NAME" : "Stillbirth - unknown if fetal death intrapartum or prior to labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "408796008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4306288, + "CONCEPT_NAME" : "Term birth of fraternal twins, both stillborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "83121003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4192641, + "CONCEPT_NAME" : "Term birth of identical twins, both stillborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "75697004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4203001, + "CONCEPT_NAME" : "Term birth of stillborn twins", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "52942000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015163, + "CONCEPT_NAME" : "Triplets - three stillborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169834003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015162, + "CONCEPT_NAME" : "Twins - both stillborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169830007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 61, + "name" : "Pregnancy markers", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4198718, + "CONCEPT_NAME" : "120 minute blood glucose measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313545000", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4209254, + "CONCEPT_NAME" : "120 minute plasma glucose measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313627007", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4197835, + "CONCEPT_NAME" : "120 minute serum glucose measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313631001", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4193852, + "CONCEPT_NAME" : "150 minute blood glucose measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313624000", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4198731, + "CONCEPT_NAME" : "150 minute plasma glucose measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313628002", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4195213, + "CONCEPT_NAME" : "150 minute serum glucose measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313810002", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44805579, + "CONCEPT_NAME" : "180 minute plasma glucose measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "754261000000106", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3016704, + "CONCEPT_NAME" : "1 minute Apgar Score", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "9272-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Clinical Observation" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4234906, + "CONCEPT_NAME" : "240 minute plasma glucose measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "440576000", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4258832, + "CONCEPT_NAME" : "300 minute plasma glucose measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "440620002", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4198733, + "CONCEPT_NAME" : "30 minute blood glucose measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313637002", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4193853, + "CONCEPT_NAME" : "30 minute plasma glucose measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313625004", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4198732, + "CONCEPT_NAME" : "30 minute serum glucose measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313629005", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3004221, + "CONCEPT_NAME" : "5 minute Apgar Score", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "9274-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Clinical Observation" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4209122, + "CONCEPT_NAME" : "60 minute blood glucose measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313474007", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4193854, + "CONCEPT_NAME" : "60 minute plasma glucose measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313626003", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4193855, + "CONCEPT_NAME" : "60 minute serum glucose measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313630000", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4198719, + "CONCEPT_NAME" : "90 minute blood glucose measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313546004", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4198742, + "CONCEPT_NAME" : "90 minute plasma glucose measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313697000", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4198743, + "CONCEPT_NAME" : "90 minute serum glucose measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313698005", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4130321, + "CONCEPT_NAME" : "Abdominal delivery for shoulder dystocia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "236989008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4200678, + "CONCEPT_NAME" : "Abdominal hysterectomy and left salpingo-oophorectomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "302191001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4059050, + "CONCEPT_NAME" : "Abdominal obstetric X-ray", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "168759005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4198125, + "CONCEPT_NAME" : "Abdominal pain in early pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "314041007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4149783, + "CONCEPT_NAME" : "Abdominal pain in pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "309737007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 193525, + "CONCEPT_NAME" : "Abdominal pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "82661006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442631, + "CONCEPT_NAME" : "Abnormal cerebral signs in the newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63814006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 314478, + "CONCEPT_NAME" : "Abnormal fetal heart beat first noted during labor AND/OR delivery in liveborn infant", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "22271007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 312733, + "CONCEPT_NAME" : "Abnormal fetal heart beat, not clear if noted before OR after onset of labor in liveborn infant", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "231958008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 137974, + "CONCEPT_NAME" : "Abnormal fetal heart beat noted before labor in liveborn infant", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "655007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 314099, + "CONCEPT_NAME" : "Abnormal fetal heart rate", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "312668007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437688, + "CONCEPT_NAME" : "Abnormal findings on antenatal screening of mother", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199732004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438557, + "CONCEPT_NAME" : "Abnormal glucose level", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "102660008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440216, + "CONCEPT_NAME" : "Abnormal glucose tolerance test", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "274858002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439402, + "CONCEPT_NAME" : "Abnormal glucose tolerance test during pregnancy - baby delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "372055003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439403, + "CONCEPT_NAME" : "Abnormal glucose tolerance test during pregnancy - baby not yet delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "372054004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4162865, + "CONCEPT_NAME" : "Abnormal glucose tolerance test during pregnancy, childbirth and the puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "372046001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4155282, + "CONCEPT_NAME" : "Abnormal glucose tolerance test in the puerperium - baby delivered during current episode of care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "372051007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4162866, + "CONCEPT_NAME" : "Abnormal glucose tolerance test in the puerperium - baby delivered during previous episode of care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "372050008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4306804, + "CONCEPT_NAME" : "Abnormal head circumference in relation to growth / age standard", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "422695002", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437342, + "CONCEPT_NAME" : "Abnormality of forces of labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "35882009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 197050, + "CONCEPT_NAME" : "Abnormality of organs AND/OR soft tissues of pelvis affecting pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1639007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40480490, + "CONCEPT_NAME" : "Abnormal presence of alpha-fetoprotein", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "441772009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4136368, + "CONCEPT_NAME" : "Abnormal presence of glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "31649001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 436477, + "CONCEPT_NAME" : "Abnormal products of conception", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "39804004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3003694, + "CONCEPT_NAME" : "ABO and Rh group [Type] in Blood", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "882-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444365, + "CONCEPT_NAME" : "Abortion", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "70317007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42597053, + "CONCEPT_NAME" : "Abortion associated with Equine arteritis virus infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "318481000009103", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED Veterinary", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42597052, + "CONCEPT_NAME" : "Abortion associated with Equine herpesvirus infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "318471000009100", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED Veterinary", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42597051, + "CONCEPT_NAME" : "Abortion associated with umbilical torsion", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "318461000009109", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED Veterinary", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 201076, + "CONCEPT_NAME" : "Abortion complicated by damage to pelvic organs AND/OR tissues", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "373908001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 197612, + "CONCEPT_NAME" : "Abortion complicated by delayed AND/OR excessive hemorrhage", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "111426003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438812, + "CONCEPT_NAME" : "Abortion complicated by genital-pelvic infection", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "373891000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 195319, + "CONCEPT_NAME" : "Abortion complicated by renal failure", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "10123006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42599848, + "CONCEPT_NAME" : "Abortion due to Brucella canis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "360051000009101", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED Veterinary", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2721147, + "CONCEPT_NAME" : "ABORTION FOR MATERNAL INDICATION", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "S2262", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2784560, + "CONCEPT_NAME" : "Abortion of Products of Conception, Abortifacient, Via Natural or Artificial Opening", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10A07ZX", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD10PCS", + "CONCEPT_CLASS_ID" : "ICD10PCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2784559, + "CONCEPT_NAME" : "Abortion of Products of Conception, Laminaria, Via Natural or Artificial Opening", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10A07ZW", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD10PCS", + "CONCEPT_CLASS_ID" : "ICD10PCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2784555, + "CONCEPT_NAME" : "Abortion of Products of Conception, Open Approach", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10A00ZZ", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD10PCS", + "CONCEPT_CLASS_ID" : "ICD10PCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2784556, + "CONCEPT_NAME" : "Abortion of Products of Conception, Percutaneous Approach", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10A03ZZ", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD10PCS", + "CONCEPT_CLASS_ID" : "ICD10PCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2784557, + "CONCEPT_NAME" : "Abortion of Products of Conception, Percutaneous Endoscopic Approach", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10A04ZZ", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD10PCS", + "CONCEPT_CLASS_ID" : "ICD10PCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2784558, + "CONCEPT_NAME" : "Abortion of Products of Conception, Vacuum, Via Natural or Artificial Opening", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10A07Z6", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD10PCS", + "CONCEPT_CLASS_ID" : "ICD10PCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2784561, + "CONCEPT_NAME" : "Abortion of Products of Conception, Via Natural or Artificial Opening", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10A07ZZ", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD10PCS", + "CONCEPT_CLASS_ID" : "ICD10PCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2784562, + "CONCEPT_NAME" : "Abortion of Products of Conception, Via Natural or Artificial Opening Endoscopic", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10A08ZZ", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD10PCS", + "CONCEPT_CLASS_ID" : "ICD10PCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440776, + "CONCEPT_NAME" : "Abortion with complication", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "371332008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440454, + "CONCEPT_NAME" : "Abortion without complication", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "51830007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4050827, + "CONCEPT_NAME" : "Abrasion of anus, infected", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "211060000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4052366, + "CONCEPT_NAME" : "Abrasion of penis, infected", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "211064009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4052365, + "CONCEPT_NAME" : "Abrasion of perineum, infected", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "211063003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4050829, + "CONCEPT_NAME" : "Abrasion of vulva, infected", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "211066006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36713476, + "CONCEPT_NAME" : "Abscess of breast associated with childbirth with attachment difficulty", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "717817006", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4262542, + "CONCEPT_NAME" : "Abscess of nipple associated with childbirth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46273003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3034139, + "CONCEPT_NAME" : "Acetylcholinesterase [Enzymatic activity/volume] in Amniotic fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1708-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4173330, + "CONCEPT_NAME" : "Acquired subglottic stenosis in newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276635001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4034308, + "CONCEPT_NAME" : "Acromion presentation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "23954006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 761075, + "CONCEPT_NAME" : "Acute idiopathic neonatal pulmonary hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "142221000119105", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 196490, + "CONCEPT_NAME" : "Acute renal failure following labor AND/OR delivery", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "13010001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4215648, + "CONCEPT_NAME" : "Acute renal failure following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "71909003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45772947, + "CONCEPT_NAME" : "Acute respiratory distress in newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "707540007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45768986, + "CONCEPT_NAME" : "Acute respiratory distress in newborn with surfactant disorder", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "707541006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37397030, + "CONCEPT_NAME" : "Adult onset non-insulinoma persistent hyperinsulinemic hypoglycemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "717044000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441092, + "CONCEPT_NAME" : "Advanced maternal age gravida", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "416413003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4312095, + "CONCEPT_NAME" : "Afibrinogenemia following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "85796009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4129840, + "CONCEPT_NAME" : "Afibrinogenemia - postpartum", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237337003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061810, + "CONCEPT_NAME" : "AFP - blood sent", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169688006", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061809, + "CONCEPT_NAME" : "AFP blood test not wanted", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169687001", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3655216, + "CONCEPT_NAME" : "Air embolism due to and following ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "860689000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3655215, + "CONCEPT_NAME" : "Air embolism due to and following molar pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "860688008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4030070, + "CONCEPT_NAME" : "Alcohol-induced hypoglycemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237641009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4029428, + "CONCEPT_NAME" : "Alimentary hyperinsulinemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237647008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4029425, + "CONCEPT_NAME" : "Alimentary hypoglycemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237639008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040768, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein interpretation in Amniotic fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "41273-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3038294, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein interpretation in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "41274-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3010296, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Mass/volume] in Amniotic fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1832-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42529192, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Mass/volume] in Amniotic fluid by Immunoassay", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "83075-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3027634, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Mass/volume] in Cerebral spinal fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1833-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757479, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Mass/volume] in Cord blood", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54348-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3032506, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Mass/volume] in Peritoneal fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "49761-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3033080, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Mass/volume] in Pleural fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "49762-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3009306, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Mass/volume] in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1834-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42529190, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Mass/volume] in Serum or Plasma by Immunoassay", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "83073-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4197249, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80152001", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4099476, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein measurement, amniotic fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "27220002", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014768, + "CONCEPT_NAME" : "Alpha-1-fetoprotein measurement, serum", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "104404005", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3012116, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Moles/volume] in Amniotic fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15019-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3024289, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Moles/volume] in Pleural fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "19173-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3021607, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Moles/volume] in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "19177-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3046154, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Multiple of the median] adjusted for diabetes in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43998-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3044142, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Multiple of the median] adjusted for diabetes+weight in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43996-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3030180, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Multiple of the median] adjusted for multiple gestations in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "50610-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3046979, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Multiple of the median] adjusted for weight in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43997-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3022269, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Multiple of the median] adjusted in Amniotic fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "29253-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3016670, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Multiple of the median] adjusted in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "23811-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3004943, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Multiple of the median] in Amniotic fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "29595-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3024370, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Multiple of the median] in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "20450-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40761829, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein panel - Amniotic fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "58735-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3044397, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Presence] in Amniotic fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43798-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3025053, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Presence] in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "31993-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3027505, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Units/volume] in Amniotic fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "19171-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42529191, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Units/volume] in Amniotic fluid by Immunoassay", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "83074-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3045958, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Units/volume] in Body fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "44910-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40762626, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Units/volume] in Cerebral spinal fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59564-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3028331, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Units/volume] in Pleural fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "19172-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42529189, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Units/volume] in Serum or Plasma by Immunoassay", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "83072-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2212200, + "CONCEPT_NAME" : "Alpha-fetoprotein (AFP); AFP-L3 fraction isoform and total AFP (including ratio)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "82107", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2212199, + "CONCEPT_NAME" : "Alpha-fetoprotein (AFP); amniotic fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "82106", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2212198, + "CONCEPT_NAME" : "Alpha-fetoprotein (AFP); serum", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "82105", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4147940, + "CONCEPT_NAME" : "Alpha-fetoprotein blood test", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "268468007", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4269851, + "CONCEPT_NAME" : "Alpha-fetoprotein level - finding", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "365802003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4041177, + "CONCEPT_NAME" : "Alpha-fetoprotein low", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "166562001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44807243, + "CONCEPT_NAME" : "Alpha fetoprotein multiple of median measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "816011000000101", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4042555, + "CONCEPT_NAME" : "Alpha-fetoprotein normal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "166558007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4059689, + "CONCEPT_NAME" : "Alpha-fetoprotein radioimmunoassay", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169188005", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4042557, + "CONCEPT_NAME" : "Alpha-fetoprotein raised", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "166561008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4078285, + "CONCEPT_NAME" : "Alpha-fetoprotein test - antenatal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "275833003", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4207608, + "CONCEPT_NAME" : "Ambulatory continuous glucose monitoring of interstitial tissue fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "439926003", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2314093, + "CONCEPT_NAME" : "Ambulatory continuous glucose monitoring of interstitial tissue fluid via a subcutaneous sensor for a minimum of 72 hours; analysis, interpretation and report", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "95251", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2314092, + "CONCEPT_NAME" : "Ambulatory continuous glucose monitoring of interstitial tissue fluid via a subcutaneous sensor for a minimum of 72 hours; physician or other qualified health care professional (office) provided equipment, sensor placement, hook-up, calibration of monitor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "95250", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4208334, + "CONCEPT_NAME" : "Ambulatory continuous glucose monitoring of interstitial tissue fluid with sensor placement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "440404000", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443800, + "CONCEPT_NAME" : "Amenorrhea", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14302001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4184965, + "CONCEPT_NAME" : "Amenorrhea associated with obesity", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "413487000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4146045, + "CONCEPT_NAME" : "Amniocentesis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "34536000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110279, + "CONCEPT_NAME" : "Amniocentesis; diagnostic", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4140734, + "CONCEPT_NAME" : "Amniocentesis for possible chromosomal abnormality", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "427230007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110280, + "CONCEPT_NAME" : "Amniocentesis; therapeutic amniotic fluid reduction (includes ultrasound guidance)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004824, + "CONCEPT_NAME" : "Amnioinfusion", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "75.37", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437936, + "CONCEPT_NAME" : "Amniotic cavity infection - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199677008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435880, + "CONCEPT_NAME" : "Amniotic cavity infection with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199678003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4057158, + "CONCEPT_NAME" : "Amniotic fluid AFP equivocal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "168108003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4269860, + "CONCEPT_NAME" : "Amniotic fluid AFP - finding", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "365827005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4231903, + "CONCEPT_NAME" : "Amniotic fluid analysis for hemolytic disease of the newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "359878007", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435616, + "CONCEPT_NAME" : "Amniotic fluid embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "17263003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3655206, + "CONCEPT_NAME" : "Amniotic fluid embolism due to and following ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "860677002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3655205, + "CONCEPT_NAME" : "Amniotic fluid embolism due to and following molar pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "860676006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4057149, + "CONCEPT_NAME" : "Amniotic fluid examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "168083008", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433880, + "CONCEPT_NAME" : "Amniotic fluid examination abnormal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "410037001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4154997, + "CONCEPT_NAME" : "Amniotic fluid leaking", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "371380006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441959, + "CONCEPT_NAME" : "Amniotic fluid -meconium stain", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "168092006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 436768, + "CONCEPT_NAME" : "Amniotic fluid pulmonary embolism with antenatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200296007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437948, + "CONCEPT_NAME" : "Amniotic fluid pulmonary embolism with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200297003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2212210, + "CONCEPT_NAME" : "Amniotic fluid scan (spectrophotometric)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "82143", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4248954, + "CONCEPT_NAME" : "Amniotomy at delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "408817009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4173032, + "CONCEPT_NAME" : "Anal margin hematoma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276465001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4170460, + "CONCEPT_NAME" : "Anal sphincter tear", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "275431006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432968, + "CONCEPT_NAME" : "Anemia during pregnancy - baby delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199244000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432967, + "CONCEPT_NAME" : "Anemia during pregnancy - baby not yet delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199246003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4209094, + "CONCEPT_NAME" : "Anemia during the puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313291009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434701, + "CONCEPT_NAME" : "Anemia in mother complicating pregnancy, childbirth AND/OR puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45828008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442923, + "CONCEPT_NAME" : "Anemia in the puerperium - baby delivered during current episode of care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199245004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442922, + "CONCEPT_NAME" : "Anemia in the puerperium - baby delivered during previous episode of care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199247007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4099889, + "CONCEPT_NAME" : "Anemia of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "27342004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432452, + "CONCEPT_NAME" : "Anemia of prematurity", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "47100003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42739743, + "CONCEPT_NAME" : "Anesthesia for abortion procedures (Deprecated)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "01964", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2101814, + "CONCEPT_NAME" : "Anesthesia for cesarean delivery following neuraxial labor analgesia/anesthesia (List separately in addition to code for primary procedure performed)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "01968", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2101807, + "CONCEPT_NAME" : "Anesthesia for cesarean delivery only", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "01961", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2101809, + "CONCEPT_NAME" : "Anesthesia for cesarean hysterectomy without any labor analgesia/anesthesia care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "01963", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2101804, + "CONCEPT_NAME" : "Anesthesia for external cephalic version procedure", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "01958", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2101811, + "CONCEPT_NAME" : "Anesthesia for incomplete or missed abortion procedures", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "01965", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2101812, + "CONCEPT_NAME" : "Anesthesia for induced abortion procedures", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "01966", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2100998, + "CONCEPT_NAME" : "Anesthesia for intraperitoneal procedures in lower abdomen including laparoscopy; amniocentesis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "00842", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2101808, + "CONCEPT_NAME" : "Anesthesia for urgent hysterectomy following delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "01962", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2101806, + "CONCEPT_NAME" : "Anesthesia for vaginal delivery only", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "01960", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4118417, + "CONCEPT_NAME" : "Anomalies of umbilicus", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "205840009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40480713, + "CONCEPT_NAME" : "Anovulatory amenorrhea", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "444769001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4149405, + "CONCEPT_NAME" : "Anoxia, in liveborn infant", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "30828007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015296, + "CONCEPT_NAME" : "Antenatal 12 weeks examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169712008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014149, + "CONCEPT_NAME" : "Antenatal 16 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169713003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014150, + "CONCEPT_NAME" : "Antenatal 20 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169714009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808979, + "CONCEPT_NAME" : "Antenatal 22 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861281000000109", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015141, + "CONCEPT_NAME" : "Antenatal 24 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169715005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808980, + "CONCEPT_NAME" : "Antenatal 25 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861301000000105", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014433, + "CONCEPT_NAME" : "Antenatal 28 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169716006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014151, + "CONCEPT_NAME" : "Antenatal 30 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169717002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808981, + "CONCEPT_NAME" : "Antenatal 31 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861321000000101", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015297, + "CONCEPT_NAME" : "Antenatal 32 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169718007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015298, + "CONCEPT_NAME" : "Antenatal 34 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169719004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014434, + "CONCEPT_NAME" : "Antenatal 35 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169720005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015299, + "CONCEPT_NAME" : "Antenatal 36 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169721009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015142, + "CONCEPT_NAME" : "Antenatal 37 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169722002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014152, + "CONCEPT_NAME" : "Antenatal 38 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169723007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015300, + "CONCEPT_NAME" : "Antenatal 39 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169724001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015301, + "CONCEPT_NAME" : "Antenatal 40 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169725000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015302, + "CONCEPT_NAME" : "Antenatal 41 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169726004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014435, + "CONCEPT_NAME" : "Antenatal 42 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169727008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061154, + "CONCEPT_NAME" : "Antenatal amniocentesis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169646002", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060259, + "CONCEPT_NAME" : "Antenatal amniocentesis - abnormal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169653006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061530, + "CONCEPT_NAME" : "Antenatal amniocentesis - normal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169652001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014319, + "CONCEPT_NAME" : "Antenatal blood group screening", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169703006", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015139, + "CONCEPT_NAME" : "Antenatal blood group screening done", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169705004", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4207466, + "CONCEPT_NAME" : "Antenatal blood tests", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "312404004", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014148, + "CONCEPT_NAME" : "Antenatal booking examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169711001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4173786, + "CONCEPT_NAME" : "Antenatal care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "424525001", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061786, + "CONCEPT_NAME" : "Antenatal care categorized by gravida number", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169572002", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060243, + "CONCEPT_NAME" : "Antenatal care: elderly primiparous", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169588002", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530904, + "CONCEPT_NAME" : "Antenatal care for woman with history of recurrent miscarriage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609442008", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061437, + "CONCEPT_NAME" : "Antenatal care from consultant", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169615001", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060251, + "CONCEPT_NAME" : "Antenatal care from general practitioner", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169614002", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439656, + "CONCEPT_NAME" : "Antenatal care: grand multiparity", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169581008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060246, + "CONCEPT_NAME" : "Antenatal care: history of child abuse", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169595006", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060097, + "CONCEPT_NAME" : "Antenatal care: history of infertility", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169589005", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060242, + "CONCEPT_NAME" : "Antenatal care: history of perinatal death", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169583006", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060241, + "CONCEPT_NAME" : "Antenatal care: history of stillbirth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169582001", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4059989, + "CONCEPT_NAME" : "Antenatal care: history of trophoblastic disease", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169585004", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060247, + "CONCEPT_NAME" : "Antenatal care: medical risk", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169597003", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4147564, + "CONCEPT_NAME" : "Antenatal care midwifery led", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "310248000", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060239, + "CONCEPT_NAME" : "Antenatal care: multip", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169576004", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061433, + "CONCEPT_NAME" : "Antenatal care: multiparous, older than 35 years", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169605007", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061426, + "CONCEPT_NAME" : "Antenatal care: obstetric risk", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169578003", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36713461, + "CONCEPT_NAME" : "Antenatal care of elderly primigravida", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "717797001", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061425, + "CONCEPT_NAME" : "Antenatal care of second pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169574001", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061787, + "CONCEPT_NAME" : "Antenatal care of third pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169575000", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060098, + "CONCEPT_NAME" : "Antenatal care: poor home conditions", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169592009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4059988, + "CONCEPT_NAME" : "Antenatal care: poor obstetric history", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169584000", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061789, + "CONCEPT_NAME" : "Antenatal care: precious pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169587007", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061424, + "CONCEPT_NAME" : "Antenatal care: primigravida", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169573007", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060248, + "CONCEPT_NAME" : "Antenatal care: primiparous, older than 30 years", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169604006", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060101, + "CONCEPT_NAME" : "Antenatal care: primiparous, under 17 years", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169603000", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061793, + "CONCEPT_NAME" : "Antenatal care provider", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169613008", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060240, + "CONCEPT_NAME" : "Antenatal care: recurrent aborter", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169580009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060244, + "CONCEPT_NAME" : "Antenatal care: social risk", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169591002", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4059987, + "CONCEPT_NAME" : "Antenatal care: uncertain dates", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169579006", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4190427, + "CONCEPT_NAME" : "Antenatal clinic", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "394574007", + "DOMAIN_ID" : "Visit", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Location" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4147941, + "CONCEPT_NAME" : "Antenatal data", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "268469004", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Observable Entity" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441649, + "CONCEPT_NAME" : "Antenatal deep vein thrombosis - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200232006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4047845, + "CONCEPT_NAME" : "Antenatal education", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "135892000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4084186, + "CONCEPT_NAME" : "Antenatal exercises", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "183329005", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4170305, + "CONCEPT_NAME" : "Antenatal/postnatal care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "275305005", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4062361, + "CONCEPT_NAME" : "Antenatal relaxation class", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "171066005", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060266, + "CONCEPT_NAME" : "Antenatal RhD antibody screening", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169673001", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4079835, + "CONCEPT_NAME" : "Antenatal risk factors", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276445008", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4152443, + "CONCEPT_NAME" : "Antenatal scan unable to confirm pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "370381000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4087235, + "CONCEPT_NAME" : "Antenatal screening", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "243787009", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37310544, + "CONCEPT_NAME" : "Antenatal screening blood test for Down's, Edwards' and Patau's syndromes", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "747731000000104", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37310338, + "CONCEPT_NAME" : "Antenatal screening blood test for Edwards'and Patau's syndromes", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1128891000000103", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36713463, + "CONCEPT_NAME" : "Antenatal screening for fetal growth retardation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "717801000", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4191703, + "CONCEPT_NAME" : "Antenatal screening for human immunodeficiency virus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "390786002", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36713464, + "CONCEPT_NAME" : "Antenatal screening for isoimmunization", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "717802007", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36713462, + "CONCEPT_NAME" : "Antenatal screening for malformation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "717800004", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37016744, + "CONCEPT_NAME" : "Antenatal screening for viral hepatitis type B", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "712853001", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 35609139, + "CONCEPT_NAME" : "Antenatal screening quadruple test", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1079091000000109", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061521, + "CONCEPT_NAME" : "Antenatal - shared care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169616000", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014320, + "CONCEPT_NAME" : "Antenatal sickle cell screening", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169707007", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015137, + "CONCEPT_NAME" : "Antenatal syphilis screen-blood sent", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169700009", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015294, + "CONCEPT_NAME" : "Antenatal syphilis screening", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169698000", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37016760, + "CONCEPT_NAME" : "Antenatal thalassemia screening", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "712871008", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4152444, + "CONCEPT_NAME" : "Antenatal ultrasound confirms ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "370382007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4152445, + "CONCEPT_NAME" : "Antenatal ultrasound confirms intrauterine pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "370383002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061131, + "CONCEPT_NAME" : "Antenatal ultrasound result received", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169231003", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Observable Entity" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061803, + "CONCEPT_NAME" : "Antenatal ultrasound scan 4-8 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169668007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061157, + "CONCEPT_NAME" : "Antenatal ultrasound scan abnormal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169665005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061534, + "CONCEPT_NAME" : "Antenatal ultrasound scan at 17-22 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169670003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4141415, + "CONCEPT_NAME" : "Antenatal ultrasound scan at 22-40 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "307813007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060265, + "CONCEPT_NAME" : "Antenatal ultrasound scan at 9-16 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169669004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060263, + "CONCEPT_NAME" : "Antenatal ultrasound scan awaited", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169662008", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4143115, + "CONCEPT_NAME" : "Antenatal ultrasound scan for possible abnormality", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "425551008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060264, + "CONCEPT_NAME" : "Antenatal ultrasound scan normal and appropriate for dates", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169663003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061802, + "CONCEPT_NAME" : "Antenatal ultrasound scan status", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169657007", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060262, + "CONCEPT_NAME" : "Antenatal ultrasound scan wanted", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169661001", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4081196, + "CONCEPT_NAME" : "Antepartum", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276986009", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Qualifier Value" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110312, + "CONCEPT_NAME" : "Antepartum care only; 4-6 visits", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59425", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110313, + "CONCEPT_NAME" : "Antepartum care only; 7 or more visits", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59426", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435887, + "CONCEPT_NAME" : "Antepartum deep vein thrombosis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "49956009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4079969, + "CONCEPT_NAME" : "Antepartum fetal asphyxia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276642001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4129846, + "CONCEPT_NAME" : "Antepartum fetal death", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237361005", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Event" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434089, + "CONCEPT_NAME" : "Antepartum hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "34842007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4143074, + "CONCEPT_NAME" : "Antepartum hemorrhage, abruptio placentae and placenta previa", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "267197003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438489, + "CONCEPT_NAME" : "Antepartum hemorrhage associated with coagulation defect", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "267199000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443133, + "CONCEPT_NAME" : "Antepartum hemorrhage with coagulation defect - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198917009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438203, + "CONCEPT_NAME" : "Antepartum hemorrhage with coagulation defect - not delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198918004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37017027, + "CONCEPT_NAME" : "Antepartum stillbirth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "713202001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4129039, + "CONCEPT_NAME" : "Anti-D antibodies", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "237301008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2108689, + "CONCEPT_NAME" : "Anti-D immune globulin received between 26 and 30 weeks gestation (Pre-Cr)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "4178F", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061531, + "CONCEPT_NAME" : "A/N U/S scan offered", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "169659005", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014312, + "CONCEPT_NAME" : "Apgar at 10 minutes = 1", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169924008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4016469, + "CONCEPT_NAME" : "Apgar at 10 minutes = 4", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169927001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014579, + "CONCEPT_NAME" : "Apgar at 10 minutes = 6", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169929003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4016470, + "CONCEPT_NAME" : "Apgar at 10 minutes = 7", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169930008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4269556, + "CONCEPT_NAME" : "Apgar at 10 minutes - finding", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "364743002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014304, + "CONCEPT_NAME" : "Apgar at 1 minute", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169895004", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Observable Entity" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4016052, + "CONCEPT_NAME" : "Apgar at 1 minute = 8", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169905005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015431, + "CONCEPT_NAME" : "Apgar at 1 minute = 9", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169906006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4269555, + "CONCEPT_NAME" : "Apgar at 1 minute - finding", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "364741000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4016464, + "CONCEPT_NAME" : "Apgar at 5 minutes", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169909004", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Observable Entity" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4016467, + "CONCEPT_NAME" : "Apgar at 5 minutes = 10", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169920004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4016466, + "CONCEPT_NAME" : "Apgar at 5 minutes = 9", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169919005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4266765, + "CONCEPT_NAME" : "Apgar at 5 minutes - finding", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "364742007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4167905, + "CONCEPT_NAME" : "Apgar normal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "275307002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4299090, + "CONCEPT_NAME" : "Apgar score 0", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "77714001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4183596, + "CONCEPT_NAME" : "Apgar score 1", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43610007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4170878, + "CONCEPT_NAME" : "Apgar score 10", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "49544001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4219591, + "CONCEPT_NAME" : "Apgar score 2", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "39910003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4132308, + "CONCEPT_NAME" : "Apgar score 3", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26635001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4244236, + "CONCEPT_NAME" : "Apgar score 4", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "38107004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4088036, + "CONCEPT_NAME" : "Apgar score 5", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "24388001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4011798, + "CONCEPT_NAME" : "Apgar score 6", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10318004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4028032, + "CONCEPT_NAME" : "Apgar score 7", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13323003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4049582, + "CONCEPT_NAME" : "Apgar score 8", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12431004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4274664, + "CONCEPT_NAME" : "Apgar score 9", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64198003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 318247, + "CONCEPT_NAME" : "Apnea in the newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13094009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36716744, + "CONCEPT_NAME" : "Apnea of newborn due to neurological injury", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "722915009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4079848, + "CONCEPT_NAME" : "Apnea of prematurity", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276544005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3006511, + "CONCEPT_NAME" : "Appearance of Amniotic fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1887-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4080668, + "CONCEPT_NAME" : "Arrested active phase of labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "24699006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004542, + "CONCEPT_NAME" : "Artificial insemination", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "69.92", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4239302, + "CONCEPT_NAME" : "Artificial insemination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "58533008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4130186, + "CONCEPT_NAME" : "Artificial insemination by donor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "236896006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4127094, + "CONCEPT_NAME" : "Artificial insemination by husband", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "236895005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4187819, + "CONCEPT_NAME" : "Artificial insemination, heterologous", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46249006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4280831, + "CONCEPT_NAME" : "Artificial insemination, homologous", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "66601000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110196, + "CONCEPT_NAME" : "Artificial insemination; intra-cervical", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "58321", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110197, + "CONCEPT_NAME" : "Artificial insemination; intra-uterine", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "58322", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4238828, + "CONCEPT_NAME" : "Artificial insemination with sperm washing and capacitation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57233006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4131376, + "CONCEPT_NAME" : "Ascitic fluid glucose measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "413059003", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439136, + "CONCEPT_NAME" : "Asphyxia, in liveborn infant", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "28314004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004526, + "CONCEPT_NAME" : "Aspiration curettage following delivery or abortion", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "69.52", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004525, + "CONCEPT_NAME" : "Aspiration curettage of uterus for termination of pregnancy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "69.51", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4212941, + "CONCEPT_NAME" : "Aspiration curettage of uterus for termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "391897002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45763635, + "CONCEPT_NAME" : "Aspiration of ectopic pregnancy from cornu of fallopian tube", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "700073007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4300368, + "CONCEPT_NAME" : "Aspiration of ectopic pregnancy from fallopian tube", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "387617009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4153454, + "CONCEPT_NAME" : "Aspiration of liquor or mucus in newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "268832006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4075168, + "CONCEPT_NAME" : "Assisted breech delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177158008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2213350, + "CONCEPT_NAME" : "Assisted embryo hatching, microtechniques (any method)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "89253", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4272937, + "CONCEPT_NAME" : "Assisted fertilization", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63487001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2721246, + "CONCEPT_NAME" : "Assisted oocyte fertilization, case rate", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "S4022", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42739500, + "CONCEPT_NAME" : "Assisted oocyte fertilization, microtechnique (any method) (Deprecated)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "89252", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2213363, + "CONCEPT_NAME" : "Assisted oocyte fertilization, microtechnique; greater than 10 oocytes", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "89281", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2213362, + "CONCEPT_NAME" : "Assisted oocyte fertilization, microtechnique; less than or equal to 10 oocytes", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "89280", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 80156, + "CONCEPT_NAME" : "Asymptomatic bacteriuria in pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "31563000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 76761, + "CONCEPT_NAME" : "Asymptomatic bacteriuria in pregnancy - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199099004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 73526, + "CONCEPT_NAME" : "Asymptomatic bacteriuria in pregnancy - delivered with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199100007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 196488, + "CONCEPT_NAME" : "Atonic postpartum hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "27214003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42739562, + "CONCEPT_NAME" : "Attendance at delivery (when requested by delivering physician) and initial stabilization of newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "99436", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2514559, + "CONCEPT_NAME" : "Attendance at delivery (when requested by the delivering physician or other qualified health care professional) and initial stabilization of newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "99464", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4173192, + "CONCEPT_NAME" : "Atypical isoimmunization of newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276580005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4215792, + "CONCEPT_NAME" : "Autoimmune hypoglycemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "71858003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37397031, + "CONCEPT_NAME" : "Autosomal dominant hyperinsulinism due to Kir6.2 deficiency", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "717045004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37397032, + "CONCEPT_NAME" : "Autosomal dominant hyperinsulinism due to SUR1 deficiency", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "717046003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37204850, + "CONCEPT_NAME" : "Autosomal recessive hyperinsulinism due to Kir6.2 deficiency", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "783768006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37204849, + "CONCEPT_NAME" : "Autosomal recessive hyperinsulinism due to SUR1 deficiency", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "783767001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4149455, + "CONCEPT_NAME" : "Baby birth weight 2 to 2.5 kilogram", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "310538001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014461, + "CONCEPT_NAME" : "Baby birth weight equal to 50 percent to 74 percent (3450-3749g)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169864006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4151169, + "CONCEPT_NAME" : "Baby birth weight less than 751gm", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "310491007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015275, + "CONCEPT_NAME" : "Baby extremely premature 28-32 weeks", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "169851005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4078138, + "CONCEPT_NAME" : "Baby normal at birth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "275735001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4149449, + "CONCEPT_NAME" : "Baby premature 24-26 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "310523002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37016220, + "CONCEPT_NAME" : "Baby premature 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15887011000119107", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37016221, + "CONCEPT_NAME" : "Baby premature 25 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15887051000119108", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4149457, + "CONCEPT_NAME" : "Baby premature 26-28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "310548004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37016222, + "CONCEPT_NAME" : "Baby premature 26 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15887091000119103", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37018684, + "CONCEPT_NAME" : "Baby premature 27 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15887131000119101", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 46271955, + "CONCEPT_NAME" : "Baby premature 28-32 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "710235005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37016216, + "CONCEPT_NAME" : "Baby premature 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15750001000119103", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37016217, + "CONCEPT_NAME" : "Baby premature 29 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15750041000119101", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37016218, + "CONCEPT_NAME" : "Baby premature 30 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15750081000119106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37016213, + "CONCEPT_NAME" : "Baby premature 31 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15635451000119107", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 46271814, + "CONCEPT_NAME" : "Baby premature 32-36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "710068006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37018683, + "CONCEPT_NAME" : "Baby premature 32 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15635411000119106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37018889, + "CONCEPT_NAME" : "Baby premature 33 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15635371000119105", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37016212, + "CONCEPT_NAME" : "Baby premature 34 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15635331000119107", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 762577, + "CONCEPT_NAME" : "Baby premature 35-36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429151000124100", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37016211, + "CONCEPT_NAME" : "Baby premature 35 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15635291000119101", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014299, + "CONCEPT_NAME" : "Baby premature 36-38 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169849006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4149451, + "CONCEPT_NAME" : "Baby premature 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "310530008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4150406, + "CONCEPT_NAME" : "Baby premature 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "310529003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4150405, + "CONCEPT_NAME" : "Baby premature 38 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "310528006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4150404, + "CONCEPT_NAME" : "Baby premature 39 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "310527001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015274, + "CONCEPT_NAME" : "Baby very premature 32 to 36 weeks", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "169850006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 133594, + "CONCEPT_NAME" : "Bacterial sepsis of newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276669000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4075169, + "CONCEPT_NAME" : "Barton forceps cephalic delivery with rotation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177167008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4147974, + "CONCEPT_NAME" : "Barton's forceps delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "30476003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42742559, + "CONCEPT_NAME" : "BCKDHB (branched-chain keto acid dehydrogenase E1, beta polypeptide) (eg, maple syrup urine disease) gene analysis, common variants (eg, R183P, G278S, E422X)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "81205", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42742561, + "CONCEPT_NAME" : "BCR/ABL1 (t(9;22)) (eg, chronic myelogenous leukemia) translocation analysis; minor breakpoint, qualitative or quantitative", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "81207", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4150338, + "CONCEPT_NAME" : "Bedtime blood glucose measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "271065008", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 321638, + "CONCEPT_NAME" : "Benign essential hypertension complicating pregnancy, childbirth and the puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198942000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 314103, + "CONCEPT_NAME" : "Benign essential hypertension complicating pregnancy, childbirth and the puerperium - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198944004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 320456, + "CONCEPT_NAME" : "Benign essential hypertension complicating pregnancy, childbirth and the puerperium - delivered with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198945003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 314423, + "CONCEPT_NAME" : "Benign essential hypertension complicating pregnancy, childbirth and the puerperium - not delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198946002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4062811, + "CONCEPT_NAME" : "Benign essential hypertension complicating pregnancy, childbirth and the puerperium with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198947006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 762706, + "CONCEPT_NAME" : "Benign familial neonatal seizures, non-refractory", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "430821000124108", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 762705, + "CONCEPT_NAME" : "Benign familial neonatal seizures, refractory", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "430811000124100", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4244383, + "CONCEPT_NAME" : "Benign neonatal convulsions", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "38281008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4043411, + "CONCEPT_NAME" : "Benign neonatal familial convulsions", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "230410004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4046209, + "CONCEPT_NAME" : "Benign non-familial neonatal convulsions", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "230411000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4028640, + "CONCEPT_NAME" : "Bicornuate uterus in pregnancy, childbirth and the puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237225003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4093429, + "CONCEPT_NAME" : "Bilateral complete salpingectomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25811000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004347, + "CONCEPT_NAME" : "Bilateral partial salpingectomy, not otherwise specified", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "66.63", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36684754, + "CONCEPT_NAME" : "Bilateral retinopathy of prematurity", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "343791000119101", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37207968, + "CONCEPT_NAME" : "Bilateral retinopathy of prematurity of eyes stage 0", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "343781000119104", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36684753, + "CONCEPT_NAME" : "Bilateral retinopathy of prematurity of eyes stage 1 - demarcation line", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "343771000119102", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36684752, + "CONCEPT_NAME" : "Bilateral retinopathy of prematurity of eyes stage 2 - intraretinal ridge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "343761000119108", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36684751, + "CONCEPT_NAME" : "Bilateral retinopathy of prematurity of eyes stage 3 - ridge with extraretinal fibrovascular proliferation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "343751000119106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4107080, + "CONCEPT_NAME" : "Bilateral salpingectomy with oophorectomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "29827000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36716760, + "CONCEPT_NAME" : "Bilious vomiting of newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "722933003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4028644, + "CONCEPT_NAME" : "Biochemical pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237243004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2213365, + "CONCEPT_NAME" : "Biopsy, oocyte polar body or embryo blastomere, microtechnique (for pre-implantation genetic diagnosis); greater than 5 embryos", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "89291", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2213364, + "CONCEPT_NAME" : "Biopsy, oocyte polar body or embryo blastomere, microtechnique (for pre-implantation genetic diagnosis); less than or equal to 5 embryos", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "89290", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4184996, + "CONCEPT_NAME" : "Birth asphyxia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "413654009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36716763, + "CONCEPT_NAME" : "Birth asphyxia co-occurrent with metabolic acidemia of cord blood", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "722937002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36716762, + "CONCEPT_NAME" : "Birth asphyxia with Apgar score 5 minute Apgar score 4-6", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "722936006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014291, + "CONCEPT_NAME" : "Birth detail", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169811007", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Observable Entity" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4016064, + "CONCEPT_NAME" : "Birth details not known", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169963001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015277, + "CONCEPT_NAME" : "Birth head circumference", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169876006", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Observable Entity" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015278, + "CONCEPT_NAME" : "Birth head circumference equal to 10th-24th centile", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169879004", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015282, + "CONCEPT_NAME" : "Birth head circumference equal to 90th-96th centile", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169883004", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42536751, + "CONCEPT_NAME" : "Birth injury of long bone", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "735745004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42536565, + "CONCEPT_NAME" : "Birth injury of thorax", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "735494000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4290881, + "CONCEPT_NAME" : "Birth injury to scalp", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "37384000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014465, + "CONCEPT_NAME" : "Birth length", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169886007", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Observable Entity" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015288, + "CONCEPT_NAME" : "Birth length=75th-89th centile", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169892001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015429, + "CONCEPT_NAME" : "Birth length equal to 10th-24th centile", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169889000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015287, + "CONCEPT_NAME" : "Birth length equal to 50th-74th centile", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169891008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014466, + "CONCEPT_NAME" : "Birth length equal to 90th-96th centile", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169893006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015284, + "CONCEPT_NAME" : "Birth length equal to third centile", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169887003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015270, + "CONCEPT_NAME" : "Birth of child", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169836001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40760833, + "CONCEPT_NAME" : "Birth plurality of Pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57722-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Clinical Observation" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435641, + "CONCEPT_NAME" : "Birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "56110009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4030440, + "CONCEPT_NAME" : "Birth trauma deafness", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "129631008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4149610, + "CONCEPT_NAME" : "Birth weight 999 g or less", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "310660006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4171114, + "CONCEPT_NAME" : "Birth weight abnormality", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276609002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4187520, + "CONCEPT_NAME" : "Birth weight finding", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "47340003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 46271901, + "CONCEPT_NAME" : "Birth weight less than 500g", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "710168009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40759177, + "CONCEPT_NAME" : "Birth weight - Reported", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "56056-5", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Clinical Observation" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4262136, + "CONCEPT_NAME" : "Blighted ovum", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "35999006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2721180, + "CONCEPT_NAME" : "BLOOD CHEMISTRY FOR FREE BETA HUMAN CHORIONIC GONADOTROPIN (HCG)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "S3618", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3655208, + "CONCEPT_NAME" : "Blood clot embolism due to and following ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "860679004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3655207, + "CONCEPT_NAME" : "Blood clot embolism due to and following molar pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "860678007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4028780, + "CONCEPT_NAME" : "Blood dyscrasia puerperal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237338008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4055674, + "CONCEPT_NAME" : "Blood glucose 0-1.4 mmol/L", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "166914001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4041701, + "CONCEPT_NAME" : "Blood glucose 10-13.9 mmol/L", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "166919006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4041702, + "CONCEPT_NAME" : "Blood glucose 14+ mmol/L", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "166923003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4041700, + "CONCEPT_NAME" : "Blood glucose 1.5-2.4 mmol/L", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "166915000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4055675, + "CONCEPT_NAME" : "Blood glucose 2.5-4.9 mmol/L", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "166916004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4055676, + "CONCEPT_NAME" : "Blood glucose 5-6.9 mmol/L", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "166917008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4042726, + "CONCEPT_NAME" : "Blood glucose 7-9.9 mmol/L", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "166918003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4042728, + "CONCEPT_NAME" : "Blood glucose abnormal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "166922008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4275337, + "CONCEPT_NAME" : "Blood glucose level - finding", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "365812005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4041697, + "CONCEPT_NAME" : "Blood glucose method", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "166888009", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4042727, + "CONCEPT_NAME" : "Blood glucose normal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "166921001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4135545, + "CONCEPT_NAME" : "Blood glucose series", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "412928005", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44784272, + "CONCEPT_NAME" : "Blood in vomit of newborn due to swallowed maternal blood", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "698317008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4042936, + "CONCEPT_NAME" : "Blood sent: alpha-fetoprotein", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "166557002", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4078281, + "CONCEPT_NAME" : "BM stix glucose measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "275810004", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4027371, + "CONCEPT_NAME" : "Bone AND/OR joint disorder in mother complicating pregnancy, childbirth AND/OR puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "128076000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4192676, + "CONCEPT_NAME" : "Born by cesarean section", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "394699000", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4260748, + "CONCEPT_NAME" : "Bottle fed at birth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "412728002", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42742564, + "CONCEPT_NAME" : "BRAF (B-Raf proto-oncogene, serine/threonine kinase) (eg, colon cancer, melanoma), gene analysis, V600 variant(s)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "81210", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4139126, + "CONCEPT_NAME" : "Braxton Hicks contractions", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "32644009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 73019, + "CONCEPT_NAME" : "Breast engorgement in newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "34831003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4066255, + "CONCEPT_NAME" : "Breast engorgement in pregnancy/puerperium/lact + p/n comp", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "200421009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443330, + "CONCEPT_NAME" : "Breast engorgement in pregnancy, the puerperium or lactation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200416006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 77624, + "CONCEPT_NAME" : "Breast engorgement in pregnancy, the puerperium or lactation - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200418007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 81086, + "CONCEPT_NAME" : "Breast engorgement in pregnancy, the puerperium or lactation - delivered with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200419004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 73282, + "CONCEPT_NAME" : "Breast engorgement in pregnancy, the puerperium or lactation with antenatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200420005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4260749, + "CONCEPT_NAME" : "Breast fed at birth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "412729005", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4054949, + "CONCEPT_NAME" : "Breastfeeding education", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "243094003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4066258, + "CONCEPT_NAME" : "Breastfeeding painful", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200430001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4345684, + "CONCEPT_NAME" : "Breastfeeding problem in the newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "240301009", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015144, + "CONCEPT_NAME" : "Breastfeeding started", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169745008", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40766616, + "CONCEPT_NAME" : "Breastfeeding status", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63895-7", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Clinical Observation" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4254219, + "CONCEPT_NAME" : "Breastfeeding support", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "408883002", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3662128, + "CONCEPT_NAME" : "Breech delivery following termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1147961000000102", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4213387, + "CONCEPT_NAME" : "Breech extraction", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "417121007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 436767, + "CONCEPT_NAME" : "Breech extraction - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200142000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4075165, + "CONCEPT_NAME" : "Breech extraction delivery with version", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177152009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 73267, + "CONCEPT_NAME" : "Breech malpresentation successfully converted to cephalic presentation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "17532001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 74698, + "CONCEPT_NAME" : "Breech presentation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6096002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 73537, + "CONCEPT_NAME" : "Breech presentation - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199354004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 76756, + "CONCEPT_NAME" : "Breech presentation with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199355003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4283942, + "CONCEPT_NAME" : "Bronchopulmonary dysplasia of newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "67569000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4122871, + "CONCEPT_NAME" : "Bruising of umbilical cord", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "289333007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3026267, + "CONCEPT_NAME" : "Calorie intake total 24 hour", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "9057-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Clinical Observation" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4120298, + "CONCEPT_NAME" : "Capillary blood glucose measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "302789003", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4031037, + "CONCEPT_NAME" : "Carbuncle of umbilicus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14268002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 317669, + "CONCEPT_NAME" : "Cardiac arrest in fetus OR newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "179924009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36713582, + "CONCEPT_NAME" : "Cardiac complication of anesthesia during the puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "717959008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4306192, + "CONCEPT_NAME" : "Cardiotochogram", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "387672006", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4261479, + "CONCEPT_NAME" : "Carneous mole", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "44979007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42742390, + "CONCEPT_NAME" : "Car seat/bed testing for airway integrity, for infants through 12 months of age, with continual clinical staff observation and continuous recording of pulse oximetry, heart rate and respiratory rate, with interpretation and report; 60 minutes", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "94780", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2108149, + "CONCEPT_NAME" : "Catheterization of umbilical vein for diagnosis or therapy, newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36510", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4065999, + "CONCEPT_NAME" : "Cellulitis and abscess of umbilicus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200660001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4208980, + "CONCEPT_NAME" : "Cellulitis of umbilicus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "56644003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4235752, + "CONCEPT_NAME" : "Central laceration during delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90532005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36716743, + "CONCEPT_NAME" : "Central neonatal apnea", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "722914008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36713583, + "CONCEPT_NAME" : "Central nervous system complication of anesthesia during the puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "717960003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 375016, + "CONCEPT_NAME" : "Central nervous system malformation in fetus affecting obstetrical care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1538006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4047852, + "CONCEPT_NAME" : "Cephalhematoma due to birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206200000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3662129, + "CONCEPT_NAME" : "Cephalic delivery following termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1147971000000109", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4071629, + "CONCEPT_NAME" : "Cephalic vaginal delivery with abnormal presentation of head at delivery without instrument", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177179008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110305, + "CONCEPT_NAME" : "Cerclage of cervix, during pregnancy; abdominal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59325", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110304, + "CONCEPT_NAME" : "Cerclage of cervix, during pregnancy; vaginal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59320", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4147060, + "CONCEPT_NAME" : "Cerebral anoxia following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "30243004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4243309, + "CONCEPT_NAME" : "Cerebral hemorrhage due to intrapartum anoxia or hypoxia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "38453000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 377980, + "CONCEPT_NAME" : "Cerebral irritability in newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "4952001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4171109, + "CONCEPT_NAME" : "Cerebral irritation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276596008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4171111, + "CONCEPT_NAME" : "Cerebral leukomalacia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276599001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4082313, + "CONCEPT_NAME" : "Cerebral ventricular distension", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "277476007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 316494, + "CONCEPT_NAME" : "Cerebrovascular disorder in the puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6594005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4321386, + "CONCEPT_NAME" : "Cervical cerclage suture present", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "69802008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4034148, + "CONCEPT_NAME" : "Cervical dystocia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237324001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 436740, + "CONCEPT_NAME" : "Cervical incompetence", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "17382005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441369, + "CONCEPT_NAME" : "Cervical incompetence - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199482005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435607, + "CONCEPT_NAME" : "Cervical incompetence - delivered with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199483000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437334, + "CONCEPT_NAME" : "Cervical incompetence with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199484006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440166, + "CONCEPT_NAME" : "Cervical incompetence with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199485007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44790204, + "CONCEPT_NAME" : "Cervical length scanning at 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "228531000000103", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 197043, + "CONCEPT_NAME" : "Cervical observation during pregnancy and labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "249020006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437942, + "CONCEPT_NAME" : "Cesarean delivery - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200146002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110316, + "CONCEPT_NAME" : "Cesarean delivery only", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59514", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110323, + "CONCEPT_NAME" : "Cesarean delivery only, following attempted vaginal delivery after previous cesarean delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59620", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110324, + "CONCEPT_NAME" : "Cesarean delivery only, following attempted vaginal delivery after previous cesarean delivery; including postpartum care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59622", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110317, + "CONCEPT_NAME" : "Cesarean delivery only; including postpartum care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59515", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4165077, + "CONCEPT_NAME" : "Cesarean hysterectomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "41059002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015701, + "CONCEPT_NAME" : "Cesarean section", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "11466000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4303297, + "CONCEPT_NAME" : "Cesarean section care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "386234001", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004789, + "CONCEPT_NAME" : "Cesarean section of other specified type", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "74.4", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "3-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4066111, + "CONCEPT_NAME" : "Cesarean section - pregnancy at term", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200147006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42872492, + "CONCEPT_NAME" : "Cesarean section through inverted T shaped incision of uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "450483001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42872493, + "CONCEPT_NAME" : "Cesarean section through J shaped incision of uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "450484007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 197344, + "CONCEPT_NAME" : "Cesarean wound disruption", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "396544001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 194113, + "CONCEPT_NAME" : "Cesarean wound disruption - delivered with postnatal complication", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "200337002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4065866, + "CONCEPT_NAME" : "Cesarean wound disruption with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200338007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40482050, + "CONCEPT_NAME" : "Chemical pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "445086005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4152029, + "CONCEPT_NAME" : "Childbirth examination - normal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "268484008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4253751, + "CONCEPT_NAME" : "Child examination - 2 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "410622001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40479783, + "CONCEPT_NAME" : "Child examination at birth with explicit context", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "444483000", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014738, + "CONCEPT_NAME" : "Child examination - birth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "170099002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4194590, + "CONCEPT_NAME" : "Child HC < 0.4th centile", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "314643009", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4200299, + "CONCEPT_NAME" : "Child HC = 0.4th centile", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "314644003", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4194591, + "CONCEPT_NAME" : "Child HC 0.5th - 1.9th centile", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "314645002", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4199794, + "CONCEPT_NAME" : "Child HC 10th - 24th centile", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "314649008", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4194593, + "CONCEPT_NAME" : "Child HC 26th - 49th centile", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "314651007", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4199793, + "CONCEPT_NAME" : "Child HC = 2nd centile", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "314646001", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4194592, + "CONCEPT_NAME" : "Child HC 3rd - 8th centile", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "314647005", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014735, + "CONCEPT_NAME" : "Child HC = 3rd-9th centile", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "170063007", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014605, + "CONCEPT_NAME" : "Child HC = 50th-74th centile", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "170066004", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4194594, + "CONCEPT_NAME" : "Child HC 51st - 74th centile", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "314653005", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014606, + "CONCEPT_NAME" : "Child HC = 75th-89th centile", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "170067008", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4194595, + "CONCEPT_NAME" : "Child HC = 75th centile", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "314654004", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4199796, + "CONCEPT_NAME" : "Child HC 76th - 90th centile", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "314655003", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014607, + "CONCEPT_NAME" : "Child HC = 90th-96th centile", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "170068003", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4199797, + "CONCEPT_NAME" : "Child HC 92nd - 97th centile", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "314657006", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014736, + "CONCEPT_NAME" : "Child HC = > 97th centile", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "170069006", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4194596, + "CONCEPT_NAME" : "Child HC 98.1st-99.6th centile", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "314659009", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4200422, + "CONCEPT_NAME" : "Child HC = 98th centile", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "314658001", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4199798, + "CONCEPT_NAME" : "Child HC >99.6th centile", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "314660004", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4197178, + "CONCEPT_NAME" : "Child HC = 9th centile", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "314648000", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4200300, + "CONCEPT_NAME" : "Child head circumference 50 equal to 50th centile", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "314652000", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4276725, + "CONCEPT_NAME" : "Child head circumference centile finding", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "365943002", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4016184, + "CONCEPT_NAME" : "Child head circumference equal to 25th-49th centile", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "170065000", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4199795, + "CONCEPT_NAME" : "Child head circumference equal to 25th centile", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "314650008", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4197179, + "CONCEPT_NAME" : "Child head circumference equal to 91st centile", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "314656002", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4016183, + "CONCEPT_NAME" : "Child head circumference equal to third centile", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "170062002", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4102952, + "CONCEPT_NAME" : "Cholestasis-edema syndrome, Norwegian type", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "28724005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4203366, + "CONCEPT_NAME" : "Cholestasis in newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "433237003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4340944, + "CONCEPT_NAME" : "Cholestasis of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "235888006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3019145, + "CONCEPT_NAME" : "Choriogonadotropin.beta subunit free [Mass/volume] in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25373-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3011465, + "CONCEPT_NAME" : "Choriogonadotropin.beta subunit free [Units/volume] in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "19180-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3011996, + "CONCEPT_NAME" : "Choriogonadotropin.beta subunit [Moles/volume] in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "2111-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3010164, + "CONCEPT_NAME" : "Choriogonadotropin.beta subunit [Multiple of the median] adjusted in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "23841-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40758989, + "CONCEPT_NAME" : "Choriogonadotropin.beta subunit [Multiple of the median] in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55868-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3011149, + "CONCEPT_NAME" : "Choriogonadotropin.beta subunit (pregnancy test) [Presence] in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "2110-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3009417, + "CONCEPT_NAME" : "Choriogonadotropin.beta subunit (pregnancy test) [Presence] in Urine", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "2112-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3038136, + "CONCEPT_NAME" : "Choriogonadotropin.beta subunit [Units/volume] in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "21198-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3004303, + "CONCEPT_NAME" : "Choriogonadotropin.intact [Moles/volume] in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "2117-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3036988, + "CONCEPT_NAME" : "Choriogonadotropin.intact [Units/volume] in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "30243-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3002091, + "CONCEPT_NAME" : "Choriogonadotropin [Moles/volume] in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "2119-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3008714, + "CONCEPT_NAME" : "Choriogonadotropin [Multiple of the median] adjusted in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "32166-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3003191, + "CONCEPT_NAME" : "Choriogonadotropin (pregnancy test) [Presence] in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "2118-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3018954, + "CONCEPT_NAME" : "Choriogonadotropin (pregnancy test) [Presence] in Urine", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "2106-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3018171, + "CONCEPT_NAME" : "Choriogonadotropin [Units/volume] in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "19080-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4018189, + "CONCEPT_NAME" : "Chorionic gonadotropin, alpha subunit measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "104595003", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4296540, + "CONCEPT_NAME" : "Chorionic gonadotropin, beta-subunit measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "386558001", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4296541, + "CONCEPT_NAME" : "Chorionic gonadotropin, beta-subunit measurement, spinal fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "386559009", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4016953, + "CONCEPT_NAME" : "Chorionic gonadotropin, intact measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "104596002", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4017479, + "CONCEPT_NAME" : "Chorionic gonadotropin measurement, qualitative", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "104406007", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2212145, + "CONCEPT_NAME" : "Chorionic gonadotropin stimulation panel; estradiol response This panel must include the following: Estradiol, total (82670 x 2 on 3 pooled blood samples)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80415", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2212144, + "CONCEPT_NAME" : "Chorionic gonadotropin stimulation panel; testosterone response This panel must include the following: Testosterone (84403 x 2 on 3 pooled blood samples)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80414", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110282, + "CONCEPT_NAME" : "Chorionic villus sampling, any method", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59015", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44793560, + "CONCEPT_NAME" : "Chorionic villus sampling culture", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "283931000000109", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44791458, + "CONCEPT_NAME" : "Chorionic villus sampling culture and direct chromosome analysis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "283941000000100", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4162502, + "CONCEPT_NAME" : "Chorionic villus sampling using obstetric ultrasound guidance", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "433153009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 72973, + "CONCEPT_NAME" : "Chromosomal abnormality in fetus affecting obstetrical care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "42686001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40760436, + "CONCEPT_NAME" : "Chromosome 13+18+21+X+Y aneuploidy in Amniotic fluid or Chorionic villus sample by FISH Nominal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57317-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2213267, + "CONCEPT_NAME" : "Chromosome analysis, amniotic fluid or chorionic villus, count 15 cells, 1 karyotype, with banding", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "88267", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2213268, + "CONCEPT_NAME" : "Chromosome analysis, in situ for amniotic fluid cells, count cells from 6-12 colonies, 1 karyotype, with banding", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "88269", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4080590, + "CONCEPT_NAME" : "Chronic congenital cytomegalic inclusion disease", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "240551003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4173190, + "CONCEPT_NAME" : "Chronic partial asphyxia of newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276573008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 313023, + "CONCEPT_NAME" : "Chronic respiratory disease in perinatal period", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "20322005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4223536, + "CONCEPT_NAME" : "Classical cesarean section", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84195007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004785, + "CONCEPT_NAME" : "Classical cesarean section", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "74.0", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "3-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36713561, + "CONCEPT_NAME" : "Classic onset hemorrhagic disease of newborn due to vitamin K deficiency", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "717936002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37208486, + "CONCEPT_NAME" : "Clitoral tear during delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1105801000000107", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434167, + "CONCEPT_NAME" : "Cold injury syndrome of newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26746005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40761828, + "CONCEPT_NAME" : "Collection date of Amniotic fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "58734-5", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Clinical Observation" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4182145, + "CONCEPT_NAME" : "Color of lochia - finding", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "366298006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44783183, + "CONCEPT_NAME" : "Combined intrauterine and ovarian pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "699240001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4135209, + "CONCEPT_NAME" : "Combined pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "31601007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40483581, + "CONCEPT_NAME" : "Combined tubal and intrauterine pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "442478007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3170656, + "CONCEPT_NAME" : "Complcated pregnancy due to surgical history: uterine myomectomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6980001000004103", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "Nebraska Lexicon", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437046, + "CONCEPT_NAME" : "Complete abortion", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "69124005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4034145, + "CONCEPT_NAME" : "Complete breech delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237311001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2721238, + "CONCEPT_NAME" : "Complete cycle, gamete intrafallopian transfer (gift), case rate", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "S4013", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2721239, + "CONCEPT_NAME" : "Complete cycle, zygote intrafallopian transfer (zift), case rate", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "S4014", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439085, + "CONCEPT_NAME" : "Complete inevitable miscarriage complicated by delayed or excessive hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "307735008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441629, + "CONCEPT_NAME" : "Complete inevitable miscarriage complicated by embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "307750004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441921, + "CONCEPT_NAME" : "Complete inevitable miscarriage complicated by genital tract and pelvic infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "307734007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4146774, + "CONCEPT_NAME" : "Complete inevitable miscarriage without complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "307738005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2721240, + "CONCEPT_NAME" : "Complete in vitro fertilization cycle, not otherwise specified, case rate", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "S4015", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441073, + "CONCEPT_NAME" : "Complete legal termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "267194005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438196, + "CONCEPT_NAME" : "Complete legal termination of pregnancy with delayed or excessive hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198719001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40318618, + "CONCEPT_NAME" : "Complete miscarriage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "156073000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441910, + "CONCEPT_NAME" : "Complete miscarriage with damage to pelvic organs or tissues", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198657009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432682, + "CONCEPT_NAME" : "Complete miscarriage with delayed or excessive hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198656000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441632, + "CONCEPT_NAME" : "Complete miscarriage with embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198663000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435318, + "CONCEPT_NAME" : "Complete miscarriage with genital tract or pelvic infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198655001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435000, + "CONCEPT_NAME" : "Complete miscarriage with metabolic disorder", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198660002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 436742, + "CONCEPT_NAME" : "Complete miscarriage with renal failure", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198659007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438805, + "CONCEPT_NAME" : "Complete miscarriage with shock", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198661003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4113352, + "CONCEPT_NAME" : "Complete spontaneous abortion NOS", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "198667004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440464, + "CONCEPT_NAME" : "Complication following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "2989004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440795, + "CONCEPT_NAME" : "Complication occurring during labor and delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199745000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36715374, + "CONCEPT_NAME" : "Complication of anesthesia during the puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "721022000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432382, + "CONCEPT_NAME" : "Complication of labor AND/OR delivery", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "27541007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 436489, + "CONCEPT_NAME" : "Complication of obstetrical surgery AND/OR procedure", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "78408007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437947, + "CONCEPT_NAME" : "Complication of obstetrical surgical wound", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "32999002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435875, + "CONCEPT_NAME" : "Complication of pregnancy, childbirth and/or puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198609003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4141513, + "CONCEPT_NAME" : "Complication of prematurity", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "426850008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441364, + "CONCEPT_NAME" : "Complication of the puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80113008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433822, + "CONCEPT_NAME" : "Complication related to pregnancy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "90821003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433263, + "CONCEPT_NAME" : "Complications following abortion and ectopic and molar pregnancies", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "198818003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4309021, + "CONCEPT_NAME" : "Complications of attempted introduction of fertilized ovum following in vitro fertilization", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "213202009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4193765, + "CONCEPT_NAME" : "Compression of umbilical cord", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "79222000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40482399, + "CONCEPT_NAME" : "Conceived by in vitro fertilization", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "443633009", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 80205, + "CONCEPT_NAME" : "Condition in fetus originating in the perinatal period", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "41168002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441964, + "CONCEPT_NAME" : "Conditions involving the integument AND/OR temperature regulation of fetus OR newborn", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "40504002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 197339, + "CONCEPT_NAME" : "Congenital abnormality of uterus, affecting pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "41215002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 194707, + "CONCEPT_NAME" : "Congenital abnormality of uterus - baby delivered with postpartum complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "267215001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 193825, + "CONCEPT_NAME" : "Congenital abnormality of uterus complicating antenatal care, baby not yet delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "267216000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 315013, + "CONCEPT_NAME" : "Congenital cardiovascular disorder during pregnancy - baby delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199266007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 314426, + "CONCEPT_NAME" : "Congenital cardiovascular disorder during pregnancy - baby not yet delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199268008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443249, + "CONCEPT_NAME" : "Congenital cardiovascular disorders during pregnancy, childbirth and the puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "267207004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 436532, + "CONCEPT_NAME" : "Congenital cytomegalovirus infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59527008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37396772, + "CONCEPT_NAME" : "Congenital deficiency of alpha-fetoprotein", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "716698007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4236230, + "CONCEPT_NAME" : "Congenital hyperinsulinism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "360339005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 196175, + "CONCEPT_NAME" : "Congenital OR acquired abnormality of cervix affecting pregnancy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "111443000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 201920, + "CONCEPT_NAME" : "Congenital OR acquired abnormality of vagina affecting pregnancy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "111444006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435879, + "CONCEPT_NAME" : "Congenital or acquired abnormality of vulva - baby delivered with postpartum complication", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "267248001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440162, + "CONCEPT_NAME" : "Congenital or acquired abnormality of vulva complicating antenatal care - baby not yet delivered", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "267249009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4188480, + "CONCEPT_NAME" : "Congenital rubella pneumonitis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "47082005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433869, + "CONCEPT_NAME" : "Congenital rubella syndrome", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1857005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015159, + "CONCEPT_NAME" : "Consultant unit birth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169815003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060252, + "CONCEPT_NAME" : "Consultant unit booking", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169623004", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433826, + "CONCEPT_NAME" : "Continuing pregnancy after abortion of one fetus or more", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199306007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432373, + "CONCEPT_NAME" : "Continuing pregnancy after intrauterine death of one or more fetuses", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199307003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43020670, + "CONCEPT_NAME" : "Continuing pregnancy after intrauterine death of one twin with intrauterine retention of dead twin", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "472321009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441647, + "CONCEPT_NAME" : "Continuing pregnancy after intrauterine death of twin fetus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429187001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45757769, + "CONCEPT_NAME" : "Continuing triplet pregnancy after spontaneous abortion of one or more fetuses", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36801000119105", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4237335, + "CONCEPT_NAME" : "Continuous fetal heart monitoring during labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "408804006", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4268171, + "CONCEPT_NAME" : "Contraction ring dystocia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "62129004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4120986, + "CONCEPT_NAME" : "Controlled cord traction of placenta", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "302384005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36716738, + "CONCEPT_NAME" : "Contusion of brain due to birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "722908001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36716737, + "CONCEPT_NAME" : "Contusion of cerebellum due to birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "722907006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 380533, + "CONCEPT_NAME" : "Convulsions in the newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87476004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434708, + "CONCEPT_NAME" : "Cord around neck with compression", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "289311005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4129041, + "CONCEPT_NAME" : "Cord beside head", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237306003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442292, + "CONCEPT_NAME" : "Cord entanglement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "53419009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433270, + "CONCEPT_NAME" : "Cord entanglement without compression", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "11209007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110281, + "CONCEPT_NAME" : "Cordocentesis (intrauterine), any method", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59012", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433828, + "CONCEPT_NAME" : "Cord tangled or knotted with compression", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "267266006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439092, + "CONCEPT_NAME" : "Cord tangled with compression - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199880007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442421, + "CONCEPT_NAME" : "Cord tangled with compression with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199881006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4055252, + "CONCEPT_NAME" : "Correct fixing of baby to breast education", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "243096001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004823, + "CONCEPT_NAME" : "Correction of fetal defect", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "75.36", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015590, + "CONCEPT_NAME" : "Counseling for termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10383002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37016958, + "CONCEPT_NAME" : "Counting fetal movement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "713120004", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2212630, + "CONCEPT_NAME" : "C-peptide", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84681", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433548, + "CONCEPT_NAME" : "Cracked nipple associated with childbirth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "35716006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36713479, + "CONCEPT_NAME" : "Cracked nipple associated with childbirth with attachment difficulty", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "717820003", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45757216, + "CONCEPT_NAME" : "Cracked nipple associated with lactation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10836241000119104", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443243, + "CONCEPT_NAME" : "Cracked nipple in pregnancy, the puerperium or lactation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "267291006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440481, + "CONCEPT_NAME" : "Cracked nipple in pregnancy, the puerperium or lactation - delivered with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200412008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432396, + "CONCEPT_NAME" : "Cracked nipple in pregnancy, the puerperium or lactation with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200414009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442529, + "CONCEPT_NAME" : "Cranial nerve injury due to birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206234004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2213355, + "CONCEPT_NAME" : "Cryopreservation; embryo(s)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "89258", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2721256, + "CONCEPT_NAME" : "Cryopreserved embryo transfer, case rate", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "S4037", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4242590, + "CONCEPT_NAME" : "Cryptomenorrhea", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "58851004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4057444, + "CONCEPT_NAME" : "CSF: glucose decreased", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "167740005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4055550, + "CONCEPT_NAME" : "CSF: glucose increased", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "167741009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4269855, + "CONCEPT_NAME" : "CSF: glucose level - finding", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "365815007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4057443, + "CONCEPT_NAME" : "CSF: glucose normal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "167739008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2213347, + "CONCEPT_NAME" : "Culture of oocyte(s)/embryo(s), less than 4 days", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "89250", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2213348, + "CONCEPT_NAME" : "Culture of oocyte(s)/embryo(s), less than 4 days; with co-culture of oocyte(s)/embryos", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "89251", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110301, + "CONCEPT_NAME" : "Curettage, postpartum", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59160", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 193174, + "CONCEPT_NAME" : "Cystic fibrosis with meconium ileus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86092005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4170118, + "CONCEPT_NAME" : "Cystitis of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "275412000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42742301, + "CONCEPT_NAME" : "Cytogenomic constitutional (genome-wide) microarray analysis; interrogation of genomic regions for copy number and single nucleotide polymorphism (SNP) variants for chromosomal abnormalities", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "81229", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4100193, + "CONCEPT_NAME" : "Damage to bladder following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "27552001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4185718, + "CONCEPT_NAME" : "Damage to bowel following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "44017002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4232953, + "CONCEPT_NAME" : "Damage to broad ligament following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "89573004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4173946, + "CONCEPT_NAME" : "Damage to cervix following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "42294002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 196475, + "CONCEPT_NAME" : "Damage to pelvic organs AND/OR tissues following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16083003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42537767, + "CONCEPT_NAME" : "Damage to pelvic organs and tissues following ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "737329004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42537768, + "CONCEPT_NAME" : "Damage to pelvic organs and tissues following molar pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "737330009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4174543, + "CONCEPT_NAME" : "Damage to periurethral tissue following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "42536002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4194053, + "CONCEPT_NAME" : "Damage to uterus following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "79333004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4216382, + "CONCEPT_NAME" : "Damage to vagina following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72209007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4072438, + "CONCEPT_NAME" : "Date of last menstrual period", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "21840007", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Observable Entity" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4088445, + "CONCEPT_NAME" : "Date of last normal period", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "248993009", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Observable Entity" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060625, + "CONCEPT_NAME" : "Dating/booking US scan", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169229007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44810005, + "CONCEPT_NAME" : "Dating obstetric ultrasound scan", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "866481000000104", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40491449, + "CONCEPT_NAME" : "Decline in Edinburgh postnatal depression scale score", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "448717002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40487136, + "CONCEPT_NAME" : "Decline in Edinburgh postnatal depression scale score at 8 months", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "449413009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4197955, + "CONCEPT_NAME" : "Decreased glucose level", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "51798006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 75882, + "CONCEPT_NAME" : "Deep transverse arrest - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199774009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 73265, + "CONCEPT_NAME" : "Deep transverse arrest with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199775005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44784536, + "CONCEPT_NAME" : "Deep transverse arrest with persistent occipitoposterior position", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "698702007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438820, + "CONCEPT_NAME" : "Deep venous thrombosis in puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "56272000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4266839, + "CONCEPT_NAME" : "Defibrination syndrome following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "62698000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4234604, + "CONCEPT_NAME" : "Dehiscence AND/OR disruption of uterine wound in the puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "361095003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438814, + "CONCEPT_NAME" : "Delayed AND/OR excessive hemorrhage following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "79133008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 194109, + "CONCEPT_NAME" : "Delayed AND/OR secondary postpartum hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "23171006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4048293, + "CONCEPT_NAME" : "Delayed conjugation causing neonatal jaundice associated with another disorder", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206453006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441361, + "CONCEPT_NAME" : "Delayed delivery after artificial rupture of membranes", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "35347003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42537762, + "CONCEPT_NAME" : "Delayed hemorrhage due to and following ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "737322008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42537759, + "CONCEPT_NAME" : "Delayed hemorrhage due to and following miscarriage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "737318003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4114265, + "CONCEPT_NAME" : "Delayed or excessive hemorrhage following abortive pregnancy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "198827002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4277103, + "CONCEPT_NAME" : "Delayed repair of episiotomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65378009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4075190, + "CONCEPT_NAME" : "DeLee forceps cephalic delivery with rotation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177168003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440793, + "CONCEPT_NAME" : "Deliveries by breech extraction", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "271370008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 193277, + "CONCEPT_NAME" : "Deliveries by cesarean", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200144004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2514560, + "CONCEPT_NAME" : "Delivery/birthing room resuscitation, provision of positive pressure ventilation and/or chest compressions in the presence of acute inadequate ventilation and/or cardiac output", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "99465", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4076939, + "CONCEPT_NAME" : "Delivery booking place", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "275816005", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Observable Entity" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4106406, + "CONCEPT_NAME" : "Delivery by double application of forceps", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "29613008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061457, + "CONCEPT_NAME" : "Delivery by elective cesarean section", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200148001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4066112, + "CONCEPT_NAME" : "Delivery by emergency cesarean section", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200149009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4232028, + "CONCEPT_NAME" : "Delivery by Kielland rotation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "89346004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4234710, + "CONCEPT_NAME" : "Delivery by Malstrom's extraction", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90438006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4223638, + "CONCEPT_NAME" : "Delivery by Malstrom's extraction with episiotomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40219000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4278225, + "CONCEPT_NAME" : "Delivery by midwife", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65243006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4100410, + "CONCEPT_NAME" : "Delivery by Scanzoni maneuver", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25296001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4189205, + "CONCEPT_NAME" : "Delivery by vacuum extraction", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "61586001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4096145, + "CONCEPT_NAME" : "Delivery by vacuum extraction with episiotomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26313002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4237496, + "CONCEPT_NAME" : "Delivery care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "409006000", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3011536, + "CONCEPT_NAME" : "Delivery date Estimated", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "11778-8", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Clinical Observation" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038495, + "CONCEPT_NAME" : "Delivery finding", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "118215003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43054893, + "CONCEPT_NAME" : "Delivery location", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72150-6", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Survey" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061795, + "CONCEPT_NAME" : "Delivery: no place booked", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169620001", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441641, + "CONCEPT_NAME" : "Delivery normal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48782003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40551541, + "CONCEPT_NAME" : "Delivery of cephalic presentation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "384730009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4056129, + "CONCEPT_NAME" : "Delivery of face presentation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16819009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42872805, + "CONCEPT_NAME" : "Delivery of occipitoposterior presentation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "450798003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110311, + "CONCEPT_NAME" : "Delivery of placenta (separate procedure)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59414", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4130319, + "CONCEPT_NAME" : "Delivery of the after coming head", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "236982004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4293034, + "CONCEPT_NAME" : "Delivery of vertex presentation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "384729004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4156955, + "CONCEPT_NAME" : "Delivery place booked", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "271402002", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4150421, + "CONCEPT_NAME" : "Delivery place planned", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "310585007", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4128030, + "CONCEPT_NAME" : "Delivery procedure", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "236973005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4046029, + "CONCEPT_NAME" : "Delivery room care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "133905007", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36715417, + "CONCEPT_NAME" : "DEND syndrome", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "721088003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36716734, + "CONCEPT_NAME" : "Depressed fracture of skull due to birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "722904004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4252401, + "CONCEPT_NAME" : "Dermatitis of the newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7392002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4193756, + "CONCEPT_NAME" : "Desultory labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "79179003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40478932, + "CONCEPT_NAME" : "Detection of ordinal level of hemoglobin F in amniotic fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "444308008", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443012, + "CONCEPT_NAME" : "Diabetes mellitus during pregnancy - baby delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199225007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 192691, + "CONCEPT_NAME" : "Diabetes mellitus during pregnancy - baby not yet delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199227004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4058243, + "CONCEPT_NAME" : "Diabetes mellitus during pregnancy, childbirth and the puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199223000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 194700, + "CONCEPT_NAME" : "Diabetes mellitus in mother complicating pregnancy, childbirth AND/OR puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "76751001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4062685, + "CONCEPT_NAME" : "Diabetes mellitus in the puerperium - baby delivered during current episode of care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199226008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4062686, + "CONCEPT_NAME" : "Diabetes mellitus in the puerperium - baby delivered during previous episode of care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199228009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43531645, + "CONCEPT_NAME" : "Diabetes mellitus, transient neonatal 1", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609579009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43531019, + "CONCEPT_NAME" : "Diabetes mellitus, transient neonatal 2", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609580007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43531020, + "CONCEPT_NAME" : "Diabetes mellitus, transient neonatal 3", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609581006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40758528, + "CONCEPT_NAME" : "Diabetes tracking panel", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55399-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Clinical Observation" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3169474, + "CONCEPT_NAME" : "Diabetic hypoglycemia w anger outbursts", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16580001000004105", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "Nebraska Lexicon", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443727, + "CONCEPT_NAME" : "Diabetic ketoacidosis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "420422005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4009303, + "CONCEPT_NAME" : "Diabetic ketoacidosis without coma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "111556005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004805, + "CONCEPT_NAME" : "Diagnostic amniocentesis", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "75.1", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "3-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4143646, + "CONCEPT_NAME" : "Diagnostic amniocentesis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "265635006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40479665, + "CONCEPT_NAME" : "Diagnostic amniocentesis using ultrasound guidance", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "443005005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4032755, + "CONCEPT_NAME" : "Diagnostic amniocentesis with fluid replacement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "236954006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4142956, + "CONCEPT_NAME" : "Diagnostic laparoscopy of female pelvis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "264973001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2006934, + "CONCEPT_NAME" : "Diagnostic ultrasound of gravid uterus", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "88.78", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4135437, + "CONCEPT_NAME" : "Dialysis fluid glucose measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "412865006", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37204835, + "CONCEPT_NAME" : "Diazoxide-resistant focal hyperinsulinism due to Kir6.2 deficiency", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "783741006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37204834, + "CONCEPT_NAME" : "Diazoxide-resistant focal hyperinsulinism due to SUR1 deficiency", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "783740007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43021054, + "CONCEPT_NAME" : "Dichorionic diamniotic twin pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "459166009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4211822, + "CONCEPT_NAME" : "Dietary amenorrhea", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57260004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434482, + "CONCEPT_NAME" : "Diethylstilbestrol poisoning", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "66698002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4016060, + "CONCEPT_NAME" : "Difficult to establish feeding", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169947009", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4173784, + "CONCEPT_NAME" : "Difficulty coping with postpartum changes", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "424474002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4314846, + "CONCEPT_NAME" : "Difficulty following postpartum diet", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "424712007", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4313768, + "CONCEPT_NAME" : "Difficulty following postpartum exercise routine", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "423675002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4071864, + "CONCEPT_NAME" : "Difficulty in feeding at breast", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206568009", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4309556, + "CONCEPT_NAME" : "Difficulty with postpartum rest pattern", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "423502007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4149472, + "CONCEPT_NAME" : "Digital evacuation of retained products of conception", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "310603006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004489, + "CONCEPT_NAME" : "Dilation and curettage for termination of pregnancy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "69.01", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4106559, + "CONCEPT_NAME" : "Dilation and curettage for termination of pregnancy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "29682007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4309425, + "CONCEPT_NAME" : "Dilation and curettage of uterus after delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "391998006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4168396, + "CONCEPT_NAME" : "Dilation of cervix uteri and curettage for termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "274973002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4138740, + "CONCEPT_NAME" : "Dilation of cervix uteri and curettage of products of conception from uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "265062002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4074867, + "CONCEPT_NAME" : "Dilation of cervix uteri and curettage of uterus for removal of missed miscarriage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "176833006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4072420, + "CONCEPT_NAME" : "Dilation of cervix uteri and curettage of uterus for removal of mole", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "176832001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4074297, + "CONCEPT_NAME" : "Dilation of cervix uteri and vacuum aspiration of products of conception from uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "176827002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4022096, + "CONCEPT_NAME" : "Direct injection of sperm into cytoplasm of the oocyte", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "225244002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4024589, + "CONCEPT_NAME" : "Direct intraperitoneal insemination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "225247009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4084845, + "CONCEPT_NAME" : "Discharged from hospital within 6 hours of delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "183673002", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757216, + "CONCEPT_NAME" : "Discharge disposition [CARE]", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "52688-9", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Survey" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757177, + "CONCEPT_NAME" : "Discharge Status", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "52523-8", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Survey" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4071597, + "CONCEPT_NAME" : "Dislocation of spine due to birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206221000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 201958, + "CONCEPT_NAME" : "Disorder involving the integument of fetus OR newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "111474003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438815, + "CONCEPT_NAME" : "Disorder of amniotic cavity AND/OR membrane", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72860003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 73546, + "CONCEPT_NAME" : "Disorder of breast associated with childbirth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86196005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 200524, + "CONCEPT_NAME" : "Disorder of digestive system specific to fetus OR newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "42357009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4130161, + "CONCEPT_NAME" : "Disorder of glucose regulation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237597000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 80471, + "CONCEPT_NAME" : "Disorder of lactation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "35046003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 79890, + "CONCEPT_NAME" : "Disorder of pelvic size and disproportion", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237256006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4053583, + "CONCEPT_NAME" : "Disorder of placenta", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "125586008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42537770, + "CONCEPT_NAME" : "Disorder of vein following ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "737332001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42537769, + "CONCEPT_NAME" : "Disorder of vein following miscarriage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "737331008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42537771, + "CONCEPT_NAME" : "Disorder of vein following molar pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "737333006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4195545, + "CONCEPT_NAME" : "Disorder relating to short gestation AND/OR low birthweight", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "67645006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 201091, + "CONCEPT_NAME" : "Disproportion - major pelvic abnormality", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199398004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 198486, + "CONCEPT_NAME" : "Disproportion - major pelvic abnormality - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199400000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4059763, + "CONCEPT_NAME" : "Disproportion - major pelvic abnormality with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199402008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443418, + "CONCEPT_NAME" : "Disruption of cesarean wound in the puerperium", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "361096002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4134722, + "CONCEPT_NAME" : "Disruption of episiotomy wound in the puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "398262004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4282151, + "CONCEPT_NAME" : "Disruption of perineal laceration repair in the puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "66119008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443897, + "CONCEPT_NAME" : "Disruption of perineal wound in the puerperium", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "14918004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432443, + "CONCEPT_NAME" : "Disseminated intravascular coagulation in newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "34417008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4091783, + "CONCEPT_NAME" : "Distress from pain in labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "249196008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437985, + "CONCEPT_NAME" : "Disturbance of temperature regulation of newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "68550008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37017322, + "CONCEPT_NAME" : "Dizygotic twin pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "713575004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2721247, + "CONCEPT_NAME" : "Donor egg cycle, incomplete, case rate", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "S4023", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2721248, + "CONCEPT_NAME" : "Donor services for in vitro fertilization (sperm or embryo), case rate", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "S4025", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2211763, + "CONCEPT_NAME" : "Doppler echocardiography, fetal, pulsed wave and/or continuous wave with spectral display; complete", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "76827", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2211764, + "CONCEPT_NAME" : "Doppler echocardiography, fetal, pulsed wave and/or continuous wave with spectral display; follow-up or repeat study", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "76828", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44807919, + "CONCEPT_NAME" : "Doppler ultrasonography of multiple pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "855031000000109", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2211761, + "CONCEPT_NAME" : "Doppler velocimetry, fetal; middle cerebral artery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "76821", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2211760, + "CONCEPT_NAME" : "Doppler velocimetry, fetal; umbilical artery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "76820", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4149370, + "CONCEPT_NAME" : "Down's screening - blood test", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "268474007", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4201770, + "CONCEPT_NAME" : "Downs screening test", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "315115008", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2784529, + "CONCEPT_NAME" : "Drainage of Amniotic Fluid, Diagnostic from Products of Conception, Open Approach", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10900ZU", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD10PCS", + "CONCEPT_CLASS_ID" : "ICD10PCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2784535, + "CONCEPT_NAME" : "Drainage of Amniotic Fluid, Diagnostic from Products of Conception, Percutaneous Approach", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10903ZU", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD10PCS", + "CONCEPT_CLASS_ID" : "ICD10PCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2784541, + "CONCEPT_NAME" : "Drainage of Amniotic Fluid, Diagnostic from Products of Conception, Percutaneous Endoscopic Approach", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10904ZU", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD10PCS", + "CONCEPT_CLASS_ID" : "ICD10PCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2784547, + "CONCEPT_NAME" : "Drainage of Amniotic Fluid, Diagnostic from Products of Conception, Via Natural or Artificial Opening", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10907ZU", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD10PCS", + "CONCEPT_CLASS_ID" : "ICD10PCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2784553, + "CONCEPT_NAME" : "Drainage of Amniotic Fluid, Diagnostic from Products of Conception, Via Natural or Artificial Opening Endoscopic", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10908ZU", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD10PCS", + "CONCEPT_CLASS_ID" : "ICD10PCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442915, + "CONCEPT_NAME" : "Drug dependence during pregnancy - baby delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199252002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442913, + "CONCEPT_NAME" : "Drug dependence during pregnancy - baby not yet delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199254001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440787, + "CONCEPT_NAME" : "Drug dependence in mother complicating pregnancy, childbirth AND/OR puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "34150001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4029427, + "CONCEPT_NAME" : "Drug-induced hyperinsulinemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237646004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4034969, + "CONCEPT_NAME" : "Drug-induced hypoglycemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237640005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4096804, + "CONCEPT_NAME" : "Drug-induced hypoglycemia without coma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "190448007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435359, + "CONCEPT_NAME" : "Drug reaction AND/OR intoxication specific to newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "34738001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438871, + "CONCEPT_NAME" : "Drug withdrawal syndrome in newborn", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "61628006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4139551, + "CONCEPT_NAME" : "Duffy isoimmunization of the newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "307337003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015420, + "CONCEPT_NAME" : "Duration of first stage of labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169821004", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Observable Entity" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4122728, + "CONCEPT_NAME" : "Duration of labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "289248003", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Observable Entity" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014453, + "CONCEPT_NAME" : "Duration of second stage of labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169822006", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Observable Entity" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015161, + "CONCEPT_NAME" : "Duration of third stage of labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169823001", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Observable Entity" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40259069, + "CONCEPT_NAME" : "Dye test of fallopian tube", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "177006000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443706, + "CONCEPT_NAME" : "Dyscoordinate labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "18606002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4139861, + "CONCEPT_NAME" : "Dysglycemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "426255005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4070773, + "CONCEPT_NAME" : "Dysponderal amenorrhea", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "21669001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4307303, + "CONCEPT_NAME" : "Early neonatal death", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "391181005", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Event" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36713560, + "CONCEPT_NAME" : "Early onset diffuse bleeding diathesis secondary to vitamin K deficient hemorrhagic disease of fetus and newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "717935003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 35622880, + "CONCEPT_NAME" : "Early-onset neonatal sepsis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "765106006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437614, + "CONCEPT_NAME" : "Early onset of delivery", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "270496001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 138813, + "CONCEPT_NAME" : "Early or threatened labor", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "267201003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4040834, + "CONCEPT_NAME" : "Early postpartum state", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16538005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2722250, + "CONCEPT_NAME" : "Echocardiography, fetal, cardiovascular system, real time with image documentation (2D), with or without M-mode recording", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "76825", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2211762, + "CONCEPT_NAME" : "Echocardiography, fetal, cardiovascular system, real time with image documentation (2D), with or without M-mode recording; follow-up or repeat study", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "76826", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4137949, + "CONCEPT_NAME" : "Echography, scan B-mode for fetal growth rate", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "31998007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443700, + "CONCEPT_NAME" : "Eclampsia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15938005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 133816, + "CONCEPT_NAME" : "Eclampsia - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198990007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 138811, + "CONCEPT_NAME" : "Eclampsia - delivered with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198991006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 137613, + "CONCEPT_NAME" : "Eclampsia in pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198992004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4116344, + "CONCEPT_NAME" : "Eclampsia in puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "303063000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4058536, + "CONCEPT_NAME" : "Eclampsia with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198993009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4294771, + "CONCEPT_NAME" : "Ectopic hyperinsulinism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "37703005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4129522, + "CONCEPT_NAME" : "Ectopic IGF-1 hypoglycemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237643007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4029426, + "CONCEPT_NAME" : "Ectopic IGF-2 hypoglycemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237644001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4030181, + "CONCEPT_NAME" : "Ectopic IGF hypoglycemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237642002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437611, + "CONCEPT_NAME" : "Ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "34801009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441412, + "CONCEPT_NAME" : "Edema of newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "78913002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438204, + "CONCEPT_NAME" : "Edema or excessive weight gain in pregnancy without mention of hypertension", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "267202005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443321, + "CONCEPT_NAME" : "Edema or excessive weight gain in pregnancy without mention of hypertension, delivered with mention of postpartum complication", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "199075004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37018717, + "CONCEPT_NAME" : "Education about amino acid-based infant formula", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "713407005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37017708, + "CONCEPT_NAME" : "Education about cow's milk protein free diet", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "714032007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37017183, + "CONCEPT_NAME" : "Education about extensively hydrolyzed infant formula", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "713414007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4207151, + "CONCEPT_NAME" : "Education about feeding neonate", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "438297004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37017710, + "CONCEPT_NAME" : "Education about soy-based infant formula", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "714034008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45770395, + "CONCEPT_NAME" : "Education about weaning for cow's milk protein allergy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "927701000000103", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43527945, + "CONCEPT_NAME" : "EGFR (epidermal growth factor receptor) (eg, non-small cell lung cancer) gene analysis, common variants (eg, exon 19 LREA deletion, L858R, T790M, G719A, G719S, L861Q)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "81235", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441085, + "CONCEPT_NAME" : "Elderly primigravida", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "29399001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440794, + "CONCEPT_NAME" : "Elderly primigravida - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199718001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442442, + "CONCEPT_NAME" : "Elderly primigravida with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199719009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4075182, + "CONCEPT_NAME" : "Elective cesarean section", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177141003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4075161, + "CONCEPT_NAME" : "Elective lower segment cesarean section", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177143000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42536960, + "CONCEPT_NAME" : "Elective lower segment cesarean section with bilateral tubal ligation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "736026009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4075160, + "CONCEPT_NAME" : "Elective upper segment cesarean section", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177142005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42536952, + "CONCEPT_NAME" : "Elective upper segment cesarean section with bilateral tubal ligation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "736018001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4171254, + "CONCEPT_NAME" : "Electrode injury to scalp during birth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276704001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4276942, + "CONCEPT_NAME" : "Electrolyte imbalance following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6509007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4263011, + "CONCEPT_NAME" : "Elevated serum human chorionic gonadotropin level, beta subunit", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "396700001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42539701, + "CONCEPT_NAME" : "Embolism due to and following ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "737324009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42537764, + "CONCEPT_NAME" : "Embolism due to and following molar pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "737325005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440777, + "CONCEPT_NAME" : "Embolism following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "42070007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4327048, + "CONCEPT_NAME" : "Embryo transfer", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "75456002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110275, + "CONCEPT_NAME" : "Embryo transfer, intrauterine", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "58974", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4167089, + "CONCEPT_NAME" : "Emergency cesarean section", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "274130007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4127252, + "CONCEPT_NAME" : "Emergency lower segment cesarean section", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "236985002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42537021, + "CONCEPT_NAME" : "Emergency lower segment cesarean section with bilateral tubal ligation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "736118004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 46270991, + "CONCEPT_NAME" : "Emergency lower segment cesarean section with inverted T incision", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "709004006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4032767, + "CONCEPT_NAME" : "Emergency upper segment cesarean section", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "236986001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42536954, + "CONCEPT_NAME" : "Emergency upper segment cesarean section with bilateral tubal ligation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "736020003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439924, + "CONCEPT_NAME" : "Endocrine AND/OR metabolic disorder specific to the fetus OR newborn", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "22561006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4113994, + "CONCEPT_NAME" : "Endometritis following abortive pregnancy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "198820000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4066014, + "CONCEPT_NAME" : "Endometritis following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "172001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4074443, + "CONCEPT_NAME" : "Endoscopic freeing of adhesions of fallopian tube", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "176994003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4072852, + "CONCEPT_NAME" : "Endoscopic intrafallopian transfer of gamete", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "176996001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4072863, + "CONCEPT_NAME" : "Endoscopic transurethral ultrasound directed oocyte recovery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177038005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4074569, + "CONCEPT_NAME" : "Endoscopic transvesical oocyte recovery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177039002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 80478, + "CONCEPT_NAME" : "Engorgement of breasts associated with childbirth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55613002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4055924, + "CONCEPT_NAME" : "Entire placenta", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "181455002", + "DOMAIN_ID" : "Spec Anatomic Site", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Body Structure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42573076, + "CONCEPT_NAME" : "Enzootic abortion", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "352191000009102", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED Veterinary", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4272812, + "CONCEPT_NAME" : "Episioproctotomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63407004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004766, + "CONCEPT_NAME" : "Episiotomy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "73.6", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "3-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4311671, + "CONCEPT_NAME" : "Episiotomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "85548006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4046551, + "CONCEPT_NAME" : "Episiotomy care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "133907004", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4102125, + "CONCEPT_NAME" : "Episiotomy infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "300927001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110303, + "CONCEPT_NAME" : "Episiotomy or vaginal repair, by other than attending", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59300", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44513763, + "CONCEPT_NAME" : "Episiotomy to facilitate delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "R27.1", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "OPCS4", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530969, + "CONCEPT_NAME" : "Epithelioid trophoblastic tumor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609515005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4009644, + "CONCEPT_NAME" : "Erb-Duchenne palsy as birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "111465000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37109548, + "CONCEPT_NAME" : "Erb Duchenne palsy with neuroma due to birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "722901007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37109547, + "CONCEPT_NAME" : "Erb Duchenne palsy with neuropraxis due to traction birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "722900008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4345685, + "CONCEPT_NAME" : "Erythroderma neonatorum", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "240302002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4059478, + "CONCEPT_NAME" : "Estimated date of delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "161714006", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Observable Entity" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4128833, + "CONCEPT_NAME" : "Estimated date of delivery from last period", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "289206005", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Observable Entity" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3025994, + "CONCEPT_NAME" : "Estriol (E3) [Mass/volume] in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "2251-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3025455, + "CONCEPT_NAME" : "Estriol (E3).unconjugated [Mass/volume] in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "2250-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3005625, + "CONCEPT_NAME" : "Estriol (E3).unconjugated [Multiple of the median] adjusted in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "21264-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3003262, + "CONCEPT_NAME" : "Estriol (E3).unconjugated [Multiple of the median] in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "20466-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4070303, + "CONCEPT_NAME" : "Estriol measurement, serum", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "20563000", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4032621, + "CONCEPT_NAME" : "Evacuation of retained product of conception", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "236883005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4170151, + "CONCEPT_NAME" : "Evacuation of uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "275166002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40756825, + "CONCEPT_NAME" : "Evaluation of cervicovaginal fluid for specific amniotic fluid protein(s) (eg, placental alpha microglobulin-1 [PAMG-1], placental protein 12 [PP12], alpha-fetoprotein), qualitative, each specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84112", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4216768, + "CONCEPT_NAME" : "Exaggerated placental site", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "417150000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434758, + "CONCEPT_NAME" : "Exceptionally large at birth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "38206000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 81636, + "CONCEPT_NAME" : "Excessive fetal growth affecting management of mother", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "22173004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42537763, + "CONCEPT_NAME" : "Excessive hemorrhage due to and following ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "737323003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37206231, + "CONCEPT_NAME" : "Excessive hemorrhage due to and following illegally induced termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "785872000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37206226, + "CONCEPT_NAME" : "Excessive hemorrhage due to and following induced termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "785867009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37206230, + "CONCEPT_NAME" : "Excessive hemorrhage due to and following legally induced termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "785871007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4074426, + "CONCEPT_NAME" : "Excision of ectopic ovarian pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "176928008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40493226, + "CONCEPT_NAME" : "Excision of fallopian tube and surgical removal of ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "445912000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4074427, + "CONCEPT_NAME" : "Excision of ruptured ectopic tubal pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "176929000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004345, + "CONCEPT_NAME" : "Excision or destruction of lesion of fallopian tube", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "66.61", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37396132, + "CONCEPT_NAME" : "Exercise-induced hyperinsulinism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "715830008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4034017, + "CONCEPT_NAME" : "Exercise-related amenorrhea", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237119008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4065745, + "CONCEPT_NAME" : "Exhaustion during labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200164009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40479820, + "CONCEPT_NAME" : "Exposure to rubella in pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "444517009", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Event" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4147858, + "CONCEPT_NAME" : "Expression of retained products of conception", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "310602001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2213361, + "CONCEPT_NAME" : "Extended culture of oocyte(s)/embryo(s), 4-7 days", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "89272", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44790867, + "CONCEPT_NAME" : "Extended glucose tolerance test", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "244911000000109", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4226978, + "CONCEPT_NAME" : "External fetal monitor surveillance during multiple pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87663001", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004769, + "CONCEPT_NAME" : "External version assisting delivery", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "73.91", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4075176, + "CONCEPT_NAME" : "External version of breech", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177122001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4257043, + "CONCEPT_NAME" : "Extra-amniotic termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "408840008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44513450, + "CONCEPT_NAME" : "Extraction of menses", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "Q11.4", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "OPCS4", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4211824, + "CONCEPT_NAME" : "Extraperitoneal cesarean section", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57271003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 38001501, + "CONCEPT_NAME" : "Extreme immaturity or respiratory distress syndrome, neonate", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "790", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "DRG", + "CONCEPT_CLASS_ID" : "MS-DRG" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4173323, + "CONCEPT_NAME" : "Extremely low birth weight infant", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276612004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439128, + "CONCEPT_NAME" : "Extreme prematurity of infant", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276658003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 78210, + "CONCEPT_NAME" : "Face OR brow presentation of fetus", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "37762002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4071437, + "CONCEPT_NAME" : "Face presentation of fetus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "21882006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 377680, + "CONCEPT_NAME" : "Facial nerve injury as birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55712002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060261, + "CONCEPT_NAME" : "Factitious hypoglycemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16966009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4017134, + "CONCEPT_NAME" : "Failed attempted termination of pregnancy with amniotic fluid embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "11454006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 194694, + "CONCEPT_NAME" : "Failed attempted termination of pregnancy with complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59919008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 192380, + "CONCEPT_NAME" : "Failed attempted termination of pregnancy without complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90645002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4281684, + "CONCEPT_NAME" : "Failed attempted termination of pregnancy with urinary tract infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "66892003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45757775, + "CONCEPT_NAME" : "Failed attempted vaginal birth after previous cesarean section", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "38451000119105", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004751, + "CONCEPT_NAME" : "Failed forceps", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "73.3", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "3-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442613, + "CONCEPT_NAME" : "Failed forceps delivery", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "64646001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437622, + "CONCEPT_NAME" : "Failed mechanical induction", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90188009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441924, + "CONCEPT_NAME" : "Failed mechanical induction - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199694005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437341, + "CONCEPT_NAME" : "Failed mechanical induction with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199695006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438491, + "CONCEPT_NAME" : "Failed medical induction of labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "77854008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4196129, + "CONCEPT_NAME" : "Failed minimum access approach", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "313004003", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434436, + "CONCEPT_NAME" : "Failed trial of labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "23332002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443521, + "CONCEPT_NAME" : "Failed trial of labor - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "413339006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4298980, + "CONCEPT_NAME" : "Failure of cervical dilation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7768008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45771070, + "CONCEPT_NAME" : "Failure of cervical dilation due to primary uterine inertia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "88201000119101", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 81088, + "CONCEPT_NAME" : "Failure of lactation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6995000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36715473, + "CONCEPT_NAME" : "Failure of lactation with attachment difficulty", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "721162003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 78224, + "CONCEPT_NAME" : "Failure of lactation with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200436007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4157164, + "CONCEPT_NAME" : "Failure of transfer of passive immunity in newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "370539007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4127892, + "CONCEPT_NAME" : "Fallopian replacement of egg with delayed insemination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "236913003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4001541, + "CONCEPT_NAME" : "Fallopian tube excision", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "120053002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4279380, + "CONCEPT_NAME" : "False knot of umbilical cord", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36697001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4062557, + "CONCEPT_NAME" : "False labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199047001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4089691, + "CONCEPT_NAME" : "Familial neonatal seizures", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "279953009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4156660, + "CONCEPT_NAME" : "Fasting blood glucose measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "271062006", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3035250, + "CONCEPT_NAME" : "Fasting glucose [Mass/volume] in Capillary blood by Glucometer", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "41604-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3037110, + "CONCEPT_NAME" : "Fasting glucose [Mass/volume] in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1558-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40766113, + "CONCEPT_NAME" : "Fasting glucose [Mass/volume] in Urine", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63382-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3037187, + "CONCEPT_NAME" : "Fasting glucose [Mass/volume] in Venous blood", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1557-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 46235168, + "CONCEPT_NAME" : "Fasting glucose [Moles/volume] in Blood", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "76629-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3017703, + "CONCEPT_NAME" : "Fasting glucose [Moles/volume] in Capillary blood by Glucometer", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14770-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3018251, + "CONCEPT_NAME" : "Fasting glucose [Moles/volume] in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14771-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 46236950, + "CONCEPT_NAME" : "Fasting glucose [Moles/volume] in Serum, Plasma or Blood", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "77145-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3041651, + "CONCEPT_NAME" : "Fasting glucose [Moles/volume] in Urine", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "53114-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3025791, + "CONCEPT_NAME" : "Fasting glucose [Presence] in Urine", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16913-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3002574, + "CONCEPT_NAME" : "Fasting glucose [Presence] in Urine by Test strip", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6764-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4320478, + "CONCEPT_NAME" : "Fasting hypoglycemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6974005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3655214, + "CONCEPT_NAME" : "Fat embolism due to and following ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "860687003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3655213, + "CONCEPT_NAME" : "Fat embolism due to and following molar pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "860686007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4310205, + "CONCEPT_NAME" : "Fecal clinitest", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "391330005", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4250134, + "CONCEPT_NAME" : "Fecal glucose level", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "407702002", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060255, + "CONCEPT_NAME" : "Feeding intention - breast", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169643005", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433315, + "CONCEPT_NAME" : "Feeding problems in newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72552008", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3173127, + "CONCEPT_NAME" : "Female periurethral laceration", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6950001000004109", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "Nebraska Lexicon", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530900, + "CONCEPT_NAME" : "Fetal Alcohol Spectrum Disorder", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609437000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4004785, + "CONCEPT_NAME" : "Fetal alcohol syndrome", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "205788004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4150653, + "CONCEPT_NAME" : "Fetal anatomy study", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "271442007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439923, + "CONCEPT_NAME" : "Fetal and newborn blood disorders", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206509003", + "DOMAIN_ID" : "Metadata", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Navi Concept" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 201083, + "CONCEPT_NAME" : "Fetal AND/OR placental disorder affecting management of mother", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "22753004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43022052, + "CONCEPT_NAME" : "Fetal anemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "462166006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44790240, + "CONCEPT_NAME" : "Fetal ascites scan", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "228701000000101", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3026620, + "CONCEPT_NAME" : "Fetal Biophysical profile.body movement US", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "11631-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Clinical Observation" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3028281, + "CONCEPT_NAME" : "Fetal Biophysical profile.sum Derived", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "11634-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Clinical Observation" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2211758, + "CONCEPT_NAME" : "Fetal biophysical profile; with non-stress testing", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "76818", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2211759, + "CONCEPT_NAME" : "Fetal biophysical profile; without non-stress testing", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "76819", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 79146, + "CONCEPT_NAME" : "Fetal blood loss", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206390008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4196670, + "CONCEPT_NAME" : "Fetal blood loss from vasa previa", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "50544004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37310907, + "CONCEPT_NAME" : "Fetal cleft lip", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63061000119104", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43528050, + "CONCEPT_NAME" : "Fetal congenital abnormalities, biochemical assays of five analytes (AFP, uE3, total hCG, hyperglycosylated hCG, DIA) utilizing maternal serum, algorithm reported as a risk score", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "81512", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43527962, + "CONCEPT_NAME" : "Fetal congenital abnormalities, biochemical assays of four analytes (AFP, uE3, hCG [any form], DIA) utilizing maternal serum, algorithm reported as a risk score (may include additional results from previous biochemical testing)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "81511", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43527961, + "CONCEPT_NAME" : "Fetal congenital abnormalities, biochemical assays of three analytes (AFP, uE3, hCG [any form]), utilizing maternal serum, algorithm reported as a risk score", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "81510", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43527960, + "CONCEPT_NAME" : "Fetal congenital abnormalities, biochemical assays of three proteins (PAPP-A, hCG [any form], DIA), utilizing maternal serum, algorithm reported as a risk score", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "81509", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43527959, + "CONCEPT_NAME" : "Fetal congenital abnormalities, biochemical assays of two proteins (PAPP-A, hCG [any form]), utilizing maternal serum, algorithm reported as a risk score", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "81508", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110283, + "CONCEPT_NAME" : "Fetal contraction stress test", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59020", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3001951, + "CONCEPT_NAME" : "Fetal Crown Rump length US", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "11957-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Clinical Observation" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4079844, + "CONCEPT_NAME" : "Fetal death", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276507005", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Event" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 75605, + "CONCEPT_NAME" : "Fetal death, affecting management of mother", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14022007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4071603, + "CONCEPT_NAME" : "Fetal death due to prelabor anoxia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206258000", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Event" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 436228, + "CONCEPT_NAME" : "Fetal death due to termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "67313008", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Event" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442338, + "CONCEPT_NAME" : "Fetal death from asphyxia AND/OR anoxia before onset of labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "44174001", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Event" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443695, + "CONCEPT_NAME" : "Fetal death from asphyxia AND/OR anoxia during labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1762004", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Event" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4178809, + "CONCEPT_NAME" : "Fetal disorder secondary to chemicals", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "363127005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 80165, + "CONCEPT_NAME" : "Fetal disproportion", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "31805001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 73268, + "CONCEPT_NAME" : "Fetal distress affecting management of mother", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12867002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37311827, + "CONCEPT_NAME" : "Fetal distress due to augmentation of labor with oxytocin", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "816967008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435369, + "CONCEPT_NAME" : "Fetal distress, in liveborn infant", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90562004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4216551, + "CONCEPT_NAME" : "Fetal dystocia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7245003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4334808, + "CONCEPT_NAME" : "Fetal echocardiography", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "433235006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4034866, + "CONCEPT_NAME" : "Fetal echocardiography, real time with image documentation (2D) with M-mode recording", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15282006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530902, + "CONCEPT_NAME" : "Fetal effect of maternal toxemia", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "609440000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004809, + "CONCEPT_NAME" : "Fetal EKG (scalp)", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "75.32", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45757059, + "CONCEPT_NAME" : "Fetal exposure to teratogenic substance", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "103031000119101", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4203009, + "CONCEPT_NAME" : "Fetal exsanguination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "52977000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2212334, + "CONCEPT_NAME" : "Fetal fibronectin, cervicovaginal secretions, semi-quantitative", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "82731", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37310859, + "CONCEPT_NAME" : "Fetal gastrointestinal abnormality", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "121801000119105", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4210896, + "CONCEPT_NAME" : "Fetal gestational age", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57036006", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Observable Entity" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4266763, + "CONCEPT_NAME" : "Fetal gestation at delivery - finding", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "364739001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 80204, + "CONCEPT_NAME" : "Fetal growth restriction", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "22033007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4084439, + "CONCEPT_NAME" : "Fetal heart monitoring", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "281568006", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3006722, + "CONCEPT_NAME" : "Fetal Heart Narrative Activity US", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "11616-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Clinical Observation" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437098, + "CONCEPT_NAME" : "Fetal intrauterine distress first noted during labor AND/OR delivery in liveborn infant", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7996008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433311, + "CONCEPT_NAME" : "Fetal intrauterine distress noted before labor in liveborn infant", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "74796005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36716504, + "CONCEPT_NAME" : "Fetal intrauterine intestinal perforation due to in utero intraluminal obstruction", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "722532002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36716503, + "CONCEPT_NAME" : "Fetal intrauterine intestinal perforation due to in utero volvulus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "722531009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42538545, + "CONCEPT_NAME" : "Fetal intrauterine intestinal perforation with congenital atresia of intestinal tract", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "762273001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42538544, + "CONCEPT_NAME" : "Fetal intrauterine intestinal perforation with congenital stenosis of intestinal tract", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "762272006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36715840, + "CONCEPT_NAME" : "Fetal intrauterine perforation of intestine", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "721613002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36715841, + "CONCEPT_NAME" : "Fetal intrauterine perforation of stomach", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "721614008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2212438, + "CONCEPT_NAME" : "Fetal lung maturity assessment; fluorescence polarization", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "83663", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2212439, + "CONCEPT_NAME" : "Fetal lung maturity assessment; lamellar body density", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "83664", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2212436, + "CONCEPT_NAME" : "Fetal lung maturity assessment; lecithin sphingomyelin (L/S) ratio", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "83661", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3032604, + "CONCEPT_NAME" : "Fetal lung maturity in Amniotic fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "35084-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3050978, + "CONCEPT_NAME" : "Fetal lung maturity [Interpretation] in Amniotic fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "47226-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 201366, + "CONCEPT_NAME" : "Fetal-maternal hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "71028008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 193535, + "CONCEPT_NAME" : "Fetal-maternal hemorrhage - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199577000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 196757, + "CONCEPT_NAME" : "Fetal-maternal hemorrhage with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199578005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44790237, + "CONCEPT_NAME" : "Fetal measurement scan", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "232671000000100", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110287, + "CONCEPT_NAME" : "Fetal monitoring during labor by consulting physician (ie, non-attending physician) with written report; interpretation only", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59051", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110286, + "CONCEPT_NAME" : "Fetal monitoring during labor by consulting physician (ie, non-attending physician) with written report; supervision and interpretation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59050", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4146847, + "CONCEPT_NAME" : "Fetal monitoring scalp injury", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "268822004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4145315, + "CONCEPT_NAME" : "Fetal movements felt", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "268470003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40759953, + "CONCEPT_NAME" : "Fetal Narrative Movement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "56834-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Clinical Observation" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3003857, + "CONCEPT_NAME" : "Fetal Narrative Sex US", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "11883-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Clinical Observation" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110284, + "CONCEPT_NAME" : "Fetal non-stress test", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59025", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4271327, + "CONCEPT_NAME" : "Fetal OR intrauterine acidosis first noted during labor AND/OR delivery in liveborn infant", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "63055005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061924, + "CONCEPT_NAME" : "Fetal OR intrauterine anoxia AND/OR hypoxia noted before labor in liveborn infant", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "17082004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4281385, + "CONCEPT_NAME" : "Fetal OR intrauterine asphyxia, not clear if noted before OR after onset of labor in liveborn infant", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "66231000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4142900, + "CONCEPT_NAME" : "Fetal OR intrauterine asphyxia noted before labor in liveborn infant", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "33721007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4314282, + "CONCEPT_NAME" : "Fetal OR intrauterine hypercapnia first noted during labor AND/OR delivery in liveborn infant", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "86664001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438541, + "CONCEPT_NAME" : "Fetal or neonatal effect of abnormality of chorion", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "75592000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36716530, + "CONCEPT_NAME" : "Fetal or neonatal effect of abnormal maternal chemistry", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "722564009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434483, + "CONCEPT_NAME" : "Fetal or neonatal effect of abnormal uterine contraction", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "63254003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4148097, + "CONCEPT_NAME" : "Fetal or neonatal effect of abruptio placentae", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "268803008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433309, + "CONCEPT_NAME" : "Fetal or neonatal effect of alcohol transmitted via placenta and/or breast milk", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "36558000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44784300, + "CONCEPT_NAME" : "Fetal or neonatal effect of anti-infective agent transmitted via placenta", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "698402008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432429, + "CONCEPT_NAME" : "Fetal or neonatal effect of anti-infective agent transmitted via placenta and/or breast milk", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64415008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439129, + "CONCEPT_NAME" : "Fetal or neonatal effect of breech delivery and extraction", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "4787007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439135, + "CONCEPT_NAME" : "Fetal or neonatal effect of cesarean delivery", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "50968003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4071485, + "CONCEPT_NAME" : "Fetal or neonatal effect of cesarean section", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206123007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 436518, + "CONCEPT_NAME" : "Fetal or neonatal effect of chorioamnionitis", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "55730009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36716552, + "CONCEPT_NAME" : "Fetal or neonatal effect of chorionic villous sampling", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "722592004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444464, + "CONCEPT_NAME" : "Fetal or neonatal effect of chronic maternal circulatory disease", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "9069004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 436220, + "CONCEPT_NAME" : "Fetal or neonatal effect of chronic maternal respiratory disease", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "1363007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435927, + "CONCEPT_NAME" : "Fetal or neonatal effect of complication of labor and/or delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "76012002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36717572, + "CONCEPT_NAME" : "Fetal or neonatal effect of complications of fetal surgery", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "722594003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441682, + "CONCEPT_NAME" : "Fetal or neonatal effect of compression of umbilical cord", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86629005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440203, + "CONCEPT_NAME" : "Fetal or neonatal effect of condition of umbilical cord", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "81402009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437975, + "CONCEPT_NAME" : "Fetal or neonatal effect of delivery by vacuum extractor", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "73890002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44784362, + "CONCEPT_NAME" : "Fetal or neonatal effect of disproportion during labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "698497008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435063, + "CONCEPT_NAME" : "Fetal or neonatal effect of ectopic pregnancy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "69693005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4070412, + "CONCEPT_NAME" : "Fetal or neonatal effect of entanglement of cord", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206090002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36716553, + "CONCEPT_NAME" : "Fetal or neonatal effect of fetal blood sampling", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "722593009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435918, + "CONCEPT_NAME" : "Fetal or neonatal effect of forceps delivery", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "28627008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4047718, + "CONCEPT_NAME" : "Fetal or neonatal effect of forceps delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206121009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4070425, + "CONCEPT_NAME" : "Fetal or neonatal effect of hypertonic labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206138008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4070426, + "CONCEPT_NAME" : "Fetal or neonatal effect of hypertonic uterine dysfunction", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206139000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435917, + "CONCEPT_NAME" : "Fetal or neonatal effect of incompetent cervix", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "70898005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42538699, + "CONCEPT_NAME" : "Fetal or neonatal effect of injury of umbilical cord", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "762465007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4070413, + "CONCEPT_NAME" : "Fetal or neonatal effect of knot in cord", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206091003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4048006, + "CONCEPT_NAME" : "Fetal or neonatal effect of long cord", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206100009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44784412, + "CONCEPT_NAME" : "Fetal or neonatal effect of malposition during labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "698554000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 78563, + "CONCEPT_NAME" : "Fetal or neonatal effect of malpresentation before labor", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "30409006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 76521, + "CONCEPT_NAME" : "Fetal or neonatal effect of malpresentation, malposition and/or disproportion during labor and/or delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "5984000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43531708, + "CONCEPT_NAME" : "Fetal or neonatal effect of maternal alcohol addiction", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609438005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44784346, + "CONCEPT_NAME" : "Fetal or neonatal effect of maternal analgesia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "698481003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44784342, + "CONCEPT_NAME" : "Fetal or neonatal effect of maternal anesthesia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "698480002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437976, + "CONCEPT_NAME" : "Fetal or neonatal effect of maternal anesthesia and/or analgesia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "82719008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4048130, + "CONCEPT_NAME" : "Fetal or neonatal effect of maternal exposure to environmental chemical substances", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206156008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36716526, + "CONCEPT_NAME" : "Fetal or neonatal effect of maternal gestational edema and proteinuria without hypertension", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "722559005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433027, + "CONCEPT_NAME" : "Fetal or neonatal effect of maternal hypertensive disease", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "268794002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 436219, + "CONCEPT_NAME" : "Fetal or neonatal effect of maternal infection", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "206005002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438868, + "CONCEPT_NAME" : "Fetal or neonatal effect of maternal injury", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "25932007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434744, + "CONCEPT_NAME" : "Fetal or neonatal effect of maternal medical problem", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "206002004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434745, + "CONCEPT_NAME" : "Fetal or neonatal effect of maternal nutritional disorder", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "67743008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4047585, + "CONCEPT_NAME" : "Fetal or neonatal effect of maternal nutritional disorder", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "206011004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36717570, + "CONCEPT_NAME" : "Fetal or neonatal effect of maternal obesity with adult body mass index 30 or greater but less than 40", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "722562008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36716529, + "CONCEPT_NAME" : "Fetal or neonatal effect of maternal obesity with adult body mass index equal to or greater than 40", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "722563003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36716528, + "CONCEPT_NAME" : "Fetal or neonatal effect of maternal overweight or obesity", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "722561001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36716527, + "CONCEPT_NAME" : "Fetal or neonatal effect of maternal periodontal disease", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "722560000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4118056, + "CONCEPT_NAME" : "Fetal or neonatal effect of maternal premature rupture of membrane", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206037001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435062, + "CONCEPT_NAME" : "Fetal or neonatal effect of maternal renal and/or urinary tract disease", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "81804001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44782462, + "CONCEPT_NAME" : "Fetal or neonatal effect of maternal renal disease", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "698552001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36716731, + "CONCEPT_NAME" : "Fetal or neonatal effect of maternal respiratory disease", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "722896005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4047586, + "CONCEPT_NAME" : "Fetal or neonatal effect of maternal surgical operation", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "206013001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44784411, + "CONCEPT_NAME" : "Fetal or neonatal effect of maternal urinary disease", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "698553006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440211, + "CONCEPT_NAME" : "Fetal or neonatal effect of morphologic abnormality of placenta", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87045002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441680, + "CONCEPT_NAME" : "Fetal or neonatal effect of multiple pregnancy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "18001006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44784612, + "CONCEPT_NAME" : "Fetal or neonatal effect of narcotic transmitted via breast milk", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "698787003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44784611, + "CONCEPT_NAME" : "Fetal or neonatal effect of narcotic transmitted via placenta", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "698786007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 436517, + "CONCEPT_NAME" : "Fetal or neonatal effect of narcotic transmitted via placenta and/or breast milk", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "78302009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440829, + "CONCEPT_NAME" : "Fetal or neonatal effect of noxious influences transmitted via placenta or breast milk", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206153000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437088, + "CONCEPT_NAME" : "Fetal or neonatal effect of oligohydramnios", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "65599008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4047595, + "CONCEPT_NAME" : "Fetal or neonatal effect of placental damage caused by cesarean section", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206070006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44784305, + "CONCEPT_NAME" : "Fetal or neonatal effect of placental hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "698408007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44782664, + "CONCEPT_NAME" : "Fetal or neonatal effect of placental separation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "698407002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 201681, + "CONCEPT_NAME" : "Fetal or neonatal effect of placental separation and/or hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "68961008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441122, + "CONCEPT_NAME" : "Fetal or neonatal effect of placental transfusion syndrome", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "63654005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 201410, + "CONCEPT_NAME" : "Fetal or neonatal effect of placenta previa", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "62048002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4176131, + "CONCEPT_NAME" : "Fetal or neonatal effect of placentitis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "5074003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437668, + "CONCEPT_NAME" : "Fetal or neonatal effect of polyhydramnios", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "66215008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433310, + "CONCEPT_NAME" : "Fetal or neonatal effect of precipitate delivery", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "82587000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433018, + "CONCEPT_NAME" : "Fetal or neonatal effect of prolapsed cord", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206087008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4048003, + "CONCEPT_NAME" : "Fetal or neonatal effect of short cord", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206095007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441684, + "CONCEPT_NAME" : "Fetal or neonatal effect of surgical operation on mother", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "56192002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4048004, + "CONCEPT_NAME" : "Fetal or neonatal effect of thrombosis of umbilical cord", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206096008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4047711, + "CONCEPT_NAME" : "Fetal or neonatal effect of torsion of cord", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206092005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442148, + "CONCEPT_NAME" : "Fetal or neonatal effect of toxic substance transmitted via placenta and/or breast milk", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "89873008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4077736, + "CONCEPT_NAME" : "Fetal or neonatal effect of transverse lie", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "18909006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4047719, + "CONCEPT_NAME" : "Fetal or neonatal effect of vacuum extraction delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206122002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4070414, + "CONCEPT_NAME" : "Fetal or neonatal effect of varices of cord", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206097004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4047712, + "CONCEPT_NAME" : "Fetal or neonatal effect of vasa previa of cord", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206099001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4048005, + "CONCEPT_NAME" : "Fetal or neonatal effect of velamentous insertion of cord", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206098009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433319, + "CONCEPT_NAME" : "Fetal or neonatal effects of maternal complication of pregnancy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "68983007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432734, + "CONCEPT_NAME" : "Fetal OR neonatal hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "111467008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36716545, + "CONCEPT_NAME" : "Fetal or neonatal intracerebral non-traumatic hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "722582007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36716543, + "CONCEPT_NAME" : "Fetal or neonatal intraventricular non-traumatic hemorrhage grade 4", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "722580004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4328890, + "CONCEPT_NAME" : "Fetal OR neonatal jaundice from drugs AND/OR toxins transmitted from mother", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "22067002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4230351, + "CONCEPT_NAME" : "Fetal OR neonatal jaundice from infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "89062002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4067525, + "CONCEPT_NAME" : "Fetal OR neonatal jaundice from polycythemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "21404001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4096143, + "CONCEPT_NAME" : "Fetal OR neonatal jaundice from swallowed maternal blood", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26291002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36716546, + "CONCEPT_NAME" : "Fetal or neonatal non-traumatic hemorrhage of subarachnoid space of brain", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "722583002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36716547, + "CONCEPT_NAME" : "Fetal or neonatal non-traumatic hemorrhage of subdural space of brain", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "722584008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36716544, + "CONCEPT_NAME" : "Fetal or neonatal non-traumatic intraventricular hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "722581000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36717220, + "CONCEPT_NAME" : "Fetal or neonatal vitamin B12 deficiency due to maternal vitamin B12 deficiency", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "722597005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4262288, + "CONCEPT_NAME" : "Fetal RBC determination", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "35793002", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110285, + "CONCEPT_NAME" : "Fetal scalp blood sampling", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59030", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015304, + "CONCEPT_NAME" : "Fetal size accords with dates", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169732009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4318554, + "CONCEPT_NAME" : "Fetal virilism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "95622006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4151412, + "CONCEPT_NAME" : "Fetoplacental hormone measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "269851009", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 436804, + "CONCEPT_NAME" : "Fetus OR newborn affected by premature rupture of membranes", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "38511004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 81360, + "CONCEPT_NAME" : "Fetus papyraceous", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90127001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4047725, + "CONCEPT_NAME" : "Fetus small-for-dates with signs of malnutrition", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206164002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442827, + "CONCEPT_NAME" : "Fetus with central nervous system malformation with antenatal problem", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "199520001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 72697, + "CONCEPT_NAME" : "Fetus with chromosomal abnormality - delivered", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "199526007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 80463, + "CONCEPT_NAME" : "Fetus with chromosomal abnormality with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199527003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4064277, + "CONCEPT_NAME" : "Fetus with damage due to intrauterine contraceptive device", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199558002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4063296, + "CONCEPT_NAME" : "Fetus with damage due to intrauterine contraceptive device - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199560000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4063297, + "CONCEPT_NAME" : "Fetus with damage due to intrauterine contraceptive device with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199561001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060672, + "CONCEPT_NAME" : "Fetus with drug damage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199547006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4064177, + "CONCEPT_NAME" : "Fetus with drug damage - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199549009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4064178, + "CONCEPT_NAME" : "Fetus with drug damage with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199550009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4064169, + "CONCEPT_NAME" : "Fetus with hereditary disease", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199531009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4064171, + "CONCEPT_NAME" : "Fetus with hereditary disease - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199533007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4064172, + "CONCEPT_NAME" : "Fetus with hereditary disease with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199534001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4143204, + "CONCEPT_NAME" : "Fetus with viral damage via mother", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "267254000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4064174, + "CONCEPT_NAME" : "Fetus with viral damage via mother - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199538003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4064175, + "CONCEPT_NAME" : "Fetus with viral damage via mother with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199539006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4129181, + "CONCEPT_NAME" : "Fibrinolysis - postpartum", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237336007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4171110, + "CONCEPT_NAME" : "Fifth day fits", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276597004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4306064, + "CONCEPT_NAME" : "Fimbrial extraction of tubal pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "387616000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4100257, + "CONCEPT_NAME" : "Fimbriectomy of fallopian tube", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25344002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4200202, + "CONCEPT_NAME" : "Finding of Apgar score", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "302083008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4199559, + "CONCEPT_NAME" : "Finding of appearance of umbilical stump", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "302084002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4201383, + "CONCEPT_NAME" : "Finding of birth length", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "302082003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4103472, + "CONCEPT_NAME" : "Finding of birth weight centile", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "301332001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4126735, + "CONCEPT_NAME" : "Finding of color of umbilical stump", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "289324005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4090743, + "CONCEPT_NAME" : "Finding of consistency of lochia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "249213009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 195877, + "CONCEPT_NAME" : "Finding of gravid uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "289675001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4116804, + "CONCEPT_NAME" : "Finding of head circumference", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "301338002", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4124634, + "CONCEPT_NAME" : "Finding of involution of uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "289750007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432441, + "CONCEPT_NAME" : "Finding of length of gestation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "366323009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4116805, + "CONCEPT_NAME" : "Finding of measures of head circumference", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "301339005", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4199560, + "CONCEPT_NAME" : "Finding of moistness of umbilical stump", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "302085001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439156, + "CONCEPT_NAME" : "Finding of neonate", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "118188004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4126738, + "CONCEPT_NAME" : "Finding of odor of umbilical cord stump", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "289328008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4201382, + "CONCEPT_NAME" : "Finding of state at birth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "302079008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4126409, + "CONCEPT_NAME" : "Finding of umbilical cord clamp", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "289334001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4090747, + "CONCEPT_NAME" : "Finding of umbilical stump", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "249229001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 197343, + "CONCEPT_NAME" : "First degree perineal laceration", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57759005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 192978, + "CONCEPT_NAME" : "First degree perineal tear during delivery - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199916005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 199088, + "CONCEPT_NAME" : "First degree perineal tear during delivery with postnatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199917001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3657563, + "CONCEPT_NAME" : "First trimester bleeding", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1323351000000104", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4239938, + "CONCEPT_NAME" : "First trimester pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57630001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4147431, + "CONCEPT_NAME" : "Flaccid newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "34761004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4096531, + "CONCEPT_NAME" : "Flaccid uterus after delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "249202006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4140071, + "CONCEPT_NAME" : "Floppy infant syndrome", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "33010005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42597080, + "CONCEPT_NAME" : "Foaling paralysis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "318771000009109", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED Veterinary", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37399364, + "CONCEPT_NAME" : "Folinic acid responsive seizure syndrome", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "717276003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110274, + "CONCEPT_NAME" : "Follicle puncture for oocyte retrieval, any method", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "58970", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4217642, + "CONCEPT_NAME" : "Footling breech delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72492007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4075187, + "CONCEPT_NAME" : "Forceps cephalic delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177161009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4114637, + "CONCEPT_NAME" : "Forceps delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "302383004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435022, + "CONCEPT_NAME" : "Forceps delivery - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200130005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4032761, + "CONCEPT_NAME" : "Forceps delivery, face to pubes", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "236977006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4324549, + "CONCEPT_NAME" : "Forceps delivery with rotation of fetal head", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "71166009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004711, + "CONCEPT_NAME" : "Forceps rotation of fetal head", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72.4", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "3-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004702, + "CONCEPT_NAME" : "Forceps, vacuum, and breech delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "2-dig nonbill code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 198495, + "CONCEPT_NAME" : "Fourth degree perineal laceration", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "399031001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4059969, + "CONCEPT_NAME" : "Fourth degree perineal laceration involving anal mucosa", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16950007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4143634, + "CONCEPT_NAME" : "Fourth degree perineal laceration involving rectal mucosa", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "34262005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 194429, + "CONCEPT_NAME" : "Fourth degree perineal tear during delivery - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199934009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 198496, + "CONCEPT_NAME" : "Fourth degree perineal tear during delivery with postnatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199935005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 81685, + "CONCEPT_NAME" : "Fracture of clavicle due to birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206209004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4071595, + "CONCEPT_NAME" : "Fracture of femur due to birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206213006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4070316, + "CONCEPT_NAME" : "Fracture of long bone, as birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "20596003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36716537, + "CONCEPT_NAME" : "Fracture of mandible due to birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "722573001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4048135, + "CONCEPT_NAME" : "Fracture of skull due to birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206215004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4273394, + "CONCEPT_NAME" : "Fracture of spine due to birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64728002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4244672, + "CONCEPT_NAME" : "Frank breech delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "38479009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4096237, + "CONCEPT_NAME" : "Free beta human chorionic gonadotrophin measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "250658009", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44807244, + "CONCEPT_NAME" : "Free beta human chorionic gonadotrophin multiple of median measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "816021000000107", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4034159, + "CONCEPT_NAME" : "Fresh stillbirth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237365001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4032737, + "CONCEPT_NAME" : "Frozen embryo transfer", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "236894009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2721243, + "CONCEPT_NAME" : "Frozen embryo transfer procedure cancelled before transfer, case rate", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "S4018", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2721241, + "CONCEPT_NAME" : "Frozen in vitro fertilization cycle, case rate", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "S4016", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4296686, + "CONCEPT_NAME" : "Full postnatal examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "384635005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4003230, + "CONCEPT_NAME" : "Functional hyperinsulinism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12002009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4104821, + "CONCEPT_NAME" : "Furuncle of umbilicus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "29199007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4338674, + "CONCEPT_NAME" : "Galactocele associated with childbirth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87840008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4068274, + "CONCEPT_NAME" : "Galactocele not associated with childbirth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "17413005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 74716, + "CONCEPT_NAME" : "Galactorrhea associated with childbirth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "71639005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061187, + "CONCEPT_NAME" : "Galactorrhea due to non-obstetric cause", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198115002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4066260, + "CONCEPT_NAME" : "Galactorrhea in pregnancy and the puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200444007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 74440, + "CONCEPT_NAME" : "Galactorrhea in pregnancy and the puerperium - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200446009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 74717, + "CONCEPT_NAME" : "Galactorrhea in pregnancy and the puerperium - delivered with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200447000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 76772, + "CONCEPT_NAME" : "Galactorrhea in pregnancy and the puerperium with antenatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200448005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443328, + "CONCEPT_NAME" : "Galactorrhea in pregnancy and the puerperium with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200449002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 79884, + "CONCEPT_NAME" : "Galactorrhea not associated with childbirth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "78622004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4127104, + "CONCEPT_NAME" : "Gamete intrafallopian transfer", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "236912008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4072421, + "CONCEPT_NAME" : "Gamete intrauterine transfer", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "176843009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110276, + "CONCEPT_NAME" : "Gamete, zygote, or embryo intrafallopian transfer, any method", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "58976", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4172870, + "CONCEPT_NAME" : "Gastritis of newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276527006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442777, + "CONCEPT_NAME" : "Generalized infection during labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "66844003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 77052, + "CONCEPT_NAME" : "Generally contracted pelvis - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199405005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 76750, + "CONCEPT_NAME" : "Generally contracted pelvis with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199406006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061522, + "CONCEPT_NAME" : "General practitioner unit delivery booking", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169622009", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4091200, + "CONCEPT_NAME" : "Genital tear resulting from childbirth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "249219008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 196177, + "CONCEPT_NAME" : "Genital tract AND/OR pelvic infection following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "111425004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45768620, + "CONCEPT_NAME" : "Genital tract infection in puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "707089008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 77340, + "CONCEPT_NAME" : "Genitourinary tract infection in pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "267204006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 81357, + "CONCEPT_NAME" : "Genitourinary tract infection in pregnancy - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199106001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 80778, + "CONCEPT_NAME" : "Genitourinary tract infection in pregnancy - delivered with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199107005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 74415, + "CONCEPT_NAME" : "Genitourinary tract infection in pregnancy - not delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199108000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4178165, + "CONCEPT_NAME" : "Gestation 14 - 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428567001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181468, + "CONCEPT_NAME" : "Gestation 9- 13 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428930004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4173324, + "CONCEPT_NAME" : "Gestation abnormality", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276614003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3048230, + "CONCEPT_NAME" : "Gestational age in weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "49051-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Clinical Observation" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3045991, + "CONCEPT_NAME" : "Gestational age of fetus by Amniocentesis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "33901-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40481315, + "CONCEPT_NAME" : "Gestational age unknown", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "441924001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3036844, + "CONCEPT_NAME" : "Gestational age US composite estimate", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "11888-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Clinical Observation" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4221190, + "CONCEPT_NAME" : "Gestational choriocarcinoma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "417570003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3183244, + "CONCEPT_NAME" : "Gestational diabetes during pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "5620001000004106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "Nebraska Lexicon", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4024659, + "CONCEPT_NAME" : "Gestational diabetes mellitus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "11687002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4326434, + "CONCEPT_NAME" : "Gestational diabetes mellitus class A-1", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "75022004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4263902, + "CONCEPT_NAME" : "Gestational diabetes mellitus class A-2", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46894009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37018765, + "CONCEPT_NAME" : "Gestational diabetes mellitus complicating pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40801000119106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443214, + "CONCEPT_NAME" : "Gestational edema", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237285000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442565, + "CONCEPT_NAME" : "Gestational edema without hypertension", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "77376005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4058113, + "CONCEPT_NAME" : "Gestational edema with proteinuria", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199141002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4214186, + "CONCEPT_NAME" : "Gestational trophoblastic disease", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "416402001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530970, + "CONCEPT_NAME" : "Gestational trophoblastic lesion", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609516006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530973, + "CONCEPT_NAME" : "Gestational trophoblastic neoplasia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609519004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181162, + "CONCEPT_NAME" : "Gestation greater than 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429715006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4324063, + "CONCEPT_NAME" : "Gestation less than 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428566005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438542, + "CONCEPT_NAME" : "Gestation less than 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313178001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45770261, + "CONCEPT_NAME" : "Gestation less than 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "925561000000100", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4322726, + "CONCEPT_NAME" : "Gestation less than 9 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428058009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4242241, + "CONCEPT_NAME" : "Gestation period, 10 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "38039008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4174506, + "CONCEPT_NAME" : "Gestation period, 11 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "50367001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4197245, + "CONCEPT_NAME" : "Gestation period, 12 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "79992004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4266517, + "CONCEPT_NAME" : "Gestation period, 13 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "62333002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4248725, + "CONCEPT_NAME" : "Gestation period, 14 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72846000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4283690, + "CONCEPT_NAME" : "Gestation period, 15 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6678005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4049621, + "CONCEPT_NAME" : "Gestation period, 16 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15633004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4277749, + "CONCEPT_NAME" : "Gestation period, 17 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65683006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4097608, + "CONCEPT_NAME" : "Gestation period, 18 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25026004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181751, + "CONCEPT_NAME" : "Gestation period, 19 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54318006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4337360, + "CONCEPT_NAME" : "Gestation period, 1 week", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87178007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4051642, + "CONCEPT_NAME" : "Gestation period, 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "23464008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4185780, + "CONCEPT_NAME" : "Gestation period, 21 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "41438001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4274955, + "CONCEPT_NAME" : "Gestation period, 22 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65035007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336226, + "CONCEPT_NAME" : "Gestation period, 23 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86883006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439922, + "CONCEPT_NAME" : "Gestation period, 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313179009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435640, + "CONCEPT_NAME" : "Gestation period, 25 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72544005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444023, + "CONCEPT_NAME" : "Gestation period, 26 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48688005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432430, + "CONCEPT_NAME" : "Gestation period, 27 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46906003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444461, + "CONCEPT_NAME" : "Gestation period, 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90797000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444417, + "CONCEPT_NAME" : "Gestation period, 29 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45139008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4220085, + "CONCEPT_NAME" : "Gestation period, 2 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "82118009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434484, + "CONCEPT_NAME" : "Gestation period, 30 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "71355009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433864, + "CONCEPT_NAME" : "Gestation period, 31 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64920003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442558, + "CONCEPT_NAME" : "Gestation period, 32 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7707000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441678, + "CONCEPT_NAME" : "Gestation period, 33 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "78395001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443874, + "CONCEPT_NAME" : "Gestation period, 34 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13763000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444267, + "CONCEPT_NAME" : "Gestation period, 35 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84132007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438543, + "CONCEPT_NAME" : "Gestation period, 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57907009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442355, + "CONCEPT_NAME" : "Gestation period, 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43697006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443871, + "CONCEPT_NAME" : "Gestation period, 38 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13798002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435655, + "CONCEPT_NAME" : "Gestation period, 39 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80487005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4326232, + "CONCEPT_NAME" : "Gestation period, 3 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "74952004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442769, + "CONCEPT_NAME" : "Gestation period, 41 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63503002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444067, + "CONCEPT_NAME" : "Gestation period, 42 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36428009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4195157, + "CONCEPT_NAME" : "Gestation period, 4 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "44398003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4290009, + "CONCEPT_NAME" : "Gestation period, 5 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "37005007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4313026, + "CONCEPT_NAME" : "Gestation period, 6 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86801005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4270513, + "CONCEPT_NAME" : "Gestation period, 7 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63110000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4132434, + "CONCEPT_NAME" : "Gestation period, 8 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26690008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4245908, + "CONCEPT_NAME" : "Gestation period, 9 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "931004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 762907, + "CONCEPT_NAME" : "Gestation period greater than or equal to 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "433601000124106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4169089, + "CONCEPT_NAME" : "Glucagon resistance", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48839007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4236507, + "CONCEPT_NAME" : "Glucoglycinuria", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "9111008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4042066, + "CONCEPT_NAME" : "Glucometer blood glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "166900001", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3003994, + "CONCEPT_NAME" : "Glucose-6-Phosphate dehydrogenase [Enzymatic activity/mass] in Red Blood Cells", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "32546-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3037524, + "CONCEPT_NAME" : "Glucose-6-Phosphate dehydrogenase [Enzymatic activity/volume] in Red Blood Cells", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "2357-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2212367, + "CONCEPT_NAME" : "Glucose, blood by glucose monitoring device(s) cleared by the FDA specifically for home use", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "82962", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2212360, + "CONCEPT_NAME" : "Glucose; blood, reagent strip", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "82948", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2212357, + "CONCEPT_NAME" : "Glucose, body fluid, other than blood", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "82945", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4094447, + "CONCEPT_NAME" : "Glucose concentration, test strip measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "250417005", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4017758, + "CONCEPT_NAME" : "Glucose CSF/glucose plasma ratio measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "104685000", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4077514, + "CONCEPT_NAME" : "Glucose in sample", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "275794004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3049746, + "CONCEPT_NAME" : "Glucose.IV [Mass] of Dose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "47621-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4275336, + "CONCEPT_NAME" : "Glucose level - finding", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "365811003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3025893, + "CONCEPT_NAME" : "Glucose [Mass/time] in 10 hour Urine", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "21307-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40762090, + "CONCEPT_NAME" : "Glucose [Mass/time] in 18 hour Urine", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "58997-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40758981, + "CONCEPT_NAME" : "Glucose [Mass/time] in 24 hour Stool", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55860-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3023544, + "CONCEPT_NAME" : "Glucose [Mass/time] in 6 hour Urine", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "18227-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3005943, + "CONCEPT_NAME" : "Glucose [Mass/time] in 8 hour Urine", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "21306-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3016083, + "CONCEPT_NAME" : "Glucose [Mass/volume] in 24 hour Peritoneal dialysis fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12629-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3014014, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Amniotic fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6300-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3031266, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Arterial blood", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "41651-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3048865, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Blood --2 hours post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "49134-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3034530, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Blood --2 hours post meal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6689-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3011424, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Blood by Automated test strip", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "2340-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3014053, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Blood by Test strip manual", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "2341-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36304599, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Blood --post meal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87422-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36303387, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Blood --pre-meal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "88365-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3019210, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Body fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "2344-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3004077, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Capillary blood", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "32016-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3038962, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Capillary blood --baseline", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40858-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3034962, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Capillary blood by Glucometer", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "41653-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3022548, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Cerebral spinal fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "2342-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36031895, + "CONCEPT_NAME" : "Glucose [Mass/volume] in DBS", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "96594-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3023572, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Dialysis fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "2343-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3002436, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Dialysis fluid --2 hour specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12612-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3001346, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Dialysis fluid --4 hour specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12613-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3016680, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Gastric fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14386-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3045908, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Milk --2 hours post meal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43278-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3030618, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Pericardial fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "33405-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3015544, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Peritoneal dialysis fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12628-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3020909, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Peritoneal dialysis fluid --1st specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12630-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3033618, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Peritoneal dialysis fluid --2 hour dwell specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12608-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3011789, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Peritoneal dialysis fluid --2nd specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12631-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3015046, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Peritoneal dialysis fluid --3rd specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12632-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3034466, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Peritoneal dialysis fluid --4 hour dwell specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12609-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40759281, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Peritoneal dialysis fluid --4 hours post peritoneal dialysis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "56160-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3008572, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Peritoneal dialysis fluid --4th specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12633-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3016726, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Peritoneal dialysis fluid --6th specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12635-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3017261, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Peritoneal dialysis fluid --7th specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12636-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3004251, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Peritoneal dialysis fluid --8th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12637-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40763914, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Peritoneal dialysis fluid --baseline", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "61153-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3000607, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Peritoneal dialysis fluid --pre dialysis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12607-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3002240, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Peritoneal fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "2347-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3010075, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Peritoneal fluid --12 hours post peritoneal dialysis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12220-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3049817, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Peritoneal fluid --24 hours post peritoneal dialysis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48787-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3004617, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Peritoneal fluid --2 hours post peritoneal dialysis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12218-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3003462, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Peritoneal fluid --4 hours post peritoneal dialysis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12219-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3003403, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Pleural fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "2346-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3004501, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "2345-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3041015, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --100 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40004-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3039562, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --10.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40259-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3027276, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --105 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "21308-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3043908, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --10.75 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40260-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3026728, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --10 AM specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16165-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3025211, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --10 hours fasting", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10450-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3006760, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --10 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12645-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3017592, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --10 minutes post 0.5 g/kg glucose IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1498-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37020527, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --10 minutes post dose glucagon", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "92819-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3052646, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --10 minutes post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48984-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3026020, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --10 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12654-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3006333, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --10 minutes pre XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12651-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3049496, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --10 PM specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48991-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3032780, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --10th specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "50208-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3036283, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --10th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12622-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3041875, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --110 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40005-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3041757, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --11.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40008-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3012635, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --11 AM specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16166-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3006325, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --11 hour post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26817-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3036807, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --11th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12623-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3044527, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --12.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40009-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3048585, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --12 AM specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48992-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3002009, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --12 hours fasting", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1554-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3007781, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --12 hours post 50 g lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "18354-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3024583, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --12 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12647-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3041863, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --12 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40028-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3048856, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --12 PM specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48988-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3023379, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --12th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12624-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3043648, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --13.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40011-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040375, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --13 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40010-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3039582, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --13 minutes pre XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40261-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3013802, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --13th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12625-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040872, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --14 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40012-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3044252, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --14 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40029-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3014163, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --14th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12626-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3038855, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --15.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40013-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3021232, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --1.5 hours post 0.05-0.15 U insulin/kg IV 12 hours fasting", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1493-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3033778, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --1.5 hours post 0.5 g/kg glucose IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1492-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3012415, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --1.5 hours post 100 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1494-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3008804, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --1.5 hours post 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1496-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37020666, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --1.5 hours post dose cloNIDine", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "92669-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3039397, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --1.5 hours post dose fructose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "51767-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3017053, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --1.5 hours post dose insulin IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1497-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3001975, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --1.5 hours post dose lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26779-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 21494214, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --1.5 hours post meal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80959-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3039851, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --1.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40003-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36660183, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --15 min post meal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "95078-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3029871, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --15 minutes post 0.1 U/kg insulin", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "50751-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3034771, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --15 minutes post 100 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "11142-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 21492336, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --15 minutes post dose arginine+insulin", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "79193-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3025113, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --15 minutes post dose lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12648-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3005787, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --15 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12639-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040739, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --15 minutes pre XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "39999-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3009006, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --15th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12627-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040457, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --16 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40014-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3038995, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --16 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40030-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3038543, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --17.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40015-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3041353, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --18.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40017-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3038958, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --18 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40016-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040694, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --19.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40018-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040940, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --19 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40031-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3043678, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --1 day post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40024-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3009245, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --1 hour post 0.05-0.15 U insulin/kg IV post 12H CFst", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1500-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3017892, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --1 hour post 0.5 g/kg glucose IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1499-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3014716, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --1 hour post 100 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1501-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3008191, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --1 hour post 1.2 g/kg lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "30344-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3016699, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --1 hour post 50 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1504-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3007332, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --1 hour post 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1507-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 21492339, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --1 hour post dose arginine+insulin", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "79196-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37021274, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --1 hour post dose cloNIDine", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "92668-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3050405, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --1 hour post dose fructose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48605-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3010300, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --1 hour post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "20438-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3017345, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --1 hour post dose insulin IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1510-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3002310, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --1 hour post dose lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26778-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3026071, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --1 hour post meal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10449-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3025232, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --1 hour post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12646-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3004723, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --1 minute post 0.5 g/kg glucose IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1512-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40760467, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --1 minute post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57350-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3032986, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --1st specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "50206-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3035125, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --1st specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12615-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3044574, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --20.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40020-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040904, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --20 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40019-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3007820, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --20 minutes post 0.5 g/kg glucose IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1513-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3038316, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --20 minutes post 50 g lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "53928-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37020873, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --20 minutes post dose glucagon", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "92818-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3052659, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --20 minutes post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48985-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3026550, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --20 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12655-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3048282, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --20 minutes pre XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48983-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3041620, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --21.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40021-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40759870, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --2.17 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "56751-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3041009, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --22 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40022-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3043637, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --22 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40032-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3041860, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --23.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40023-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3015930, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --2.5 hours post 100 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "9375-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3000545, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --2.5 hours post 50 g lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13865-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040983, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --2.5 hours post dose fructose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "51766-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3004428, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --2.5 hours post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26554-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36660184, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --2.5 hours post meal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "95103-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3023776, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --2.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "29332-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3043930, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --25 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40037-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3038549, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --25 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40033-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3042343, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --26 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40038-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3041056, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --27 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40039-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3041864, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --27 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40034-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3042329, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --28 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40040-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3041872, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --29 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40041-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040748, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --2 days post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40045-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3006717, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --2 hours post 100 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1514-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3007092, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --2 hours post 1.2 g/kg lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "30345-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3042637, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --2 hours post 50 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "41024-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3025673, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --2 hours post 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1518-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37021474, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --2 hours post dose cloNIDine", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "92670-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3041799, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --2 hours post dose fructose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "51769-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3026300, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --2 hours post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "20436-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3019876, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --2 hours post dose lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26780-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3021737, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --2 hours post meal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1521-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3000845, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --2 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12610-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3022079, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --2 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12652-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3032779, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --2nd specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "50212-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3035352, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --2nd specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12616-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3010044, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --2 PM specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16167-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040420, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --30 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40042-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36660135, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --30 min post meal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "95105-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3025740, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --30 minutes post 0.05-0.15 U insulin/kg IV post 12H CFst", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1523-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3026571, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --30 minutes post 0.1 U/kg insulin", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1524-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3025136, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --30 minutes post 0.5 g/kg glucose IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1522-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3030070, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --30 minutes post 1.2 g/kg lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "33024-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3013604, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --30 minutes post 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1527-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 21492337, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --30 minutes post dose arginine+insulin", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "79194-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37019755, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --30 minutes post dose cloNIDine", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "92667-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3050128, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --30 minutes post dose fructose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48607-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37020288, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --30 minutes post dose glucagon", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "92817-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3028247, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --30 minutes post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "20439-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3010722, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --30 minutes post dose insulin IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1528-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3003412, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --30 minutes post dose lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26777-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3041024, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --30 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40263-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3041720, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --30 minutes pre XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "39998-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3042058, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --31 hour post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40043-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3019013, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --3.5 hours post 100 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "9376-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3003334, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --3.5 hours post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26555-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3007427, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --3.5 hours post dose lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12650-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36659783, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --3.5 hours post meal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "95104-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3002544, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --3.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "29329-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3038570, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --36 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40044-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3053004, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --3 AM specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48993-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3027457, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --3 hours post 100 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1530-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3005996, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --3 hours post 1.2 g/kg lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "30346-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3009582, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --3 hours post 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1533-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3039937, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --3 hours post dose fructose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "51768-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3027198, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --3 hours post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "20437-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3020407, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --3 hours post dose lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26781-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36659954, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --3 hours post meal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "95106-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3014737, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --3 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "18342-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3010118, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --3 minutes post 0.5 g/kg glucose IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1534-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040476, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --3 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40025-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3042431, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --3 minutes pre XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40262-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3010030, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --3 PM specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16168-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3030416, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --3rd specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "50213-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3035858, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --3rd specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12617-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3015323, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --40 minutes post 0.5 g/kg glucose IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1535-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3039166, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --40 minutes post 50 g lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "53929-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3027980, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --40 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12657-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3022574, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --4.5 hours post 100 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "9377-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36660356, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --4.5 hours post meal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "95107-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3038965, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --4.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40035-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3020260, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --45 minutes post 100 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "11143-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 21492338, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --45 minutes post dose arginine+insulin", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "79195-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3023186, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --45 minutes post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26539-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3018998, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --45 minutes post dose insulin IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1536-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3028112, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --45 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "21309-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3003541, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --4 hour specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12611-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3024644, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --4 hours post 50 g lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13607-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3005487, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --4 hours post dose lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26782-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36660344, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --4 hours post meal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "95108-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3021924, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --4 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "29330-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3013145, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --4 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12656-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3032719, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --4th specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "50214-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40761077, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --4th specimen post lactose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57971-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3009397, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --4th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12618-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3013881, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --50 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12658-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3005850, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --5.5 hours post 100 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "9378-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3035415, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --5.5 hours post 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14137-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3039849, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --5.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40036-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3052976, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --5 hours post 50 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48810-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3033312, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --5 hours post 50 g lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13866-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3021860, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --5 hours post 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1542-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3004389, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --5 hours post dose lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26783-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36660564, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --5 hours post meal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "95109-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3023243, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "29331-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3022933, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --5 minutes post 0.5 g/kg glucose IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1543-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040592, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --5 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40001-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3041921, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --5 minutes pre XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40000-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3012792, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --5 PM specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16170-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3028944, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --5th specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "50215-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40761078, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --5th specimen post lactose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57972-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3017083, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --6.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12640-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3050134, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --6 AM specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48994-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3023466, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --6 hours post 100 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1544-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3004681, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --6 hours post 50 g lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "18353-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3022285, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --6 hours post 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6760-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3023125, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --6 hours post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26544-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3004351, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --6 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "29412-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3038687, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --6 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40026-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3050095, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --6 PM specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48989-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3032230, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --6th specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "50216-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3011296, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --70 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12659-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3018151, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --7.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12642-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3008349, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --75 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "21310-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3019431, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --7 hours post meal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12614-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3017328, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --7 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12641-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3031928, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --7th specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "50207-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3041745, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --80 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40002-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3039229, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --8.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40006-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3052381, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --8 AM specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48986-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3024762, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --8 hours fasting", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "17865-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3004766, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --8 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12643-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3025181, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --8 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12653-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3049466, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --8 PM specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48990-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3029014, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --8th specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "50217-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3000931, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --8th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "27432-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3042186, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --9.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40007-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3007864, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --9 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12644-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3038525, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --9 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40027-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3031929, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --9th specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "50218-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3035759, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --9th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12621-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3002666, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --baseline", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1547-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3025866, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --post 50 g glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "20441-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3026536, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --post meal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16915-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3025398, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16914-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3001511, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --pre 0.5 g/kg glucose IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1548-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3020058, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --pre 100 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1549-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3019474, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --pre 12 hour fast", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1550-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3005030, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --pre 50 g lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1551-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3003435, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --pre 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1552-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3049846, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --pre dose fructose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48606-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3002332, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --pre dose insulin IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1553-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3006887, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --pre dose lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12638-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040820, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --pre-meal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "53049-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44816672, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum, Plasma or Blood", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "74774-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3042201, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Specimen --1st specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40874-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3041915, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Specimen --3rd specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40875-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3051368, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Stool", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48036-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40760907, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Stool by Post hydrolysis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57797-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3041397, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Total parental nutrition", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "53050-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3020399, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Urine", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "2350-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3020632, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Urine --12 hours fasting", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1555-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3015996, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Urine --1.5 hours post 100 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1495-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3001020, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Urine --1.5 hours post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25678-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3016159, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Urine --1 hour post 100 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1503-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3017222, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Urine --1 hour post 50 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1505-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3027145, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Urine --1 hour post 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1509-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3010115, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Urine --1 hour post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25664-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3032276, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Urine --1 hour post dose lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "42611-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40759245, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Urine --1 hour post meal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "56124-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3024540, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Urine --2 hours post 100 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1516-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3006289, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Urine --2 hours post 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1520-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3022314, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Urine --2 hours post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25667-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3034003, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Urine --2 hours post dose lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "42613-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3037787, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Urine --30 minutes post 100 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1491-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3011088, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Urine --30 minutes post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25670-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3028287, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Urine --3 hours post 100 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1532-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40761076, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Urine --3 hours post 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57970-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3010956, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Urine --3 hours post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26540-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3031651, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Urine --3 hours post dose lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "42604-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3005231, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Urine --4 hours post 100 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1538-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3000272, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Urine --4 hours post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25675-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3031105, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Urine --4 hours post dose lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "42629-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3012009, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Urine --5 hours post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26542-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3032809, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Urine --5 hours post dose lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "42631-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3019571, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Urine --6 hours post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26545-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3029102, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Urine --6 hours post dose lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "42609-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3039896, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Urine by Automated test strip", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "53328-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3024629, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Urine by Test strip", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "5792-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3042145, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Urine by Test strip --1st specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40849-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3039280, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Urine by Test strip --2nd specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40850-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3043210, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Urine by Test strip --3rd specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45204-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3042982, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Urine by Test strip --4th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45205-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3043057, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Urine by Test strip --5th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45206-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3035214, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Urine collected for unspecified duration", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "35662-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3033408, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Venous blood", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "41652-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3004676, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Vitreous fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16903-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757617, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Water", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54486-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 1002230, + "CONCEPT_NAME" : "Glucose [Mass/volume] mean in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "93791-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3005131, + "CONCEPT_NAME" : "Glucose mean value [Mass/volume] in Blood Estimated from glycated hemoglobin", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "27353-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4149519, + "CONCEPT_NAME" : "Glucose measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36048009", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4229586, + "CONCEPT_NAME" : "Glucose measurement, 2 hour post prandial", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "88856000", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4144235, + "CONCEPT_NAME" : "Glucose measurement, blood", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "33747003", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4018315, + "CONCEPT_NAME" : "Glucose measurement, blood, test strip", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "104686004", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4151548, + "CONCEPT_NAME" : "Glucose measurement, body fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "269926009", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4230393, + "CONCEPT_NAME" : "Glucose measurement by monitoring device", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "359776002", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4286945, + "CONCEPT_NAME" : "Glucose measurement, CSF", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "69125006", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4036846, + "CONCEPT_NAME" : "Glucose measurement estimated from glycated hemoglobin", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "117346004", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4182052, + "CONCEPT_NAME" : "Glucose measurement, fasting", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "52302001", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4218282, + "CONCEPT_NAME" : "Glucose measurement, plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72191006", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4017078, + "CONCEPT_NAME" : "Glucose measurement, post glucose dose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "104690002", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4018317, + "CONCEPT_NAME" : "Glucose measurement, quantitative", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "104688003", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4249006, + "CONCEPT_NAME" : "Glucose measurement, random", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "73128004", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4331286, + "CONCEPT_NAME" : "Glucose measurement, serum", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "22569008", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4018316, + "CONCEPT_NAME" : "Glucose measurement, tolbutamide tolerance test", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "104687008", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4149883, + "CONCEPT_NAME" : "Glucose measurement, urine", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "30994003", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40762854, + "CONCEPT_NAME" : "Glucose [Molar concentration difference] in Serum or Plasma --1.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59793-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40762853, + "CONCEPT_NAME" : "Glucose [Molar concentration difference] in Serum or Plasma --1 hour post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59792-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40762855, + "CONCEPT_NAME" : "Glucose [Molar concentration difference] in Serum or Plasma --2 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59794-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40762852, + "CONCEPT_NAME" : "Glucose [Molar concentration difference] in Serum or Plasma --30 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59791-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40762856, + "CONCEPT_NAME" : "Glucose [Molar concentration difference] in Serum or Plasma --3 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59795-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40762857, + "CONCEPT_NAME" : "Glucose [Molar concentration difference] in Serum or Plasma --4 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59796-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40762858, + "CONCEPT_NAME" : "Glucose [Molar concentration difference] in Serum or Plasma --5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59797-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44816584, + "CONCEPT_NAME" : "Glucose [Moles/time] in 12 hour Urine", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "74686-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3042439, + "CONCEPT_NAME" : "Glucose [Moles/time] in 24 hour Body fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40366-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3000361, + "CONCEPT_NAME" : "Glucose [Moles/time] in 24 hour Urine", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15077-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44816585, + "CONCEPT_NAME" : "Glucose [Moles/volume] in 12 hour Urine", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "74687-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3046229, + "CONCEPT_NAME" : "Glucose [Moles/volume] in 24 hour Dialysis fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45297-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3035381, + "CONCEPT_NAME" : "Glucose [Moles/volume] in 24 hour Urine", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25916-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3044242, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Arterial blood", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "39481-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3020491, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Blood", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15074-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43055143, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Blood by Automated test strip", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72516-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040151, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Capillary blood", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "51596-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3021525, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Capillary blood --2 hours post meal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14760-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3001501, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Capillary blood by Glucometer", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14743-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40762874, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Capillary blood by Glucometer --7 AM specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59813-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3020044, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Cerebral spinal fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14744-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 46235203, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Cerebral spinal fluid --1st tube", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "76669-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 46235204, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Cerebral spinal fluid --2nd tube", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "76670-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 46235205, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Cerebral spinal fluid --3rd tube", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "76671-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 46235206, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Cerebral spinal fluid --4th tube", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "76672-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3051101, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Cord blood", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "47995-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3020722, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Dialysis fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15075-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3052839, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Dialysis fluid --2 hour specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46221-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3051873, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Dialysis fluid --4 hour specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46222-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3051002, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Dialysis fluid --overnight", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46223-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040806, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Nonbiological fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "53084-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3042173, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Pericardial fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "39479-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3036257, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Peritoneal dialysis fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14746-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 21491017, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Peritoneal dialysis fluid --2 hour dwell specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "78534-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 21491018, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Peritoneal dialysis fluid --4 hour dwell specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "78535-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 21492444, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Peritoneal dialysis fluid --overnight dwell", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "79264-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3023044, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Peritoneal fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14748-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3036782, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Pleural fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14747-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3013826, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14749-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3038566, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --105 minutes post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40286-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3044548, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --10.75 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40174-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040116, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --10 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40173-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757532, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --10 minutes post dose glucagon", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54401-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3001022, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --10 minutes post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "32359-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3039558, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --10 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40154-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757379, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --10 minutes pre dose glucagon", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54248-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3038565, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --10 minutes pre XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40151-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757524, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --10th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54393-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040402, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --11.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40175-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40762873, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --11 AM specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59812-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 46236371, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --11 hour post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "77681-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757525, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --11th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54394-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3038251, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --12.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40177-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3043536, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --12 AM specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45052-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3041470, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --12 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40176-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3041028, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --12 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40204-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3045291, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --12 PM specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45054-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757526, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --12th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54395-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040937, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --13.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40179-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3003912, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --1.3 hours post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "30265-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757397, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --1.3 hours post dose insulin IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54266-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3041766, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --13 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40178-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3038257, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --13 minutes pre XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40195-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3038390, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --14 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40180-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040594, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --14 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40205-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3038991, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --15.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40181-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757408, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --1.5 hour post dose ornithine alpha-ketoglutarate", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54277-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3036375, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --1.5 hours post 50 g lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14751-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40758480, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --1.5 hours post 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55351-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3039763, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --1.5 hours post dose betaxolol", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "53487-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3036895, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --1.5 hours post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14752-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757398, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --1.5 hours post dose insulin IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54267-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3042216, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --1.5 hours post dose lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40278-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 46234926, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --1.5 hours post dose triple bolus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "75405-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3042995, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --1.5 hours post meal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "44919-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3021258, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --1.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25679-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44786741, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --15 minutes post 50 g lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "74084-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757380, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --15 minutes post dose glucagon", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54249-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3009877, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --15 minutes post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25663-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757391, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --15 minutes post dose insulin IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54260-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43534070, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --15 minutes post dose lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72896-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757402, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --15 minutes post dose ornithine alpha-ketoglutarate", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54271-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3042146, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --15 minutes post dose triple bolus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40319-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3038581, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --15 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40155-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3050625, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --15 minutes pre dose betaxolol", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "53481-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757381, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --15 minutes pre dose glucagon", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54250-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3050771, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --15 minutes pre dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48109-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757392, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --15 minutes pre dose insulin IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54261-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757403, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --15 minutes pre dose ornithine alpha-ketoglutarate", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54272-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3041787, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --15 minutes pre XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40150-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3007619, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --1.6 hours post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "30266-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3044219, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --16 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40182-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040442, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --16 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40206-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3041160, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --17.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40183-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3043956, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --18.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40185-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040673, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --18 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40184-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3041760, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --19.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40186-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3042342, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --19 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40207-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040567, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --1 day post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40192-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3037432, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --1 hour post 100 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14753-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3020869, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --1 hour post 50 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14754-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3011761, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --1 hour post 50 g lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14755-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3039422, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --1 hour post 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "51597-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3051280, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --1 hour post dose betaxolol", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "53486-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3015024, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --1 hour post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14756-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757396, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --1 hour post dose insulin IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54265-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040655, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --1 hour post dose lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40277-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757407, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --1 hour post dose ornithine alpha-ketoglutarate", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54276-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3044516, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --1 hour post dose triple bolus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40322-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040659, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --1 hour post meal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40287-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3015621, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --1 hour post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25665-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757523, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --1st specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54392-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3038672, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --20.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40188-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3038264, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --20 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40187-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42868432, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --20 minutes post 50 g lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "69943-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757382, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --20 minutes post dose glucagon", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54251-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3018582, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --20 minutes post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "30263-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42868430, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --20 minutes post dose lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "69941-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3039826, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --20 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40156-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3041486, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --20 minutes pre XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40194-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3043922, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --21.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40189-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3043635, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --22 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40190-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3041604, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --22 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40208-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3039788, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --23.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40191-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3006520, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --2.3 hours post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "30267-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757401, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --2.5 hour post dose ornithine alpha-ketoglutarate", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54270-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3043514, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --2.5 hours post 50 g lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45298-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40758510, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --2.5 hours post 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55381-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040060, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --2.5 hours post dose betaxolol", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "53480-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3019047, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --2.5 hours post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25666-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757390, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --2.5 hours post dose insulin IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54259-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43534069, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --2.5 hours post dose lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72895-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3041159, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --2.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40161-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040683, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --25 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40214-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040867, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --25 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40209-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3034101, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --2.6 hours post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "30251-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3041140, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --26 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40215-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3042029, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --27 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40216-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3038395, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --27 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40210-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3044269, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --28 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40217-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040870, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --29 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40218-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040366, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --2 days post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40222-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757400, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --2 hour post dose ornithine alpha-ketoglutarate", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54269-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3009154, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --2 hours post 100 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14757-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3016160, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --2 hours post 50 g lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14758-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3017538, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --2 hours post 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14995-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3038621, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --2 hours post dose betaxolol", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "53476-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3016701, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --2 hours post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14759-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757389, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --2 hours post dose insulin IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54258-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3041638, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --2 hours post dose lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40279-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040613, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --2 hours post dose triple bolus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40323-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3012413, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --2 hours post meal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14761-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757383, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --2 minutes post dose glucagon", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54252-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040578, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --2 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40198-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757527, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --2nd specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54396-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040603, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --30 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40219-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3015980, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --30 minutes post 50 g lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14762-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3005793, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --30 minutes post 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "32319-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3039178, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --30 minutes post dose betaxolol", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "53483-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3008799, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --30 minutes post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14763-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757394, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --30 minutes post dose insulin IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54263-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040908, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --30 minutes post dose lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40276-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757405, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --30 minutes post dose ornithine alpha-ketoglutarate", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54274-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3041786, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --30 minutes post dose triple bolus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40320-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3016567, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --30 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25671-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3039739, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --30 minutes pre dose betaxolol", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "53484-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3044550, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --30 minutes pre XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40149-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3038838, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --31 hour post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40220-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3022161, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --3.3 hours post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "30252-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3000992, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --3.5 hours post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25669-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3044555, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --3.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40211-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3013026, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --3.6 hours post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "30253-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3041609, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --36 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40221-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3017048, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --3 hours post 100 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14764-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3017091, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --3 hours post 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "32320-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3038314, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --3 hours post dose betaxolol", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "53482-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3017589, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --3 hours post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14765-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3041489, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --3 hours post dose lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40280-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757404, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --3 hours post dose ornithine alpha-ketoglutarate", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54273-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3041136, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --3 hours post dose triple bolus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40324-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3042487, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --3 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40162-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757393, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --3 hours pre dose insulin IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54262-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3038420, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --3 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40199-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040892, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --3 minutes pre XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40197-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40762876, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --3 PM specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59815-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757528, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --3rd specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54397-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42868433, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --40 minutes post 50 g lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "69944-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3014194, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --40 minutes post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "30264-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42868431, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --40 minutes post dose lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "69942-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040104, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --40 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40157-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3022201, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --4.5 hours post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25672-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3043978, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --4.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40212-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 46235368, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --45 minutes post 50 g lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "75637-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40758481, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --45 minutes post 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55352-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3051231, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --45 minutes post dose betaxolol", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "53485-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3023228, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --45 minutes post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25673-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757395, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --45 minutes post dose insulin IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54264-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3047279, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --45 minutes post dose lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45299-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757406, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --45 minutes post dose ornithine alpha-ketoglutarate", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54275-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3044218, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --45 minutes post dose triple bolus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40321-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3023758, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --45 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25674-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3039997, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --4 AM specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "53474-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3017634, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --4 hours post 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "32321-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3017890, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --4 hours post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14766-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3042489, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --4 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40163-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757384, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --4 minutes post dose glucagon", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54253-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3039807, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --4 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40200-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3045318, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --4 PM specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45055-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757529, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --4th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54398-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3044562, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --50 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40158-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3003824, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --5.5 hours post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25676-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3041490, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --5.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40213-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3018175, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --5 hours post 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "32322-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3004724, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --5 hours post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14767-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040107, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40164-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3049428, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --5 minutes post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "47859-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040634, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --5 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40153-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757385, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --5 minutes pre dose glucagon", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54254-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040641, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --5 minutes pre XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40152-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757627, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --5th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54496-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3041895, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --6.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40166-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3002654, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --6 hours post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25677-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3041454, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --6 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40165-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757386, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --6 minutes post dose glucagon", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54255-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040468, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --6 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40201-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757628, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --6th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54497-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3041763, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --70 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40159-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3039297, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --7.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40168-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3038727, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --75 minutes post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40285-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040099, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --75 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40160-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40762875, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --7 AM specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59814-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3038557, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --7 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40167-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757629, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --7th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54498-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3038422, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --8.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40170-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3045067, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --8 AM specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45053-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3041615, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --8 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40169-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757387, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --8 minutes post dose glucagon", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54256-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3039224, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --8 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40202-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040896, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --8 minutes pre XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40196-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3043032, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --8 PM specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45056-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757630, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --8th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54499-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3041856, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --9.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40172-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3041903, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --9 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40171-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040710, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --9 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40203-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757530, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --9th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54399-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3007821, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --baseline", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14768-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757626, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --post dialysis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54495-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3041930, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --post meal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "53094-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3041971, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "53093-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42868682, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --pre 100 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "70208-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3006669, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --pre 12 hour fast", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14769-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3019765, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --pre 50 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25680-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3004067, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --pre 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14996-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3039439, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --pre dose betaxolol", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "53475-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757531, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --pre dose glucagon", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54400-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3048522, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --pre dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "47622-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757388, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --pre dose insulin IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54257-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40762250, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --pre dose lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59157-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757399, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --pre dose ornithine alpha-ketoglutarate", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54268-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3044522, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --pre dose triple bolus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40318-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3042469, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --pre-meal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40193-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3045105, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --pre or post dose arginine", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "34056-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3045131, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --pre or post dose cloNIDine", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "34057-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3045158, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --pre or post dose glucagon", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "34058-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3045700, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --pre or post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "34059-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3029462, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --pre or post dose insulin", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "34060-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3030745, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --pre or post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "51426-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3038434, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --pre XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40148-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 46236948, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum, Plasma or Blood", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "77135-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 46236367, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum, Plasma or Blood --2 hours post meal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "77677-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3006893, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "32318-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3051044, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Stool", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "47620-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3020618, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Synovial fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14750-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3005570, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Urine", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15076-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40762249, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Urine by Automated test strip", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59156-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3008770, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Urine by Test strip", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "22705-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44786994, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Urine collected for unspecified duration", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "74351-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3038515, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Venous blood", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "39480-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040563, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Vitreous fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "39478-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757618, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Water", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54487-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44806589, + "CONCEPT_NAME" : "Glucose output measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "792621000000101", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3018056, + "CONCEPT_NAME" : "Glucose.PO [Mass] of Dose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "4269-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2212361, + "CONCEPT_NAME" : "Glucose; post glucose dose (includes glucose)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "82950", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3007308, + "CONCEPT_NAME" : "Glucose [Presence] in 24 hour Urine", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "32174-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040980, + "CONCEPT_NAME" : "Glucose [Presence] in Stool", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "51595-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3020650, + "CONCEPT_NAME" : "Glucose [Presence] in Urine", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "2349-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3007777, + "CONCEPT_NAME" : "Glucose [Presence] in Urine --1st specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16904-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3006684, + "CONCEPT_NAME" : "Glucose [Presence] in Urine --2nd specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16905-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3028014, + "CONCEPT_NAME" : "Glucose [Presence] in Urine --3rd specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16906-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3023961, + "CONCEPT_NAME" : "Glucose [Presence] in Urine --4th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16907-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3024785, + "CONCEPT_NAME" : "Glucose [Presence] in Urine --5th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16908-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3025622, + "CONCEPT_NAME" : "Glucose [Presence] in Urine --6th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16909-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3007971, + "CONCEPT_NAME" : "Glucose [Presence] in Urine --7th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16910-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3006258, + "CONCEPT_NAME" : "Glucose [Presence] in Urine --8th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16911-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3021752, + "CONCEPT_NAME" : "Glucose [Presence] in Urine --9th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16912-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3009261, + "CONCEPT_NAME" : "Glucose [Presence] in Urine by Test strip", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25428-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3005875, + "CONCEPT_NAME" : "Glucose [Presence] in Urine by Test strip --1.5 hours post 50 g lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6761-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3005589, + "CONCEPT_NAME" : "Glucose [Presence] in Urine by Test strip --1.5 hours post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26553-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3020820, + "CONCEPT_NAME" : "Glucose [Presence] in Urine by Test strip --1 hour post 50 g lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6747-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3021033, + "CONCEPT_NAME" : "Glucose [Presence] in Urine by Test strip --1 hour post 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6748-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3019493, + "CONCEPT_NAME" : "Glucose [Presence] in Urine by Test strip --1 hour post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26546-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3007031, + "CONCEPT_NAME" : "Glucose [Presence] in Urine by Test strip --2.5 hours post 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10966-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3018958, + "CONCEPT_NAME" : "Glucose [Presence] in Urine by Test strip --2.5 hours post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26537-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3009251, + "CONCEPT_NAME" : "Glucose [Presence] in Urine by Test strip --2 hours post 50 g lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6750-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3011355, + "CONCEPT_NAME" : "Glucose [Presence] in Urine by Test strip --2 hours post 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6751-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3004629, + "CONCEPT_NAME" : "Glucose [Presence] in Urine by Test strip --2 hours post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26547-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3023638, + "CONCEPT_NAME" : "Glucose [Presence] in Urine by Test strip --30 minutes post 50 g lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6753-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3021635, + "CONCEPT_NAME" : "Glucose [Presence] in Urine by Test strip --30 minutes post 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6754-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3003453, + "CONCEPT_NAME" : "Glucose [Presence] in Urine by Test strip --30 minutes post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26548-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3005851, + "CONCEPT_NAME" : "Glucose [Presence] in Urine by Test strip --3.5 hours post 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10967-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3022233, + "CONCEPT_NAME" : "Glucose [Presence] in Urine by Test strip --3.5 hours post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26538-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3005370, + "CONCEPT_NAME" : "Glucose [Presence] in Urine by Test strip --3 hours post 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6755-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3003201, + "CONCEPT_NAME" : "Glucose [Presence] in Urine by Test strip --3 hours post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26549-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3025876, + "CONCEPT_NAME" : "Glucose [Presence] in Urine by Test strip --4.5 hours post 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10968-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3010617, + "CONCEPT_NAME" : "Glucose [Presence] in Urine by Test strip --4 hours post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26550-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3020455, + "CONCEPT_NAME" : "Glucose [Presence] in Urine by Test strip --5 hours post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26551-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3001283, + "CONCEPT_NAME" : "Glucose [Presence] in Urine by Test strip --6 hours post 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6759-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3020450, + "CONCEPT_NAME" : "Glucose [Presence] in Urine by Test strip --6 hours post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26552-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2212359, + "CONCEPT_NAME" : "Glucose; quantitative, blood (except reagent strip)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "82947", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2212364, + "CONCEPT_NAME" : "Glucose; tolbutamide tolerance test", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "82953", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3003169, + "CONCEPT_NAME" : "Glucose tolerance 2 hours gestational panel - Urine and Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "24353-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3030177, + "CONCEPT_NAME" : "Glucose tolerance [Interpretation] in Serum or Plasma Narrative", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "50667-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4012477, + "CONCEPT_NAME" : "Glucose tolerance test", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "113076002", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44783612, + "CONCEPT_NAME" : "Glucose tolerance test, antenatal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "699731004", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2212363, + "CONCEPT_NAME" : "Glucose; tolerance test, each additional beyond 3 specimens (List separately in addition to code for primary procedure)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "82952", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2212362, + "CONCEPT_NAME" : "Glucose; tolerance test (GTT), 3 specimens (includes glucose)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "82951", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4055679, + "CONCEPT_NAME" : "Glucose tolerance test indicates diabetes mellitus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "166928007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4055678, + "CONCEPT_NAME" : "Glucose tolerance test normal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "166926006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434164, + "CONCEPT_NAME" : "Glycosuria", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45154002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2212633, + "CONCEPT_NAME" : "Gonadotropin, chorionic (hCG); free beta chain", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84704", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2212632, + "CONCEPT_NAME" : "Gonadotropin, chorionic (hCG); qualitative", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84703", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2212631, + "CONCEPT_NAME" : "Gonadotropin, chorionic (hCG); quantitative", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84702", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 372842, + "CONCEPT_NAME" : "Gonococcal conjunctivitis neonatorum", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "28438004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4009879, + "CONCEPT_NAME" : "Good neonatal condition at birth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "102500002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014452, + "CONCEPT_NAME" : "GP unit birth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169814004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437937, + "CONCEPT_NAME" : "Grand multipara", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "18656007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434110, + "CONCEPT_NAME" : "Grand multiparity - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199714004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442441, + "CONCEPT_NAME" : "Grand multiparity with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199715003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4032764, + "CONCEPT_NAME" : "Groin traction at breech delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "236980007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4042068, + "CONCEPT_NAME" : "GTT = renal glycosuria", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "166929004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4084217, + "CONCEPT_NAME" : "Gynecological emergency hospital admission", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "183459001", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4149401, + "CONCEPT_NAME" : "Had umbilical cord around neck", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "268863005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42742312, + "CONCEPT_NAME" : "HBA1/HBA2 (alpha globin 1 and alpha globin 2) (eg, alpha thalassemia, Hb Bart hydrops fetalis syndrome, HbH disease), gene analysis; common deletions or variant (eg, Southeast Asian, Thai, Filipino, Mediterranean, alpha3.7, alpha4.2, alpha20.5, Constant S", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "81257", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 316478, + "CONCEPT_NAME" : "Heart disease in mother complicating pregnancy, childbirth AND/OR puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "78381004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440532, + "CONCEPT_NAME" : "Heavy-for-dates at birth regardless of gestation period", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7293009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 201129, + "CONCEPT_NAME" : "Hematemesis AND/OR melena due to swallowed maternal blood", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "23688003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4085415, + "CONCEPT_NAME" : "Hematoma of anus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "282074002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4155624, + "CONCEPT_NAME" : "Hematoma of female perineum", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "283969002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4152629, + "CONCEPT_NAME" : "Hematoma of male perineum", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "283974005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4161205, + "CONCEPT_NAME" : "Hematoma of obstetric wound", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "371614003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42709943, + "CONCEPT_NAME" : "Hematoma of perianal region", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "449815008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37312073, + "CONCEPT_NAME" : "Hematoma of surgical wound following cesarean section", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "788728009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437922, + "CONCEPT_NAME" : "Hematoma of vulva", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "69385001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4177184, + "CONCEPT_NAME" : "Hematoma of vulva of fetus or newborn as birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "50263004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3004410, + "CONCEPT_NAME" : "Hemoglobin A1c/Hemoglobin.total in Blood", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "4548-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2212391, + "CONCEPT_NAME" : "Hemoglobin; F (fetal), qualitative", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "83033", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2212713, + "CONCEPT_NAME" : "Hemoglobin or RBCs, fetal, for fetomaternal hemorrhage; differential lysis (Kleihauer-Betke)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "85460", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2212714, + "CONCEPT_NAME" : "Hemoglobin or RBCs, fetal, for fetomaternal hemorrhage; rosette", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "85461", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437090, + "CONCEPT_NAME" : "Hemolytic disease of fetus OR newborn due to ABO immunization", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "32858009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440218, + "CONCEPT_NAME" : "Hemolytic disease of fetus OR newborn due to isoimmunization", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "387705004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433603, + "CONCEPT_NAME" : "Hemolytic disease of fetus OR newborn due to RhD isoimmunization", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86986002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36713168, + "CONCEPT_NAME" : "Hemolytic disease of newborn co-occurrent and due to ABO immunization", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "350601000119109", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4009645, + "CONCEPT_NAME" : "Hemolytic disease of the newborn due to non-ABO, non-Rh isoimmunization", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "111469006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438478, + "CONCEPT_NAME" : "Hemorrhage in early pregnancy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "25825004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437935, + "CONCEPT_NAME" : "Hemorrhage in early pregnancy, antepartum", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "30850008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435323, + "CONCEPT_NAME" : "Hemorrhage in early pregnancy, delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "81448000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36716542, + "CONCEPT_NAME" : "Hemorrhage of adrenal gland due to birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "722578005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 436529, + "CONCEPT_NAME" : "Hemorrhage of newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "85539001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4329097, + "CONCEPT_NAME" : "Hemorrhage of skin in neonate", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "431268006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4083118, + "CONCEPT_NAME" : "Hemorrhagic disease of the newborn due to factor II deficiency", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "24149006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435358, + "CONCEPT_NAME" : "Hemorrhagic disease of the newborn due to vitamin K deficiency", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12546009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061471, + "CONCEPT_NAME" : "Hemorrhoids in pregnancy and puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200249004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4066134, + "CONCEPT_NAME" : "Hemorrhoids in pregnancy and the puerperium with antenatal complication", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "200253002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4066135, + "CONCEPT_NAME" : "Hemorrhoids in pregnancy and the puerperium with postnatal complication", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "200254008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4065761, + "CONCEPT_NAME" : "Hemorrhoids in puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200255009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37396771, + "CONCEPT_NAME" : "Hereditary persistence of alpha-fetoprotein", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "716697002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4311256, + "CONCEPT_NAME" : "Herpes gestationis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86081009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4033068, + "CONCEPT_NAME" : "Hexosaminidase A and total hexosaminidase measurement, amniotic fluid cells", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14577005", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4079859, + "CONCEPT_NAME" : "High birth weight", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276613009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44513743, + "CONCEPT_NAME" : "High forceps cephalic delivery NEC", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "R21.2", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "OPCS4", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4075188, + "CONCEPT_NAME" : "High forceps cephalic delivery with rotation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177162002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4231702, + "CONCEPT_NAME" : "High forceps delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "89849000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4035778, + "CONCEPT_NAME" : "High forceps delivery with episiotomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15413009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40480725, + "CONCEPT_NAME" : "High glucose level in blood", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "444780001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442088, + "CONCEPT_NAME" : "High head at term", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199373000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 77615, + "CONCEPT_NAME" : "High head at term - delivered", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "199375007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 72696, + "CONCEPT_NAME" : "High head at term with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199376008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4302252, + "CONCEPT_NAME" : "High risk pregnancy care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "386322007", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37392366, + "CONCEPT_NAME" : "High sensitivity urine pregnancy test", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1003171000000104", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Observable Entity" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4055287, + "CONCEPT_NAME" : "High sensitivity urine pregnancy test", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "167257008", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4075170, + "CONCEPT_NAME" : "High vacuum delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177173009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42739014, + "CONCEPT_NAME" : "History and examination of the normal newborn infant, including the preparation of medical records. (This code should only be used for newborns assessed and discharged from the hospital or birthing room on the same date.)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "99435", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42739011, + "CONCEPT_NAME" : "History and examination of the normal newborn infant, initiation of diagnostic and treatment programs and preparation of hospital records. (This code should also be used for birthing room deliveries.)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "99431", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441630, + "CONCEPT_NAME" : "History of recurrent miscarriage - delivered", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199087006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4062565, + "CONCEPT_NAME" : "History of recurrent miscarriage - not delivered", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199088001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014451, + "CONCEPT_NAME" : "Home birth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169813005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060104, + "CONCEPT_NAME" : "Home delivery booked", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169621002", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4151190, + "CONCEPT_NAME" : "Home delivery planned", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "310586008", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2514576, + "CONCEPT_NAME" : "Home visit for newborn care and assessment", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "99502", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2514575, + "CONCEPT_NAME" : "Home visit for postnatal assessment and follow-up care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "99501", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2514574, + "CONCEPT_NAME" : "Home visit for prenatal monitoring and assessment to include fetal heart rate, non-stress test, uterine monitoring, and gestational diabetes monitoring", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "99500", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44807240, + "CONCEPT_NAME" : "Human chorionic gonadotrophin multiple of median measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "815981000000104", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4285271, + "CONCEPT_NAME" : "Human chorionic gonadotropin measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "67900009", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44806337, + "CONCEPT_NAME" : "Human chorionic gonadotropin output measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "800821000000104", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439083, + "CONCEPT_NAME" : "Hydatidiform mole, benign", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "417044008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44500814, + "CONCEPT_NAME" : "Hydatidiform mole, NOS, of placenta", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "9100/0-C58.9", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "ICDO3", + "CONCEPT_CLASS_ID" : "ICDO Condition" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 73538, + "CONCEPT_NAME" : "Hydrocephalic disproportion - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199427001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 81923, + "CONCEPT_NAME" : "Hydrocephalic disproportion with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199428006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444245, + "CONCEPT_NAME" : "Hydrocephalic fetus causing disproportion", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "111439004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 77662, + "CONCEPT_NAME" : "Hydrops fetalis due to isoimmunization", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15539009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4030872, + "CONCEPT_NAME" : "Hyperemesis gravidarum", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14094001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4098582, + "CONCEPT_NAME" : "Hyperemesis gravidarum before end of 22 week gestation with carbohydrate depletion", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "27152008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4227141, + "CONCEPT_NAME" : "Hyperemesis gravidarum before end of 22 week gestation with dehydration", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87621000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4142340, + "CONCEPT_NAME" : "Hyperemesis gravidarum before end of 22 week gestation with electrolyte imbalance", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "33370009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 436485, + "CONCEPT_NAME" : "Hyperemesis gravidarum with metabolic disturbance", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199025001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 436173, + "CONCEPT_NAME" : "Hyperemesis gravidarum with metabolic disturbance - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199027009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440788, + "CONCEPT_NAME" : "Hyperemesis gravidarum with metabolic disturbance - not delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199028004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37311673, + "CONCEPT_NAME" : "Hyperglycemia due to diabetes mellitus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "822995009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37016348, + "CONCEPT_NAME" : "Hyperglycemia due to type 1 diabetes mellitus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "367991000119101", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37016349, + "CONCEPT_NAME" : "Hyperglycemia due to type 2 diabetes mellitus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "368051000119109", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40480031, + "CONCEPT_NAME" : "Hyperglycemic crisis due to diabetes mellitus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "441656006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4034959, + "CONCEPT_NAME" : "Hyperglycemic disorder", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237598005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4034966, + "CONCEPT_NAME" : "Hyperglycemic disorder in pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237625008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37312344, + "CONCEPT_NAME" : "Hyperinsulinemia due to benign insulinoma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "788492001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37312345, + "CONCEPT_NAME" : "Hyperinsulinemia due to malignant insulinoma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "788491008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4307509, + "CONCEPT_NAME" : "Hyperinsulinism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "83469008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37397460, + "CONCEPT_NAME" : "Hyperinsulinism and hyperammonemia syndrome", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "718106009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37397139, + "CONCEPT_NAME" : "Hyperinsulinism due to deficiency of glucokinase", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "717182006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36713524, + "CONCEPT_NAME" : "Hyperinsulinism due to focal adenomatous hyperplasia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "717888008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36715528, + "CONCEPT_NAME" : "Hyperinsulinism due to HNF1A deficiency", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "721234004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37397034, + "CONCEPT_NAME" : "Hyperinsulinism due to HNF4A deficiency", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "717048002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36715529, + "CONCEPT_NAME" : "Hyperinsulinism due to insulin receptor deficiency", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "721235003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36715530, + "CONCEPT_NAME" : "Hyperinsulinism due to short chain 3-hydroxyacyl-coenzyme A dehydrogenase deficiency", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "721236002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36716024, + "CONCEPT_NAME" : "Hyperinsulinism due to uncoupling protein 2 deficiency", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "721834007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42536603, + "CONCEPT_NAME" : "Hyperosmolar hyperglycemic coma due to diabetes mellitus without ketoacidosis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "735537007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4147719, + "CONCEPT_NAME" : "Hyperosmolar non-ketotic state due to diabetes mellitus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "310505005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4215719, + "CONCEPT_NAME" : "Hyperosmolar non-ketotic state due to type 2 diabetes mellitus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "395204000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 321080, + "CONCEPT_NAME" : "Hypertension complicating pregnancy, childbirth and the puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198941007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 192698, + "CONCEPT_NAME" : "Hypertonic uterine dysfunction", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "34981006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443244, + "CONCEPT_NAME" : "Hypertonic uterine inertia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "267265005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4064834, + "CONCEPT_NAME" : "Hypertonic uterine inertia - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199838008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4064835, + "CONCEPT_NAME" : "Hypertonic uterine inertia with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199839000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433873, + "CONCEPT_NAME" : "Hypocalcemia AND/OR hypomagnesemia of newborn", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "77604004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4267556, + "CONCEPT_NAME" : "Hypocalcemia of puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "400170001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42572837, + "CONCEPT_NAME" : "Hypoglycaemia of piglets", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "342901000009107", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED Veterinary", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44809809, + "CONCEPT_NAME" : "Hypoglycaemic warning absent", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "894741000000107", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44789319, + "CONCEPT_NAME" : "Hypoglycaemic warning good", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198131000000101", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44789318, + "CONCEPT_NAME" : "Hypoglycaemic warning impaired", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198121000000103", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42600315, + "CONCEPT_NAME" : "Hypoglycemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "44621000009101", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED Veterinary", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 24609, + "CONCEPT_NAME" : "Hypoglycemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "302866003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4029423, + "CONCEPT_NAME" : "Hypoglycemia due to diabetes mellitus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237633009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45769876, + "CONCEPT_NAME" : "Hypoglycemia due to type 1 diabetes mellitus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84371000119108", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45757363, + "CONCEPT_NAME" : "Hypoglycemia due to type 2 diabetes mellitus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "120731000119103", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4287549, + "CONCEPT_NAME" : "Hypoglycemia of childhood", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "68581004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3185010, + "CONCEPT_NAME" : "Hypoglycemia secondary to sulfonylurea", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "24370001000004105", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "Nebraska Lexicon", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45772060, + "CONCEPT_NAME" : "Hypoglycemia unawareness due to type 2 diabetes mellitus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "119831000119106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4226798, + "CONCEPT_NAME" : "Hypoglycemic coma due to diabetes mellitus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "421725003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4228112, + "CONCEPT_NAME" : "Hypoglycemic coma due to type 1 diabetes mellitus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "421437000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36714116, + "CONCEPT_NAME" : "Hypoglycemic coma due to type 2 diabetes mellitus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "719216001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 30361, + "CONCEPT_NAME" : "Hypoglycemic disorder", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237630007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4029422, + "CONCEPT_NAME" : "Hypoglycemic event due to diabetes", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237632004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4232212, + "CONCEPT_NAME" : "Hypoglycemic shock", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "360546002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45757362, + "CONCEPT_NAME" : "Hypoglycemic unawareness due to type 1 diabetes mellitus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "120711000119108", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36676692, + "CONCEPT_NAME" : "Hypoinsulinemic hypoglycemia and body hemihypertrophy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "773666007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 436534, + "CONCEPT_NAME" : "Hypothermia of newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13629008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45772056, + "CONCEPT_NAME" : "Hypothyroxinemia of prematurity", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "119181000119104", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4308657, + "CONCEPT_NAME" : "Hypotonic uterine inertia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "387692004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4318803, + "CONCEPT_NAME" : "Hypoxia, in liveborn infant", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "22137006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4153365, + "CONCEPT_NAME" : "Hypoxia with feeding in newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "371105007", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4082045, + "CONCEPT_NAME" : "Hysterectomy for removal of hydatidiform mole", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "24068006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110292, + "CONCEPT_NAME" : "Hysterotomy, abdominal (eg, for hydatidiform mole, abortion)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59100", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4082412, + "CONCEPT_NAME" : "Hysterotomy and termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "18302006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4132295, + "CONCEPT_NAME" : "Hysterotomy with removal of hydatidiform mole", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26578004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4234390, + "CONCEPT_NAME" : "Iatrogenic hyperinsulinism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90054000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37395921, + "CONCEPT_NAME" : "ICCA syndrome", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "715534008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4173187, + "CONCEPT_NAME" : "Idiopathic transient neonatal hyperinsulinemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276563006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444048, + "CONCEPT_NAME" : "Illegal termination of pregnancy complicated by damage to pelvic organs and/or tissues", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "38784004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 193821, + "CONCEPT_NAME" : "Illegal termination of pregnancy complicated by embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26743002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439400, + "CONCEPT_NAME" : "Illegal termination of pregnancy complicated by genital-pelvic infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "373902000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443705, + "CONCEPT_NAME" : "Illegal termination of pregnancy complicated by metabolic disorder", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "18684002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 195600, + "CONCEPT_NAME" : "Illegal termination of pregnancy complicated by renal failure", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "8996006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442596, + "CONCEPT_NAME" : "Illegal termination of pregnancy complicated by shock", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "61752008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439325, + "CONCEPT_NAME" : "Illegal termination of pregnancy, incomplete", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198743003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4143190, + "CONCEPT_NAME" : "Illegal termination of pregnancy with acute renal failure", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "33561005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4138267, + "CONCEPT_NAME" : "Illegal termination of pregnancy with afibrinogenemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "3230006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4185440, + "CONCEPT_NAME" : "Illegal termination of pregnancy with air embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "44101005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4303980, + "CONCEPT_NAME" : "Illegal termination of pregnancy with amniotic fluid embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "38905006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4066227, + "CONCEPT_NAME" : "Illegal termination of pregnancy with blood-clot embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "21604008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4182549, + "CONCEPT_NAME" : "Illegal termination of pregnancy with cardiac arrest AND/OR failure", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "54529009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4223627, + "CONCEPT_NAME" : "Illegal termination of pregnancy with cerebral anoxia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40405003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 436169, + "CONCEPT_NAME" : "Illegal termination of pregnancy with complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "74978008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4264914, + "CONCEPT_NAME" : "Illegal termination of pregnancy with defibrination syndrome", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "61810006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4101477, + "CONCEPT_NAME" : "Illegal termination of pregnancy with electrolyte imbalance", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25404008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4023781, + "CONCEPT_NAME" : "Illegal termination of pregnancy with endometritis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "195005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4107907, + "CONCEPT_NAME" : "Illegal termination of pregnancy with fat embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "29995000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4323434, + "CONCEPT_NAME" : "Illegal termination of pregnancy with intravascular hemolysis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "70823006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4180859, + "CONCEPT_NAME" : "Illegal termination of pregnancy with laceration of bladder", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "53247006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4066994, + "CONCEPT_NAME" : "Illegal termination of pregnancy with laceration of bowel", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "17335003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4105762, + "CONCEPT_NAME" : "Illegal termination of pregnancy with laceration of broad ligament", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "29583006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4077275, + "CONCEPT_NAME" : "Illegal termination of pregnancy with laceration of cervix", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "18872002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4025828, + "CONCEPT_NAME" : "Illegal termination of pregnancy with laceration of periurethral tissue", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "19564003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4229716, + "CONCEPT_NAME" : "Illegal termination of pregnancy with laceration of uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40500006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4249728, + "CONCEPT_NAME" : "Illegal termination of pregnancy with laceration of vagina", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "73280003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4266243, + "CONCEPT_NAME" : "Illegal termination of pregnancy with oliguria", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6134000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4305348, + "CONCEPT_NAME" : "Illegal termination of pregnancy with parametritis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "82204006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4234979, + "CONCEPT_NAME" : "Illegal termination of pregnancy with pelvic peritonitis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90450000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4197900, + "CONCEPT_NAME" : "Illegal termination of pregnancy with perforation of bladder", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80438008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4051784, + "CONCEPT_NAME" : "Illegal termination of pregnancy with perforation of bowel", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "23401002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4195243, + "CONCEPT_NAME" : "Illegal termination of pregnancy with perforation of broad ligament", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6802007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4224143, + "CONCEPT_NAME" : "Illegal termination of pregnancy with perforation of cervix", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84143004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4239192, + "CONCEPT_NAME" : "Illegal termination of pregnancy with perforation of periurethral tissue", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "68189005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4296872, + "CONCEPT_NAME" : "Illegal termination of pregnancy with perforation of uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "77099001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4103148, + "CONCEPT_NAME" : "Illegal termination of pregnancy with perforation of vagina", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25519006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4143018, + "CONCEPT_NAME" : "Illegal termination of pregnancy with postoperative shock", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "34701001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4206453, + "CONCEPT_NAME" : "Illegal termination of pregnancy with pulmonary embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55589000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4195297, + "CONCEPT_NAME" : "Illegal termination of pregnancy with renal tubular necrosis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "4451004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4318662, + "CONCEPT_NAME" : "Illegal termination of pregnancy with salpingitis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "22046002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4313005, + "CONCEPT_NAME" : "Illegal termination of pregnancy with salpingo-oophoritis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "8670007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4034753, + "CONCEPT_NAME" : "Illegal termination of pregnancy with sepsis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "11373009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4324965, + "CONCEPT_NAME" : "Illegal termination of pregnancy with septic embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "71362000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4219608, + "CONCEPT_NAME" : "Illegal termination of pregnancy with septic shock", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "82338001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4183557, + "CONCEPT_NAME" : "Illegal termination of pregnancy with uremia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54155004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4140509, + "CONCEPT_NAME" : "Illegal termination of pregnancy with urinary tract infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "33046001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4030415, + "CONCEPT_NAME" : "Illegitimate pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14080002", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36713470, + "CONCEPT_NAME" : "Immediate postpartum care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "717809003", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4071514, + "CONCEPT_NAME" : "Immediate repair of minor obstetric laceration", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177221004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4069972, + "CONCEPT_NAME" : "Immediate repair of obstetric laceration", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177217006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4071513, + "CONCEPT_NAME" : "Immediate repair of obstetric laceration of perineum and sphincter of anus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177219009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4071641, + "CONCEPT_NAME" : "Immediate repair of obstetric laceration of uterus or cervix uteri", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177218001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4070223, + "CONCEPT_NAME" : "Immediate repair of obstetric laceration of vagina and floor of pelvis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177220003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4247275, + "CONCEPT_NAME" : "Immunoreactive insulin measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "60284007", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4308509, + "CONCEPT_NAME" : "Impaired fasting glycemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "390951007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808373, + "CONCEPT_NAME" : "Impaired glucose regulation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "849171000000106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4311629, + "CONCEPT_NAME" : "Impaired glucose tolerance", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "9414007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4263688, + "CONCEPT_NAME" : "Impaired glucose tolerance associated with drugs", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "60634005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4047260, + "CONCEPT_NAME" : "Impaired glucose tolerance associated with genetic syndrome", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1310004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4251180, + "CONCEPT_NAME" : "Impaired glucose tolerance associated with hormonal etiology", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "73480000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4229140, + "CONCEPT_NAME" : "Impaired glucose tolerance associated with insulin receptor abnormality", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "88512005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4111906, + "CONCEPT_NAME" : "Impaired glucose tolerance associated with pancreatic disease", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1822007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4029951, + "CONCEPT_NAME" : "Impaired glucose tolerance in MODY", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14052004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4136531, + "CONCEPT_NAME" : "Impaired glucose tolerance in nonobese", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "32284009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4045297, + "CONCEPT_NAME" : "Impaired glucose tolerance in obese", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "22910008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4030067, + "CONCEPT_NAME" : "Impaired glucose tolerance in pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237628005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4042067, + "CONCEPT_NAME" : "Impaired glucose tolerance test", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "166927002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4027550, + "CONCEPT_NAME" : "Impaired glucose tolerance with hyperinsulism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "128264007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 133284, + "CONCEPT_NAME" : "Impetigo herpetiformis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65539006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110084, + "CONCEPT_NAME" : "Incision and drainage of vaginal hematoma; obstetrical/postpartum", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57022", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004771, + "CONCEPT_NAME" : "Incision of cervix to assist delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "73.93", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439323, + "CONCEPT_NAME" : "Incomplete illegal termination of pregnancy with damage to pelvic organs or tissues", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198746006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437929, + "CONCEPT_NAME" : "Incomplete illegal termination of pregnancy with delayed or excessive hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198745005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438487, + "CONCEPT_NAME" : "Incomplete illegal termination of pregnancy with embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198750004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439324, + "CONCEPT_NAME" : "Incomplete illegal termination of pregnancy with genital tract or pelvic infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198744009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439321, + "CONCEPT_NAME" : "Incomplete illegal termination of pregnancy with metabolic disorder", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198748007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439322, + "CONCEPT_NAME" : "Incomplete illegal termination of pregnancy with renal failure", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198747002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439320, + "CONCEPT_NAME" : "Incomplete illegal termination of pregnancy with shock", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198749004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45768717, + "CONCEPT_NAME" : "Incomplete induced termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "707207004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45771353, + "CONCEPT_NAME" : "Incomplete induced termination of pregnancy with complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16101000119107", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438211, + "CONCEPT_NAME" : "Incomplete inevitable miscarriage complicated by delayed or excessive hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "307752007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 436748, + "CONCEPT_NAME" : "Incomplete inevitable miscarriage complicated by embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "307746006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437618, + "CONCEPT_NAME" : "Incomplete inevitable miscarriage complicated by genital tract and pelvic infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "307749004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4146775, + "CONCEPT_NAME" : "Incomplete inevitable miscarriage without complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "307748007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439328, + "CONCEPT_NAME" : "Incomplete legal abortion with no mention of complication", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "198715007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37110280, + "CONCEPT_NAME" : "Incomplete legal abortion without complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "724484007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435868, + "CONCEPT_NAME" : "Incomplete legal termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "267193004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434705, + "CONCEPT_NAME" : "Incomplete legal termination of pregnancy with damage to pelvic organs or tissues", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198707009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440453, + "CONCEPT_NAME" : "Incomplete legal termination of pregnancy with delayed or excessive hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198706000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439329, + "CONCEPT_NAME" : "Incomplete legal termination of pregnancy with embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198711003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 193532, + "CONCEPT_NAME" : "Incomplete legal termination of pregnancy with genital tract or pelvic infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198705001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434095, + "CONCEPT_NAME" : "Incomplete legal termination of pregnancy with metabolic disorder", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198709007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439331, + "CONCEPT_NAME" : "Incomplete legal termination of pregnancy with renal failure", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198708004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439330, + "CONCEPT_NAME" : "Incomplete legal termination of pregnancy with shock", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198710002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434689, + "CONCEPT_NAME" : "Incomplete miscarriage", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "16863000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40318617, + "CONCEPT_NAME" : "Incomplete miscarriage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "156072005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434413, + "CONCEPT_NAME" : "Incomplete miscarriage with complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "413338003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437933, + "CONCEPT_NAME" : "Incomplete miscarriage with damage to pelvic organs or tissues", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198646004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440460, + "CONCEPT_NAME" : "Incomplete miscarriage with delayed or excessive hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198645000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437045, + "CONCEPT_NAME" : "Incomplete miscarriage with embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198650006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 195317, + "CONCEPT_NAME" : "Incomplete miscarriage with genital tract or pelvic infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198644001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432689, + "CONCEPT_NAME" : "Incomplete miscarriage with metabolic disorder", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198648003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439688, + "CONCEPT_NAME" : "Incomplete miscarriage with renal failure", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198647008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441631, + "CONCEPT_NAME" : "Incomplete miscarriage with shock", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198649006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42535215, + "CONCEPT_NAME" : "Incomplete spontaneous abortion due to hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16111000119105", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44805020, + "CONCEPT_NAME" : "Incomplete termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "749781000000109", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4171255, + "CONCEPT_NAME" : "Incoordinate swallowing in newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276714005", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4239206, + "CONCEPT_NAME" : "Increased glucose level", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "68256003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038817, + "CONCEPT_NAME" : "Increased human chorionic gonadotropin level", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "131102000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4289543, + "CONCEPT_NAME" : "Increased lactation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "37110009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3198709, + "CONCEPT_NAME" : "Increasing head circumference", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "5340001000004102", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "Nebraska Lexicon", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440161, + "CONCEPT_NAME" : "Indication for care AND/OR intervention in labor AND/OR delivery", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "67480003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2721146, + "CONCEPT_NAME" : "Induced abortion, 17 to 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "S2260", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2721148, + "CONCEPT_NAME" : "Induced abortion, 25 to 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "S2265", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2721149, + "CONCEPT_NAME" : "Induced abortion, 29 to 31 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "S2266", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2721150, + "CONCEPT_NAME" : "Induced abortion, 32 weeks or greater", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "S2267", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110331, + "CONCEPT_NAME" : "Induced abortion, by 1 or more intra-amniotic injections (amniocentesis-injections), including hospital admission and visits, delivery of fetus and secundines", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59850", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110332, + "CONCEPT_NAME" : "Induced abortion, by 1 or more intra-amniotic injections (amniocentesis-injections), including hospital admission and visits, delivery of fetus and secundines; with dilation and curettage and/or evacuation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59851", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110333, + "CONCEPT_NAME" : "Induced abortion, by 1 or more intra-amniotic injections (amniocentesis-injections), including hospital admission and visits, delivery of fetus and secundines; with hysterotomy (failed intra-amniotic injection)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59852", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110334, + "CONCEPT_NAME" : "Induced abortion, by 1 or more vaginal suppositories (eg, prostaglandin) with or without cervical dilation (eg, laminaria), including hospital admission and visits, delivery of fetus and secundines", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59855", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110335, + "CONCEPT_NAME" : "Induced abortion, by 1 or more vaginal suppositories (eg, prostaglandin) with or without cervical dilation (eg, laminaria), including hospital admission and visits, delivery of fetus and secundines; with dilation and curettage and/or evacuation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59856", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110336, + "CONCEPT_NAME" : "Induced abortion, by 1 or more vaginal suppositories (eg, prostaglandin) with or without cervical dilation (eg, laminaria), including hospital admission and visits, delivery of fetus and secundines; with hysterotomy (failed medical evacuation)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59857", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110329, + "CONCEPT_NAME" : "Induced abortion, by dilation and curettage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59840", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110330, + "CONCEPT_NAME" : "Induced abortion, by dilation and evacuation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59841", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37018340, + "CONCEPT_NAME" : "Induced termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "714812005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530913, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by acute necrosis of liver", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609454008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530914, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by acute renal failure", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609455009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530928, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by acute renal failure with oliguria", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609472002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530915, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by afibrinogenemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609456005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530916, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by air embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609457001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43531712, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by amniotic fluid embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609458006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530957, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by bladder damage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609503006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530917, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by blood-clot embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609459003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530958, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by bowel damage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609504000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530959, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by broad ligament damage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609505004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530960, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by cardiac arrest", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609506003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530918, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by cardiac arrest and/or failure", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "609460008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530961, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by cardiac failure", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609507007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530919, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by cerebral anoxia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609461007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530962, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by cervix damage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609508002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530908, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by damage to pelvic organs and/or tissues", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609447002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530920, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by defibrination syndrome", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609462000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43531713, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by electrolyte imbalance", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609463005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43531710, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609449004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530921, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by endometritis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609464004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530922, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by fat embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609465003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530910, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by genital-pelvic infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609450004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530964, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by infectious disease", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609510000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530923, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by intravascular hemolysis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609466002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530952, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by laceration of bladder", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609498008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530924, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by laceration of bowel", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609467006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530925, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by laceration of broad ligament", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609468001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43531714, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by laceration of cervix", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609469009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530953, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by laceration of periurethral tissue", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609499000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530926, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by laceration of uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609470005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530927, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by laceration of vagina", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609471009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530911, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by metabolic disorder", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609451000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530966, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by oliguria", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609512008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530929, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by parametritis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609473007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530948, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by pelvic disorder", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609494005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43531715, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by pelvic peritonitis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609474001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530954, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by perforation of bladder", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609500009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530930, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by perforation of bowel", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609475000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530955, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by perforation of broad ligament", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609501008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530931, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by perforation of cervix", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609476004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530956, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by perforation of periurethral tissue", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609502001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530932, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by perforation of uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609477008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530933, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by perforation of vagina", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609478003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530965, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by periurethral tissue damage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609511001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43531716, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by postoperative shock", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609479006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530934, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by pulmonary embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609480009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530912, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by renal failure", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609452007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530935, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by renal tubular necrosis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609482001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530936, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by salpingitis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609483006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530937, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by salpingo-oophoritis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609484000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530939, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by sepsis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609485004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530940, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by septic embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609486003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530941, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by septic shock", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609487007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43531711, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by shock", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609453002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530943, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by soap embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609489005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530947, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by tetanus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609493004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530944, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by uremia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609490001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530945, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by urinary tract infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609491002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530967, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by uterus damage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609513003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530968, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by vaginal damage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609514009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4200986, + "CONCEPT_NAME" : "Induced termination of pregnancy following intra-amniotic injection with hysterotomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "52660002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44784128, + "CONCEPT_NAME" : "Induced termination of pregnancy under unsafe conditions", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "700041001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4075159, + "CONCEPT_NAME" : "Induction and delivery procedures", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177128002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4032756, + "CONCEPT_NAME" : "Induction of labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "236958009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004745, + "CONCEPT_NAME" : "Induction of labor by artificial rupture of membranes", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "73.01", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37311825, + "CONCEPT_NAME" : "Inefficient uterine activity with oxytocin augmentation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "816969006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4244408, + "CONCEPT_NAME" : "Inevitable miscarriage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59363009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4146772, + "CONCEPT_NAME" : "Inevitable miscarriage complete", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "307733001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4062356, + "CONCEPT_NAME" : "Infant feeding education", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "171053005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014439, + "CONCEPT_NAME" : "Infant feeding method", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169740003", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Observable Entity" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4016479, + "CONCEPT_NAME" : "Infant feeding method at 1 year", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169997008", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Observable Entity" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4231742, + "CONCEPT_NAME" : "Infantile posthemorrhagic hydrocephalus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "359634001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4174423, + "CONCEPT_NAME" : "Infant in poor condition at birth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276707008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37018973, + "CONCEPT_NAME" : "Infant of diabetic mother", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "18311000119109", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4173344, + "CONCEPT_NAME" : "Infant slow to establish respiration", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276708003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4208967, + "CONCEPT_NAME" : "Infant weaning education", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313209004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4152958, + "CONCEPT_NAME" : "Infected insect bite of genitalia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "283352008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4153568, + "CONCEPT_NAME" : "Infected umbilical granuloma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "268837000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4309019, + "CONCEPT_NAME" : "Infection associated with artificial insemination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "213200001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 436180, + "CONCEPT_NAME" : "Infection of amniotic cavity", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10573002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3655611, + "CONCEPT_NAME" : "Infection of breast in neonate caused by Streptococcus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "866076001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444244, + "CONCEPT_NAME" : "Infection of nipple, associated with childbirth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "111459000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36713475, + "CONCEPT_NAME" : "Infection of nipple associated with childbirth with attachment difficulty", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "717816002", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45757187, + "CONCEPT_NAME" : "Infection of nipple associated with lactation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10806041000119104", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4062133, + "CONCEPT_NAME" : "Infection of obstetric surgical wound", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200125006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 74434, + "CONCEPT_NAME" : "Infection of the breast AND/OR nipple associated with childbirth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "19773009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4028781, + "CONCEPT_NAME" : "Infection - perineal wound", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237339000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439139, + "CONCEPT_NAME" : "Infections specific to perinatal period", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206331005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433823, + "CONCEPT_NAME" : "Infectious disease in mother complicating pregnancy, childbirth AND/OR puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40609001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4008083, + "CONCEPT_NAME" : "Infectious neonatal hepatitis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "111892001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433266, + "CONCEPT_NAME" : "Infective/parasitic disease in preg/childbirth/puerperium", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "199153003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42600083, + "CONCEPT_NAME" : "Inflammation of urachus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "41211000009105", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED Veterinary", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4085257, + "CONCEPT_NAME" : "Inhalation anesthesia, machine system, closed, circulation of primary agent", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "24277005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2514556, + "CONCEPT_NAME" : "Initial care, per day, for evaluation and management of normal newborn infant seen in other than hospital or birthing center", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "99461", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2514569, + "CONCEPT_NAME" : "Initial hospital care, per day, for the evaluation and management of the neonate, 28 days of age or younger, who requires intensive observation, frequent interventions, and other intensive care services", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "99477", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2514555, + "CONCEPT_NAME" : "Initial hospital or birthing center care, per day, for evaluation and management of normal newborn infant", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "99460", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2514558, + "CONCEPT_NAME" : "Initial hospital or birthing center care, per day, for evaluation and management of normal newborn infant admitted and discharged on the same date", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "99463", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42739633, + "CONCEPT_NAME" : "Initial inpatient neonatal critical care, per day, for the evaluation and management of a critically ill neonate, 28 days of age or less", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "99295", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2514563, + "CONCEPT_NAME" : "Initial inpatient neonatal critical care, per day, for the evaluation and management of a critically ill neonate, 28 days of age or younger", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "99468", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4161783, + "CONCEPT_NAME" : "Initiation of breastfeeding", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "431868002", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4121775, + "CONCEPT_NAME" : "Injection of amnion for termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "288045002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36716540, + "CONCEPT_NAME" : "Injury of brain stem due to birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "722576009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36716538, + "CONCEPT_NAME" : "Injury of central nervous system due to birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "722574007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36717351, + "CONCEPT_NAME" : "Injury of facial bone due to birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "722572006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36716541, + "CONCEPT_NAME" : "Injury of liver due to birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "722577000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36716740, + "CONCEPT_NAME" : "Injury to abdominal organ due to birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "722910004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 381952, + "CONCEPT_NAME" : "Injury to brachial plexus as birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "53785005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36716733, + "CONCEPT_NAME" : "Injury to external genitalia due to birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "722903005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 77621, + "CONCEPT_NAME" : "Inlet pelvic contraction - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199409004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 79896, + "CONCEPT_NAME" : "Inlet pelvic contraction with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199410009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2213360, + "CONCEPT_NAME" : "Insemination of oocytes", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "89268", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4112315, + "CONCEPT_NAME" : "Insertion of abortifacient suppository", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "285434006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4074301, + "CONCEPT_NAME" : "Insertion of prostaglandin abortifacient suppository", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "176854004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4128031, + "CONCEPT_NAME" : "Instrumental delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "236974004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4071638, + "CONCEPT_NAME" : "Instrumental removal of products of conception from delivered uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177200004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4018336, + "CONCEPT_NAME" : "Insulin challenge tests", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "104754003", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4229110, + "CONCEPT_NAME" : "Insulin C-peptide measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "88705004", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2212419, + "CONCEPT_NAME" : "Insulin; free", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "83527", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3049230, + "CONCEPT_NAME" : "Insulin.free and Insulin.total panel [Units/volume] - Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48615-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4020992, + "CONCEPT_NAME" : "Insulin, free measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "104753009", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3010771, + "CONCEPT_NAME" : "Insulin Free [Units/volume] in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6901-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2212155, + "CONCEPT_NAME" : "Insulin-induced C-peptide suppression panel This panel must include the following: Insulin (83525) C-peptide (84681 x 5) Glucose (82947 x 5)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80432", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3022466, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "3695-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3004648, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --10 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12754-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3004163, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --10 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "17017-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3004325, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --11 hour post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12755-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3011670, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --12 hours fasting", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1573-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3003227, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --12 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12756-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3011496, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --1.5 hours post 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13608-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3020877, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --1.5 hours post dose TOLBUTamide IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1559-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3002800, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --15 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12762-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3035571, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --15 minutes pre XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12758-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40759809, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --16 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "56690-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3001627, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --19 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12763-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40759811, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --1 day post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "56692-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3001583, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --1 hour post dose TOLBUTamide IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1560-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40759810, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --20 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "56691-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3007346, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --20 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "17018-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3000664, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --22 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12764-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3011411, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --2.5 hours post 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13609-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3037545, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --2.5 hours post dose TOLBUTamide IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1562-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3033461, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --2 hours post 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1564-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3038084, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --2 hours post dose TOLBUTamide IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1563-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3037230, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --2 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12759-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3021586, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --2nd specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12739-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3021537, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --30 minutes post dose TOLBUTamide IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1565-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3002053, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --30 minutes pre XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12757-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3019151, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --3.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12747-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3015988, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --3 hours post 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1567-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3012706, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --3 hours post dose TOLBUTamide IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1566-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3024084, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --3rd specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12740-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3037897, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --40 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12765-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3000331, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --4.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12748-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3033587, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --45 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12766-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3008406, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --4 hours post 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1568-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3005615, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --4 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12760-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3024615, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --4th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12741-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3034123, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --50 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12767-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3003339, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --5.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12749-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3017118, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --5 hours post 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1569-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3011462, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --5th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12742-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3011381, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --6th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12743-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3022404, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --70 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12768-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3023151, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --7.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12751-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3013134, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --7 hours post 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10833-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3009446, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --7 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12750-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3018974, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --7th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12744-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3019590, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --8 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12752-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3000005, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --8 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12761-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3022492, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --8th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12745-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3019824, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --9 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12753-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3023517, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --9th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12746-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3034439, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --baseline", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1570-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3029133, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --pre 100 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "42919-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3013373, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --pre 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1572-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3022423, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --pre dose TOLBUTamide IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1571-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3016203, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --pre XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12738-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060873, + "CONCEPT_NAME" : "Insulin measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16890009", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3030272, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Body fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "50867-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3016523, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14796-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40758613, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --10 minutes post dose glucose IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55484-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40758512, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --10 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55383-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40758610, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --10 minutes pre dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55481-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3020977, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --10th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25685-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3036942, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --11th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25686-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3037468, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --12th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25687-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3037714, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --13th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25688-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3021224, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --14th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25689-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40758618, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --1.5 hours post dose glucagon", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55489-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40758612, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --1.5 hours post dose glucose IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55483-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3038241, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --1.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40290-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40758628, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --15 minutes post dose glucose IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55499-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40758514, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --15 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55385-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3001558, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --15th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25690-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43534076, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --1 hour post 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72902-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40758617, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --1 hour post dose glucagon", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55488-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40758614, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --1 hour post dose glucose IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55485-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3038723, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --1 hour post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40289-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40758615, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --1 minute post dose glucose IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55486-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40758521, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --1 minute post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55392-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3019094, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --1st specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25691-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40758563, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --20 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55434-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40758616, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --2.5 hours post dose glucose IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55487-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3039233, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --2.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40292-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43534075, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --2 hours post 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72901-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40758620, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --2 hours post dose glucagon", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55491-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40758625, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --2 hours post dose glucose IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55496-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3038693, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --2 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40291-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40758515, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --2 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55386-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3037840, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --2nd specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25692-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40758629, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --30 minutes post dose glucagon", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55500-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40758621, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --30 minutes post dose glucose IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55492-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3041156, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --30 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40288-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43534074, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --3 hours post 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72900-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40758622, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --3 hours post dose glucose IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55493-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3042046, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --3 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40293-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40758626, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --3 minutes post dose glucose IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55497-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40758513, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --3 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55384-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3038142, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --3rd specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25693-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40758619, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --45 minutes post dose glucagon", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55490-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40758624, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --45 minutes post dose glucose IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55495-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40758516, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --45 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55387-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40758611, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --4 hours post dose glucose IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55482-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40758517, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --4 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55388-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40758520, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --4 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55391-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3033522, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --4th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25694-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40758518, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55389-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40758623, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --5 minutes post dose glucose IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55494-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40758511, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --5 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55382-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40758609, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --5 minutes pre dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55480-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3022114, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --5th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25695-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40758519, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --6 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55390-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3012701, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --7.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25696-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40758608, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --7 minutes post dose glucose IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55479-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40758627, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --7 minutes pre dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55498-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3015720, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --7th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25697-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3008465, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --8th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25698-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3017410, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --9th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25699-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3033929, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --baseline", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14293-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40762271, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --fasting", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59179-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 1001918, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --post meal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "93727-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040755, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --pre or post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40294-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3029373, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --pre or post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "51427-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3046092, + "CONCEPT_NAME" : "Insulin [Presence] in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "44396-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3019840, + "CONCEPT_NAME" : "Insulin [Presence] in Unknown substance", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "18234-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45769875, + "CONCEPT_NAME" : "Insulin reactive hypoglycemia due to type 2 diabetes mellitus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84361000119102", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 35622016, + "CONCEPT_NAME" : "Insulin resistance", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "763325000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4129524, + "CONCEPT_NAME" : "Insulin resistance - type A", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237651005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4129525, + "CONCEPT_NAME" : "Insulin resistance - type B", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237652003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2212418, + "CONCEPT_NAME" : "Insulin; total", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "83525", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4017196, + "CONCEPT_NAME" : "Insulin, total measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "104752004", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3010058, + "CONCEPT_NAME" : "Insulin [Units/volume] in Body fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "29238-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3016244, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "20448-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3049445, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --10 minutes post dose glucagon", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "47653-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3048476, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --10 minutes post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "47654-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3019544, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --10 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "32360-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3049768, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --10 minutes pre dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48116-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3043439, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --10th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "33809-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3045444, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --11th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "33810-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40771051, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --1.25 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "68464-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3011873, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --12 hours fasting", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "30363-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40759701, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --12 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "56581-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3046035, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --12th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "33811-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3017375, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --1.3 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "30256-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3046568, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --13th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "33812-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3046591, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --14th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "33813-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3008358, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --1.5 hours post 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "27834-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3052952, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --1.5 hours post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "47658-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36659792, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --1.5 hours post meal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "95111-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3027077, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --1.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "27330-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36660450, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --15 min post meal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "95079-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3049491, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --15 minutes post dose glucagon", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "47655-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3011621, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --15 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "30254-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3046621, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --15th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "33814-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3017922, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --1.6 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "30257-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40771052, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --1.75 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "68465-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3033462, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --1 hour post 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "27830-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3051708, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --1 hour post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "47657-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36660139, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --1 hour post meal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "95112-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3016036, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --1 hour post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "27379-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3052582, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --1 minute post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "47656-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3029720, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --1st specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "50501-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3046287, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --1st specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "33815-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3048483, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --20 minutes post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "47661-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3036251, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --20 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "27372-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3018509, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --2.3 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "30258-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3049493, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --2.5 hours post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "47660-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36660352, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --2.5 hours post meal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "95113-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3024067, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --2.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "27863-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3004884, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --2.6 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "30259-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40759907, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --28 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "56788-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40760065, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --2 days post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "56946-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3026145, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --2 hours post 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "27860-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3049164, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --2 hours post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "47659-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36660132, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --2 hours post meal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "95114-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3012064, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --2 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "27826-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3029908, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --2nd specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "50502-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3046308, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --2nd specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "33816-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36659993, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --30 min post meal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "95116-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3052011, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --30 minutes post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "47663-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3015089, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --30 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "27827-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40759908, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --32 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "56789-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3012529, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --3.3 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "30260-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36660726, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --3.5 hours post meal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "95115-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3017496, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --3.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "30261-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3018344, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --3.6 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "30262-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40759909, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --36 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "56790-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40760063, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --3 days post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "56944-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3051067, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --3 hours post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "47662-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36659716, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --3 hours post meal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "95117-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3009167, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --3 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "27828-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3053266, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --3 minutes post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "47664-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3030827, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --3rd specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "50503-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3045998, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --3rd specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "33817-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40760068, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --40 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "56949-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3036529, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --40 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "27444-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40760067, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --44 hour post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "56948-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43055438, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --4.5 hours post 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72604-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36660594, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --4.5 hours post meal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "95118-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3016818, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --45 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "30255-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36660526, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --4 hours post meal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "95119-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3027834, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --4 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "29378-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3029056, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --4th specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "50504-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3012719, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --4th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "27832-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40760126, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --52 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57007-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40760064, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --56 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "56945-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36660177, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --5 hours post meal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "95120-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3006570, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "27852-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3052901, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --5 minutes post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "47665-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40760468, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --5 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57353-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3049177, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --5 minutes pre dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "47666-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3030826, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --5th specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "50505-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3023123, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --5th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "27874-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40760066, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --60 hour post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "56947-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40760061, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --64 hour post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "56942-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40760062, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --68 hour post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "56943-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3012007, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --6 hours post 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "27872-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3028357, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --6 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "29379-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3051418, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --6 minutes post dose glucagon", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "47667-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40759613, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --6 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "56492-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3030984, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --6th specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "50506-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3019569, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --6th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "27875-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3015678, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --7 hours post 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "27833-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3029665, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --7th specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "50507-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3018957, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --7th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "27867-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40760060, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --8 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "56941-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3031012, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --8th specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "50508-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3028877, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --8th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "33818-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3028902, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --9th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "33819-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40759603, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --baseline", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "56482-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3009413, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --fasting", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "27873-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3048519, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --post meal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "47862-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3049462, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --pre dose glucagon", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "47669-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3050108, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --pre dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "47668-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3052941, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --pre-meal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "47670-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3029043, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --pre XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "49897-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 1002121, + "CONCEPT_NAME" : "Insulin [Units/volume] mean in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "93793-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4254200, + "CONCEPT_NAME" : "Intermittent fetal heart monitoring during labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "408805007", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004750, + "CONCEPT_NAME" : "Internal and combined version with extraction", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "73.22", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004749, + "CONCEPT_NAME" : "Internal and combined version without extraction", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "73.21", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4217602, + "CONCEPT_NAME" : "Internal fetal monitoring during labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "81855008", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4197403, + "CONCEPT_NAME" : "Intervillous thrombosis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80256005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37117767, + "CONCEPT_NAME" : "Intestinal obstruction in newborn due to guanylate cyclase 2C deficiency", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "733447005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4023420, + "CONCEPT_NAME" : "Intra-amniotic infection of fetus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "11618000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4072715, + "CONCEPT_NAME" : "Intracervical artificial insemination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "176844003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36716736, + "CONCEPT_NAME" : "Intracranial hemorrhage due to birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "722906002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36716735, + "CONCEPT_NAME" : "Intracranial laceration due to birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "722905003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4149029, + "CONCEPT_NAME" : "Intraligamentous pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "35656003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4303420, + "CONCEPT_NAME" : "Intrapartal care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "386337006", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4298274, + "CONCEPT_NAME" : "Intrapartal care: high-risk delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "386338001", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4149939, + "CONCEPT_NAME" : "Intrapartum cardiotochogram monitoring", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "309877008", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4242238, + "CONCEPT_NAME" : "Intrapartum hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "38010008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37110285, + "CONCEPT_NAME" : "Intrapartum hemorrhage co-occurrent and due to obstructed labor with uterine rupture", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "724490006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37205799, + "CONCEPT_NAME" : "Intrapartum hemorrhage due to leiomyoma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "785341006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4065747, + "CONCEPT_NAME" : "Intrapartum hemorrhage with coagulation defect", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200173001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45773593, + "CONCEPT_NAME" : "Intrapartum stillbirth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "921611000000101", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4030829, + "CONCEPT_NAME" : "Intraperitoneal insemination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "238312005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4066151, + "CONCEPT_NAME" : "Intraperitoneal pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "17285009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4138741, + "CONCEPT_NAME" : "Intrauterine artificial insemination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "265064001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 74162, + "CONCEPT_NAME" : "Intrauterine asphyxia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276641008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060687, + "CONCEPT_NAME" : "Intrauterine death - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199607009", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Event" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4063309, + "CONCEPT_NAME" : "Intrauterine death with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199608004", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Event" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4139858, + "CONCEPT_NAME" : "Intrauterine insemination using donor sperm", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "426250000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4139060, + "CONCEPT_NAME" : "Intrauterine insemination using partner sperm", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "426389008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4137390, + "CONCEPT_NAME" : "Intrauterine insemination with controlled ovarian hyperstimulation using donor sperm", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "425644009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4145843, + "CONCEPT_NAME" : "Intrauterine insemination with controlled ovarian hyperstimulation using partner sperm", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "426968007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 197031, + "CONCEPT_NAME" : "Intrauterine pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65727000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4020898, + "CONCEPT_NAME" : "Intravaginal artificial insemination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "225250007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2721255, + "CONCEPT_NAME" : "INTRAVAGINAL CULTURE (IVC)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "S4036", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4063939, + "CONCEPT_NAME" : "Intravascular hemolysis following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "20084001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4107728, + "CONCEPT_NAME" : "Intravenous induction of labor", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "180221005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4180743, + "CONCEPT_NAME" : "Intraventricular hemorrhage of fetus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428241007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4079972, + "CONCEPT_NAME" : "Intraventricular hemorrhage of prematurity", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276648002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434155, + "CONCEPT_NAME" : "Intraventricular (nontraumatic) hemorrhage, grade 3, of fetus and newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206397006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4215504, + "CONCEPT_NAME" : "Invasive hydatidiform mole", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "416669000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44500947, + "CONCEPT_NAME" : "Invasive hydatidiform mole of placenta", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "9100/1-C58.9", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "ICDO3", + "CONCEPT_CLASS_ID" : "ICDO Condition" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 195329, + "CONCEPT_NAME" : "Inversion of uterus during delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "23885003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4199599, + "CONCEPT_NAME" : "In vitro fertilization", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "52637005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2788842, + "CONCEPT_NAME" : "In Vitro Fertilization", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "8E0ZXY1", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD10PCS", + "CONCEPT_CLASS_ID" : "ICD10PCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2721237, + "CONCEPT_NAME" : "In vitro fertilization; including but not limited to identification and incubation of mature oocytes, fertilization with sperm, incubation of embryo(s), and subsequent visualization for determination of development", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "S4011", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3049700, + "CONCEPT_NAME" : "In vitro fertilization pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "47224-1", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Clinical Observation" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2721245, + "CONCEPT_NAME" : "In vitro fertilization procedure cancelled after aspiration, case rate", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "S4021", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2721244, + "CONCEPT_NAME" : "In vitro fertilization procedure cancelled before aspiration, case rate", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "S4020", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4138627, + "CONCEPT_NAME" : "In vitro fertilization using donor eggs", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "425866000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 46273065, + "CONCEPT_NAME" : "In vitro fertilization with surrogacy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "711544002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4058246, + "CONCEPT_NAME" : "Iron deficiency anemia of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199248002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4079751, + "CONCEPT_NAME" : "Iron supplement in pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "182947002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4184274, + "CONCEPT_NAME" : "Irregular uterine contractions", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54212005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3655631, + "CONCEPT_NAME" : "Ischemic alopecia due to birth injury", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "866100005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442772, + "CONCEPT_NAME" : "Isoimmunization from non-ABO, non-Rh blood-group incompatibility affecting pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "66958002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061672, + "CONCEPT_NAME" : "IUD failure - pregnant", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169488004", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4145664, + "CONCEPT_NAME" : "IVF - In vitro fertilization using donor sperm", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "427664000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4138633, + "CONCEPT_NAME" : "IVF - In vitro fertilization with intracytoplasmic sperm injection (ICSI)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "425901007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4141534, + "CONCEPT_NAME" : "IVF - In vitro fertilization with intracytoplasmic sperm injection (ICSI) and donor egg", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "426914002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4142402, + "CONCEPT_NAME" : "IVF - In vitro fertilization with pre-implantation genetic diagnosis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "426417003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4198705, + "CONCEPT_NAME" : "Jittery newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "51402000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3030662, + "CONCEPT_NAME" : "Karyotype [Identifier] in Amniotic fluid Nominal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "33773-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3044819, + "CONCEPT_NAME" : "Karyotype [Identifier] in Chorionic villus sample Nominal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "33774-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4122929, + "CONCEPT_NAME" : "Kell isoimmunization of the newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "234380002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437681, + "CONCEPT_NAME" : "Kernicterus due to isoimmunization", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "359007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442216, + "CONCEPT_NAME" : "Kernicterus not due to isoimmunization", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "206478005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439770, + "CONCEPT_NAME" : "Ketoacidosis due to type 1 diabetes mellitus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "420270002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443734, + "CONCEPT_NAME" : "Ketoacidosis due to type 2 diabetes mellitus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "421750000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4095288, + "CONCEPT_NAME" : "Ketoacidotic coma due to diabetes mellitus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26298008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4224254, + "CONCEPT_NAME" : "Ketoacidotic coma due to type 1 diabetes mellitus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "421075007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4228443, + "CONCEPT_NAME" : "Ketoacidotic coma due to type 2 diabetes mellitus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "421847006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3035350, + "CONCEPT_NAME" : "Ketones [Presence] in Urine by Test strip", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "2514-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4049629, + "CONCEPT_NAME" : "Ketotic hypoglycemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "20825002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4139552, + "CONCEPT_NAME" : "Kidd isoimmunization of the newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "307338008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4305334, + "CONCEPT_NAME" : "Klumpke-Dejerine paralysis as birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "81774005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4129837, + "CONCEPT_NAME" : "Knot in umbilical cord", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237309005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530880, + "CONCEPT_NAME" : "Known or suspected fetal abnormality", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "609414006", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 77335, + "CONCEPT_NAME" : "Known OR suspected fetal abnormality affecting management of mother", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "66064007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42742323, + "CONCEPT_NAME" : "KRAS (Kirsten rat sarcoma viral oncogene homolog) (eg, carcinoma) gene analysis; variants in exon 2 (eg, codons 12 and 13)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "81275", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4091790, + "CONCEPT_NAME" : "Labial tear", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "249221003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3195953, + "CONCEPT_NAME" : "labile blood sugars", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14340001000004105", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "Nebraska Lexicon", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37311826, + "CONCEPT_NAME" : "Labor and birth support", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "816968003", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40760193, + "CONCEPT_NAME" : "Labor and delivery process Narrative", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57074-7", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Clinical Observation" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4041698, + "CONCEPT_NAME" : "Laboratory blood glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "166896004", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4250609, + "CONCEPT_NAME" : "Labor care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "409005001", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014719, + "CONCEPT_NAME" : "Labor details", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169960003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4106999, + "CONCEPT_NAME" : "Laceration of anus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "282077009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 199089, + "CONCEPT_NAME" : "Laceration of cervix - obstetric", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199972004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 194709, + "CONCEPT_NAME" : "Laceration of female perineum", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "283970001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4154571, + "CONCEPT_NAME" : "Laceration of male perineum", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "283975006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4152967, + "CONCEPT_NAME" : "Laceration of perineum", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "283380005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4112304, + "CONCEPT_NAME" : "Laceration of skin of penis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "285398006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4034018, + "CONCEPT_NAME" : "Lactational amenorrhea", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237122005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4218738, + "CONCEPT_NAME" : "Lactation tetany", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "81677009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 436167, + "CONCEPT_NAME" : "Lactocele", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "42385006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40347147, + "CONCEPT_NAME" : "Laparoscopic", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "260508005", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Qualifier Value" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40378260, + "CONCEPT_NAME" : "Laparoscopic approach", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "180627003", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Qualifier Value" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42872572, + "CONCEPT_NAME" : "Laparoscopic excision of ectopic ovarian pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "450563004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42872571, + "CONCEPT_NAME" : "Laparoscopic excision of ruptured ectopic tubal pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "450562009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4319321, + "CONCEPT_NAME" : "Laparoscopic lysis of adhesions", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "9540004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40490893, + "CONCEPT_NAME" : "Laparoscopic lysis of adhesions of ovary and fallopian tube", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "447077004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4144415, + "CONCEPT_NAME" : "Laparoscopic oocyte recovery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "265082003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40259107, + "CONCEPT_NAME" : "Laparoscopic oocyte recovery (& NEC)", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "177040000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4190526, + "CONCEPT_NAME" : "Laparoscopic total abdominal hysterectomy and bilateral salpingo-oophorectomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "414575003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110299, + "CONCEPT_NAME" : "Laparoscopic treatment of ectopic pregnancy; without salpingectomy and/or oophorectomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59150", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110300, + "CONCEPT_NAME" : "Laparoscopic treatment of ectopic pregnancy; with salpingectomy and/or oophorectomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59151", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4251314, + "CONCEPT_NAME" : "Laparoscopy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "73632009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40480864, + "CONCEPT_NAME" : "Laparoscopy assisted vaginal hysterectomy with bilateral salpingo-oophorectomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "441820006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4032749, + "CONCEPT_NAME" : "Laparoscopy of fallopian tube", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "236938008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110240, + "CONCEPT_NAME" : "Laparoscopy, surgical; with removal of adnexal structures (partial or total oophorectomy and/or salpingectomy)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "58661", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2722205, + "CONCEPT_NAME" : "Laparoscopy, surgical; with removal of adnexal structures (partial or total oophorectomy and/or salpingectomy). (Deprecated)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "56307", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110245, + "CONCEPT_NAME" : "Laparoscopy, surgical; with salpingostomy (salpingoneostomy)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "58673", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2722217, + "CONCEPT_NAME" : "Laparoscopy, surgical; with salpingostomy (salpingoneostomy). (Deprecated)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "56343", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4030430, + "CONCEPT_NAME" : "Large baby of diabetic mother", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "129599004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 80782, + "CONCEPT_NAME" : "Large fetus causing disproportion - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199422007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 78818, + "CONCEPT_NAME" : "Large fetus causing disproportion with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199423002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36712932, + "CONCEPT_NAME" : "Large for gestational age newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15635491000119102", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4344633, + "CONCEPT_NAME" : "Laryngeal injury due to birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "240316007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2106488, + "CONCEPT_NAME" : "Laryngoscopy direct, with or without tracheoscopy; diagnostic, newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "31520", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4058439, + "CONCEPT_NAME" : "Last menstrual period -1st day", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "161713000", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Observable Entity" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4340777, + "CONCEPT_NAME" : "Late dumping syndrome", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "235667000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4163996, + "CONCEPT_NAME" : "Late fetal death affecting management of mother", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "399363000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434474, + "CONCEPT_NAME" : "Late metabolic acidosis of newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "9635004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061791, + "CONCEPT_NAME" : "Late onset antenatal care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169594005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36713562, + "CONCEPT_NAME" : "Late onset diffuse bleeding diathesis secondary to vitamin K deficient hemorrhagic disease of fetus and newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "717937006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 35622881, + "CONCEPT_NAME" : "Late-onset neonatal sepsis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "765107002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4206624, + "CONCEPT_NAME" : "Late postpartum state", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "56026007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441082, + "CONCEPT_NAME" : "Late pregnancy vomiting - delivered", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "199032005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443325, + "CONCEPT_NAME" : "Late pregnancy vomiting - not delivered", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "199033000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439880, + "CONCEPT_NAME" : "Late vomiting of pregnancy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "38331001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3035904, + "CONCEPT_NAME" : "Lecithin/Sphingomyelin [Ratio] in Amniotic fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14976-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4074877, + "CONCEPT_NAME" : "Left salpingectomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "176917009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4074876, + "CONCEPT_NAME" : "Left salpingo-oophorectomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "176915001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4113976, + "CONCEPT_NAME" : "Legally induced abortion NOS", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "198729008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444077, + "CONCEPT_NAME" : "Legal termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "39406005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 192379, + "CONCEPT_NAME" : "Legal termination of pregnancy complicated by damage to pelvic organ and/or tissues", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "111431001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 197617, + "CONCEPT_NAME" : "Legal termination of pregnancy complicated by delayed and/or excessive hemorrhage", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "58071009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442346, + "CONCEPT_NAME" : "Legal termination of pregnancy complicated by embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57734001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439883, + "CONCEPT_NAME" : "Legal termination of pregnancy complicated by genital-pelvic infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "373901007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 436474, + "CONCEPT_NAME" : "Legal termination of pregnancy complicated by metabolic disorder", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "3634007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 195595, + "CONCEPT_NAME" : "Legal termination of pregnancy complicated by renal failure", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "4576001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 197333, + "CONCEPT_NAME" : "Legal termination of pregnancy complicated by shock", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "27169005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181114, + "CONCEPT_NAME" : "Legal termination of pregnancy with acute renal failure", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "52342006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4147533, + "CONCEPT_NAME" : "Legal termination of pregnancy with afibrinogenemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "30479005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4009642, + "CONCEPT_NAME" : "Legal termination of pregnancy with air embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "111432008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4098441, + "CONCEPT_NAME" : "Legal termination of pregnancy with amniotic fluid embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "27015006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4292089, + "CONCEPT_NAME" : "Legal termination of pregnancy with blood-clot embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "37787009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4025639, + "CONCEPT_NAME" : "Legal termination of pregnancy with cardiac arrest and/or failure", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "12095001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4077454, + "CONCEPT_NAME" : "Legal termination of pregnancy with cerebral anoxia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "18894005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441349, + "CONCEPT_NAME" : "Legal termination of pregnancy with complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48433002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4280224, + "CONCEPT_NAME" : "Legal termination of pregnancy with defibrination syndrome", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6647006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4214233, + "CONCEPT_NAME" : "Legal termination of pregnancy with electrolyte imbalance", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "39239006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4294829, + "CONCEPT_NAME" : "Legal termination of pregnancy with endometritis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "75947000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4328084, + "CONCEPT_NAME" : "Legal termination of pregnancy with fat embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "75825001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4046510, + "CONCEPT_NAME" : "Legal termination of pregnancy with intravascular hemolysis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12296009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4243658, + "CONCEPT_NAME" : "Legal termination of pregnancy with laceration of bladder", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59859005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4183680, + "CONCEPT_NAME" : "Legal termination of pregnancy with laceration of bowel", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "5577003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4216436, + "CONCEPT_NAME" : "Legal termination of pregnancy with laceration of broad ligament", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "41806003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4324695, + "CONCEPT_NAME" : "Legal termination of pregnancy with laceration of cervix", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7166002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4324672, + "CONCEPT_NAME" : "Legal termination of pregnancy with laceration of periurethral tissue", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "71216006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4045581, + "CONCEPT_NAME" : "Legal termination of pregnancy with laceration of uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13100007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4204231, + "CONCEPT_NAME" : "Legal termination of pregnancy with laceration of vagina", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54044001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4269450, + "CONCEPT_NAME" : "Legal termination of pregnancy with oliguria", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36473002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 436747, + "CONCEPT_NAME" : "Legal termination of pregnancy without complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "34500003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4049453, + "CONCEPT_NAME" : "Legal termination of pregnancy with parametritis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15511008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4094081, + "CONCEPT_NAME" : "Legal termination of pregnancy with pelvic peritonitis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26010008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4271203, + "CONCEPT_NAME" : "Legal termination of pregnancy with perforation of bladder", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "62888008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4184150, + "CONCEPT_NAME" : "Legal termination of pregnancy with perforation of bowel", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55933000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4198404, + "CONCEPT_NAME" : "Legal termination of pregnancy with perforation of broad ligament", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "51953009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4312358, + "CONCEPT_NAME" : "Legal termination of pregnancy with perforation of cervix", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "85652000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4296459, + "CONCEPT_NAME" : "Legal termination of pregnancy with perforation of periurethral tissue", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "76472002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4068253, + "CONCEPT_NAME" : "Legal termination of pregnancy with perforation of uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "20216003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4327321, + "CONCEPT_NAME" : "Legal termination of pregnancy with perforation of vagina", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "75013000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4058932, + "CONCEPT_NAME" : "Legal termination of pregnancy with postoperative shock", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "21280005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4178578, + "CONCEPT_NAME" : "Legal termination of pregnancy with pulmonary embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "51096002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4070939, + "CONCEPT_NAME" : "Legal termination of pregnancy with renal tubular necrosis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "20483002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4204206, + "CONCEPT_NAME" : "Legal termination of pregnancy with salpingitis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "53098006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4197681, + "CONCEPT_NAME" : "Legal termination of pregnancy with salpingo-oophoritis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "51707007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4188764, + "CONCEPT_NAME" : "Legal termination of pregnancy with sepsis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "39246002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4106892, + "CONCEPT_NAME" : "Legal termination of pregnancy with septic embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "29950007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4105063, + "CONCEPT_NAME" : "Legal termination of pregnancy with septic shock", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25691001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4225572, + "CONCEPT_NAME" : "Legal termination of pregnancy with uremia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "8468007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4245041, + "CONCEPT_NAME" : "Legal termination of pregnancy with urinary tract infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "5945005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4006979, + "CONCEPT_NAME" : "Leprechaunism syndrome", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "111307005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4128988, + "CONCEPT_NAME" : "Lesion of umbilical stump", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "289330005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4268175, + "CONCEPT_NAME" : "Leucine-induced hypoglycemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "62151007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110236, + "CONCEPT_NAME" : "Ligation or transection of fallopian tube(s), abdominal or vaginal approach, postpartum, unilateral or bilateral, during same hospitalization (separate procedure)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "58605", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 74469, + "CONCEPT_NAME" : "Light-for-dates without fetal malnutrition", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "189445003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 72726, + "CONCEPT_NAME" : "Light-for-dates with signs of fetal malnutrition", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64177003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36716536, + "CONCEPT_NAME" : "Linear fracture of skull due to birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "722571004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4238207, + "CONCEPT_NAME" : "Listeria miscarriage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57420002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4092289, + "CONCEPT_NAME" : "Livebirth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "281050002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4307044, + "CONCEPT_NAME" : "Live birth surviving more than one year", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "390959009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40482735, + "CONCEPT_NAME" : "Liveborn born in hospital", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "442311008", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40483126, + "CONCEPT_NAME" : "Liveborn born in hospital by cesarean section", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "442365008", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 194699, + "CONCEPT_NAME" : "Liver disorder in pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15230009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 196170, + "CONCEPT_NAME" : "Liver disorder in pregnancy - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199117000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443292, + "CONCEPT_NAME" : "Liver disorder in pregnancy - not delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199118005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4047865, + "CONCEPT_NAME" : "Liver rupture due to birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206245001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4047863, + "CONCEPT_NAME" : "Liver subcapsular hematoma due to birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206242003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4127042, + "CONCEPT_NAME" : "Lochia abnormal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "289586006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4129167, + "CONCEPT_NAME" : "Lochia absent", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "289578006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42709955, + "CONCEPT_NAME" : "Lochia alba", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "449827006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4127039, + "CONCEPT_NAME" : "Lochia ceased", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "289579003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4096534, + "CONCEPT_NAME" : "Lochia finding", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "249211006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4127040, + "CONCEPT_NAME" : "Lochia heavy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "289580000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4127041, + "CONCEPT_NAME" : "Lochia minimal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "289582008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4124480, + "CONCEPT_NAME" : "Lochia normal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "289585005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4129166, + "CONCEPT_NAME" : "Lochia present", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "289576005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4127038, + "CONCEPT_NAME" : "Lochia reducing", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "289577001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4175536, + "CONCEPT_NAME" : "Lochia rubra", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "278072004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4129168, + "CONCEPT_NAME" : "Lochia scanty", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "289581001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42709956, + "CONCEPT_NAME" : "Lochia serosa", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "449828001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4126720, + "CONCEPT_NAME" : "Lochia thick", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "289584009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4126719, + "CONCEPT_NAME" : "Lochia watery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "289583003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4171116, + "CONCEPT_NAME" : "Long fetal gestation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276616001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4091785, + "CONCEPT_NAME" : "Loss of fundal mass after delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "249203001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4016047, + "CONCEPT_NAME" : "Loss of hypoglycemic warning due to diabetes mellitus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "170766006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4171115, + "CONCEPT_NAME" : "Low birth weight infant", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276610007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004786, + "CONCEPT_NAME" : "Low cervical cesarean section", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "74.1", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "3-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4161944, + "CONCEPT_NAME" : "Low cervical cesarean section", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "398307005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37312440, + "CONCEPT_NAME" : "Lower uterine segment cesarean section", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "788180009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44513746, + "CONCEPT_NAME" : "Low forceps cephalic delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "R21.5", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "OPCS4", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4088084, + "CONCEPT_NAME" : "Low forceps delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "18625004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4075735, + "CONCEPT_NAME" : "Low forceps delivery with episiotomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "17860005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004703, + "CONCEPT_NAME" : "Low forceps operation", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72.0", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "3-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004704, + "CONCEPT_NAME" : "Low forceps operation with episiotomy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72.1", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "3-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4075191, + "CONCEPT_NAME" : "Low vacuum delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177174003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4165508, + "CONCEPT_NAME" : "Lucey-Driscoll syndrome", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "47444008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4153112, + "CONCEPT_NAME" : "Lunch time blood glucose measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "271063001", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4239200, + "CONCEPT_NAME" : "Lymphangitis of breast associated with childbirth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "68214002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4214980, + "CONCEPT_NAME" : "Lysis of adhesions", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "39270003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4130310, + "CONCEPT_NAME" : "Macdonald's cervical cerclage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "236946009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4028787, + "CONCEPT_NAME" : "Macerated stillbirth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237366000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4093584, + "CONCEPT_NAME" : "Major depressive disorder, single episode with postpartum onset", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25922000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37394500, + "CONCEPT_NAME" : "Major postpartum haemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1033591000000101", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440473, + "CONCEPT_NAME" : "Major puerperal infection", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "40125005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36403113, + "CONCEPT_NAME" : "Malignant placental site trophoblastic tumor of placenta", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "9104/3-C58.9", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "ICDO3", + "CONCEPT_CLASS_ID" : "ICDO Condition" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4096041, + "CONCEPT_NAME" : "Malnutrition-related diabetes mellitus with ketoacidosis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "190406000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 77338, + "CONCEPT_NAME" : "Malposition and malpresentation of fetus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "270498000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4071505, + "CONCEPT_NAME" : "Manipulative cephalic vaginal delivery with abnormal presentation of head at delivery without instrument", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177180006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004845, + "CONCEPT_NAME" : "Manual exploration of uterine cavity, postpartum", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "75.7", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "3-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4170533, + "CONCEPT_NAME" : "Manual postpartum exploration of uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "49149002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4069969, + "CONCEPT_NAME" : "Manual removal of placenta from delivered uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177204008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4069968, + "CONCEPT_NAME" : "Manual removal of products of conception from delivered uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177203002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4151385, + "CONCEPT_NAME" : "Manual removal of retained placenta", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "28233006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004826, + "CONCEPT_NAME" : "Manual removal of retained placenta", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "75.4", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "3-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004764, + "CONCEPT_NAME" : "Manual rotation of fetal head", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "73.51", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4338977, + "CONCEPT_NAME" : "Marginal placenta previa with intrapartum hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87814002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37205103, + "CONCEPT_NAME" : "Massive epicranial subaponeurotic hematoma due to birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "784407005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4070523, + "CONCEPT_NAME" : "Massive subgaleal hemorrhage due to birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206202008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4048281, + "CONCEPT_NAME" : "Massive umbilical hemorrhage of newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206403000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44784126, + "CONCEPT_NAME" : "Mastitis associated with lactation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "700038005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4016059, + "CONCEPT_NAME" : "Maternal alcohol abuse", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "169942003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443295, + "CONCEPT_NAME" : "Maternal care for diminished fetal movements", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "200473005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4066354, + "CONCEPT_NAME" : "Maternal care for poor fetal growth", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "200474004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4091196, + "CONCEPT_NAME" : "Maternal condition during puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "249197004", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Observable Entity" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432977, + "CONCEPT_NAME" : "Maternal distress with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200101003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4062131, + "CONCEPT_NAME" : "Maternal distress with postnatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200102005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4197085, + "CONCEPT_NAME" : "Maternal dystocia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "79748007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441081, + "CONCEPT_NAME" : "Maternal gonorrhea during pregnancy - baby not yet delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199165004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443054, + "CONCEPT_NAME" : "Maternal gonorrhea during pregnancy, childbirth and the puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199161008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 314432, + "CONCEPT_NAME" : "Maternal hypotension syndrome", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "88887003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 313829, + "CONCEPT_NAME" : "Maternal hypotension syndrome - delivered with postnatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200112003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 315327, + "CONCEPT_NAME" : "Maternal hypotension syndrome with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200113008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4066002, + "CONCEPT_NAME" : "Maternal hypotension syndrome with postnatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200114002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443016, + "CONCEPT_NAME" : "Maternal malaria during pregnancy, childbirth and the puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199183007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443015, + "CONCEPT_NAME" : "Maternal malaria in the puerperium - baby delivered during current episode of care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199186004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443014, + "CONCEPT_NAME" : "Maternal malaria in the puerperium - baby delivered during previous episode of care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199188003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42872398, + "CONCEPT_NAME" : "Maternal obesity complicating pregnancy, childbirth and the puerperium, antepartum", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "171000119107", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439893, + "CONCEPT_NAME" : "Maternal obesity syndrome", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "44772007", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4297233, + "CONCEPT_NAME" : "Maternal postnatal 6 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "384636006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40485049, + "CONCEPT_NAME" : "Maternal postnatal examination done", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "444136005", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40483251, + "CONCEPT_NAME" : "Maternal postnatal examination not attended", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "443788002", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40485007, + "CONCEPT_NAME" : "Maternal postnatal examination offered", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "444099004", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40484589, + "CONCEPT_NAME" : "Maternal postnatal examination refused", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "444020006", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434105, + "CONCEPT_NAME" : "Maternal pyrexia during labor", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "37141005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4143214, + "CONCEPT_NAME" : "Maternal pyrexia in labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "267340006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438206, + "CONCEPT_NAME" : "Maternal rubella during pregnancy - baby delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199192005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435606, + "CONCEPT_NAME" : "Maternal syphilis during pregnancy - baby delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199156006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438205, + "CONCEPT_NAME" : "Maternal syphilis during pregnancy - baby not yet delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199158007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443020, + "CONCEPT_NAME" : "Maternal syphilis in the puerperium - baby delivered during previous episode of care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199159004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434697, + "CONCEPT_NAME" : "Maternal tobacco abuse", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169940006", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4197402, + "CONCEPT_NAME" : "Maternal transfer neutropenia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80255009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443018, + "CONCEPT_NAME" : "Maternal tuberculosis in the puerperium - baby delivered during current episode of care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199179007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40478936, + "CONCEPT_NAME" : "Measurement of alpha fetoprotein and analysis of chromosomes in amniotic fluid specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "444311009", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40483704, + "CONCEPT_NAME" : "Measurement of alpha fetoprotein and human chorionic gonadotropin and unconjugated estriol in serum or plasma specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "443883001", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40480870, + "CONCEPT_NAME" : "Measurement of alpha fetoprotein as marker for malignant neoplasm", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "441825001", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40483600, + "CONCEPT_NAME" : "Measurement of alpha fetoprotein in second trimester", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "442495004", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40481772, + "CONCEPT_NAME" : "Measurement of fasting glucose in urine specimen using dipstick", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "442033004", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40482677, + "CONCEPT_NAME" : "Measurement of glucose 1 hour after glucose challenge for glucose tolerance test", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "442260000", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4176733, + "CONCEPT_NAME" : "Measurement of glucose 2 hours after glucose challenge for glucose tolerance test", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "49167009", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4027514, + "CONCEPT_NAME" : "Measurement of glucose 3 hours after glucose challenge for glucose tolerance test", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13165004", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40482666, + "CONCEPT_NAME" : "Measurement of glucose 4 hours after glucose challenge for glucose tolerance test", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "442250009", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4143633, + "CONCEPT_NAME" : "Measurement of glucose 5 hours after glucose challenge for glucose tolerance test", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "34259007", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4232703, + "CONCEPT_NAME" : "Measurement of pregnancy associated plasma protein A concentration", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "440090009", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439934, + "CONCEPT_NAME" : "Meconium aspiration syndrome", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206292002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 193591, + "CONCEPT_NAME" : "Meconium ileus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206523001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4241979, + "CONCEPT_NAME" : "Meconium in amniotic fluid, not clear if noted before OR after onset of labor in liveborn infant", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59534005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4058519, + "CONCEPT_NAME" : "Meconium in amniotic fluid noted before labor in liveborn infant", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "2132004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4238980, + "CONCEPT_NAME" : "Meconium peritonitis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57341009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4315046, + "CONCEPT_NAME" : "Meconium pneumonitis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86649001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44807900, + "CONCEPT_NAME" : "Medical evacuation of retained products of conception using prostaglandin", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "854611000000109", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004762, + "CONCEPT_NAME" : "Medical induction of labor", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "73.4", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "3-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2721012, + "CONCEPT_NAME" : "Medically induced abortion by oral ingestion of medication including all associated services and supplies (e.g., patient counseling, office visits, confirmation of pregnancy by hcg, ultrasound to confirm duration of pregnancy, ultrasound to confirm com...", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "S0199", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4115153, + "CONCEPT_NAME" : "Medical termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "285409006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40487510, + "CONCEPT_NAME" : "Medical termination of pregnancy using prostaglandin", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "447972007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44784273, + "CONCEPT_NAME" : "Melena of newborn due to swallowed maternal blood", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "698318003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4112952, + "CONCEPT_NAME" : "Membranous pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198624007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442920, + "CONCEPT_NAME" : "Mental disorder during pregnancy - baby delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199259006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442918, + "CONCEPT_NAME" : "Mental disorder during pregnancy - baby not yet delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199261002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442919, + "CONCEPT_NAME" : "Mental disorder in the puerperium - baby delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199260001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442917, + "CONCEPT_NAME" : "Mental disorder in the puerperium - baby delivered during previous episode of care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199262009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060424, + "CONCEPT_NAME" : "Mental disorders during pregnancy, childbirth and the puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199257008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4113218, + "CONCEPT_NAME" : "Mesenteric pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198626009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432371, + "CONCEPT_NAME" : "Metabolic disorder following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "35208003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4029421, + "CONCEPT_NAME" : "Metabolic stress hyperglycemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237624007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3000034, + "CONCEPT_NAME" : "Microalbumin [Mass/volume] in Urine", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14957-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44513745, + "CONCEPT_NAME" : "Mid forceps cephalic delivery NEC", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "R21.4", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "OPCS4", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4075189, + "CONCEPT_NAME" : "Midforceps cephalic delivery with rotation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177164001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4266683, + "CONCEPT_NAME" : "Mid forceps delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "62508004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4093774, + "CONCEPT_NAME" : "Mid forceps delivery with episiotomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25828002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4143647, + "CONCEPT_NAME" : "Midforceps delivery without rotation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "265639000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004706, + "CONCEPT_NAME" : "Mid forceps operation with episiotomy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72.21", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4179832, + "CONCEPT_NAME" : "Mid postpartum state", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "42814007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44790206, + "CONCEPT_NAME" : "Mid trimester scan", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "228551000000105", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42535817, + "CONCEPT_NAME" : "Mid vacuum delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "734276001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4305717, + "CONCEPT_NAME" : "Midwife unit delivery booking", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "390782000", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4079970, + "CONCEPT_NAME" : "Mild birth asphyxia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276643006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4121760, + "CONCEPT_NAME" : "Mild birth asphyxia, APGAR 4-7", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "287986009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 436166, + "CONCEPT_NAME" : "Mild hyperemesis gravidarum", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "19569008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435023, + "CONCEPT_NAME" : "Mild hyperemesis-not delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199023008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4129842, + "CONCEPT_NAME" : "Mild postnatal depression", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237349002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4028783, + "CONCEPT_NAME" : "Mild postnatal psychosis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237351003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 314090, + "CONCEPT_NAME" : "Mild pre-eclampsia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "41114007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434759, + "CONCEPT_NAME" : "Mild to moderate birth asphyxia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "77362009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4173176, + "CONCEPT_NAME" : "Mild transient tachypnea of newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276531000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37394499, + "CONCEPT_NAME" : "Minor postpartum haemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1033571000000100", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4067106, + "CONCEPT_NAME" : "Miscarriage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "17369002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4087102, + "CONCEPT_NAME" : "Miscarriage at 8 to 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "184339009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 192678, + "CONCEPT_NAME" : "Miscarriage complicated by damage to pelvic organs and/or tissues", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "58990004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 195594, + "CONCEPT_NAME" : "Miscarriage complicated by delayed and/or excessive hemorrhage", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "2781009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 194704, + "CONCEPT_NAME" : "Miscarriage complicated by embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43306002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437920, + "CONCEPT_NAME" : "Miscarriage complicated by genital-pelvic infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "373896005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441348, + "CONCEPT_NAME" : "Miscarriage complicated by metabolic disorder", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13384007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 193820, + "CONCEPT_NAME" : "Miscarriage complicated by renal failure", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10697004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 196746, + "CONCEPT_NAME" : "Miscarriage complicated by shock", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "34270000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4323612, + "CONCEPT_NAME" : "Miscarriage due to Brucella abortus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428508008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4051244, + "CONCEPT_NAME" : "Miscarriage due to Leptospira", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16038004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4078393, + "CONCEPT_NAME" : "Miscarriage in first trimester", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "19169002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4224646, + "CONCEPT_NAME" : "Miscarriage in second trimester", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "85116003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4167685, + "CONCEPT_NAME" : "Miscarriage in third trimester", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48485000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530979, + "CONCEPT_NAME" : "Miscarriage of tubal ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609525000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4224597, + "CONCEPT_NAME" : "Miscarriage with acute necrosis of liver", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40444006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4211863, + "CONCEPT_NAME" : "Miscarriage with acute renal failure", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57469000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4064536, + "CONCEPT_NAME" : "Miscarriage with afibrinogenemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "21360006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4247270, + "CONCEPT_NAME" : "Miscarriage with air embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "60265009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4003276, + "CONCEPT_NAME" : "Miscarriage with amniotic fluid embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10058006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4209126, + "CONCEPT_NAME" : "Miscarriage with blood-clot embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55976003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4175137, + "CONCEPT_NAME" : "Miscarriage with cardiac arrest and/or cardiac failure", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48739004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4047775, + "CONCEPT_NAME" : "Miscarriage with cerebral anoxia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12394009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434094, + "CONCEPT_NAME" : "Miscarriage with complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "34614007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4179796, + "CONCEPT_NAME" : "Miscarriage with defibrination syndrome", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "50770000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4274315, + "CONCEPT_NAME" : "Miscarriage with electrolyte imbalance", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64814003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4149423, + "CONCEPT_NAME" : "Miscarriage with endometritis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "30806007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4278107, + "CONCEPT_NAME" : "Miscarriage with fat embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "66131005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4170457, + "CONCEPT_NAME" : "Miscarriage with heavy bleeding", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "275421004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4180568, + "CONCEPT_NAME" : "Miscarriage with intravascular hemolysis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "53183006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4194113, + "CONCEPT_NAME" : "Miscarriage with laceration of bladder", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "39199000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4041728, + "CONCEPT_NAME" : "Miscarriage with laceration of bowel", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16714009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4309780, + "CONCEPT_NAME" : "Miscarriage with laceration of broad ligament", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "85331004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4130670, + "CONCEPT_NAME" : "Miscarriage with laceration of cervix", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "127009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4261327, + "CONCEPT_NAME" : "Miscarriage with laceration of periurethral tissue", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "44814008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4302162, + "CONCEPT_NAME" : "Miscarriage with laceration of uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7809009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4311698, + "CONCEPT_NAME" : "Miscarriage with laceration of vagina", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "85632001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4217670, + "CONCEPT_NAME" : "Miscarriage with oliguria", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72613009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 436176, + "CONCEPT_NAME" : "Miscarriage without complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "23793007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4221853, + "CONCEPT_NAME" : "Miscarriage with parametritis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "83922009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4313166, + "CONCEPT_NAME" : "Miscarriage with pelvic peritonitis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "85991008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4310654, + "CONCEPT_NAME" : "Miscarriage with perforation of bladder", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "85467007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4216342, + "CONCEPT_NAME" : "Miscarriage with perforation of bowel", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "8071005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4031837, + "CONCEPT_NAME" : "Miscarriage with perforation of broad ligament", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14136000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4253804, + "CONCEPT_NAME" : "Miscarriage with perforation of cervix", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "74369005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4200070, + "CONCEPT_NAME" : "Miscarriage with perforation of periurethral tissue", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "51954003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4049891, + "CONCEPT_NAME" : "Miscarriage with perforation of uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15809008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4339107, + "CONCEPT_NAME" : "Miscarriage with perforation of vagina", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87967003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4168445, + "CONCEPT_NAME" : "Miscarriage with postoperative shock", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "47537002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4219469, + "CONCEPT_NAME" : "Miscarriage with pulmonary embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "82153002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4001856, + "CONCEPT_NAME" : "Miscarriage with renal tubular necrosis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "11026009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4195406, + "CONCEPT_NAME" : "Miscarriage with salpingitis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7910003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4189350, + "CONCEPT_NAME" : "Miscarriage with salpingo-oophoritis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "61568004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4285746, + "CONCEPT_NAME" : "Miscarriage with sepsis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "67465009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4244261, + "CONCEPT_NAME" : "Miscarriage with septic embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59204004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4085627, + "CONCEPT_NAME" : "Miscarriage with septic shock", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "18613002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4006806, + "CONCEPT_NAME" : "Miscarriage with uremia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "11109001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4033096, + "CONCEPT_NAME" : "Miscarriage with urinary tract infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1469007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 76482, + "CONCEPT_NAME" : "Missed miscarriage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16607004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4063183, + "CONCEPT_NAME" : "Mixed feto-pelvic disproportion", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199416003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 72970, + "CONCEPT_NAME" : "Mixed feto-pelvic disproportion - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199418002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 78817, + "CONCEPT_NAME" : "Mixed feto-pelvic disproportion with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199419005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4278101, + "CONCEPT_NAME" : "Mixed hypoglycemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "66095000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42539560, + "CONCEPT_NAME" : "Mixed neonatal apnea", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "762287001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4030429, + "CONCEPT_NAME" : "Moderate hyperemesis gravidarum", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "129597002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4034094, + "CONCEPT_NAME" : "Moderate proteinuric hypertension of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237281009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36675173, + "CONCEPT_NAME" : "Moderate to late prematurity of infant", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "771507004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37016955, + "CONCEPT_NAME" : "Monitoring fetal development", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "713117007", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4146288, + "CONCEPT_NAME" : "Monitoring of lochia by sanitary pad count", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "427406007", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43021951, + "CONCEPT_NAME" : "Monochorionic diamniotic twin pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "459168005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43021952, + "CONCEPT_NAME" : "Monochorionic monoamniotic twin pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "459171002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4199931, + "CONCEPT_NAME" : "Morning sickness", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "51885006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433260, + "CONCEPT_NAME" : "Mother delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "289256000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437041, + "CONCEPT_NAME" : "Mother not delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "289257009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4310471, + "CONCEPT_NAME" : "MS alpha-fetoprotein level", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "391516001", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110337, + "CONCEPT_NAME" : "Multifetal pregnancy reduction(s) (MPR)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59866", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4163851, + "CONCEPT_NAME" : "Multiple birth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45384004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4063163, + "CONCEPT_NAME" : "Multiple delivery, all by cesarean section", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199331008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4063162, + "CONCEPT_NAME" : "Multiple delivery, all by forceps and vacuum extractor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199330009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4059751, + "CONCEPT_NAME" : "Multiple delivery, all spontaneous", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199329004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 75015, + "CONCEPT_NAME" : "Multiple gestation with one OR more fetal malpresentations", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80224003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42539267, + "CONCEPT_NAME" : "Multiple liveborn in hospital by vaginal delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16089691000119102", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36713468, + "CONCEPT_NAME" : "Multiple liveborn other than twins born in hospital", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "717807001", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3045823, + "CONCEPT_NAME" : "Multiple pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45371-2", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Clinical Observation" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432969, + "CONCEPT_NAME" : "Multiple pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16356006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442082, + "CONCEPT_NAME" : "Multiple pregnancy with malpresentation - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199380003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4063175, + "CONCEPT_NAME" : "Multiple pregnancy with malpresentation with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199381004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4178154, + "CONCEPT_NAME" : "Multiple pregnancy with one fetal loss", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428511009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42599849, + "CONCEPT_NAME" : "Mycotic abortion", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "360061000009103", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED Veterinary", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3000119, + "CONCEPT_NAME" : "Narrative Fetal presentation US", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "18850-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Clinical Observation" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 201957, + "CONCEPT_NAME" : "Necrotizing enterocolitis in fetus OR newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "2707005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37311912, + "CONCEPT_NAME" : "Necrotizing enterocolitis of newborn, stage 1A", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "788986004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37311911, + "CONCEPT_NAME" : "Necrotizing enterocolitis of newborn, stage 1B", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "788987008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37311910, + "CONCEPT_NAME" : "Necrotizing enterocolitis of newborn, stage 2A", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "788988003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37311909, + "CONCEPT_NAME" : "Necrotizing enterocolitis of newborn, stage 2B", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "788989006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37311908, + "CONCEPT_NAME" : "Necrotizing enterocolitis of newborn, stage 3A", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "788990002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37311907, + "CONCEPT_NAME" : "Necrotizing enterocolitis of newborn, Stage 3B", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "788991003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4172307, + "CONCEPT_NAME" : "Neonatal acne", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "49706007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 765023, + "CONCEPT_NAME" : "Neonatal adrenal hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16060511000119104", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4319457, + "CONCEPT_NAME" : "Neonatal apneic attack", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "95616002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433589, + "CONCEPT_NAME" : "Neonatal aspiration of amniotic fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276540001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 252442, + "CONCEPT_NAME" : "Neonatal aspiration of blood", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206294001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437374, + "CONCEPT_NAME" : "Neonatal aspiration of meconium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "278927005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4172995, + "CONCEPT_NAME" : "Neonatal aspiration of milk", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276542009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434154, + "CONCEPT_NAME" : "Neonatal aspiration syndromes", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276533002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4171248, + "CONCEPT_NAME" : "Neonatal bacterial conjunctivitis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276680000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443522, + "CONCEPT_NAME" : "Neonatal bradycardia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "413341007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440840, + "CONCEPT_NAME" : "Neonatal candidiasis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "414821002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4070650, + "CONCEPT_NAME" : "Neonatal candidiasis of intestine", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206358003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4070651, + "CONCEPT_NAME" : "Neonatal candidiasis of lung", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206359006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4070648, + "CONCEPT_NAME" : "Neonatal candidiasis of perineum", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206356004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4106274, + "CONCEPT_NAME" : "Neonatal cardiac arrest", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "180906006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4110550, + "CONCEPT_NAME" : "Neonatal cardiorespiratory arrest", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "181869007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 761919, + "CONCEPT_NAME" : "Neonatal cerebral hematoma due to birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "194091000119102", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4129290, + "CONCEPT_NAME" : "Neonatal cerebral hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "261808007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4173173, + "CONCEPT_NAME" : "Neonatal chloridorrhea", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "276524004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36674511, + "CONCEPT_NAME" : "Neonatal clicking hip", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "778014002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4269452, + "CONCEPT_NAME" : "Neonatal condition - finding", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "364737004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36717459, + "CONCEPT_NAME" : "Neonatal conjunctivitis and dacrocystitis caused by Neisseria gonorrhoeae", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "721281003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4173019, + "CONCEPT_NAME" : "Neonatal cord dry", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276401008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4170953, + "CONCEPT_NAME" : "Neonatal cord moist", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276402001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4173020, + "CONCEPT_NAME" : "Neonatal cord sticky", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276403006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 373870, + "CONCEPT_NAME" : "Neonatal dacryocystitis and conjunctivitis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206345004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4210315, + "CONCEPT_NAME" : "Neonatal death of female (within 4 weeks, USA)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "56102008", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Event" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4206035, + "CONCEPT_NAME" : "Neonatal death of female (within 7 days, WHO)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55225009", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Event" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4239540, + "CONCEPT_NAME" : "Neonatal death of male (within 4 weeks, USA)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "91519006", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Event" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4244718, + "CONCEPT_NAME" : "Neonatal death of male (within 7 days, WHO)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "60257006", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Event" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4291447, + "CONCEPT_NAME" : "Neonatal dermatosis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "402795001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 193323, + "CONCEPT_NAME" : "Neonatal diabetes mellitus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "49817004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36716761, + "CONCEPT_NAME" : "Neonatal difficulty in feeding at breast", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "722934009", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42537680, + "CONCEPT_NAME" : "Neonatal disorder of oral mucosa", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "737211006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44784276, + "CONCEPT_NAME" : "Neonatal effect of alcohol transmitted via breast milk", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "698321001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44784301, + "CONCEPT_NAME" : "Neonatal effect of anti-infective agent transmitted via breast milk", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "698403003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44784360, + "CONCEPT_NAME" : "Neonatal effect of maternal intrauterine infection", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "698495000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36717269, + "CONCEPT_NAME" : "Neonatal effect of maternal postpartum depression", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "11047971000119109", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4050236, + "CONCEPT_NAME" : "Neonatal effect of noxious substance transmitted via breast milk", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "20952006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4025181, + "CONCEPT_NAME" : "Neonatal enamel hypoplasia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "196279002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36715839, + "CONCEPT_NAME" : "Neonatal eosinophilic esophagitis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "721612007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36716750, + "CONCEPT_NAME" : "Neonatal epistaxis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "722922001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36717488, + "CONCEPT_NAME" : "Neonatal esophagitis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "721611000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3188843, + "CONCEPT_NAME" : "Neonatal exposure to Hepatitis B in mother", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "9300001000004101", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "Nebraska Lexicon", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3175980, + "CONCEPT_NAME" : "Neonatal exposure to HIV in mother", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "9330001000004109", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "Nebraska Lexicon", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3173911, + "CONCEPT_NAME" : "Neonatal exposure to syphilis in mother", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "9310001000004104", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "Nebraska Lexicon", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4173004, + "CONCEPT_NAME" : "Neonatal facial petechiae", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276619008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44792481, + "CONCEPT_NAME" : "Neonatal feeding education", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "352641000000101", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36712969, + "CONCEPT_NAME" : "Neonatal gastroesophageal reflux", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15749591000119107", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4180181, + "CONCEPT_NAME" : "Neonatal gastrointestinal disorder", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "363219007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37109016, + "CONCEPT_NAME" : "Neonatal gastrointestinal hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16055151000119105", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4243042, + "CONCEPT_NAME" : "Neonatal Graves' disease", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59957008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42538558, + "CONCEPT_NAME" : "Neonatal hemorrhage of bladder", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "762289003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42538557, + "CONCEPT_NAME" : "Neonatal hemorrhage of kidney", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "762288006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42536722, + "CONCEPT_NAME" : "Neonatal hemorrhage of liver", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "735677007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36717593, + "CONCEPT_NAME" : "Neonatal hemorrhage of spleen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "722921008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42538559, + "CONCEPT_NAME" : "Neonatal hemorrhage of uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "762290007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4320490, + "CONCEPT_NAME" : "Neonatal hepatitis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "69800000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4318835, + "CONCEPT_NAME" : "Neonatal hepatocellular damage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "95555006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4214373, + "CONCEPT_NAME" : "Neonatal hepatosplenomegaly", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80378000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4132505, + "CONCEPT_NAME" : "Neonatal herpes simplex virus conjunctivitis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "410507001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 23034, + "CONCEPT_NAME" : "Neonatal hypoglycemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "52767006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36716745, + "CONCEPT_NAME" : "Neonatal hypotonia of hypopharynx", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "722916005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443618, + "CONCEPT_NAME" : "Neonatal hypoxemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "431335002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4174302, + "CONCEPT_NAME" : "Neonatal infection of the eye", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276675009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 76221, + "CONCEPT_NAME" : "Neonatal infective mastitis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "3468005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36676688, + "CONCEPT_NAME" : "Neonatal inflammatory skin and bowel disease", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "773662009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42536730, + "CONCEPT_NAME" : "Neonatal intestinal perforation co-occurrent and due to intestinal atresia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "735719008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42536732, + "CONCEPT_NAME" : "Neonatal intestinal perforation due to in utero intestinal volvulus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "735721003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42536731, + "CONCEPT_NAME" : "Neonatal intestinal perforation with congenital intestinal stenosis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "735720002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42539039, + "CONCEPT_NAME" : "Neonatal intestinal perforation with in utero intraluminal obstruction", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "735722005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37399026, + "CONCEPT_NAME" : "Neonatal intrahepatic cholestasis due to citrin deficiency", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "717155003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42536733, + "CONCEPT_NAME" : "Neonatal isolated ileal perforation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "735723000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435656, + "CONCEPT_NAME" : "Neonatal jaundice", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "387712008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440847, + "CONCEPT_NAME" : "Neonatal jaundice associated with preterm delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "73749009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4170445, + "CONCEPT_NAME" : "Neonatal jaundice due to deficiency of enzyme system for bilirubin conjugation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "275360003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439137, + "CONCEPT_NAME" : "Neonatal jaundice due to delayed conjugation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "17140000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4221399, + "CONCEPT_NAME" : "Neonatal jaundice due to delayed conjugation from breast milk inhibitor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "82696006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4239658, + "CONCEPT_NAME" : "Neonatal jaundice due to delayed conjugation from delayed development of conjugating system", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "69347004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4071740, + "CONCEPT_NAME" : "Neonatal jaundice with Crigler-Najjar syndrome", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206454000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4048614, + "CONCEPT_NAME" : "Neonatal jaundice with Gilbert's syndrome", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206456003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4071080, + "CONCEPT_NAME" : "Neonatal jaundice with porphyria", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206458002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4048294, + "CONCEPT_NAME" : "Neonatal jaundice with Rotor's syndrome", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206459005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42536729, + "CONCEPT_NAME" : "Neonatal malabsorption with gastrointestinal hormone-secreting endocrine tumor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "735718000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36716886, + "CONCEPT_NAME" : "Neonatal mass of hypopharynx", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "723111007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4048608, + "CONCEPT_NAME" : "Neonatal melena", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206424005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36717505, + "CONCEPT_NAME" : "Neonatal mucocutaneous infection caused by Candida", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "721795001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4308227, + "CONCEPT_NAME" : "Neonatal necrotizing enterocolitis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206525008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42535103, + "CONCEPT_NAME" : "Neonatal non-traumatic intraventricular hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15985031000119102", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 761782, + "CONCEPT_NAME" : "Neonatal nontraumatic subarachnoid hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15985111000119106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37116437, + "CONCEPT_NAME" : "Neonatal obstruction of intestine", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "733145007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42538263, + "CONCEPT_NAME" : "Neonatal oral candidiasis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "746223006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42536564, + "CONCEPT_NAME" : "Neonatal perforation of intestine caused by drug", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "735493006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439140, + "CONCEPT_NAME" : "Neonatal polycythemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "32984002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42537679, + "CONCEPT_NAME" : "Neonatal polycythemia due to intra-uterine growth retardation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "737210007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42537678, + "CONCEPT_NAME" : "Neonatal polycythemia due to placental insufficiency", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "737209002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3182078, + "CONCEPT_NAME" : "Neonatal potential for methadone withdrawal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "20290001000004109", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "Nebraska Lexicon", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 257375, + "CONCEPT_NAME" : "Neonatal pulmonary hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "414822009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4048286, + "CONCEPT_NAME" : "Neonatal rectal hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206425006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4316374, + "CONCEPT_NAME" : "Neonatal respiratory acidosis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "95612000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4316375, + "CONCEPT_NAME" : "Neonatal respiratory alkalosis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "95613005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 318856, + "CONCEPT_NAME" : "Neonatal respiratory arrest", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "95634003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36715567, + "CONCEPT_NAME" : "Neonatal sepsis caused by Malassezia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "721278008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 761851, + "CONCEPT_NAME" : "Neonatal sepsis caused by Staphylococcus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16060271000119109", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 761852, + "CONCEPT_NAME" : "Neonatal sepsis caused by Streptococcus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16060311000119109", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4298866, + "CONCEPT_NAME" : "Neonatal staphylococcal scalded skin syndrome", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "402967005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4300236, + "CONCEPT_NAME" : "Neonatal systemic candidiasis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "403000003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443523, + "CONCEPT_NAME" : "Neonatal tachycardia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "413342000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4264166, + "CONCEPT_NAME" : "Neonatal thrombocytopenia due to idiopathic maternal thrombocytopenia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "61744005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 137099, + "CONCEPT_NAME" : "Neonatal thyrotoxicosis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13795004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4243198, + "CONCEPT_NAME" : "Neonatal tooth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "58748004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4210115, + "CONCEPT_NAME" : "Neonatal tracheobronchial hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "312858004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36717571, + "CONCEPT_NAME" : "Neonatal traumatic hemorrhage of trachea following procedure on lower respiratory tract", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "722579002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4047937, + "CONCEPT_NAME" : "Neonatal urinary tract infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12301009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 194598, + "CONCEPT_NAME" : "Neoplasm of uncertain behavior of placenta", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "95005005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2101016, + "CONCEPT_NAME" : "Neuraxial analgesia/anesthesia for labor ending in a cesarean delivery (includes any repeat subarachnoid needle placement and drug injection and/or any necessary replacement of an epidural catheter during labor) (Deprecated)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "00857", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2101813, + "CONCEPT_NAME" : "Neuraxial labor analgesia/anesthesia for planned vaginal delivery (this includes any repeat subarachnoid needle placement and drug injection and/or any necessary replacement of an epidural catheter during labor)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "01967", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4034967, + "CONCEPT_NAME" : "Neuroglycopenia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237631006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4171104, + "CONCEPT_NAME" : "Neutropenia of the small for gestational age baby", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276576000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4173513, + "CONCEPT_NAME" : "Neville-Barnes forceps delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "275168001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 46284810, + "CONCEPT_NAME" : "New birth examination completed by other healthcare provider", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "955251000000102", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4079843, + "CONCEPT_NAME" : "Newborn death", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276506001", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Event" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4173194, + "CONCEPT_NAME" : "Newborn drug intoxication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276582002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4173193, + "CONCEPT_NAME" : "Newborn drug reaction", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276581009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4171092, + "CONCEPT_NAME" : "Newborn environmental hypothermia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276529009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4079846, + "CONCEPT_NAME" : "Newborn ingestion of maternal blood", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276539003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3200880, + "CONCEPT_NAME" : "Newborn metabolic screen finding abnormal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "9100001000004106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "Nebraska Lexicon", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2721181, + "CONCEPT_NAME" : "Newborn metabolic screening panel, includes test kit, postage and the laboratory tests specified by the state for inclusion in this panel (e.g., galactose; hemoglobin, electrophoresis; hydroxyprogesterone, 17-d; phenylalanine (pku); and thyroxine, total)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "S3620", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4173180, + "CONCEPT_NAME" : "Newborn physiological jaundice", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276549000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4207827, + "CONCEPT_NAME" : "Newborn regurgitation of food", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55331005", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42739015, + "CONCEPT_NAME" : "Newborn resuscitation: provision of positive pressure ventilation and/or chest compressions in the presence of acute inadequate ventilation and/or cardiac output", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "99440", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4129520, + "CONCEPT_NAME" : "Nocturnal hypoglycemia due to diabetes mellitus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237635002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4127831, + "CONCEPT_NAME" : "No further involution of the uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "289753009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3655876, + "CONCEPT_NAME" : "Noma neonatorum", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "870353004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4029424, + "CONCEPT_NAME" : "Non-diabetic hypoglycemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237637005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 76533, + "CONCEPT_NAME" : "Non-immune hydrops fetalis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276509008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37017029, + "CONCEPT_NAME" : "Non immune hydrops in newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "713204000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36715842, + "CONCEPT_NAME" : "Non-infective neonatal diarrhea", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "721615009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4176715, + "CONCEPT_NAME" : "Non-involution of uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "4907004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4071630, + "CONCEPT_NAME" : "Non-manipulative cephalic vaginal delivery with abnormal presentation of head at delivery without instrument", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177181005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4275443, + "CONCEPT_NAME" : "Non-pregnancy related A-G syndrome", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64678009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442573, + "CONCEPT_NAME" : "Nonpurulent mastitis associated with childbirth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "78697003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36713477, + "CONCEPT_NAME" : "Nonpurulent mastitis associated with childbirth with attachment difficulty", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "717818001", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45757111, + "CONCEPT_NAME" : "Nonpurulent mastitis associated with lactation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10750411000119102", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4127248, + "CONCEPT_NAME" : "Nonrotational forceps delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "236975003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44790222, + "CONCEPT_NAME" : "Non routine obstetric scan for fetal observations", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "228691000000101", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4080067, + "CONCEPT_NAME" : "Non-urgent obstetric admission", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "183494008", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4171058, + "CONCEPT_NAME" : "Nonvenomous insect bite of anus with infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "42089007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4148533, + "CONCEPT_NAME" : "Nonvenomous insect bite of penis with infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "35057008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4149402, + "CONCEPT_NAME" : "Nonvenomous insect bite of perineum with infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "30818003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4187237, + "CONCEPT_NAME" : "Nonvenomous insect bite of scrotum with infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "47027001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4201764, + "CONCEPT_NAME" : "Nonvenomous insect bite of vulva with infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "53706009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014720, + "CONCEPT_NAME" : "Normal birth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169961004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4080889, + "CONCEPT_NAME" : "Normal birth weight", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276712009", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4063160, + "CONCEPT_NAME" : "Normal delivery but ante- or post- natal conditions present", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199314001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4070222, + "CONCEPT_NAME" : "Normal delivery of placenta", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "177212000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4071507, + "CONCEPT_NAME" : "Normal delivery procedure", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177184002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4009404, + "CONCEPT_NAME" : "Normal glucose level", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "102659003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42739012, + "CONCEPT_NAME" : "Normal newborn care in other than hospital or birthing room setting, including physical examination of baby and conference(s) with parent(s)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "99432", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4217975, + "CONCEPT_NAME" : "Normal pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72892002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45765512, + "CONCEPT_NAME" : "Normogonadotropic amenorrhea", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "702466002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4028938, + "CONCEPT_NAME" : "Normoprolactinemic galactorrhea", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237801002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4186424, + "CONCEPT_NAME" : "Nuchal ultrasound scan", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "414880004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3002549, + "CONCEPT_NAME" : "Number of fetuses by US", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "11878-6", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Clinical Observation" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442051, + "CONCEPT_NAME" : "Obstetric air pulmonary embolism with antenatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200290001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442050, + "CONCEPT_NAME" : "Obstetric air pulmonary embolism with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200291002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 314107, + "CONCEPT_NAME" : "Obstetrical cardiac complication of anesthesia AND/OR sedation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64171002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432976, + "CONCEPT_NAME" : "Obstetrical complication of anesthesia AND/OR sedation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "29847008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442294, + "CONCEPT_NAME" : "Obstetrical pulmonary complication of anesthesia AND/OR sedation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "51154004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45757105, + "CONCEPT_NAME" : "Obstetric anesthesia with cardiac complication in childbirth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10749691000119103", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4064980, + "CONCEPT_NAME" : "Obstetric anesthesia with cardiac complications with postnatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200059007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45757106, + "CONCEPT_NAME" : "Obstetric anesthesia with central nervous system complication in childbirth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10749811000119108", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4065091, + "CONCEPT_NAME" : "Obstetric anesthesia with central nervous system complication with postnatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200066008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4064979, + "CONCEPT_NAME" : "Obstetric anesthesia with pulmonary complications with postnatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200052003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442053, + "CONCEPT_NAME" : "Obstetric blood-clot pulmonary embolism - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200301007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433545, + "CONCEPT_NAME" : "Obstetric blood-clot pulmonary embolism with antenatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200303005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437060, + "CONCEPT_NAME" : "Obstetric blood-clot pulmonary embolism with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200304004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443263, + "CONCEPT_NAME" : "Obstetric breast abscess", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "270502007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 74433, + "CONCEPT_NAME" : "Obstetric breast abscess - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200374003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 78494, + "CONCEPT_NAME" : "Obstetric breast abscess - delivered with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200375002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 78218, + "CONCEPT_NAME" : "Obstetric breast abscess with antenatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200376001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443293, + "CONCEPT_NAME" : "Obstetric breast abscess with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200377005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4063697, + "CONCEPT_NAME" : "Obstetric breast infections", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200364001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 75326, + "CONCEPT_NAME" : "Obstetric damage to pelvic joints and ligaments - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199990003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442079, + "CONCEPT_NAME" : "Obstetric damage to pelvic joints and ligaments with postnatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199991004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4084521, + "CONCEPT_NAME" : "Obstetric D.V. done", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "183760007", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4080059, + "CONCEPT_NAME" : "Obstetric emergency hospital admission", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "183460006", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038747, + "CONCEPT_NAME" : "Obstetric examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "163497009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 192979, + "CONCEPT_NAME" : "Obstetric high vaginal laceration", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199977005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 193269, + "CONCEPT_NAME" : "Obstetric high vaginal laceration - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199979008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 200472, + "CONCEPT_NAME" : "Obstetric high vaginal laceration with postnatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199980006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 197048, + "CONCEPT_NAME" : "Obstetric inversion of uterus - delivered with postnatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199969006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442080, + "CONCEPT_NAME" : "Obstetric laceration of cervix - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199974003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442083, + "CONCEPT_NAME" : "Obstetric laceration of cervix with postnatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199975002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4140250, + "CONCEPT_NAME" : "Obstetric monitoring", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "265642006", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441925, + "CONCEPT_NAME" : "Obstetric nipple infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "267289003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441926, + "CONCEPT_NAME" : "Obstetric nipple infection with antenatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200369006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433837, + "CONCEPT_NAME" : "Obstetric nipple infection with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200370007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 79897, + "CONCEPT_NAME" : "Obstetric non-purulent mastitis - delivered with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200382003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 76491, + "CONCEPT_NAME" : "Obstetric non-purulent mastitis with antenatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200383008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 76771, + "CONCEPT_NAME" : "Obstetric non-purulent mastitis with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200385001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2212094, + "CONCEPT_NAME" : "Obstetric panel This panel must include the following: Blood count, complete (CBC), automated and automated differential WBC count (85025 or 85027 and 85004) OR Blood count, complete (CBC), automated (85027) and appropriate manual differential WBC count (", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80055", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 201368, + "CONCEPT_NAME" : "Obstetric pelvic hematoma - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199995008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 193271, + "CONCEPT_NAME" : "Obstetric pelvic hematoma - delivered with postnatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199996009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060178, + "CONCEPT_NAME" : "Obstetric pelvic hematoma with postnatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199997000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4129839, + "CONCEPT_NAME" : "Obstetric pelvic joint damage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237328003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4034149, + "CONCEPT_NAME" : "Obstetric pelvic ligament damage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237327008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 194439, + "CONCEPT_NAME" : "Obstetric perineal wound disruption", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "397752008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 192387, + "CONCEPT_NAME" : "Obstetric perineal wound disruption - delivered with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200342005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442417, + "CONCEPT_NAME" : "Obstetric perineal wound disruption with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200343000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435026, + "CONCEPT_NAME" : "Obstetric pulmonary embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200284000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433832, + "CONCEPT_NAME" : "Obstetric pulmonary thromboembolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200299000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439380, + "CONCEPT_NAME" : "Obstetric pyemic and septic pulmonary embolism with antenatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200310004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439379, + "CONCEPT_NAME" : "Obstetric pyemic and septic pulmonary embolism with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200311000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4081774, + "CONCEPT_NAME" : "Obstetric self-referral", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "183695003", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 195025, + "CONCEPT_NAME" : "Obstetric shock - delivered with postnatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200106008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442071, + "CONCEPT_NAME" : "Obstetric shock with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200107004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4065635, + "CONCEPT_NAME" : "Obstetric shock with postnatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200108009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004846, + "CONCEPT_NAME" : "Obstetric tamponade of uterus or vagina", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "75.8", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "3-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 76763, + "CONCEPT_NAME" : "Obstetric trauma damaging pelvic joints and ligaments", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "267271004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44790279, + "CONCEPT_NAME" : "Obstetric ultrasound monitoring", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "228921000000108", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4059051, + "CONCEPT_NAME" : "Obstetric X-ray - fetus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "168760000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4085285, + "CONCEPT_NAME" : "Obstetric X-ray - placenta", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "241059000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 193827, + "CONCEPT_NAME" : "Obstructed labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199746004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 197051, + "CONCEPT_NAME" : "Obstructed labor caused by bony pelvis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199757009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 199087, + "CONCEPT_NAME" : "Obstructed labor caused by bony pelvis - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199759007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 193273, + "CONCEPT_NAME" : "Obstructed labor caused by bony pelvis with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199760002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 192694, + "CONCEPT_NAME" : "Obstructed labor caused by pelvic soft tissues", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199767004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 196182, + "CONCEPT_NAME" : "Obstructed labor caused by pelvic soft tissues - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199769001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442440, + "CONCEPT_NAME" : "Obstructed labor caused by pelvic soft tissues with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199770000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061852, + "CONCEPT_NAME" : "Obstructed labor due to abnormality of maternal pelvic organs", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199765007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 46269810, + "CONCEPT_NAME" : "Obstructed labor due to abnormality of maternal pelvis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10751631000119101", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060036, + "CONCEPT_NAME" : "Obstructed labor due to breech presentation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199751005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060037, + "CONCEPT_NAME" : "Obstructed labor due to brow presentation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199753008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4064819, + "CONCEPT_NAME" : "Obstructed labor due to compound presentation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199755001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37310898, + "CONCEPT_NAME" : "Obstructed labor due to deep transverse arrest and persistent occipitoposterior position", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "31041000119106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4064821, + "CONCEPT_NAME" : "Obstructed labor due to deformed pelvis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199761003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45757117, + "CONCEPT_NAME" : "Obstructed labor due to disproportion between fetus and pelvis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10751581000119104", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061850, + "CONCEPT_NAME" : "Obstructed labor due to face presentation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199752003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37396169, + "CONCEPT_NAME" : "Obstructed labor due to fetal abnormality", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "715880002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 194100, + "CONCEPT_NAME" : "Obstructed labor due to fetal malposition", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199747008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 194711, + "CONCEPT_NAME" : "Obstructed labor due to fetal malposition - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199749006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 193831, + "CONCEPT_NAME" : "Obstructed labor due to fetal malposition with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199750006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060039, + "CONCEPT_NAME" : "Obstructed labor due to generally contracted pelvis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199762005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45772074, + "CONCEPT_NAME" : "Obstructed labor due to incomplete rotation of fetal head", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10751511000119105", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4064423, + "CONCEPT_NAME" : "Obstructed labor due to pelvic inlet contraction", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199763000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4064424, + "CONCEPT_NAME" : "Obstructed labor due to pelvic outlet and mid-cavity contraction", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199764006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42536563, + "CONCEPT_NAME" : "Obstructed labor due to shoulder dystocia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "735492001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060038, + "CONCEPT_NAME" : "Obstructed labor due to shoulder presentation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199754002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4064437, + "CONCEPT_NAME" : "Obstructed labor due to unusually large fetus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199806003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4300773, + "CONCEPT_NAME" : "Obstruction by bony pelvis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "77563000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444404, + "CONCEPT_NAME" : "Obstruction caused by position of fetus at onset of labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "20625004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 252305, + "CONCEPT_NAME" : "Obstructive apnea of newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276545006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3655849, + "CONCEPT_NAME" : "Ocular hypertension due to birth injury", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "870324000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4091789, + "CONCEPT_NAME" : "Odor of lochia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "249215002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038420, + "CONCEPT_NAME" : "O/E - breech presentation", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163514003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038571, + "CONCEPT_NAME" : "O/E - fetal heart 120-160", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163548002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038945, + "CONCEPT_NAME" : "O/E - fetal heart heard", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163542001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4039088, + "CONCEPT_NAME" : "O/E - fetal heart not heard", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163543006", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038943, + "CONCEPT_NAME" : "O/E - fetal movement diminished", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163540009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038942, + "CONCEPT_NAME" : "O/E - fetal movements", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163535001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038426, + "CONCEPT_NAME" : "O/E - fetal movements felt", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163538004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4039610, + "CONCEPT_NAME" : "O/E - fetal movements seen", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163537009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4150948, + "CONCEPT_NAME" : "O/E - fetal presentation", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "268952006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038938, + "CONCEPT_NAME" : "O/E -fetal presentation unsure", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163518000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038760, + "CONCEPT_NAME" : "O/E - fetus very active", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163539007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038418, + "CONCEPT_NAME" : "O/E - fundal size = dates", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163510007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038749, + "CONCEPT_NAME" : "O/E - fundus 12-16 week size", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163499007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038751, + "CONCEPT_NAME" : "O/E - fundus 16-20 week size", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163500003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038932, + "CONCEPT_NAME" : "O/E - fundus 20-24 week size", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163501004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4039602, + "CONCEPT_NAME" : "O/E - fundus 24-28 week size", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163502006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038753, + "CONCEPT_NAME" : "O/E - fundus 28-32 week size", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163504007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038754, + "CONCEPT_NAME" : "O/E - fundus 32-34 week size", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163505008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038755, + "CONCEPT_NAME" : "O/E - fundus 34-36 week size", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163506009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038934, + "CONCEPT_NAME" : "O/E - fundus 36-38 week size", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163507000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038756, + "CONCEPT_NAME" : "O/E -fundus 38 weeks-term size", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163508005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4255282, + "CONCEPT_NAME" : "O/E - fundus not adequately seen", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "408314005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038935, + "CONCEPT_NAME" : "O/E - fundus = term size", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163509002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038748, + "CONCEPT_NAME" : "O/E - gravid uterus size", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163498004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4039609, + "CONCEPT_NAME" : "O/E - no fetal movements", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163536000", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038759, + "CONCEPT_NAME" : "O/E - partial engagement - 3/5", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163531005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4175225, + "CONCEPT_NAME" : "O/E - PP free - not engaged", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "275968002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038424, + "CONCEPT_NAME" : "O/E - presentation engaged-1/5", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163533008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4171428, + "CONCEPT_NAME" : "O/E - presenting part engaged", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "275969005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4039608, + "CONCEPT_NAME" : "O/E - presenting part free-4/5", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163530006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038941, + "CONCEPT_NAME" : "O/E - presenting part free-5/5", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163529001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038939, + "CONCEPT_NAME" : "O/E - presenting part position", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163520002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038937, + "CONCEPT_NAME" : "O/E - transverse lie", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163516001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038573, + "CONCEPT_NAME" : "O/E - VE for pelvic assessment", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163555000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4039603, + "CONCEPT_NAME" : "O/E - vertex presentation", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163513009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4194143, + "CONCEPT_NAME" : "O/E - viable fetus", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "312354009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4173013, + "CONCEPT_NAME" : "Offensive lochia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276375002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 196159, + "CONCEPT_NAME" : "Old laceration of muscles of pelvic floor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "467003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434111, + "CONCEPT_NAME" : "Oligohydramnios", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59566000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433274, + "CONCEPT_NAME" : "Oligohydramnios - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199653002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432386, + "CONCEPT_NAME" : "Oligohydramnios with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199654008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4107071, + "CONCEPT_NAME" : "Oliguria following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "29908007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4034650, + "CONCEPT_NAME" : "Omphalitis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "239095007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 201136, + "CONCEPT_NAME" : "Omphalitis of newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "42052009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4073719, + "CONCEPT_NAME" : "On maternity leave", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "224457004", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2213351, + "CONCEPT_NAME" : "Oocyte identification from follicular fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "89254", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4072862, + "CONCEPT_NAME" : "Oocyte recovery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177037000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004767, + "CONCEPT_NAME" : "Operations on fetus to facilitate delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "73.8", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "3-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4119975, + "CONCEPT_NAME" : "Operative termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "302375005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004746, + "CONCEPT_NAME" : "Other artificial rupture of membranes", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "73.09", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004802, + "CONCEPT_NAME" : "Other cesarean section of unspecified type", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "74.99", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004822, + "CONCEPT_NAME" : "Other diagnostic procedures on fetus and amnion", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "75.35", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004811, + "CONCEPT_NAME" : "Other fetal monitoring", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "75.34", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 46232934, + "CONCEPT_NAME" : "Other introduction of gametes into uterine cavity", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "Q21", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "OPCS4", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004765, + "CONCEPT_NAME" : "Other manually assisted delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "73.59", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004707, + "CONCEPT_NAME" : "Other mid forceps operation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72.29", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004862, + "CONCEPT_NAME" : "Other obstetric operations", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "75.99", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004783, + "CONCEPT_NAME" : "Other operations assisting delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "73.99", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004768, + "CONCEPT_NAME" : "Other operations assisting delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "73.9", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "3-dig nonbill code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004724, + "CONCEPT_NAME" : "Other partial breech extraction", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72.52", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004348, + "CONCEPT_NAME" : "Other partial salpingectomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "66.69", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4191809, + "CONCEPT_NAME" : "Other procedures inducing or assisting delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "73", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "2-dig nonbill code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44513736, + "CONCEPT_NAME" : "Other specified breech extraction delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "R19.8", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "OPCS4", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44513756, + "CONCEPT_NAME" : "Other specified cephalic vaginal delivery with abnormal presentation of head at delivery without instrument", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "R23.8", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "OPCS4", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44513729, + "CONCEPT_NAME" : "Other specified elective caesarean delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "R17.8", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "OPCS4", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44513747, + "CONCEPT_NAME" : "Other specified forceps cephalic delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "R21.8", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "OPCS4", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004731, + "CONCEPT_NAME" : "Other specified instrumental delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72.8", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "3-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44513476, + "CONCEPT_NAME" : "Other specified introduction of abortifacient into uterine cavity", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "Q14.8", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "OPCS4", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44513468, + "CONCEPT_NAME" : "Other specified introduction of gametes into uterine cavity", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "Q13.8", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "OPCS4", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44517168, + "CONCEPT_NAME" : "Other specified in vitro fertilisation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "Y96.8", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "OPCS4", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44513799, + "CONCEPT_NAME" : "Other specified non-routine obstetric scan for fetal observations", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "R37.8", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "OPCS4", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44513812, + "CONCEPT_NAME" : "Other specified obstetric Doppler ultrasound", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "R42.8", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "OPCS4", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4075024, + "CONCEPT_NAME" : "Other specified oocyte recovery", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "177043003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44513634, + "CONCEPT_NAME" : "Other specified oocyte recovery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "Q48.8", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "OPCS4", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44513740, + "CONCEPT_NAME" : "Other specified other breech delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "R20.8", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "OPCS4", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44513733, + "CONCEPT_NAME" : "Other specified other caesarean delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "R18.8", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "OPCS4", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44513516, + "CONCEPT_NAME" : "Other specified other introduction of gametes into uterine cavity", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "Q21.8", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "OPCS4", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44513803, + "CONCEPT_NAME" : "Other specified other non-routine obstetric scan", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "R38.8", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "OPCS4", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44513791, + "CONCEPT_NAME" : "Other specified routine obstetric scan", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "R36.8", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "OPCS4", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44513816, + "CONCEPT_NAME" : "Other specified ultrasound monitoring", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "R43.8", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "OPCS4", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44513752, + "CONCEPT_NAME" : "Other specified vacuum delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "R22.8", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "OPCS4", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004747, + "CONCEPT_NAME" : "Other surgical induction of labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "73.1", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "3-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004726, + "CONCEPT_NAME" : "Other total breech extraction", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72.54", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004730, + "CONCEPT_NAME" : "Other vacuum extraction", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72.79", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4145318, + "CONCEPT_NAME" : "Outcome of delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "268475008", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Observable Entity" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4127249, + "CONCEPT_NAME" : "Outlet forceps delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "236976002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 73824, + "CONCEPT_NAME" : "Outlet pelvic contraction - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199413006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 72378, + "CONCEPT_NAME" : "Outlet pelvic contraction with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199414000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42535816, + "CONCEPT_NAME" : "Outlet vacuum delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "734275002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 200153, + "CONCEPT_NAME" : "Ovarian pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "9899009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4049041, + "CONCEPT_NAME" : "Overfeeding in newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206567004", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443323, + "CONCEPT_NAME" : "Papyraceous fetus - not delivered", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "199070009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4159154, + "CONCEPT_NAME" : "Paralysis from birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "371129000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4319461, + "CONCEPT_NAME" : "Paralytic ileus of the newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "95625008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336392, + "CONCEPT_NAME" : "Parametritis following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87169001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4079236, + "CONCEPT_NAME" : "Parenchymatous mastitis associated with childbirth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "18237006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4234421, + "CONCEPT_NAME" : "Partial breech delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "359943008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4023797, + "CONCEPT_NAME" : "Partial breech delivery with forceps to aftercoming head", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "19390001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4267567, + "CONCEPT_NAME" : "Partial salpingectomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "62692004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4248080, + "CONCEPT_NAME" : "Parturient hemorrhage associated with afibrinogenemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "9442009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4145439, + "CONCEPT_NAME" : "Parturient hemorrhage associated with hyperfibrinolysis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "34327003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4296604, + "CONCEPT_NAME" : "Parturient hemorrhage associated with hypofibrinogenemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "76771005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4231407, + "CONCEPT_NAME" : "Parturient paresis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "405256006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 195075, + "CONCEPT_NAME" : "Passage of meconium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "249529000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4211227, + "CONCEPT_NAME" : "Pathologic amenorrhea", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "56561006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4025199, + "CONCEPT_NAME" : "Pelvic dystocia AND/OR uterine disorder", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "106010004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 198221, + "CONCEPT_NAME" : "Pelvic hematoma during delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "5740008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4314877, + "CONCEPT_NAME" : "Pelvic peritonitis following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86709000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442829, + "CONCEPT_NAME" : "Pelvic soft tissue abnormality in pregnancy, childbirth and the puerperium - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199511005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 195019, + "CONCEPT_NAME" : "Pelvic soft tissue abnormality in pregnancy, childbirth and the puerperium with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199513008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4285751, + "CONCEPT_NAME" : "Pelvic thrombophlebitis in puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "67486009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4172869, + "CONCEPT_NAME" : "Peptic ulcer of newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276525003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4073428, + "CONCEPT_NAME" : "Percutaneous sampling of chorionic villus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177107006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36716687, + "CONCEPT_NAME" : "Perforation of intestine co-occurrent and due to meconium ileus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "722841004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37204732, + "CONCEPT_NAME" : "Perilipin 1 related familial partial lipodystrophy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "783616005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4306199, + "CONCEPT_NAME" : "Perinatal anemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "387702001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 374748, + "CONCEPT_NAME" : "Perinatal anoxic-ischemic brain injury", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "126945001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4321550, + "CONCEPT_NAME" : "Perinatal apneic spells", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "70073005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36716757, + "CONCEPT_NAME" : "Perinatal arterial ischemic stroke", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "722929005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4084442, + "CONCEPT_NAME" : "Perinatal asphyxia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "281578009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 260212, + "CONCEPT_NAME" : "Perinatal atelectasis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54959009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4080888, + "CONCEPT_NAME" : "Perinatal cerebral ischemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276706004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 135370, + "CONCEPT_NAME" : "Perinatal cutaneous hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "18503002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 134760, + "CONCEPT_NAME" : "Perinatal cyanotic attacks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "38593000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4187201, + "CONCEPT_NAME" : "Perinatal disorder", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "415073005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4079851, + "CONCEPT_NAME" : "Perinatal disorder of electrolytes", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276569005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4173002, + "CONCEPT_NAME" : "Perinatal disorder of growth and/or development", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276603001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4171097, + "CONCEPT_NAME" : "Perinatal disorders of glucose regulation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276555005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4173179, + "CONCEPT_NAME" : "Perinatal disorders of liver and/or biliary system", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276548008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4173198, + "CONCEPT_NAME" : "Perinatal falx laceration", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276593000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4300467, + "CONCEPT_NAME" : "Perinatal forceps injury", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "403848003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 194158, + "CONCEPT_NAME" : "Perinatal gastrointestinal hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48729005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439931, + "CONCEPT_NAME" : "Perinatal hemolytic jaundice", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "288279008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42872438, + "CONCEPT_NAME" : "Perinatal hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "450429004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42536566, + "CONCEPT_NAME" : "Perinatal hemorrhage of lung due to traumatic injury", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "735495004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4171096, + "CONCEPT_NAME" : "Perinatal hepatitis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276551001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4173181, + "CONCEPT_NAME" : "Perinatal hepatocellular damage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276552008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4105262, + "CONCEPT_NAME" : "Perinatal hypoxia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "281579001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4171102, + "CONCEPT_NAME" : "Perinatal hypoxia and asphyxia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276570006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42536745, + "CONCEPT_NAME" : "Perinatal infection caused by Human herpes simplex virus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "735737009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 258564, + "CONCEPT_NAME" : "Perinatal interstitial emphysema", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "60125001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4171091, + "CONCEPT_NAME" : "Perinatal intestinal obstruction", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276521007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 199925, + "CONCEPT_NAME" : "Perinatal intestinal perforation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65390006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4174299, + "CONCEPT_NAME" : "Perinatal intracranial hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276647007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4173000, + "CONCEPT_NAME" : "Perinatal intracranial laceration", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276588003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 436519, + "CONCEPT_NAME" : "Perinatal intraventricular hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "70611002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4071743, + "CONCEPT_NAME" : "Perinatal jaundice due to cystic fibrosis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206471004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 195064, + "CONCEPT_NAME" : "Perinatal jaundice due to hepatocellular damage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10877007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438869, + "CONCEPT_NAME" : "Perinatal jaundice due to hereditary hemolytic anemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "56921004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4071737, + "CONCEPT_NAME" : "Perinatal jaundice from bleeding", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206448001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4071735, + "CONCEPT_NAME" : "Perinatal jaundice from bruising", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206442000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433029, + "CONCEPT_NAME" : "Perinatal jaundice from excessive hemolysis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "24911006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4048292, + "CONCEPT_NAME" : "Perinatal jaundice from infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206444004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4071076, + "CONCEPT_NAME" : "Perinatal jaundice from maternal transmission of drug or toxin", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206443005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4071736, + "CONCEPT_NAME" : "Perinatal jaundice from polycythemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206446002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4048610, + "CONCEPT_NAME" : "Perinatal jaundice from swallowed maternal blood", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206447006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3663236, + "CONCEPT_NAME" : "Perinatal lethal Gaucher disease", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "870313002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4071717, + "CONCEPT_NAME" : "Perinatal lung intra-alveolar hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206303001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4048282, + "CONCEPT_NAME" : "Perinatal melena", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206407004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3655840, + "CONCEPT_NAME" : "Perinatal mucocutaneous infection caused by Human herpesvirus 3", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "870310004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4287783, + "CONCEPT_NAME" : "Perinatal necrotizing enterocolitis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "397729009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4079855, + "CONCEPT_NAME" : "Perinatal nonspecific brain dysfunction", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276595007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4173197, + "CONCEPT_NAME" : "Perinatal occipital diastasis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276592005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4006329, + "CONCEPT_NAME" : "Perinatal partial atelectasis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "111466004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4278842, + "CONCEPT_NAME" : "Perinatal pulmonary collapse", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "66151009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4263343, + "CONCEPT_NAME" : "Perinatal pulmonary fibroplasia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "361194002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43021073, + "CONCEPT_NAME" : "Perinatal pulmonary hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "472857006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 313590, + "CONCEPT_NAME" : "Perinatal respiratory failure", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "91581004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4171108, + "CONCEPT_NAME" : "Perinatal rupture of superficial cerebral vein", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276594006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4243494, + "CONCEPT_NAME" : "Perinatal secondary atelectasis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59113005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4048166, + "CONCEPT_NAME" : "Perinatal sensorineural hearing loss", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "232331006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37017557, + "CONCEPT_NAME" : "Perinatal sepsis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "713854001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37017566, + "CONCEPT_NAME" : "Perinatal sepsis caused by Escherichia coli", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "713866007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37019087, + "CONCEPT_NAME" : "Perinatal sepsis caused by Streptococcus agalactiae", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "713865006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4071198, + "CONCEPT_NAME" : "Perinatal skin and temperature regulation disorders", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206537005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4301414, + "CONCEPT_NAME" : "Perinatal skin trauma due to obstetric injury", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "403847008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4080885, + "CONCEPT_NAME" : "Perinatal skull defect", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276698001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 260841, + "CONCEPT_NAME" : "Perinatal subarachnoid hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "21202004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4079973, + "CONCEPT_NAME" : "Perinatal subependymal hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276650005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4171123, + "CONCEPT_NAME" : "Perinatal subependymal hemorrhage with intraventricular and intracerebral extension", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276652002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4173332, + "CONCEPT_NAME" : "Perinatal subependymal hemorrhage with intraventricular extension", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276651009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4173001, + "CONCEPT_NAME" : "Perinatal tentorial laceration", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276589006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4166754, + "CONCEPT_NAME" : "Perinatal thrombocytopenia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "273986001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4171100, + "CONCEPT_NAME" : "Perinatal thyroid disorder", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276564000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4048607, + "CONCEPT_NAME" : "Perinatal transient vaginal bleeding", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206422009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 197349, + "CONCEPT_NAME" : "Perineal hematoma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237331002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4307825, + "CONCEPT_NAME" : "Perineal hematoma during delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "83094001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439390, + "CONCEPT_NAME" : "Perineal laceration during delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "398019008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4187920, + "CONCEPT_NAME" : "Perineal laceration involving fourchette", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46311005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4272706, + "CONCEPT_NAME" : "Perineal laceration involving hymen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36796001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4296470, + "CONCEPT_NAME" : "Perineal laceration involving labia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "76658000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4002900, + "CONCEPT_NAME" : "Perineal laceration involving pelvic floor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "11942004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4239205, + "CONCEPT_NAME" : "Perineal laceration involving rectovaginal septum", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6825008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4311670, + "CONCEPT_NAME" : "Perineal laceration involving skin", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "85542007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4032920, + "CONCEPT_NAME" : "Perineal laceration involving vagina", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14825005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4242693, + "CONCEPT_NAME" : "Perineal laceration involving vaginal muscles", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "38450002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4197221, + "CONCEPT_NAME" : "Perineal laceration involving vulva", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "79839005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 197608, + "CONCEPT_NAME" : "Peripheral neuritis in pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "17787002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 199086, + "CONCEPT_NAME" : "Peripheral neuritis in pregnancy - not delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199095005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4062566, + "CONCEPT_NAME" : "Peripheral neuritis in pregnancy with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199096006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 372435, + "CONCEPT_NAME" : "Periventricular leukomalacia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "230769007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43531641, + "CONCEPT_NAME" : "Permanent neonatal diabetes mellitus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609565001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37110041, + "CONCEPT_NAME" : "Permanent neonatal diabetes mellitus with cerebellar agenesis syndrome", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "724067006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 197970, + "CONCEPT_NAME" : "Persistent fetal circulation", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "206597007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444374, + "CONCEPT_NAME" : "Persistent occipitoposterior position", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "70068004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 317941, + "CONCEPT_NAME" : "Phlebitis AND/OR thrombosis complicating pregnancy AND/OR puerperium", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "26850007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4129183, + "CONCEPT_NAME" : "Phlebitis in puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237343001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4269051, + "CONCEPT_NAME" : "Phlegmasia alba dolens in puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "62583006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3013297, + "CONCEPT_NAME" : "Phosphatidylglycerol [Presence] in Amniotic fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "2785-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4103235, + "CONCEPT_NAME" : "Phrenic nerve paralysis as birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "28778005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42537765, + "CONCEPT_NAME" : "Physiological shock due to and following molar pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "737326006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4261326, + "CONCEPT_NAME" : "Physiologic amenorrhea", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "44811000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4073438, + "CONCEPT_NAME" : "Piper forceps delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177170007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4016476, + "CONCEPT_NAME" : "Placenta incomplete", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "169958000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014718, + "CONCEPT_NAME" : "Placental abnormality", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169957005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 198488, + "CONCEPT_NAME" : "Placental abruption", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "415105001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 193539, + "CONCEPT_NAME" : "Placental abruption - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198910006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 201350, + "CONCEPT_NAME" : "Placental abruption - not delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198911005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2721184, + "CONCEPT_NAME" : "Placental alpha microglobulin-1 rapid immunoassay for detection of rupture of fetal membranes", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "S3628", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 200784, + "CONCEPT_NAME" : "Placental condition affecting management of mother", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "111447004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014716, + "CONCEPT_NAME" : "Placental finding", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169952004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4034100, + "CONCEPT_NAME" : "Placental insufficiency", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237292005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4064854, + "CONCEPT_NAME" : "Placental localization", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "164817009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4217071, + "CONCEPT_NAME" : "Placental site nodule", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "417364008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4028645, + "CONCEPT_NAME" : "Placental site trophoblastic tumor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237252008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44502733, + "CONCEPT_NAME" : "Placental site trophoblastic tumor of placenta", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "9104/1-C58.9", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "ICDO3", + "CONCEPT_CLASS_ID" : "ICDO Condition" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42600135, + "CONCEPT_NAME" : "Placental subinvolution", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "42211000009104", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED Veterinary", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4016475, + "CONCEPT_NAME" : "Placenta normal O/E", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "169954003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4284028, + "CONCEPT_NAME" : "Placenta previa", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36813001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4172142, + "CONCEPT_NAME" : "Placenta previa found before labor AND delivery by cesarean section without hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48888007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 196751, + "CONCEPT_NAME" : "Placenta previa with hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198903000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 193264, + "CONCEPT_NAME" : "Placenta previa with hemorrhage - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198905007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 200149, + "CONCEPT_NAME" : "Placenta previa with hemorrhage - not delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198906008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 194710, + "CONCEPT_NAME" : "Placenta previa without hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7792000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 201359, + "CONCEPT_NAME" : "Placenta previa without hemorrhage - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198899007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 192372, + "CONCEPT_NAME" : "Placenta previa without hemorrhage - not delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198900002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014292, + "CONCEPT_NAME" : "Place of birth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169812000", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Observable Entity" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4041726, + "CONCEPT_NAME" : "Plasma 2-hr post-prandial glucose measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "167097002", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4210719, + "CONCEPT_NAME" : "Plasma alpha-fetoprotein multiple of median measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313867006", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4041725, + "CONCEPT_NAME" : "Plasma fasting glucose measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "167096006", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4210721, + "CONCEPT_NAME" : "Plasma free beta human chorionic gonadotrophin measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313871009", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44812174, + "CONCEPT_NAME" : "Plasma human chorionic gonadotrophin concentration measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "911491000000101", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4210718, + "CONCEPT_NAME" : "Plasma human chorionic gonadotropin multiple of median measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313865003", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4269036, + "CONCEPT_NAME" : "Plasma insulin C-peptide level", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "401124003", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4268422, + "CONCEPT_NAME" : "Plasma insulin measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "401151000", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4041724, + "CONCEPT_NAME" : "Plasma random glucose measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "167095005", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4305235, + "CONCEPT_NAME" : "Polycythemia due to donor twin transfusion", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "38697006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4297988, + "CONCEPT_NAME" : "Polycythemia due to maternal-fetal transfusion", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "76873001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36716548, + "CONCEPT_NAME" : "Polycythemia neonatorum due to inherited disorder of erythropoietin production", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "722585009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36716549, + "CONCEPT_NAME" : "Polycythemia neonatorum following blood transfusion", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "722586005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4278356, + "CONCEPT_NAME" : "Polygalactia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65377004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437623, + "CONCEPT_NAME" : "Polyhydramnios", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86203003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434427, + "CONCEPT_NAME" : "Polyhydramnios - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199646006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433540, + "CONCEPT_NAME" : "Polyhydramnios with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199647002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4173347, + "CONCEPT_NAME" : "Poor feeding of newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276717003", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 72693, + "CONCEPT_NAME" : "Poor fetal growth affecting management", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "397949005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 75639, + "CONCEPT_NAME" : "Poor fetal nutrition", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276608005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 196764, + "CONCEPT_NAME" : "Post-delivery acute renal failure - delivered with postnatal problem", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "200117009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4056338, + "CONCEPT_NAME" : "Post gastrointestinal tract surgery hypoglycemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "197483008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437369, + "CONCEPT_NAME" : "Postmature infancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16207008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4245166, + "CONCEPT_NAME" : "Postmaturity", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59634004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440833, + "CONCEPT_NAME" : "Postmaturity of fetus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "433145001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014156, + "CONCEPT_NAME" : "Postnatal care from general practitioner", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169756008", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015415, + "CONCEPT_NAME" : "Postnatal care greater than 48 hours after birth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169775003", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015152, + "CONCEPT_NAME" : "Postnatal care less than 48 hours after birth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169774004", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015410, + "CONCEPT_NAME" : "Postnatal care provider", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169754006", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014446, + "CONCEPT_NAME" : "Postnatal data", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169786001", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Observable Entity" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435031, + "CONCEPT_NAME" : "Postnatal deep vein thrombosis - delivered with postnatal complication", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "200237000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4062264, + "CONCEPT_NAME" : "Postnatal deep vein thrombosis with postnatal complication", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "200238005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4215564, + "CONCEPT_NAME" : "Postnatal depression counseling", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "395072006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015413, + "CONCEPT_NAME" : "Postnatal - eighth day visit", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169770008", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4055488, + "CONCEPT_NAME" : "Postnatal enamel hypoplasia", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "196280004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014445, + "CONCEPT_NAME" : "Postnatal examination minor problem found", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169783009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015154, + "CONCEPT_NAME" : "Postnatal examination normal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169784003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014281, + "CONCEPT_NAME" : "Postnatal - fifth day visit", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169767009", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014280, + "CONCEPT_NAME" : "Postnatal - first day visit", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169763008", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014443, + "CONCEPT_NAME" : "Postnatal - fourth day visit", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169766000", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4075295, + "CONCEPT_NAME" : "Postnatal infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "178280004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44811076, + "CONCEPT_NAME" : "Postnatal listening visits offered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "882371000000109", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4297232, + "CONCEPT_NAME" : "Postnatal maternal examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "384634009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015414, + "CONCEPT_NAME" : "Postnatal - ninth day visit", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169771007", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014442, + "CONCEPT_NAME" : "Postnatal - second day visit", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169764002", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015412, + "CONCEPT_NAME" : "Postnatal - seventh day visit", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169769007", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014282, + "CONCEPT_NAME" : "Postnatal - sixth day visit", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169768004", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4062362, + "CONCEPT_NAME" : "Postnatal support group", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "171067001", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015151, + "CONCEPT_NAME" : "Postnatal - tenth day visit", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169772000", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015150, + "CONCEPT_NAME" : "Postnatal - third day visit", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169765001", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4034146, + "CONCEPT_NAME" : "Postnatal vaginal discomfort", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237315005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015149, + "CONCEPT_NAME" : "Postnatal visit", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169762003", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4151029, + "CONCEPT_NAME" : "Postnatal visit status", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "310370000", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4182691, + "CONCEPT_NAME" : "Postobstetric urethral stricture", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "53212003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4023382, + "CONCEPT_NAME" : "Postoperative shock following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "11669000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4295363, + "CONCEPT_NAME" : "Postpancreatectomy hyperglycemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "37814003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37116834, + "CONCEPT_NAME" : "Postpartum acute renal failure", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "733839001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4006327, + "CONCEPT_NAME" : "Postpartum afibrinogenemia with hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "111452009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336810, + "CONCEPT_NAME" : "Postpartum alopecia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87038002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4225411, + "CONCEPT_NAME" : "Postpartum amenorrhea-galactorrhea syndrome", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "85039006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 312383, + "CONCEPT_NAME" : "Postpartum cardiomyopathy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "62377009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4047392, + "CONCEPT_NAME" : "Postpartum care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "133906008", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110314, + "CONCEPT_NAME" : "Postpartum care only (separate procedure)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59430", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4113199, + "CONCEPT_NAME" : "Postpartum cicatrix of cervix", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198347000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 436483, + "CONCEPT_NAME" : "Postpartum coagulation defects", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "267272006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441363, + "CONCEPT_NAME" : "Postpartum coagulation defects - delivered with postnatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200030007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061341, + "CONCEPT_NAME" : "Postpartum coagulation defects with postnatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200031006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4169890, + "CONCEPT_NAME" : "Postpartum coagulation defect with hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "49177006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4239471, + "CONCEPT_NAME" : "Postpartum depression", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "58703003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4203918, + "CONCEPT_NAME" : "Postpartum education", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54070000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45773073, + "CONCEPT_NAME" : "Postpartum episiotomy pain", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72771000119107", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4266066, + "CONCEPT_NAME" : "Postpartum fibrinolysis with hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "62410004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4041280, + "CONCEPT_NAME" : "Postpartum finding", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "118213005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45757789, + "CONCEPT_NAME" : "Postpartum gestational diabetes mellitus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40791000119105", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4012240, + "CONCEPT_NAME" : "Postpartum headache", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "103008008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443929, + "CONCEPT_NAME" : "Postpartum hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "47821001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37110289, + "CONCEPT_NAME" : "Postpartum hemorrhage co-occurrent and due to uterine rupture following obstructed labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "724496000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37108740, + "CONCEPT_NAME" : "Postpartum hemorrhage due to total placenta previa", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "119891000119105", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4158274, + "CONCEPT_NAME" : "Postpartum hypopituitarism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "290653008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4162754, + "CONCEPT_NAME" : "Postpartum intrapituitary hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "291665000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42534817, + "CONCEPT_NAME" : "Postpartum major depression in remission", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "104851000119103", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4253057, + "CONCEPT_NAME" : "Postpartum neurosis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "73972002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4146731, + "CONCEPT_NAME" : "Postpartum period, 1 day", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "30118000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4169742, + "CONCEPT_NAME" : "Postpartum period, 2 days", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "49071005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4273241, + "CONCEPT_NAME" : "Postpartum period, 3 days", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64541000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4028024, + "CONCEPT_NAME" : "Postpartum period, 4 days", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13273002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4185531, + "CONCEPT_NAME" : "Postpartum period, 5 days", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55861007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4011238, + "CONCEPT_NAME" : "Postpartum period, 6 days", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1124005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4228830, + "CONCEPT_NAME" : "Postpartum period, 7 days", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "88387008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 35622939, + "CONCEPT_NAME" : "Postpartum pre-eclampsia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "765182005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45757788, + "CONCEPT_NAME" : "Postpartum pregnancy-induced hypertension", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40521000119100", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4057246, + "CONCEPT_NAME" : "Postpartum psychosis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "18260003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42535649, + "CONCEPT_NAME" : "Postpartum psychosis in remission", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "60401000119104", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440465, + "CONCEPT_NAME" : "Postpartum state", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86569001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4035468, + "CONCEPT_NAME" : "Postpartum state, 2 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15100005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4104354, + "CONCEPT_NAME" : "Postpartum state, 3 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "29123003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4007389, + "CONCEPT_NAME" : "Postpartum state, 4 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10152009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4300708, + "CONCEPT_NAME" : "Postpartum state, 5 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "38802008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4278355, + "CONCEPT_NAME" : "Postpartum state, 6 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65375007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4222573, + "CONCEPT_NAME" : "Postpartum state, 7 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40156002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4318816, + "CONCEPT_NAME" : "Postpartum state, 8 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "22178008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4174510, + "CONCEPT_NAME" : "Postpartum state, 9 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "50404009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4199437, + "CONCEPT_NAME" : "Postpartum thyroiditis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "52772002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4325457, + "CONCEPT_NAME" : "Postpartum uterine hypertrophy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "71612002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4091199, + "CONCEPT_NAME" : "Postpartum vulval hematoma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "249218000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4321231, + "CONCEPT_NAME" : "Postparturient hemoglobinuria", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "70964000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4219015, + "CONCEPT_NAME" : "Postpill amenorrhea", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "39931000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4116187, + "CONCEPT_NAME" : "Post-prandial blood glucose measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "302788006", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4126074, + "CONCEPT_NAME" : "Post-term infant - 42 weeks plus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "288270007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441128, + "CONCEPT_NAME" : "Post-term infant, not heavy-for-dates", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "79995002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432695, + "CONCEPT_NAME" : "Post-term pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90968009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439894, + "CONCEPT_NAME" : "Post-term pregnancy - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199063009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434695, + "CONCEPT_NAME" : "Post-term pregnancy - not delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199064003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45773507, + "CONCEPT_NAME" : "Post-term pregnancy of 40 to 42 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "22281000119101", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4096468, + "CONCEPT_NAME" : "Potential abnormality of glucose tolerance", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26254008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433542, + "CONCEPT_NAME" : "Precipitate labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "51920004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438220, + "CONCEPT_NAME" : "Precipitate labor - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199833004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435024, + "CONCEPT_NAME" : "Precipitate labor with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199834005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439393, + "CONCEPT_NAME" : "Pre-eclampsia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "398254007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 141084, + "CONCEPT_NAME" : "Pre-eclampsia or eclampsia with pre-existing hypertension", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198997005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 135601, + "CONCEPT_NAME" : "Pre-eclampsia or eclampsia with pre-existing hypertension - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198999008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 134414, + "CONCEPT_NAME" : "Pre-eclampsia or eclampsia with pre-existing hypertension - delivered with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199000005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 136743, + "CONCEPT_NAME" : "Pre-eclampsia or eclampsia with pre-existing hypertension - not delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199002002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4146816, + "CONCEPT_NAME" : "Pre-existing hypertension complicating AND/OR reason for care during childbirth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "34694006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4277110, + "CONCEPT_NAME" : "Pre-existing hypertension complicating AND/OR reason for care during pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65402008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4151903, + "CONCEPT_NAME" : "Pre-existing hypertension complicating AND/OR reason for care during puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "31407004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 321074, + "CONCEPT_NAME" : "Pre-existing hypertension complicating pregnancy, childbirth and puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199005000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4219466, + "CONCEPT_NAME" : "Pregestational diabetes mellitus AND/OR impaired glucose tolerance, modified White class A", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "82141001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4146514, + "CONCEPT_NAME" : "Pregestational diabetes mellitus AND/OR impaired glucose tolerance, modified White class B", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "34818008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4242853, + "CONCEPT_NAME" : "Pregestational diabetes mellitus AND/OR impaired glucose tolerance, modified White class C", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "38063000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4144221, + "CONCEPT_NAME" : "Pregestational diabetes mellitus AND/OR impaired glucose tolerance, modified White class D", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "33669002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4182243, + "CONCEPT_NAME" : "Pregestational diabetes mellitus AND/OR impaired glucose tolerance, modified White class F", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "4307007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4220981, + "CONCEPT_NAME" : "Pregestational diabetes mellitus AND/OR impaired glucose tolerance, modified White class FR", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "82701004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4305491, + "CONCEPT_NAME" : "Pregestational diabetes mellitus AND/OR impaired glucose tolerance, modified White class R", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "82260000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 762490, + "CONCEPT_NAME" : "Pregnancy and lactation education", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "423011000124102", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4129519, + "CONCEPT_NAME" : "Pregnancy and type 2 diabetes mellitus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237627000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3051741, + "CONCEPT_NAME" : "Pregnancy associated plasma protein A [Mass/volume] in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48407-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3014064, + "CONCEPT_NAME" : "Pregnancy associated plasma protein A [Multiple of the median] in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "32123-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2212548, + "CONCEPT_NAME" : "Pregnancy-associated plasma protein-A (PAPP-A)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84163", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3021584, + "CONCEPT_NAME" : "Pregnancy associated plasma protein A [Units/volume] in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "32046-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4148890, + "CONCEPT_NAME" : "Pregnancy benefits", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "270471004", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Qualifier Value" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438209, + "CONCEPT_NAME" : "Pregnancy care of habitual aborter", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "199089009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4062674, + "CONCEPT_NAME" : "Pregnancy complication NOS", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "199152008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439348, + "CONCEPT_NAME" : "Pregnancy complications", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "198881004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4250175, + "CONCEPT_NAME" : "Pregnancy detection examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "74036000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4167493, + "CONCEPT_NAME" : "Pregnancy-induced hypertension", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48194001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4062574, + "CONCEPT_NAME" : "Pregnancy-related glycosuria", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199132007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4094910, + "CONCEPT_NAME" : "Pregnancy test positive", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "250423000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061785, + "CONCEPT_NAME" : "Pregnancy unplanned and unwanted", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169567006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060237, + "CONCEPT_NAME" : "Pregnancy unplanned but wanted", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169566002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4157329, + "CONCEPT_NAME" : "Pregnancy with abnormal glucose tolerance test", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "372048000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4299535, + "CONCEPT_NAME" : "Pregnant", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "77386006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4059982, + "CONCEPT_NAME" : "Pregnant - blood test confirms", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169561007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061686, + "CONCEPT_NAME" : "Pregnant - on history", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169563005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4059984, + "CONCEPT_NAME" : "Pregnant - planned", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169565003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061411, + "CONCEPT_NAME" : "Pregnant, sheath failure", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169508004", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4059981, + "CONCEPT_NAME" : "Pregnant - urine test confirms", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169560008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3174212, + "CONCEPT_NAME" : "Premature 28 week quadruplet", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7550001000004101", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "Nebraska Lexicon", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4097427, + "CONCEPT_NAME" : "Premature birth of fraternal twins, both living", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25192009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4222915, + "CONCEPT_NAME" : "Premature birth of fraternal twins, both stillborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84382006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4147043, + "CONCEPT_NAME" : "Premature birth of fraternal twins, one living, one stillborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "30165006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4142021, + "CONCEPT_NAME" : "Premature birth of identical twins, both living", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "34100008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4242724, + "CONCEPT_NAME" : "Premature birth of identical twins, both stillborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "3798002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4310910, + "CONCEPT_NAME" : "Premature birth of identical twins, one living, one stillborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "39213008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4069200, + "CONCEPT_NAME" : "Premature birth of multiple newborns", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "20272009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4145125, + "CONCEPT_NAME" : "Premature birth of newborn quadruplets", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "34089005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4082863, + "CONCEPT_NAME" : "Premature birth of newborn quintuplets", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "24146004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4008884, + "CONCEPT_NAME" : "Premature birth of newborn sextuplets", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "112075006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4107401, + "CONCEPT_NAME" : "Premature birth of newborn triplets", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "29997008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4029786, + "CONCEPT_NAME" : "Premature birth of newborn twins", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13859001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4184594, + "CONCEPT_NAME" : "Premature birth of stillborn twins", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54650005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4086393, + "CONCEPT_NAME" : "Premature delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "282020008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4125778, + "CONCEPT_NAME" : "Premature/false labor", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "287979001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4217564, + "CONCEPT_NAME" : "Premature infant", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "395507008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4147874, + "CONCEPT_NAME" : "Premature infant 28-37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "310661005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4273560, + "CONCEPT_NAME" : "Premature labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6383007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4175637, + "CONCEPT_NAME" : "Premature pregnancy delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "49550006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 194702, + "CONCEPT_NAME" : "Premature rupture of membranes", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "44223004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 200160, + "CONCEPT_NAME" : "Premature rupture of membranes - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199658006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4064709, + "CONCEPT_NAME" : "Premature rupture of membranes, labor delayed by therapy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199661007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 200468, + "CONCEPT_NAME" : "Premature rupture of membranes with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199659003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4058403, + "CONCEPT_NAME" : "Premature separation of placenta with coagulation defect", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198912003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440519, + "CONCEPT_NAME" : "Premature - weight 1000g-2499g or gestation of 28-37weeks", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "206169007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440525, + "CONCEPT_NAME" : "Prematurity of fetus", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "44247006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36675035, + "CONCEPT_NAME" : "Prematurity of infant", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "771299009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4138554, + "CONCEPT_NAME" : "Premenopausal amenorrhea", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "32590007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2618150, + "CONCEPT_NAME" : "Prenatal care, at-risk assessment", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "H1000", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2618151, + "CONCEPT_NAME" : "Prenatal care, at-risk enhanced service; antepartum management", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "H1001", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2618152, + "CONCEPT_NAME" : "Prenatal care, at risk enhanced service; care coordination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "H1002", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2618154, + "CONCEPT_NAME" : "Prenatal care, at-risk enhanced service; follow-up home visit", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "H1004", + "DOMAIN_ID" : "Visit", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2618155, + "CONCEPT_NAME" : "Prenatal care, at-risk enhanced service package (includes h1001-h1004)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "H1005", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4176966, + "CONCEPT_NAME" : "Prenatal education", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "363266006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4112701, + "CONCEPT_NAME" : "Prenatal examination and care of mother", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "18114009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4311447, + "CONCEPT_NAME" : "Prenatal initial visit", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "424441002", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4172038, + "CONCEPT_NAME" : "Prenatal supplemental visit", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "422808006", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4313474, + "CONCEPT_NAME" : "Prenatal visit", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "424619006", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2213352, + "CONCEPT_NAME" : "Preparation of embryo for transfer (any method)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "89255", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4129040, + "CONCEPT_NAME" : "Presentation of cord", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237305004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37110284, + "CONCEPT_NAME" : "Preterm delivery following Cesarean section", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "724489002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37110283, + "CONCEPT_NAME" : "Preterm delivery following induction of labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "724488005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45757175, + "CONCEPT_NAME" : "Preterm labor in second trimester with preterm delivery in second trimester", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10761141000119107", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45757176, + "CONCEPT_NAME" : "Preterm labor in third trimester with preterm delivery in third trimester", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10761191000119104", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36712702, + "CONCEPT_NAME" : "Preterm labor with preterm delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10761241000119104", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44784550, + "CONCEPT_NAME" : "Preterm spontaneous labor with preterm delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "698716002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44784551, + "CONCEPT_NAME" : "Preterm spontaneous labor with term delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "698717006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4098718, + "CONCEPT_NAME" : "Previous abnormality of glucose tolerance", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "2725003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40318194, + "CONCEPT_NAME" : "Primary amenorrhea", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "156035004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 314479, + "CONCEPT_NAME" : "Primary apnea in the newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "430335007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 258554, + "CONCEPT_NAME" : "Primary atelectasis, in perinatal period", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "42908004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37311892, + "CONCEPT_NAME" : "Primary central sleep apnea of prematurity", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "789009003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4300387, + "CONCEPT_NAME" : "Primary hypotonic uterine dysfunction", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "387696001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 201516, + "CONCEPT_NAME" : "Primary malignant neoplasm of placenta", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "93965008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37204277, + "CONCEPT_NAME" : "Primary microcephaly, epilepsy, permanent neonatal diabetes syndrome", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "782825008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4230947, + "CONCEPT_NAME" : "Primary physiologic amenorrhea", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "8913004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4262580, + "CONCEPT_NAME" : "Primary sleep apnea of newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "361208003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443435, + "CONCEPT_NAME" : "Primary uterine inertia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "387699008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 196762, + "CONCEPT_NAME" : "Primary uterine inertia - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199819004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 196759, + "CONCEPT_NAME" : "Primary uterine inertia with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199821009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4133029, + "CONCEPT_NAME" : "Primigravida", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "127364007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060105, + "CONCEPT_NAME" : "Private home delivery booking", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169624005", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4120303, + "CONCEPT_NAME" : "Progressive congenital rubella encephalomyelitis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "302811004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4230252, + "CONCEPT_NAME" : "Progressive post hemorrhagic ventricular dilatation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "359629000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 72692, + "CONCEPT_NAME" : "Prolapsed arm - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199384007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4058679, + "CONCEPT_NAME" : "Prolapse of anterior lip of cervix obstructing labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "19729005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440476, + "CONCEPT_NAME" : "Prolapse of cord", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "270500004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441645, + "CONCEPT_NAME" : "Prolapse of cord - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199869007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435883, + "CONCEPT_NAME" : "Prolapse of cord with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199870008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4171094, + "CONCEPT_NAME" : "Prolonged apnea of newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276546007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440475, + "CONCEPT_NAME" : "Prolonged first stage - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199847000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441362, + "CONCEPT_NAME" : "Prolonged first stage of labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "33627001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434435, + "CONCEPT_NAME" : "Prolonged first stage with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199848005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440167, + "CONCEPT_NAME" : "Prolonged labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "53443007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4308660, + "CONCEPT_NAME" : "Prolonged latent phase of labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "387700009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3189930, + "CONCEPT_NAME" : "Prolonged neonatal intensive care history", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "9320001000004107", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "Nebraska Lexicon", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4171095, + "CONCEPT_NAME" : "Prolonged newborn physiological jaundice", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276550000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 192972, + "CONCEPT_NAME" : "Prolonged rupture of membranes", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12729009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434431, + "CONCEPT_NAME" : "Prolonged second stage - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199857004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434714, + "CONCEPT_NAME" : "Prolonged second stage of labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "77259008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37017049, + "CONCEPT_NAME" : "Prolonged second stage of labor due to poor maternal effort", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "713232009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437620, + "CONCEPT_NAME" : "Prolonged second stage with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199858009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757377, + "CONCEPT_NAME" : "Protein and Glucose panel [Mass/volume] - Body fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54246-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3043821, + "CONCEPT_NAME" : "Protein and Glucose panel - Urine by Test strip", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45060-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45770185, + "CONCEPT_NAME" : "Provision of information about extensively hydrolysed infant formula", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "924431000000105", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4082504, + "CONCEPT_NAME" : "Pruritus of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "239102001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4150734, + "CONCEPT_NAME" : "Pseudomonas ophthalmia neonatorum", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "278930003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442419, + "CONCEPT_NAME" : "Puerperal cerebrovascular disorder - delivered", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "200330000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442418, + "CONCEPT_NAME" : "Puerperal cerebrovascular disorder - delivered with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200331001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 313272, + "CONCEPT_NAME" : "Puerperal cerebrovascular disorder with antenatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200332008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 313833, + "CONCEPT_NAME" : "Puerperal cerebrovascular disorder with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200333003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4328870, + "CONCEPT_NAME" : "Puerperal endometritis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "22399000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4065749, + "CONCEPT_NAME" : "Puerperal endometritis - delivered with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200181000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061463, + "CONCEPT_NAME" : "Puerperal endometritis with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200182007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4024972, + "CONCEPT_NAME" : "Puerperal pelvic cellulitis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12062007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4297611, + "CONCEPT_NAME" : "Puerperal pelvic sepsis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "77206006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4339312, + "CONCEPT_NAME" : "Puerperal peritonitis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "88178009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4062259, + "CONCEPT_NAME" : "Puerperal peritonitis with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200191006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4034154, + "CONCEPT_NAME" : "Puerperal pyrexia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237348005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435028, + "CONCEPT_NAME" : "Puerperal pyrexia of unknown origin", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200277008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434713, + "CONCEPT_NAME" : "Puerperal pyrexia of unknown origin - delivered with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200280009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432389, + "CONCEPT_NAME" : "Puerperal pyrexia of unknown origin with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200281008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4050255, + "CONCEPT_NAME" : "Puerperal salpingitis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "20932005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4062257, + "CONCEPT_NAME" : "Puerperal salpingitis with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200187001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4102318, + "CONCEPT_NAME" : "Puerperal sepsis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "2858002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4065753, + "CONCEPT_NAME" : "Puerperal sepsis with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200196001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3655209, + "CONCEPT_NAME" : "Pulmonary embolism due to and following ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "860680001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3655210, + "CONCEPT_NAME" : "Pulmonary embolism due to and following molar pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "860681002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4263344, + "CONCEPT_NAME" : "Pulmonary fibroplasia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "361195001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42600161, + "CONCEPT_NAME" : "Pulmonary nodular fibroplasia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "42661000009100", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED Veterinary", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4272315, + "CONCEPT_NAME" : "Purulent mastitis associated with childbirth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63662002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45765500, + "CONCEPT_NAME" : "Quadruplet birth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "702452007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442594, + "CONCEPT_NAME" : "Quadruplet pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "60810003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438481, + "CONCEPT_NAME" : "Quadruplet pregnancy - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199325005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440466, + "CONCEPT_NAME" : "Quadruplet pregnancy with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199326006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45757166, + "CONCEPT_NAME" : "Quadruplets, all live born", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10760701000119102", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45773428, + "CONCEPT_NAME" : "Quadruplets, some live born", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10760741000119100", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42539377, + "CONCEPT_NAME" : "Quadruplets with all four stillborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "762612009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40479425, + "CONCEPT_NAME" : "Quantitative measurement of concentration of glucose in peritoneal dialysis fluid at 4 hours postperitoneal dialysis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "444450007", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40484115, + "CONCEPT_NAME" : "Quantitative measurement of glucose in 1 hour postprandial urine specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "443924005", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40485034, + "CONCEPT_NAME" : "Quantitative measurement of glucose in 24 hour urine specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "444122000", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40479799, + "CONCEPT_NAME" : "Quantitative measurement of glucose in first peritoneal dialysis fluid specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "444499006", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40484114, + "CONCEPT_NAME" : "Quantitative measurement of glucose in pericardial fluid specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "443923004", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40484139, + "CONCEPT_NAME" : "Quantitative measurement of glucose in peritoneal dialysis fluid specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "443946002", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40485040, + "CONCEPT_NAME" : "Quantitative measurement of glucose in pleural fluid specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "444128001", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40479401, + "CONCEPT_NAME" : "Quantitative measurement of glucose in predialysis peritoneal dialysis fluid specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "444423002", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40483242, + "CONCEPT_NAME" : "Quantitative measurement of glucose in serum or plasma specimen 120 minutes after 75 gram oral glucose challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "443780009", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40484576, + "CONCEPT_NAME" : "Quantitative measurement of glucose in serum or plasma specimen 6 hours after glucose challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "444008003", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40484575, + "CONCEPT_NAME" : "Quantitative measurement of glucose in synovial fluid specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "444007008", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40485039, + "CONCEPT_NAME" : "Quantitative measurement of mass concentration of glucose in postcalorie fasting serum or plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "444127006", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40483659, + "CONCEPT_NAME" : "Quantitative measurement of substance rate of glucose excretion in urine", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "443842004", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4182146, + "CONCEPT_NAME" : "Quantity of lochia - finding", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "366299003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061423, + "CONCEPT_NAME" : "Questionable if pregnancy was planned", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169569009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45765501, + "CONCEPT_NAME" : "Quintuplet birth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "702453002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45757167, + "CONCEPT_NAME" : "Quintuplets, all live born", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10760781000119105", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45757168, + "CONCEPT_NAME" : "Quintuplets, some live born", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10760821000119100", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42538805, + "CONCEPT_NAME" : "Quintuplets with all five stillborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "762613004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3046853, + "CONCEPT_NAME" : "Race", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "32624-9", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Clinical Observation" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40484021, + "CONCEPT_NAME" : "Random blood glucose abnormal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "442545002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4153111, + "CONCEPT_NAME" : "Random blood glucose measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "271061004", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4042065, + "CONCEPT_NAME" : "Random blood sugar low", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "166891009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4042725, + "CONCEPT_NAME" : "Random blood sugar normal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "166890005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4055671, + "CONCEPT_NAME" : "Random blood sugar raised", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "166892002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40481539, + "CONCEPT_NAME" : "Random glucose level abnormal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "444925004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4149994, + "CONCEPT_NAME" : "Readmission for abortive pregnancy (NHS codes)", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "267195006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4113503, + "CONCEPT_NAME" : "Readmission for retained products of conception, legal termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198862007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4114280, + "CONCEPT_NAME" : "Readmission for retained products of conception, spontaneous abortion", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198861000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4150401, + "CONCEPT_NAME" : "Reason for termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "310506006", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Observable Entity" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4173350, + "CONCEPT_NAME" : "Recurrent apnea of newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276725001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 764688, + "CONCEPT_NAME" : "Red-green tinged lochia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "5361000124103", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 764646, + "CONCEPT_NAME" : "Red or brown-green tinged lochia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "4971000124107", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 77619, + "CONCEPT_NAME" : "Reduced fetal movement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276369006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4190767, + "CONCEPT_NAME" : "Referral for termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "415262008", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4081292, + "CONCEPT_NAME" : "Referral to antenatal clinic", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "183860003", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 46272536, + "CONCEPT_NAME" : "Referral to breastfeeding education class during prenatal period", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "710916001", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4084693, + "CONCEPT_NAME" : "Referral to obstetrics service", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "183548008", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4214930, + "CONCEPT_NAME" : "Refer to early pregnancy unit", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "417577000", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040000, + "CONCEPT_NAME" : "Reliability of last menstrual period observation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "53661-5", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Clinical Observation" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004342, + "CONCEPT_NAME" : "Removal of both fallopian tubes at same operative episode", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "66.51", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004546, + "CONCEPT_NAME" : "Removal of cerclage material from cervix", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "69.96", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110339, + "CONCEPT_NAME" : "Removal of cerclage suture under anesthesia (other than local)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59871", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4308664, + "CONCEPT_NAME" : "Removal of ectopic fetus from abdominal cavity", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "387709005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4227423, + "CONCEPT_NAME" : "Removal of ectopic fetus from fallopian tube without salpingectomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "88362001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4247895, + "CONCEPT_NAME" : "Removal of ectopic fetus from ovary without oophorectomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "73341009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004788, + "CONCEPT_NAME" : "Removal of extratubal ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "74.3", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "3-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4300391, + "CONCEPT_NAME" : "Removal of extrauterine ectopic fetus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "387710000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4309622, + "CONCEPT_NAME" : "Removal of hydatidiform mole", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "216209009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4153287, + "CONCEPT_NAME" : "Removal of products of conception from fallopian tube", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "271415006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004343, + "CONCEPT_NAME" : "Removal of remaining fallopian tube", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "66.52", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 192679, + "CONCEPT_NAME" : "Renal disease in pregnancy AND/OR puerperium without hypertension", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "75150001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45757120, + "CONCEPT_NAME" : "Renal failure after ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10752771000119100", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 195014, + "CONCEPT_NAME" : "Renal failure following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43629001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42537766, + "CONCEPT_NAME" : "Renal failure following molar pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "737327002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 197930, + "CONCEPT_NAME" : "Renal hypertension complicating pregnancy, childbirth and the puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198949009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 200157, + "CONCEPT_NAME" : "Renal hypertension complicating pregnancy, childbirth and the puerperium - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198951008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 192684, + "CONCEPT_NAME" : "Renal hypertension complicating pregnancy, childbirth and the puerperium - not delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198953006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4095115, + "CONCEPT_NAME" : "Renal tubular necrosis following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26235008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2109484, + "CONCEPT_NAME" : "Repair, initial inguinal hernia, preterm infant (younger than 37 weeks gestation at birth), performed from birth up to 50 weeks postconception age, with or without hydrocelectomy; incarcerated or strangulated", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "49492", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2109483, + "CONCEPT_NAME" : "Repair, initial inguinal hernia, preterm infant (younger than 37 weeks gestation at birth), performed from birth up to 50 weeks postconception age, with or without hydrocelectomy; reducible", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "49491", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004842, + "CONCEPT_NAME" : "Repair of current obstetric laceration of bladder and urethra", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "75.61", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004829, + "CONCEPT_NAME" : "Repair of current obstetric laceration of cervix", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "75.51", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004830, + "CONCEPT_NAME" : "Repair of current obstetric laceration of corpus uteri", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "75.52", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4230535, + "CONCEPT_NAME" : "Repair of current obstetric laceration of rectum and sphincter ani", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "359946000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004843, + "CONCEPT_NAME" : "Repair of current obstetric laceration of rectum and sphincter ani", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "75.62", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4319897, + "CONCEPT_NAME" : "Repair of current obstetric laceration of uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "9724000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004828, + "CONCEPT_NAME" : "Repair of current obstetric laceration of uterus, not otherwise specified", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "75.50", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4071642, + "CONCEPT_NAME" : "Repair of episiotomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177222006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4172666, + "CONCEPT_NAME" : "Repair of obstetric laceration of bladder and urethra", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "42390009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4135477, + "CONCEPT_NAME" : "Repair of obstetric laceration of cervix", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "31939001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004844, + "CONCEPT_NAME" : "Repair of other current obstetric laceration", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "75.69", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004831, + "CONCEPT_NAME" : "Repair of other current obstetric laceration", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "75.6", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "3-dig nonbill code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4033994, + "CONCEPT_NAME" : "Repair of right mediolateral episiotomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237025009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4086797, + "CONCEPT_NAME" : "Requests pregnancy termination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "184005004", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40482435, + "CONCEPT_NAME" : "Residual trophoblastic disease", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "445149007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 319138, + "CONCEPT_NAME" : "Respiratory condition of fetus OR newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "17849001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 258866, + "CONCEPT_NAME" : "Respiratory distress syndrome in the newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46775006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4173177, + "CONCEPT_NAME" : "Respiratory insufficiency syndrome of newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276536005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4318553, + "CONCEPT_NAME" : "Respiratory tract hemorrhage of the newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "95621004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4109090, + "CONCEPT_NAME" : "Resuture of episiotomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "285416007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4115155, + "CONCEPT_NAME" : "Resuture of episiotomy dehiscence", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "285417003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4003030, + "CONCEPT_NAME" : "Retained placenta", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "109894007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4129038, + "CONCEPT_NAME" : "Retained placenta and membranes", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "237294006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44782606, + "CONCEPT_NAME" : "Retained placenta due to morbidly adherent placenta", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "699949009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4003031, + "CONCEPT_NAME" : "Retained placental fragment", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "109895008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4150001, + "CONCEPT_NAME" : "Retained placenta or membranes with no hemorrhage", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "267273001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442078, + "CONCEPT_NAME" : "Retained placenta with no hemorrhage - delivered with postnatal problem", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "200037005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 200792, + "CONCEPT_NAME" : "Retained placenta with no hemorrhage with postnatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200038000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 200789, + "CONCEPT_NAME" : "Retained placenta, without hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "111453004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4064977, + "CONCEPT_NAME" : "Retained portion of placenta or membranes with no hemorrhage", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "200040005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 201642, + "CONCEPT_NAME" : "Retained portions of placenta AND/OR membranes without hemorrhage", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "111454005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4170121, + "CONCEPT_NAME" : "Retained products after miscarriage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "275425008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4062112, + "CONCEPT_NAME" : "Retained products with no hemorrhage with postnatal problem", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "200043007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 373766, + "CONCEPT_NAME" : "Retinopathy of prematurity", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "415297005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36684687, + "CONCEPT_NAME" : "Retinopathy of prematurity of left eye", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "338021000119106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36684686, + "CONCEPT_NAME" : "Retinopathy of prematurity of left eye stage 1 - demarcation line", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "338001000119102", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36684685, + "CONCEPT_NAME" : "Retinopathy of prematurity of left eye stage 2 - intraretinal ridge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "337991000119106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36684684, + "CONCEPT_NAME" : "Retinopathy of prematurity of left eye stage 3 - ridge with extraretinal fibrovascular proliferation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "337981000119108", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36684624, + "CONCEPT_NAME" : "Retinopathy of prematurity of right eye", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "332411000119108", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36684623, + "CONCEPT_NAME" : "Retinopathy of prematurity of right eye stage 1 - demarcation line", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "332391000119108", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36684622, + "CONCEPT_NAME" : "Retinopathy of prematurity of right eye stage 2 - intraretinal ridge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "332381000119105", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36684621, + "CONCEPT_NAME" : "Retinopathy of prematurity of right eye stage 3 - ridge with extraretinal fibrovascular proliferation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "332371000119107", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45772079, + "CONCEPT_NAME" : "Retinopathy of prematurity stage 0", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "124111000119102", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 375250, + "CONCEPT_NAME" : "Retinopathy of prematurity stage 1 - demarcation line", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "408847006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 375251, + "CONCEPT_NAME" : "Retinopathy of prematurity stage 2 - intraretinal ridge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "408848001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 379009, + "CONCEPT_NAME" : "Retinopathy of prematurity stage 3 - ridge with extraretinal fibrovascular proliferation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "408849009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443519, + "CONCEPT_NAME" : "Retinopathy of prematurity stage 4 - subtotal retinal detachment", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "408850009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443520, + "CONCEPT_NAME" : "Retinopathy of prematurity stage 5 - total retinal detachment", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "408851008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442549, + "CONCEPT_NAME" : "Retracted nipple associated with childbirth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "74955002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36713478, + "CONCEPT_NAME" : "Retracted nipple associated with childbirth with attachment difficulty", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "717819009", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437061, + "CONCEPT_NAME" : "Retracted nipple in pregnancy, the puerperium or lactation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200402001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435612, + "CONCEPT_NAME" : "Retracted nipple in pregnancy, the puerperium or lactation - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200404000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438823, + "CONCEPT_NAME" : "Retracted nipple in pregnancy, the puerperium or lactation with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200407007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45757159, + "CONCEPT_NAME" : "Retraction of nipple associated with lactation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10760301000119103", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45757160, + "CONCEPT_NAME" : "Retraction of nipple in pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10760341000119101", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4194811, + "CONCEPT_NAME" : "Retraction ring dystocia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "79414005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40490338, + "CONCEPT_NAME" : "Retrieval of oocyte by transabdominal approach", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "446934006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4035336, + "CONCEPT_NAME" : "Retromammary abscess associated with childbirth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15406009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4232323, + "CONCEPT_NAME" : "Retromammary mastitis associated with childbirth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "89672000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 196484, + "CONCEPT_NAME" : "Retroverted incarcerated gravid uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199466009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 198216, + "CONCEPT_NAME" : "Retroverted incarcerated gravid uterus - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199468005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 196486, + "CONCEPT_NAME" : "Retroverted incarcerated gravid uterus with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199470001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060560, + "CONCEPT_NAME" : "Retroverted incarcerated gravid uterus with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199471002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44790242, + "CONCEPT_NAME" : "Rhesus detailed scan", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "228711000000104", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 199891, + "CONCEPT_NAME" : "Rhesus isoimmunization affecting pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "44795003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 195878, + "CONCEPT_NAME" : "Rhesus isoimmunization - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199582007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 192376, + "CONCEPT_NAME" : "Rhesus isoimmunization with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199583002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061158, + "CONCEPT_NAME" : "Rhesus screening - 1st pregnancy sample", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169676009", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061159, + "CONCEPT_NAME" : "Rhesus screening - 2nd pregnancy sample", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169677000", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061806, + "CONCEPT_NAME" : "Rhesus screening - 3rd pregnancy sample", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169678005", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3023524, + "CONCEPT_NAME" : "Rh immune globulin screen [interpretation]", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1314-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4127253, + "CONCEPT_NAME" : "Right mediolateral episiotomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "236992007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4074424, + "CONCEPT_NAME" : "Right salpingectomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "176916000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4072837, + "CONCEPT_NAME" : "Right salpingo-oophorectomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "176914002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4047564, + "CONCEPT_NAME" : "Routine antenatal care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "134435003", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4121924, + "CONCEPT_NAME" : "Routine episiotomy and repair", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "288194000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110315, + "CONCEPT_NAME" : "Routine obstetric care including antepartum care, cesarean delivery, and postpartum care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59510", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110322, + "CONCEPT_NAME" : "Routine obstetric care including antepartum care, cesarean delivery, and postpartum care, following attempted vaginal delivery after previous cesarean delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59618", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110307, + "CONCEPT_NAME" : "Routine obstetric care including antepartum care, vaginal delivery (with or without episiotomy, and/or forceps) and postpartum care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59400", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110319, + "CONCEPT_NAME" : "Routine obstetric care including antepartum care, vaginal delivery (with or without episiotomy, and/or forceps) and postpartum care, after previous cesarean delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59610", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44790189, + "CONCEPT_NAME" : "Routine obstetric scan", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "228471000000102", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36713471, + "CONCEPT_NAME" : "Routine postpartum follow-up", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "717810008", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4102697, + "CONCEPT_NAME" : "Rubella cataract", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "253227001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4275129, + "CONCEPT_NAME" : "Rubella myocarditis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64190005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4338888, + "CONCEPT_NAME" : "Rubella retinopathy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "231985001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4049040, + "CONCEPT_NAME" : "Rumination in newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206565007", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4304587, + "CONCEPT_NAME" : "Ruptured Descemet membrane due to birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "419743001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4323287, + "CONCEPT_NAME" : "Rupture of cord", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "70603007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 198816, + "CONCEPT_NAME" : "Rupture of uterus before labor - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199960005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 192699, + "CONCEPT_NAME" : "Rupture of uterus during and after labor - delivered", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "199964001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4064960, + "CONCEPT_NAME" : "Rupture of uterus during and after labor - delivered with postnatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199965000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 194106, + "CONCEPT_NAME" : "Rupture of uterus during AND/OR after labor", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "69270005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45757588, + "CONCEPT_NAME" : "Rupture of uterus during labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "23431000119106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110247, + "CONCEPT_NAME" : "Salpingectomy, complete or partial, unilateral or bilateral (separate procedure)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "58700", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4032000, + "CONCEPT_NAME" : "Salpingectomy of remaining fallopian tube", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "14353000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004346, + "CONCEPT_NAME" : "Salpingectomy with removal of tubal pregnancy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "66.62", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4316051, + "CONCEPT_NAME" : "Salpingitis following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "9516007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4021363, + "CONCEPT_NAME" : "Salpingo-oophorectomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "116028008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4073272, + "CONCEPT_NAME" : "Salpingo-oophorectomy of remaining solitary fallopian tube and ovary", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "176909001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4239009, + "CONCEPT_NAME" : "Salpingo-oophoritis following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57468008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004351, + "CONCEPT_NAME" : "Salpingo-oophorostomy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "66.72", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004362, + "CONCEPT_NAME" : "Salpingo-salpingostomy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "66.73", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004308, + "CONCEPT_NAME" : "Salpingostomy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "66.02", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4263669, + "CONCEPT_NAME" : "Salpingostomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "60463004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110253, + "CONCEPT_NAME" : "Salpingostomy (salpingoneostomy)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "58770", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004307, + "CONCEPT_NAME" : "Salpingotomy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "66.01", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004306, + "CONCEPT_NAME" : "Salpingotomy and salpingostomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "66.0", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "3-dig nonbill code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4174422, + "CONCEPT_NAME" : "Sampling injury to scalp during birth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276705000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4120817, + "CONCEPT_NAME" : "Sampling of chorionic villus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "303720006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4071592, + "CONCEPT_NAME" : "Scalp abrasions due to birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206203003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4047853, + "CONCEPT_NAME" : "Scalp bruising due to birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206204009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 133028, + "CONCEPT_NAME" : "Scalp injuries due to birth trauma", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "206199003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4301415, + "CONCEPT_NAME" : "Scalp injury due to vacuum extraction", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "403849006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 136530, + "CONCEPT_NAME" : "Sclerema neonatorum", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206539008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4174577, + "CONCEPT_NAME" : "Secondary abdominal pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276881003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40318195, + "CONCEPT_NAME" : "Secondary amenorrhea", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "156036003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37206228, + "CONCEPT_NAME" : "Secondary hemorrhage due to and following illegally induced termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "785869007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37206227, + "CONCEPT_NAME" : "Secondary hemorrhage due to and following induced termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "785868004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37206229, + "CONCEPT_NAME" : "Secondary hemorrhage due to and following legally induced termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "785870008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4173636, + "CONCEPT_NAME" : "Secondary perineal tear in the puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "42537006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4312727, + "CONCEPT_NAME" : "Secondary physiologic amenorrhea", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86030004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4065618, + "CONCEPT_NAME" : "Secondary postpartum hemorrhage - delivered with postnatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200025008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 192974, + "CONCEPT_NAME" : "Secondary uterine inertia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43715006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 192384, + "CONCEPT_NAME" : "Secondary uterine inertia - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199824001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 197346, + "CONCEPT_NAME" : "Secondary uterine inertia with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199825000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 198492, + "CONCEPT_NAME" : "Second degree perineal laceration", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6234006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 198499, + "CONCEPT_NAME" : "Second degree perineal tear during delivery - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199925004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 197337, + "CONCEPT_NAME" : "Second degree perineal tear during delivery with postnatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199926003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4327745, + "CONCEPT_NAME" : "Second trimester bleeding", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "430881000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4244438, + "CONCEPT_NAME" : "Second trimester pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59466002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3049229, + "CONCEPT_NAME" : "Second trimester quad maternal screen [Interpretation] in Serum or Plasma Narrative", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "49092-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4083415, + "CONCEPT_NAME" : "Seen in antenatal clinic", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "185226003", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4260976, + "CONCEPT_NAME" : "Seen in fetal medicine clinic", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "440580005", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4089029, + "CONCEPT_NAME" : "Seen in postnatal clinic", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "185266004", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4186827, + "CONCEPT_NAME" : "Seizures complicating infection in the newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "372441001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4159149, + "CONCEPT_NAME" : "Seizures complicating intracranial hemorrhage in the newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "371107004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 762709, + "CONCEPT_NAME" : "Seizures in the newborn, non-refractory", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "430871000124109", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 762579, + "CONCEPT_NAME" : "Seizures in the newborn, refractory", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429171000124105", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4096674, + "CONCEPT_NAME" : "Self-induced hyperinsulinemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "190429008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4147409, + "CONCEPT_NAME" : "Self-monitoring of blood and urine glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "308115004", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4146454, + "CONCEPT_NAME" : "Self-monitoring of blood glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "308113006", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4147408, + "CONCEPT_NAME" : "Self-monitoring of urine glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "308114000", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4091293, + "CONCEPT_NAME" : "Sensitive pregnancy test", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "252161000", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4264738, + "CONCEPT_NAME" : "Separation of symphysis pubis during delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "61007003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4009954, + "CONCEPT_NAME" : "Sepsis during labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1125006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060807, + "CONCEPT_NAME" : "Sepsis during labor with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199711007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4187090, + "CONCEPT_NAME" : "Sepsis following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46848006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37116435, + "CONCEPT_NAME" : "Sepsis following obstructed labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "733142005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42536689, + "CONCEPT_NAME" : "Sepsis of neonate caused by Streptococcus pyogenes", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "735637004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4048275, + "CONCEPT_NAME" : "Sepsis of newborn due to anaerobes", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206380000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 46270041, + "CONCEPT_NAME" : "Sepsis of newborn due to group B Streptococcus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "127091000119100", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 763027, + "CONCEPT_NAME" : "Sepsis of newborn due to Streptococcus agalactiae", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "435181000124108", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4071063, + "CONCEPT_NAME" : "Sepsis of the newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206376005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3655212, + "CONCEPT_NAME" : "Septic embolism due to and following ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "860683004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3655211, + "CONCEPT_NAME" : "Septic embolism due to and following molar pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "860682009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 137371, + "CONCEPT_NAME" : "Septicemia of newborn", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "41229001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4080587, + "CONCEPT_NAME" : "Septic shock following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "24051007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4042760, + "CONCEPT_NAME" : "Serum 2-hr post-prandial glucose measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "167088001", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4161969, + "CONCEPT_NAME" : "Serum alpha-fetoprotein level elevated", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "399643001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4275335, + "CONCEPT_NAME" : "Serum alpha-fetoprotein level - finding", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "365804002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4195345, + "CONCEPT_NAME" : "Serum alpha-fetoprotein multiple of median measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313868001", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4041723, + "CONCEPT_NAME" : "Serum fasting glucose measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "167087006", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4210722, + "CONCEPT_NAME" : "Serum free beta human chorionic gonadotrophin measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313872002", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4195509, + "CONCEPT_NAME" : "Serum free beta human chorionic gonadotropin multiple of median measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "314070003", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4198892, + "CONCEPT_NAME" : "Serum human chorionic gonadotropin multiple of median measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313866002", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4156811, + "CONCEPT_NAME" : "Serum insulin - C-polypeptide measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "271227006", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4150492, + "CONCEPT_NAME" : "Serum insulin measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "271226002", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4041161, + "CONCEPT_NAME" : "Serum pregnancy test (B-HCG)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "166434005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4042412, + "CONCEPT_NAME" : "Serum pregnancy test positive", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "166437003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4042759, + "CONCEPT_NAME" : "Serum random glucose measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "167086002", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4042751, + "CONCEPT_NAME" : "Serum total HCG measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "167037004", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432427, + "CONCEPT_NAME" : "Severe birth asphyxia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57284007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4121417, + "CONCEPT_NAME" : "Severe birth asphyxia, APGAR 0-3", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "287985008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4153452, + "CONCEPT_NAME" : "Severe birth asphyxia - apgar score less than 4 at 1 minute", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "268829008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4032345, + "CONCEPT_NAME" : "Severe hyperemesis gravidarum", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "129598007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4029420, + "CONCEPT_NAME" : "Severe hyperglycemia due to diabetes mellitus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237621004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36675039, + "CONCEPT_NAME" : "Severe neonatal onset encephalopathy with microcephaly", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "771303004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4129184, + "CONCEPT_NAME" : "Severe postnatal depression", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237350002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4129843, + "CONCEPT_NAME" : "Severe postnatal psychosis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237352005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433536, + "CONCEPT_NAME" : "Severe pre-eclampsia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46764007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438490, + "CONCEPT_NAME" : "Severe pre-eclampsia - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198983002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439077, + "CONCEPT_NAME" : "Severe pre-eclampsia - delivered with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198984008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 132685, + "CONCEPT_NAME" : "Severe pre-eclampsia - not delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198985009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4057976, + "CONCEPT_NAME" : "Severe pre-eclampsia with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198986005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4172871, + "CONCEPT_NAME" : "Severe transient tachypnea of newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276532007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4092760, + "CONCEPT_NAME" : "Sex of baby at delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "281053000", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Observable Entity" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45765502, + "CONCEPT_NAME" : "Sextuplet birth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "702454008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45772082, + "CONCEPT_NAME" : "Sextuplets, all live born", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10760861000119105", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45757169, + "CONCEPT_NAME" : "Sextuplets, some live born", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10760901000119104", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42538806, + "CONCEPT_NAME" : "Sextuplets with all six stillborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "762614005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4127241, + "CONCEPT_NAME" : "Shirodkar's cervical cerclage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "236947000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442271, + "CONCEPT_NAME" : "Shock following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "69344006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438226, + "CONCEPT_NAME" : "Short cord", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59795007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435020, + "CONCEPT_NAME" : "Short cord - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199889008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437946, + "CONCEPT_NAME" : "Short cord with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199890004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 80474, + "CONCEPT_NAME" : "Shoulder dystocia - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199783004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 75608, + "CONCEPT_NAME" : "Shoulder dystocia with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199784005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 72377, + "CONCEPT_NAME" : "Shoulder girdle dystocia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "89700002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4170152, + "CONCEPT_NAME" : "Simpson's forceps delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "275169009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014295, + "CONCEPT_NAME" : "Single live birth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169826009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40483521, + "CONCEPT_NAME" : "Single liveborn born in hospital by cesarean section", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "442423001", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36713074, + "CONCEPT_NAME" : "Single liveborn born in hospital by vaginal delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "17561000119102", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014454, + "CONCEPT_NAME" : "Single stillbirth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169827000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36713465, + "CONCEPT_NAME" : "Singleton liveborn born in hospital", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "717803002", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 257370, + "CONCEPT_NAME" : "Skeletal injury due to birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "240314005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4122747, + "CONCEPT_NAME" : "Skin surrounding umbilical cord stump pink", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "289326007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4126736, + "CONCEPT_NAME" : "Skin surrounding umbilical cord stump red", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "289325006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 46284319, + "CONCEPT_NAME" : "Skull injury due to birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "944051000000105", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4166847, + "CONCEPT_NAME" : "Slipped umbilical ligature with hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45549002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4087113, + "CONCEPT_NAME" : "Slow fetal growth AND/OR fetal malnutrition", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "18471004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4174056, + "CONCEPT_NAME" : "Slow slope active phase of labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "49279000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3174052, + "CONCEPT_NAME" : "Slow transition to extrauterine life", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "9270001000004104", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "Nebraska Lexicon", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4064286, + "CONCEPT_NAME" : "Small-for-dates baby", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199612005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4150640, + "CONCEPT_NAME" : "Snuffles in newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "271375003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4162239, + "CONCEPT_NAME" : "Somogyi phenomenon", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "398140007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3050414, + "CONCEPT_NAME" : "Sonographer name", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "49088-8", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Clinical Observation" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4318858, + "CONCEPT_NAME" : "Spastic ileus of the newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "95626009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4165092, + "CONCEPT_NAME" : "Spastic paralysis due to birth injury", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40980002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4102446, + "CONCEPT_NAME" : "Spastic paralysis due to intracranial birth injury", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "28534004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4194977, + "CONCEPT_NAME" : "Spastic paralysis due to spinal birth injury", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "79591004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2213358, + "CONCEPT_NAME" : "Sperm isolation; complex prep (eg, Percoll gradient, albumin gradient) for insemination or diagnosis with semen analysis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "89261", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2213357, + "CONCEPT_NAME" : "Sperm isolation; simple prep (eg, sperm wash and swim-up) for insemination or diagnosis with semen analysis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "89260", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110198, + "CONCEPT_NAME" : "Sperm washing for artificial insemination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "58323", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44784365, + "CONCEPT_NAME" : "Spinal cord injury due to birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "698500002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4047857, + "CONCEPT_NAME" : "Spinal cord laceration due to birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206223002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4070526, + "CONCEPT_NAME" : "Spinal cord rupture due to birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206224008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44784364, + "CONCEPT_NAME" : "Spine injury due to birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "698499006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 77679, + "CONCEPT_NAME" : "Spine or spinal cord injury due to birth trauma", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "206220004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4169992, + "CONCEPT_NAME" : "Spleen injury due to birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "275364007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4150803, + "CONCEPT_NAME" : "Spleen rupture due to birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "268826001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4073422, + "CONCEPT_NAME" : "Spontaneous breech delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177157003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4008578, + "CONCEPT_NAME" : "Spontaneous hypoglycemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "111559003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 761781, + "CONCEPT_NAME" : "Spontaneous intracerebral hemorrhage in neonate", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15984991000119103", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4309364, + "CONCEPT_NAME" : "Spontaneous onset of labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84457005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015143, + "CONCEPT_NAME" : "Spontaneous rupture of fetal membranes", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169734005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4167497, + "CONCEPT_NAME" : "Spontaneous unassisted delivery, medical personnel present", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48204000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4205240, + "CONCEPT_NAME" : "Spontaneous vertex delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "309469004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 198212, + "CONCEPT_NAME" : "Spotting per vagina in pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "284075002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4091461, + "CONCEPT_NAME" : "Standard pregnancy test", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "252160004", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4298015, + "CONCEPT_NAME" : "Staphylococcal omphalitis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "403841009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40406337, + "CONCEPT_NAME" : "Stillbirth", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "206581002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443213, + "CONCEPT_NAME" : "Stillbirth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237364002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4287409, + "CONCEPT_NAME" : "Stillbirth of immature female (500-999 gms.)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "68509000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4217655, + "CONCEPT_NAME" : "Stillbirth of immature fetus, sex undetermined (500-999 gms.)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72543004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4261819, + "CONCEPT_NAME" : "Stillbirth of immature male (500-999 gms.)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "35608009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4321563, + "CONCEPT_NAME" : "Stillbirth of mature female (2500 gms. or more)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "70112005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4301269, + "CONCEPT_NAME" : "Stillbirth of mature male (2500 gms. or more)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7860005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4103876, + "CONCEPT_NAME" : "Stillbirth of premature female (1000-2499 gms.)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "28996007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4300979, + "CONCEPT_NAME" : "Stillbirth of premature male (1000-2499 gms.)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "77814006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443463, + "CONCEPT_NAME" : "Stillbirth - unknown if fetal death intrapartum or prior to labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "408796008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2721254, + "CONCEPT_NAME" : "Stimulated intrauterine insemination (iui), case rate", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "S4035", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4301412, + "CONCEPT_NAME" : "Streptococcal omphalitis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "403843007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4168056, + "CONCEPT_NAME" : "Stroke in the puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "275434003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4174198, + "CONCEPT_NAME" : "Subareolar abscess associated with childbirth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "49364005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4047868, + "CONCEPT_NAME" : "Subcutaneous fat necrosis due to birth injury", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206254003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 378544, + "CONCEPT_NAME" : "Subdural and cerebral hemorrhage due to birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206188000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4130539, + "CONCEPT_NAME" : "Subdural hemorrhage due to birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "126941005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4095178, + "CONCEPT_NAME" : "Subdural hemorrhage due to intrapartum anoxia AND/OR hypoxia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25004000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4183593, + "CONCEPT_NAME" : "Subdural hemorrhage in fetus or newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43602006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42538556, + "CONCEPT_NAME" : "Subgaleal epicranial subaponeurotic hemorrhage due to birth injury", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "762286005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4030259, + "CONCEPT_NAME" : "Sub-involution of uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13842006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4063159, + "CONCEPT_NAME" : "Subluxation of symphysis pubis in pregnancy, childbirth and the puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199308008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4205437, + "CONCEPT_NAME" : "Submammary abscess associated with childbirth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55472006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4300419, + "CONCEPT_NAME" : "Submammary mastitis associated with childbirth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "77913004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42739013, + "CONCEPT_NAME" : "Subsequent hospital care, for the evaluation and management of a normal newborn, per day", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "99433", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2514557, + "CONCEPT_NAME" : "Subsequent hospital care, per day, for evaluation and management of normal newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "99462", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42739550, + "CONCEPT_NAME" : "Subsequent inpatient neonatal critical care, per day, for the evaluation and management of a critically ill neonate, 28 days of age or less", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "99296", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2514564, + "CONCEPT_NAME" : "Subsequent inpatient neonatal critical care, per day, for the evaluation and management of a critically ill neonate, 28 days of age or younger", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "99469", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2514572, + "CONCEPT_NAME" : "Subsequent intensive care, per day, for the evaluation and management of the recovering infant (present body weight of 2501-5000 grams)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "99480", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42740403, + "CONCEPT_NAME" : "Subsequent intensive care, per day, for the evaluation and management of the recovering low birth weight infant (present body weight of 1500-2500 g)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "99299", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2514571, + "CONCEPT_NAME" : "Subsequent intensive care, per day, for the evaluation and management of the recovering low birth weight infant (present body weight of 1500-2500 grams)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "99479", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42739401, + "CONCEPT_NAME" : "Subsequent intensive care, per day, for the evaluation and management of the recovering very low birth weight infant (present body weight less than 1500 g)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "99298", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2514570, + "CONCEPT_NAME" : "Subsequent intensive care, per day, for the evaluation and management of the recovering very low birth weight infant (present body weight less than 1500 grams)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "99478", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2101831, + "CONCEPT_NAME" : "Subsequent prenatal care visit (Prenatal) [Excludes: patients who are seen for a condition unrelated to pregnancy or prenatal care (eg, an upper respiratory infection; patients seen for consultation only, not for continuing care)]", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "0502F", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110318, + "CONCEPT_NAME" : "Subtotal or total hysterectomy after cesarean delivery (List separately in addition to code for primary procedure)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59525", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4022098, + "CONCEPT_NAME" : "Subzonal insemination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "225249007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4150538, + "CONCEPT_NAME" : "Suction evacuation of retained products of conception", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "310604000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4027161, + "CONCEPT_NAME" : "Superficial hematoma in fetus OR newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10742003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442058, + "CONCEPT_NAME" : "Superficial thrombophlebitis in pregnancy and the puerperium", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "200222004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439094, + "CONCEPT_NAME" : "Superficial thrombophlebitis in pregnancy and the puerperium - delivered", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "200224003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439095, + "CONCEPT_NAME" : "Superficial thrombophlebitis in pregnancy and the puerperium - delivered with postnatal complication", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "267283002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435331, + "CONCEPT_NAME" : "Superficial thrombophlebitis in pregnancy and the puerperium with antenatal complication", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "200226001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435332, + "CONCEPT_NAME" : "Superficial thrombophlebitis in pregnancy and the puerperium with postnatal complication", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "200227005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4143293, + "CONCEPT_NAME" : "Superficial thrombophlebitis in puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "308137006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4150337, + "CONCEPT_NAME" : "Supper time blood glucose measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "271064007", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 79098, + "CONCEPT_NAME" : "Suppressed lactation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "30506002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 76770, + "CONCEPT_NAME" : "Suppressed lactation with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200442006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3017439, + "CONCEPT_NAME" : "Surfactant/Albumin [Mass Ratio] in Amniotic fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "30562-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4073432, + "CONCEPT_NAME" : "Surgical induction of labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177129005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110295, + "CONCEPT_NAME" : "Surgical treatment of ectopic pregnancy; abdominal pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59130", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110298, + "CONCEPT_NAME" : "Surgical treatment of ectopic pregnancy; cervical, with evacuation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59140", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110296, + "CONCEPT_NAME" : "Surgical treatment of ectopic pregnancy; interstitial, uterine pregnancy requiring total hysterectomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59135", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110297, + "CONCEPT_NAME" : "Surgical treatment of ectopic pregnancy; interstitial, uterine pregnancy with partial resection of uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59136", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110293, + "CONCEPT_NAME" : "Surgical treatment of ectopic pregnancy; tubal or ovarian, requiring salpingectomy and/or oophorectomy, abdominal or vaginal approach", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59120", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110294, + "CONCEPT_NAME" : "Surgical treatment of ectopic pregnancy; tubal or ovarian, without salpingectomy and/or oophorectomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59121", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530886, + "CONCEPT_NAME" : "Suspected fetal damage from disease in the mother", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609420007", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530888, + "CONCEPT_NAME" : "Suspected fetal damage from radiation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609422004", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434480, + "CONCEPT_NAME" : "Syndrome of infant of diabetic mother", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "21584002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42538560, + "CONCEPT_NAME" : "Syndrome of infant of mother with gestational diabetes", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "762291006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 436171, + "CONCEPT_NAME" : "Syphilis in mother complicating pregnancy, childbirth AND/OR puerperium", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "34242002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4129023, + "CONCEPT_NAME" : "Teenage pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237240001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4079854, + "CONCEPT_NAME" : "Tentorial laceration - acute syndrome", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276590002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4171107, + "CONCEPT_NAME" : "Tentorial laceration - subacute syndrome", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276591003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4227728, + "CONCEPT_NAME" : "Term birth of fraternal twins, both living", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87662006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4306288, + "CONCEPT_NAME" : "Term birth of fraternal twins, both stillborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "83121003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4330570, + "CONCEPT_NAME" : "Term birth of fraternal twins, one living, one stillborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "22514005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4049333, + "CONCEPT_NAME" : "Term birth of identical twins, both living", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15467003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4192641, + "CONCEPT_NAME" : "Term birth of identical twins, both stillborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "75697004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4243026, + "CONCEPT_NAME" : "Term birth of identical twins, one living, one stillborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "38257001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4066292, + "CONCEPT_NAME" : "Term birth of multiple newborns", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "17333005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4193224, + "CONCEPT_NAME" : "Term birth of newborn quadruplets", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7888004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336090, + "CONCEPT_NAME" : "Term birth of newborn quintuplets", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86803008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4199146, + "CONCEPT_NAME" : "Term birth of newborn sextuplets", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "52483005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4307237, + "CONCEPT_NAME" : "Term birth of newborn triplets", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "8333008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4178275, + "CONCEPT_NAME" : "Term birth of newborn twins", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "50758004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4203001, + "CONCEPT_NAME" : "Term birth of stillborn twins", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "52942000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4297250, + "CONCEPT_NAME" : "Termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "386639001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4240605, + "CONCEPT_NAME" : "Termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57797005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43020954, + "CONCEPT_NAME" : "Termination of pregnancy after first trimester", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "472839005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40258875, + "CONCEPT_NAME" : "Termination of pregnancy NEC", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "176831008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530907, + "CONCEPT_NAME" : "Termination of pregnancy with complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609446006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4212260, + "CONCEPT_NAME" : "Term infant", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57891003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336958, + "CONCEPT_NAME" : "Term pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87527008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4296038, + "CONCEPT_NAME" : "Tetanus complicating ectopic AND/OR molar pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "76843005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 133024, + "CONCEPT_NAME" : "Tetanus neonatorum", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43424001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4189561, + "CONCEPT_NAME" : "Therapeutic termination of pregnancy by aspiration curettage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "391896006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4030009, + "CONCEPT_NAME" : "Therapeutic termination of pregnancy by insertion of laminaria", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10763001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4299609, + "CONCEPT_NAME" : "Therapeutic termination of pregnancy procedure", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "386641000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 193830, + "CONCEPT_NAME" : "Third degree perineal laceration", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10217006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 193275, + "CONCEPT_NAME" : "Third degree perineal tear during delivery - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199930000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 199097, + "CONCEPT_NAME" : "Third degree perineal tear during delivery with postnatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199931001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 197625, + "CONCEPT_NAME" : "Third stage hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "47236005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37311704, + "CONCEPT_NAME" : "Third stage hemorrhage due to retention of placenta", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "820947007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 200469, + "CONCEPT_NAME" : "Third-stage postpartum hemorrhage - delivered with postnatal problem", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "200015003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060183, + "CONCEPT_NAME" : "Third-stage postpartum hemorrhage with postnatal problem", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "200016002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4142581, + "CONCEPT_NAME" : "Third trimester bleeding", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "427139004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4218813, + "CONCEPT_NAME" : "Third trimester pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "41587001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4180111, + "CONCEPT_NAME" : "Third trimester pregnancy less than 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429240000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444082, + "CONCEPT_NAME" : "Threatened labor, without delivery", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "37486004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440457, + "CONCEPT_NAME" : "Threatened miscarriage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54048003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4252252, + "CONCEPT_NAME" : "Threatened miscarriage in first trimester", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "73790007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4294259, + "CONCEPT_NAME" : "Threatened miscarriage in second trimester", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "75933004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4032055, + "CONCEPT_NAME" : "Threatened miscarriage in third trimester", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10884004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3186670, + "CONCEPT_NAME" : "Threatened premature labor - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "480001000004104", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "Nebraska Lexicon", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 139888, + "CONCEPT_NAME" : "Threatened premature labor - not delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199049003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36713271, + "CONCEPT_NAME" : "Three dimensional obstetric ultrasonography", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "5231000179108", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36713272, + "CONCEPT_NAME" : "Three dimensional obstetric ultrasonography in third trimester", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "5241000179100", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4222152, + "CONCEPT_NAME" : "Thrombophlebitis in puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "83916000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442300, + "CONCEPT_NAME" : "Thyroid disease in mother complicating pregnancy, childbirth AND/OR puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59136001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 136755, + "CONCEPT_NAME" : "Thyroid dysfunction during pregnancy - baby delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199237009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 138479, + "CONCEPT_NAME" : "Thyroid dysfunction during pregnancy - baby not yet delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199239007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 139895, + "CONCEPT_NAME" : "Thyroid dysfunction during pregnancy, childbirth and the puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199235001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 138207, + "CONCEPT_NAME" : "Thyroid dysfunction in the puerperium - baby delivered during current episode of care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199238004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 138484, + "CONCEPT_NAME" : "Thyroid dysfunction in the puerperium - baby delivered during previous episode of care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199240009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2213255, + "CONCEPT_NAME" : "Tissue culture for non-neoplastic disorders; amniotic fluid or chorionic villus cells", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "88235", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4019096, + "CONCEPT_NAME" : "Total abdominal hysterectomy with bilateral salpingo-oophorectomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "116144002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4214677, + "CONCEPT_NAME" : "Total beta human chorionic gonadotrophin level", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "394721004", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004331, + "CONCEPT_NAME" : "Total bilateral salpingectomy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "66.5", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "3-dig nonbill code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4204679, + "CONCEPT_NAME" : "Total breech delivery with forceps to aftercoming head", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54973000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44789306, + "CONCEPT_NAME" : "Total human chorionic gonadotropin measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "195261000000107", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004330, + "CONCEPT_NAME" : "Total unilateral salpingectomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "66.4", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "3-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 141370, + "CONCEPT_NAME" : "Toxic erythema", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "58767000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061350, + "CONCEPT_NAME" : "Toxic reaction to local anesthesia during the puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200070000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110288, + "CONCEPT_NAME" : "Transabdominal amnioinfusion, including ultrasound guidance", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59070", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4169966, + "CONCEPT_NAME" : "Transabdominal chorionic villus biopsy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "275223004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4169965, + "CONCEPT_NAME" : "Transcervical sampling of chorionic villus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "275222009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44790511, + "CONCEPT_NAME" : "Transfer of embryo to uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "233111000000108", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441922, + "CONCEPT_NAME" : "Transient hypertension of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237279007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 137940, + "CONCEPT_NAME" : "Transient hypertension of pregnancy - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198965005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 141639, + "CONCEPT_NAME" : "Transient hypertension of pregnancy - delivered with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198966006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 136760, + "CONCEPT_NAME" : "Transient hypertension of pregnancy - not delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198967002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4173327, + "CONCEPT_NAME" : "Transient hypothyroxinemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276629001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4079845, + "CONCEPT_NAME" : "Transient neonatal colitis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276523005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4129378, + "CONCEPT_NAME" : "Transient neonatal diabetes mellitus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237603002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433604, + "CONCEPT_NAME" : "Transient neonatal disorder of coagulation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "32605001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42536567, + "CONCEPT_NAME" : "Transient neonatal hypoglycemia due to hyperinsulinemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "735496003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439149, + "CONCEPT_NAME" : "Transient neonatal neutropenia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55444004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36716753, + "CONCEPT_NAME" : "Transient neonatal neutropenia due to congenital viral infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "722925004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36716754, + "CONCEPT_NAME" : "Transient neonatal neutropenia due to neonatal bacterial sepsis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "722926003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4033200, + "CONCEPT_NAME" : "Transient neonatal pustulosis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "239092005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435076, + "CONCEPT_NAME" : "Transient neonatal thrombocytopenia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "23205009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4048930, + "CONCEPT_NAME" : "Transient neonatal thrombocytopenia due to exchange transfusion", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206510008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4049028, + "CONCEPT_NAME" : "Transient neonatal thrombocytopenia due to idiopathic maternal thrombocytopenia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206511007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4048742, + "CONCEPT_NAME" : "Transient neonatal thrombocytopenia due to isoimmunization", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206512000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42536568, + "CONCEPT_NAME" : "Transitory iatrogenic neonatal hypoglycemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "735497007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 198870, + "CONCEPT_NAME" : "Transitory ileus of newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "82368005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4173172, + "CONCEPT_NAME" : "Transitory ileus of prematurity", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276520008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 436234, + "CONCEPT_NAME" : "Transitory neonatal electrolyte disturbance", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12901004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433314, + "CONCEPT_NAME" : "Transitory neonatal endocrine AND/OR metabolic disorder", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "111472004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4071744, + "CONCEPT_NAME" : "Transitory neonatal hyperkalemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206491006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4048620, + "CONCEPT_NAME" : "Transitory neonatal hypernatremia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206489003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4171099, + "CONCEPT_NAME" : "Transitory neonatal hypoglycemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276561008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 321683, + "CONCEPT_NAME" : "Transitory tachypnea of newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7550008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40490447, + "CONCEPT_NAME" : "Transmyometrial transfer of embryo to uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "448543003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4324606, + "CONCEPT_NAME" : "Transvaginal nuchal ultrasonography", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "430063002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4335250, + "CONCEPT_NAME" : "Transvaginal obstetric doppler ultrasonography", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "432246004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4324607, + "CONCEPT_NAME" : "Transvaginal obstetric ultrasonography", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "430064008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4073406, + "CONCEPT_NAME" : "Transvaginal oocyte recovery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177042008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40490322, + "CONCEPT_NAME" : "Transvaginal ultrasonography to determine the estimated date of confinement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "446920006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4063171, + "CONCEPT_NAME" : "Transverse lie - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199362007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 81358, + "CONCEPT_NAME" : "Transverse OR oblique presentation of fetus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "11914001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4104199, + "CONCEPT_NAME" : "Trapped placenta", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "29171003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4174854, + "CONCEPT_NAME" : "Trauma from instrument during delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "42599006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4267072, + "CONCEPT_NAME" : "Traumatic extension of episiotomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36497006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4071600, + "CONCEPT_NAME" : "Traumatic glaucoma due to birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206248004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36716539, + "CONCEPT_NAME" : "Traumatic hemorrhage of cerebellum due to birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "722575008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36716739, + "CONCEPT_NAME" : "Traumatic hemorrhage of intracranial epidural space due to birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "722909009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439093, + "CONCEPT_NAME" : "Traumatic lesion during delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64229006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42536749, + "CONCEPT_NAME" : "Traumatic subluxation of spine due to birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "735743006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432975, + "CONCEPT_NAME" : "Trauma to perineum and/or vulva during delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "267268007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4161678, + "CONCEPT_NAME" : "Trauma to perineum during delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "397952002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3655718, + "CONCEPT_NAME" : "Trauma to urethra and bladder during delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "866229004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4134431, + "CONCEPT_NAME" : "Trauma to vagina during delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "128077009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4326563, + "CONCEPT_NAME" : "Trauma to vulva during delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7504005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2111055, + "CONCEPT_NAME" : "Treatment of extensive or progressive retinopathy, 1 or more sessions, preterm infant (less than 37 weeks gestation at birth), performed from birth up to 1 year of age (eg, retinopathy of prematurity), photocoagulation or cryotherapy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "67229", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110325, + "CONCEPT_NAME" : "Treatment of incomplete abortion, any trimester, completed surgically", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59812", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110326, + "CONCEPT_NAME" : "Treatment of missed abortion, completed surgically; first trimester", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59820", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110327, + "CONCEPT_NAME" : "Treatment of missed abortion, completed surgically; second trimester", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59821", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110328, + "CONCEPT_NAME" : "Treatment of septic abortion, completed surgically", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59830", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4290245, + "CONCEPT_NAME" : "Trial forceps delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "69422002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4073424, + "CONCEPT_NAME" : "Trial of vacuum delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177176001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4094046, + "CONCEPT_NAME" : "Triplet birth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "281052005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4078287, + "CONCEPT_NAME" : "Triple test", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "275835005", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014290, + "CONCEPT_NAME" : "Triple test not wanted", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169795009", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42539210, + "CONCEPT_NAME" : "Triplet liveborn in hospital by cesarean section", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16089571000119102", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432375, + "CONCEPT_NAME" : "Triplet pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64254006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440462, + "CONCEPT_NAME" : "Triplet pregnancy - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199321001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437931, + "CONCEPT_NAME" : "Triplet pregnancy with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199322008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014456, + "CONCEPT_NAME" : "Triplets - all live born", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169831006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015422, + "CONCEPT_NAME" : "Triplets - one live and two stillborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169833009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45757165, + "CONCEPT_NAME" : "Triplets, some live born", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10760661000119109", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015163, + "CONCEPT_NAME" : "Triplets - three stillborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169834003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015421, + "CONCEPT_NAME" : "Triplets - two live and one stillborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169832004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3051868, + "CONCEPT_NAME" : "Trisomy 21 risk based on maternal age+Alpha-1-Fetoprotein+Choriogonadotropin+Estriol.unconjugated [Likelihood] in Fetus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "47222-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44499531, + "CONCEPT_NAME" : "Trophoblastic tumor, epithelioid of placenta", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "9105/3-C58.9", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "ICDO3", + "CONCEPT_CLASS_ID" : "ICDO Condition" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4101082, + "CONCEPT_NAME" : "True knot of umbilical cord", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "27696007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4127106, + "CONCEPT_NAME" : "Tubal embryo transfer", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "236915005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 199076, + "CONCEPT_NAME" : "Tubal pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "79586000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4030182, + "CONCEPT_NAME" : "Tumor-induced hypoglycemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237645000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 196758, + "CONCEPT_NAME" : "Tumor of body of uterus affecting pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "223003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 196181, + "CONCEPT_NAME" : "Tumor of uterine body - baby delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "267221002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 197049, + "CONCEPT_NAME" : "Tumor of uterine body - baby delivered with postpartum complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "267222009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 192385, + "CONCEPT_NAME" : "Tumor of uterine body complicating antenatal care, baby not yet delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "267223004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4101844, + "CONCEPT_NAME" : "Twin birth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "28030000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40483084, + "CONCEPT_NAME" : "Twin liveborn born in hospital", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "442327001", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40483101, + "CONCEPT_NAME" : "Twin liveborn born in hospital by cesarean section", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "442342003", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42535052, + "CONCEPT_NAME" : "Twin live born in hospital by vaginal delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "151441000119105", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441919, + "CONCEPT_NAME" : "Twin pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65147003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435018, + "CONCEPT_NAME" : "Twin pregnancy - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199317008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434097, + "CONCEPT_NAME" : "Twin pregnancy with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199318003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014296, + "CONCEPT_NAME" : "Twins - both live born", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169828005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015162, + "CONCEPT_NAME" : "Twins - both stillborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169830007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014455, + "CONCEPT_NAME" : "Twins - one still and one live born", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169829002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42709935, + "CONCEPT_NAME" : "Type 3a third degree laceration of perineum", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "449807005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42709936, + "CONCEPT_NAME" : "Type 3b third degree laceration of perineum", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "449808000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42709937, + "CONCEPT_NAME" : "Type 3c third degree laceration of perineum", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "449809008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4279146, + "CONCEPT_NAME" : "Ultrasonic guidance for amniocentesis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65388005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2211785, + "CONCEPT_NAME" : "Ultrasonic guidance for amniocentesis, imaging supervision and interpretation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "76946", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2211784, + "CONCEPT_NAME" : "Ultrasonic guidance for chorionic villus sampling, imaging supervision and interpretation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "76945", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2211782, + "CONCEPT_NAME" : "Ultrasonic guidance for intrauterine fetal transfusion or cordocentesis, imaging supervision and interpretation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "76941", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37397735, + "CONCEPT_NAME" : "Ultrasonography for amniotic fluid index", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "718475004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4082534, + "CONCEPT_NAME" : "Ultrasonography for antepartum monitoring of fetus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "241491007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42535558, + "CONCEPT_NAME" : "Ultrasonography for fetal biophysical profile with non-stress testing", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "394211000119109", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42535559, + "CONCEPT_NAME" : "Ultrasonography for fetal biophysical profile without non-stress testing", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "394221000119102", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42535553, + "CONCEPT_NAME" : "Ultrasonography for qualitative amniotic fluid volume", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "391131000119106", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42535246, + "CONCEPT_NAME" : "Ultrasonography for qualitative deepest pocket amniotic fluid volume", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16437531000119105", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40488298, + "CONCEPT_NAME" : "Ultrasonography in first trimester", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "446522006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40486918, + "CONCEPT_NAME" : "Ultrasonography in second trimester", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "446208007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40487413, + "CONCEPT_NAME" : "Ultrasonography in third trimester", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "446353007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45773218, + "CONCEPT_NAME" : "Ultrasonography of fetal ductus venosus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "700442004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 46271899, + "CONCEPT_NAME" : "Ultrasonography of fetal head", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "710165007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45765925, + "CONCEPT_NAME" : "Ultrasonography of fetal shunt", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "702985005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44807918, + "CONCEPT_NAME" : "Ultrasonography of multiple pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "855021000000107", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40492794, + "CONCEPT_NAME" : "Ultrasonography of multiple pregnancy for fetal anomaly", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "445866007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40489798, + "CONCEPT_NAME" : "Ultrasonography of multiple pregnancy for fetal nuchal translucency", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "446810002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42690777, + "CONCEPT_NAME" : "Ultrasonography of retained products of conception", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1076861000000103", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3031159, + "CONCEPT_NAME" : "Ultrasound date", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "34970-4", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Clinical Observation" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40756968, + "CONCEPT_NAME" : "Ultrasound, limited, joint or other nonvascular extremity structure(s) (eg, joint space, peri-articular tendon[s], muscle[s], nerve[s], other soft-tissue structure[s], or soft-tissue mass[es]), real-time with image documentation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "76882", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44790261, + "CONCEPT_NAME" : "Ultrasound monitoring of early pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "228881000000102", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2211750, + "CONCEPT_NAME" : "Ultrasound, pregnant uterus, real time with image documentation, fetal and maternal evaluation, after first trimester (> or = 14 weeks 0 days), transabdominal approach; each additional gestation (List separately in addition to code for primary procedure)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "76810", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2211749, + "CONCEPT_NAME" : "Ultrasound, pregnant uterus, real time with image documentation, fetal and maternal evaluation, after first trimester (> or = 14 weeks 0 days), transabdominal approach; single or first gestation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "76805", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2211748, + "CONCEPT_NAME" : "Ultrasound, pregnant uterus, real time with image documentation, fetal and maternal evaluation, first trimester (< 14 weeks 0 days), transabdominal approach; each additional gestation (List separately in addition to code for primary procedure)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "76802", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2211747, + "CONCEPT_NAME" : "Ultrasound, pregnant uterus, real time with image documentation, fetal and maternal evaluation, first trimester (< 14 weeks 0 days), transabdominal approach; single or first gestation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "76801", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2211752, + "CONCEPT_NAME" : "Ultrasound, pregnant uterus, real time with image documentation, fetal and maternal evaluation plus detailed fetal anatomic examination, transabdominal approach; each additional gestation (List separately in addition to code for primary procedure)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "76812", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2211751, + "CONCEPT_NAME" : "Ultrasound, pregnant uterus, real time with image documentation, fetal and maternal evaluation plus detailed fetal anatomic examination, transabdominal approach; single or first gestation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "76811", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2211754, + "CONCEPT_NAME" : "Ultrasound, pregnant uterus, real time with image documentation, first trimester fetal nuchal translucency measurement, transabdominal or transvaginal approach; each additional gestation (List separately in addition to code for primary procedure)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "76814", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2211753, + "CONCEPT_NAME" : "Ultrasound, pregnant uterus, real time with image documentation, first trimester fetal nuchal translucency measurement, transabdominal or transvaginal approach; single or first gestation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "76813", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2211756, + "CONCEPT_NAME" : "Ultrasound, pregnant uterus, real time with image documentation, follow-up (eg, re-evaluation of fetal size by measuring standard growth parameters and amniotic fluid volume, re-evaluation of organ system(s) suspected or confirmed to be abnormal on a prev", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "76816", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2211755, + "CONCEPT_NAME" : "Ultrasound, pregnant uterus, real time with image documentation, limited (eg, fetal heart beat, placental location, fetal position and/or qualitative amniotic fluid volume), 1 or more fetuses", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "76815", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2211757, + "CONCEPT_NAME" : "Ultrasound, pregnant uterus, real time with image documentation, transvaginal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "76817", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3657421, + "CONCEPT_NAME" : "Ultrasound scan for chorionicity", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1167981000000101", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4237338, + "CONCEPT_NAME" : "Ultrasound scan for fetal anomaly", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "408814002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4082672, + "CONCEPT_NAME" : "Ultrasound scan for fetal growth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "241493005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4237339, + "CONCEPT_NAME" : "Ultrasound scan for fetal nuchal translucency", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "408815001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060624, + "CONCEPT_NAME" : "Ultrasound scan for fetal presentation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169228004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060626, + "CONCEPT_NAME" : "Ultrasound scan for fetal viability", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169230002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4152021, + "CONCEPT_NAME" : "Ultrasound scan - obstetric", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "268445003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4028775, + "CONCEPT_NAME" : "Umbilical cord around body", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237307007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441646, + "CONCEPT_NAME" : "Umbilical cord around neck", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "302929008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4126410, + "CONCEPT_NAME" : "Umbilical cord clamp left on", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "289337008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4126742, + "CONCEPT_NAME" : "Umbilical cord clamp needs removing", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "289336004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4122872, + "CONCEPT_NAME" : "Umbilical cord clamp off", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "289338003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4126741, + "CONCEPT_NAME" : "Umbilical cord clamp secure", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "289335000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435325, + "CONCEPT_NAME" : "Umbilical cord complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48287005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4122742, + "CONCEPT_NAME" : "Umbilical cord entangled around baby's limbs", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "289312003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4126740, + "CONCEPT_NAME" : "Umbilical cord stump base inflamed", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "289332002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4126737, + "CONCEPT_NAME" : "Umbilical cord stump black", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "289327003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4122745, + "CONCEPT_NAME" : "Umbilical cord stump clean", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "289319007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4126408, + "CONCEPT_NAME" : "Umbilical cord stump not healing", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "289318004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4126734, + "CONCEPT_NAME" : "Umbilical cord stump oozing", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "289323004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36675671, + "CONCEPT_NAME" : "Umbilical cord stump separated", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "772131003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4126739, + "CONCEPT_NAME" : "Umbilical cord stump smells offensive", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "289329000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45769826, + "CONCEPT_NAME" : "Umbilical cord three times around neck", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "71151000119105", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060157, + "CONCEPT_NAME" : "Umbilical cord tight around neck - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199874004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061971, + "CONCEPT_NAME" : "Umbilical cord tight around neck with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199875003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438259, + "CONCEPT_NAME" : "Umbilical hemorrhage after birth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "82986004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4079860, + "CONCEPT_NAME" : "Umbilical polyp of newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276618000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4098631, + "CONCEPT_NAME" : "Unconjugated estriol measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "250663008", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336229, + "CONCEPT_NAME" : "Unilateral salpingectomy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "86894005", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4301905, + "CONCEPT_NAME" : "Unilateral salpingo-oophorectomy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "78698008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110340, + "CONCEPT_NAME" : "Unlisted fetal invasive procedure, including ultrasound guidance, when performed", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59897", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110342, + "CONCEPT_NAME" : "Unlisted procedure, maternity care and delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59899", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4307820, + "CONCEPT_NAME" : "Unplanned pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "83074005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4059985, + "CONCEPT_NAME" : "Unplanned pregnancy unknown if child is wanted", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169568001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4113986, + "CONCEPT_NAME" : "Unspecified abortion complete", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "198793004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4113983, + "CONCEPT_NAME" : "Unspecified abortion incomplete", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "198781008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004742, + "CONCEPT_NAME" : "Unspecified instrumental delivery", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72.9", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "3-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4113036, + "CONCEPT_NAME" : "Unspecified legal abortion with no mention of complication", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "198702003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4112954, + "CONCEPT_NAME" : "Unspecified spontaneous abortion without mention of complication", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "198642002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 79091, + "CONCEPT_NAME" : "Unstable lie", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86356004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 79889, + "CONCEPT_NAME" : "Unstable lie - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199344003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 72374, + "CONCEPT_NAME" : "Unstable lie with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199345002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4239301, + "CONCEPT_NAME" : "Unwanted pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "58532003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40483205, + "CONCEPT_NAME" : "Urea, electrolytes and glucose measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "443746006", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4151214, + "CONCEPT_NAME" : "Uremia following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "28196006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4129178, + "CONCEPT_NAME" : "Urethra injury - obstetric", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237329006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4289453, + "CONCEPT_NAME" : "Urinalysis, glucose, qualitative", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "69376001", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2212169, + "CONCEPT_NAME" : "Urinalysis; qualitative or semiquantitative, except immunoassays", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "81005", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 46269813, + "CONCEPT_NAME" : "Urinary tract infection due to incomplete miscarriage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10812041000119103", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4062569, + "CONCEPT_NAME" : "Urinary tract infection following delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199111004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4242401, + "CONCEPT_NAME" : "Urinary tract infection following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "38176009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4146482, + "CONCEPT_NAME" : "Urinary tract infection in pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "307534009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4055426, + "CONCEPT_NAME" : "Urine chorionic gonadotrophin measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "167376008", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4192542, + "CONCEPT_NAME" : "Urine clinitest", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "391480003", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4151414, + "CONCEPT_NAME" : "Urine dipstick for glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "269879003", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4055970, + "CONCEPT_NAME" : "Urine glucose chemical titer measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "167523004", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4055823, + "CONCEPT_NAME" : "Urine glucose test = +", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "167264005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4042238, + "CONCEPT_NAME" : "Urine glucose test = ++", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "167265006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4042239, + "CONCEPT_NAME" : "Urine glucose test = +++", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "167266007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4055289, + "CONCEPT_NAME" : "Urine glucose test = ++++", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "167267003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4055822, + "CONCEPT_NAME" : "Urine glucose test negative", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "167261002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4055288, + "CONCEPT_NAME" : "Urine glucose test = trace", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "167262009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4055954, + "CONCEPT_NAME" : "Urine HCG 24 hour assay", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "167391005", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37392365, + "CONCEPT_NAME" : "Urine pregnancy test", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1003161000000106", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Observable Entity" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4055285, + "CONCEPT_NAME" : "Urine pregnancy test", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "167252002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2212173, + "CONCEPT_NAME" : "Urine pregnancy test, by visual color comparison methods", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "81025", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014769, + "CONCEPT_NAME" : "Urine pregnancy test, by visual color comparison methods", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "104405006", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4041878, + "CONCEPT_NAME" : "Urine pregnancy test positive", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "167256004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4149386, + "CONCEPT_NAME" : "Urine screening for glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "268556000", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4174400, + "CONCEPT_NAME" : "Urticaria neonatorum", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "4244005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4170107, + "CONCEPT_NAME" : "US obstetric doppler", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "418090003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060623, + "CONCEPT_NAME" : "US obstetric scan abnormal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169222003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060622, + "CONCEPT_NAME" : "US obstetric scan normal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169221005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061129, + "CONCEPT_NAME" : "US obstetric scan requested", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169220006", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061130, + "CONCEPT_NAME" : "US scan - fetal cephalometry", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169224002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4059697, + "CONCEPT_NAME" : "US scan - fetal maturity", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169225001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4254201, + "CONCEPT_NAME" : "Uterine contraction monitoring using intrauterine pressure catheter", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "408810006", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110338, + "CONCEPT_NAME" : "Uterine evacuation and curettage for hydatidiform mole", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59870", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4064145, + "CONCEPT_NAME" : "Uterine evacuation and curettage of hydatidiform mole", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "215192006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4053158, + "CONCEPT_NAME" : "Uterine incoordination, first degree", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "23508005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4286205, + "CONCEPT_NAME" : "Uterine incoordination, second degree", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6891008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 197938, + "CONCEPT_NAME" : "Uterine inertia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26158002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45757158, + "CONCEPT_NAME" : "Uterine laceration during delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10760261000119106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 194101, + "CONCEPT_NAME" : "Uterine size for dates discrepancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "430933008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3023791, + "CONCEPT_NAME" : "Uterus Fundal height Tape measure", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "11881-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Clinical Observation" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4128172, + "CONCEPT_NAME" : "Uterus involuted", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "289752004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4127208, + "CONCEPT_NAME" : "Uterus involuting", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "289751006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44790180, + "CONCEPT_NAME" : "Vacuum aspiration of products of conception from uterus using flexible cannula", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "229761000000107", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44790181, + "CONCEPT_NAME" : "Vacuum aspiration of products of conception from uterus using rigid cannula", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "229801000000102", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4075171, + "CONCEPT_NAME" : "Vacuum delivery before full dilation of cervix", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177175002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004729, + "CONCEPT_NAME" : "Vacuum extraction with episiotomy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72.71", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442069, + "CONCEPT_NAME" : "Vacuum extractor delivery - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200138003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 193544, + "CONCEPT_NAME" : "Vaginal abnormality - baby delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "267240008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37109810, + "CONCEPT_NAME" : "Vaginal bleeding complicating early pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "723665008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4228344, + "CONCEPT_NAME" : "Vaginal cesarean section", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "89053004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4331179, + "CONCEPT_NAME" : "Vaginal delivery, medical personnel present", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "22633006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44784097, + "CONCEPT_NAME" : "Vaginal delivery of fetus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "700000006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110320, + "CONCEPT_NAME" : "Vaginal delivery only, after previous cesarean delivery (with or without episiotomy and/or forceps)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59612", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110321, + "CONCEPT_NAME" : "Vaginal delivery only, after previous cesarean delivery (with or without episiotomy and/or forceps); including postpartum care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59614", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110308, + "CONCEPT_NAME" : "Vaginal delivery only (with or without episiotomy and/or forceps)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59409", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110309, + "CONCEPT_NAME" : "Vaginal delivery only (with or without episiotomy and/or forceps); including postpartum care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59410", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4167018, + "CONCEPT_NAME" : "Vaginal delivery with forceps including postpartum care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45718005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4145316, + "CONCEPT_NAME" : "Vaginal show", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "268471004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4096535, + "CONCEPT_NAME" : "Vaginal tear resulting from childbirth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "249220002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4147415, + "CONCEPT_NAME" : "Varicose veins of genitalia in puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "308135003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442290, + "CONCEPT_NAME" : "Varicose veins of legs complicating pregnancy AND/OR puerperium", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "5626004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441644, + "CONCEPT_NAME" : "Varicose veins of legs in pregnancy and the puerperium", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "200204002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442059, + "CONCEPT_NAME" : "Varicose veins of legs in pregnancy and the puerperium - delivered", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "200206000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434712, + "CONCEPT_NAME" : "Varicose veins of legs in pregnancy and the puerperium with antenatal complication", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "200208004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4143292, + "CONCEPT_NAME" : "Varicose veins of legs in the puerperium", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "308134004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443242, + "CONCEPT_NAME" : "Varicose veins of perineum and vulva in pregnancy and the puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "267282007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435610, + "CONCEPT_NAME" : "Varicose veins of perineum and vulva in pregnancy and the puerperium - delivered", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "200215007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441929, + "CONCEPT_NAME" : "Varicose veins of perineum and vulva in pregnancy and the puerperium with antenatal complication", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "200217004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432701, + "CONCEPT_NAME" : "Varicose veins of perineum and vulva in pregnancy and the puerperium with postnatal complication", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "200218009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4147395, + "CONCEPT_NAME" : "Varicose veins of vagina in puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "308187004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435609, + "CONCEPT_NAME" : "Vasa previa - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199895009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435021, + "CONCEPT_NAME" : "Vasa previa with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199896005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 321367, + "CONCEPT_NAME" : "Vascular lesions of cord - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199900008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 315884, + "CONCEPT_NAME" : "Vascular lesions of cord with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199901007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4300078, + "CONCEPT_NAME" : "Velamentous insertion of umbilical cord", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "77278008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440158, + "CONCEPT_NAME" : "Venereal disease in mother complicating pregnancy, childbirth AND/OR puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "27075004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 313543, + "CONCEPT_NAME" : "Venous complication of pregnancy and/or puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "267280004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530951, + "CONCEPT_NAME" : "Venous complication of puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609497003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4009180, + "CONCEPT_NAME" : "Venous thrombosis in puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "111458008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4079858, + "CONCEPT_NAME" : "Very low birth weight infant", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276611006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435925, + "CONCEPT_NAME" : "Very premature - less than 1000g or less than 28 weeks", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "268817004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4149523, + "CONCEPT_NAME" : "Very preterm maturity of infant", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "268868001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4129027, + "CONCEPT_NAME" : "Viable fetus in abdominal pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237253003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435604, + "CONCEPT_NAME" : "Viral disease in mother complicating pregnancy, childbirth AND/OR puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "31516002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42742355, + "CONCEPT_NAME" : "VKORC1 (vitamin K epoxide reductase complex, subunit 1) (eg, warfarin metabolism), gene analysis, common variant(s) (eg, -1639G>A, c.173+1000C>T)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "81355", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 35625971, + "CONCEPT_NAME" : "Vomiting during third trimester of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "769087009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4169915, + "CONCEPT_NAME" : "Vomiting in newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48000002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440785, + "CONCEPT_NAME" : "Vomiting of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90325002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40525252, + "CONCEPT_NAME" : "[V]Other specified antenatal screening", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "315975002", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40519557, + "CONCEPT_NAME" : "[V]Other unwanted pregnancy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "316385002", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40524819, + "CONCEPT_NAME" : "[V]Postpartum care and examination", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "315919003", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40517216, + "CONCEPT_NAME" : "[V]Pregnancy examination and test", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "308165008", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40524802, + "CONCEPT_NAME" : "[V]Pregnant state, incidental", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "315903005", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443246, + "CONCEPT_NAME" : "Vulval abnormality - baby delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "267247006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441087, + "CONCEPT_NAME" : "Vulval and/or perineal hematoma during delivery - delivered", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "199944006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438214, + "CONCEPT_NAME" : "Vulval and/or perineal hematoma during delivery with postnatal problem", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "199945007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4071599, + "CONCEPT_NAME" : "Vulval hematoma due to birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206244002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4031282, + "CONCEPT_NAME" : "Vulval hematoma during delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10950002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4091198, + "CONCEPT_NAME" : "Vulval hematoma in labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "249217005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4034153, + "CONCEPT_NAME" : "Vulval obstetric varicose veins", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "237346009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40525253, + "CONCEPT_NAME" : "[V]Unspecified antenatal screening", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "315976001", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40524805, + "CONCEPT_NAME" : "[V]Unspecified pregnant state", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "315906002", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4131031, + "CONCEPT_NAME" : "Ward urine dip stick testing for sugar", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26542009", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4071632, + "CONCEPT_NAME" : "Water birth delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177185001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4132649, + "CONCEPT_NAME" : "Well child visit", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "410620009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4259640, + "CONCEPT_NAME" : "Well child visit, 10 years", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "410642005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4132657, + "CONCEPT_NAME" : "Well child visit, 11 years", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "410643000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4256500, + "CONCEPT_NAME" : "Well child visit, 12 month", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "410629005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4132658, + "CONCEPT_NAME" : "Well child visit, 12 years", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "410644006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4132659, + "CONCEPT_NAME" : "Well child visit, 13 years", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "410645007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4259641, + "CONCEPT_NAME" : "Well child visit, 14 years", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "410646008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4259638, + "CONCEPT_NAME" : "Well child visit, 15 month", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "410631001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4256502, + "CONCEPT_NAME" : "Well child visit, 15 years", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "410647004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4253755, + "CONCEPT_NAME" : "Well child visit, 16 years", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "410648009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4259642, + "CONCEPT_NAME" : "Well child visit, 17 years", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "410649001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4256501, + "CONCEPT_NAME" : "Well child visit, 18 month", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "410632008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4253756, + "CONCEPT_NAME" : "Well child visit, 18 years", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "410650001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4256497, + "CONCEPT_NAME" : "Well child visit, 2 month", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "410624000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4256496, + "CONCEPT_NAME" : "Well child visit, 2 week", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "410623006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4259639, + "CONCEPT_NAME" : "Well child visit, 2 years", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "410633003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4253753, + "CONCEPT_NAME" : "Well child visit, 3 years", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "410634009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4256498, + "CONCEPT_NAME" : "Well child visit, 4 month", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "410626003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4132652, + "CONCEPT_NAME" : "Well child visit, 4 years", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "410636006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4132653, + "CONCEPT_NAME" : "Well child visit, 5 years", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "410637002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4253752, + "CONCEPT_NAME" : "Well child visit, 6 month", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "410627007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4132654, + "CONCEPT_NAME" : "Well child visit, 6 years", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "410638007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4253754, + "CONCEPT_NAME" : "Well child visit, 7 years", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "410639004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4132655, + "CONCEPT_NAME" : "Well child visit, 8 years", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "410640002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4256499, + "CONCEPT_NAME" : "Well child visit, 9 month", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "410628002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4132656, + "CONCEPT_NAME" : "Well child visit, 9 years", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "410641003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4259636, + "CONCEPT_NAME" : "Well child visit, newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "410621008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 765764, + "CONCEPT_NAME" : "Well child visit, newborn 8 to 28 days old", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "446381000124104", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 763782, + "CONCEPT_NAME" : "Well child visit, newborn less than 8 days old", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "446301000124108", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4010343, + "CONCEPT_NAME" : "Well female newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "102502005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4010841, + "CONCEPT_NAME" : "Well male newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "102501003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4010843, + "CONCEPT_NAME" : "Well premature female newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "102505007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4010842, + "CONCEPT_NAME" : "Well premature male newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "102504006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4010344, + "CONCEPT_NAME" : "Well premature newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "102503000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 765794, + "CONCEPT_NAME" : "White or yellow-green tinged lochia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "4961000124100", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40394878, + "CONCEPT_NAME" : "[X]Delivery", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "200548008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40514773, + "CONCEPT_NAME" : "[X]Infection of cesarian section wound following delivery", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "309743009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40388780, + "CONCEPT_NAME" : "[X]Mental and behavioral disorders associated with the puerperium, not elsewhere classified", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "192474006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40356741, + "CONCEPT_NAME" : "[X]Mild mental and behavioral disorders associated with the puerperium, not elsewhere classified", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "268725005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40394902, + "CONCEPT_NAME" : "[X]Vaginitis following delivery", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "200570006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4020897, + "CONCEPT_NAME" : "Zona drilling", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "225248004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4127105, + "CONCEPT_NAME" : "Zygote intrafallopian transfer", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "236914009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444098, + "CONCEPT_NAME" : "Gestation period, 40 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46230007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 62, + "name" : "Spontaneous abortion (SA)", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 436477, + "CONCEPT_NAME" : "Abnormal products of conception", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "39804004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444365, + "CONCEPT_NAME" : "Abortion", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "70317007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42597053, + "CONCEPT_NAME" : "Abortion associated with Equine arteritis virus infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "318481000009103", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED Veterinary", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42597052, + "CONCEPT_NAME" : "Abortion associated with Equine herpesvirus infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "318471000009100", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED Veterinary", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42597051, + "CONCEPT_NAME" : "Abortion associated with umbilical torsion", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "318461000009109", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED Veterinary", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 201076, + "CONCEPT_NAME" : "Abortion complicated by damage to pelvic organs AND/OR tissues", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "373908001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 197612, + "CONCEPT_NAME" : "Abortion complicated by delayed AND/OR excessive hemorrhage", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "111426003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438812, + "CONCEPT_NAME" : "Abortion complicated by genital-pelvic infection", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "373891000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 195319, + "CONCEPT_NAME" : "Abortion complicated by renal failure", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "10123006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42599848, + "CONCEPT_NAME" : "Abortion due to Brucella canis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "360051000009101", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED Veterinary", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2721147, + "CONCEPT_NAME" : "ABORTION FOR MATERNAL INDICATION", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "S2262", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2784560, + "CONCEPT_NAME" : "Abortion of Products of Conception, Abortifacient, Via Natural or Artificial Opening", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10A07ZX", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD10PCS", + "CONCEPT_CLASS_ID" : "ICD10PCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2784559, + "CONCEPT_NAME" : "Abortion of Products of Conception, Laminaria, Via Natural or Artificial Opening", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10A07ZW", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD10PCS", + "CONCEPT_CLASS_ID" : "ICD10PCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2784555, + "CONCEPT_NAME" : "Abortion of Products of Conception, Open Approach", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10A00ZZ", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD10PCS", + "CONCEPT_CLASS_ID" : "ICD10PCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2784556, + "CONCEPT_NAME" : "Abortion of Products of Conception, Percutaneous Approach", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10A03ZZ", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD10PCS", + "CONCEPT_CLASS_ID" : "ICD10PCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2784557, + "CONCEPT_NAME" : "Abortion of Products of Conception, Percutaneous Endoscopic Approach", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10A04ZZ", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD10PCS", + "CONCEPT_CLASS_ID" : "ICD10PCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2784558, + "CONCEPT_NAME" : "Abortion of Products of Conception, Vacuum, Via Natural or Artificial Opening", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10A07Z6", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD10PCS", + "CONCEPT_CLASS_ID" : "ICD10PCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2784561, + "CONCEPT_NAME" : "Abortion of Products of Conception, Via Natural or Artificial Opening", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10A07ZZ", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD10PCS", + "CONCEPT_CLASS_ID" : "ICD10PCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2784562, + "CONCEPT_NAME" : "Abortion of Products of Conception, Via Natural or Artificial Opening Endoscopic", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10A08ZZ", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD10PCS", + "CONCEPT_CLASS_ID" : "ICD10PCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440776, + "CONCEPT_NAME" : "Abortion with complication", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "371332008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440454, + "CONCEPT_NAME" : "Abortion without complication", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "51830007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42739743, + "CONCEPT_NAME" : "Anesthesia for abortion procedures (Deprecated)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "01964", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2101811, + "CONCEPT_NAME" : "Anesthesia for incomplete or missed abortion procedures", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "01965", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2101812, + "CONCEPT_NAME" : "Anesthesia for induced abortion procedures", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "01966", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004526, + "CONCEPT_NAME" : "Aspiration curettage following delivery or abortion", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "69.52", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4212941, + "CONCEPT_NAME" : "Aspiration curettage of uterus for termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "391897002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004525, + "CONCEPT_NAME" : "Aspiration curettage of uterus for termination of pregnancy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "69.51", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4028644, + "CONCEPT_NAME" : "Biochemical pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237243004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4262136, + "CONCEPT_NAME" : "Blighted ovum", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "35999006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4261479, + "CONCEPT_NAME" : "Carneous mole", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "44979007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40482050, + "CONCEPT_NAME" : "Chemical pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "445086005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437046, + "CONCEPT_NAME" : "Complete abortion", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "69124005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439085, + "CONCEPT_NAME" : "Complete inevitable miscarriage complicated by delayed or excessive hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "307735008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441629, + "CONCEPT_NAME" : "Complete inevitable miscarriage complicated by embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "307750004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441921, + "CONCEPT_NAME" : "Complete inevitable miscarriage complicated by genital tract and pelvic infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "307734007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4146774, + "CONCEPT_NAME" : "Complete inevitable miscarriage without complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "307738005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441073, + "CONCEPT_NAME" : "Complete legal termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "267194005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438196, + "CONCEPT_NAME" : "Complete legal termination of pregnancy with delayed or excessive hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198719001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40318618, + "CONCEPT_NAME" : "Complete miscarriage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "156073000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441910, + "CONCEPT_NAME" : "Complete miscarriage with damage to pelvic organs or tissues", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198657009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432682, + "CONCEPT_NAME" : "Complete miscarriage with delayed or excessive hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198656000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441632, + "CONCEPT_NAME" : "Complete miscarriage with embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198663000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435318, + "CONCEPT_NAME" : "Complete miscarriage with genital tract or pelvic infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198655001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435000, + "CONCEPT_NAME" : "Complete miscarriage with metabolic disorder", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198660002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 436742, + "CONCEPT_NAME" : "Complete miscarriage with renal failure", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198659007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438805, + "CONCEPT_NAME" : "Complete miscarriage with shock", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198661003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4113352, + "CONCEPT_NAME" : "Complete spontaneous abortion NOS", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "198667004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45757769, + "CONCEPT_NAME" : "Continuing triplet pregnancy after spontaneous abortion of one or more fetuses", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36801000119105", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42537759, + "CONCEPT_NAME" : "Delayed hemorrhage due to and following miscarriage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "737318003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4114265, + "CONCEPT_NAME" : "Delayed or excessive hemorrhage following abortive pregnancy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "198827002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4149472, + "CONCEPT_NAME" : "Digital evacuation of retained products of conception", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "310603006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4106559, + "CONCEPT_NAME" : "Dilation and curettage for termination of pregnancy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "29682007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004489, + "CONCEPT_NAME" : "Dilation and curettage for termination of pregnancy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "69.01", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4168396, + "CONCEPT_NAME" : "Dilation of cervix uteri and curettage for termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "274973002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4138740, + "CONCEPT_NAME" : "Dilation of cervix uteri and curettage of products of conception from uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "265062002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4074867, + "CONCEPT_NAME" : "Dilation of cervix uteri and curettage of uterus for removal of missed miscarriage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "176833006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4074297, + "CONCEPT_NAME" : "Dilation of cervix uteri and vacuum aspiration of products of conception from uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "176827002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42537769, + "CONCEPT_NAME" : "Disorder of vein following miscarriage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "737331008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4113994, + "CONCEPT_NAME" : "Endometritis following abortive pregnancy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "198820000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42573076, + "CONCEPT_NAME" : "Enzootic abortion", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "352191000009102", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED Veterinary", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4032621, + "CONCEPT_NAME" : "Evacuation of retained product of conception", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "236883005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4170151, + "CONCEPT_NAME" : "Evacuation of uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "275166002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37206231, + "CONCEPT_NAME" : "Excessive hemorrhage due to and following illegally induced termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "785872000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37206226, + "CONCEPT_NAME" : "Excessive hemorrhage due to and following induced termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "785867009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37206230, + "CONCEPT_NAME" : "Excessive hemorrhage due to and following legally induced termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "785871007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4147858, + "CONCEPT_NAME" : "Expression of retained products of conception", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "310602001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4257043, + "CONCEPT_NAME" : "Extra-amniotic termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "408840008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44513450, + "CONCEPT_NAME" : "Extraction of menses", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "Q11.4", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "OPCS4", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4017134, + "CONCEPT_NAME" : "Failed attempted termination of pregnancy with amniotic fluid embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "11454006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 194694, + "CONCEPT_NAME" : "Failed attempted termination of pregnancy with complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59919008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4281684, + "CONCEPT_NAME" : "Failed attempted termination of pregnancy with urinary tract infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "66892003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 75605, + "CONCEPT_NAME" : "Fetal death, affecting management of mother", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14022007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 436228, + "CONCEPT_NAME" : "Fetal death due to termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "67313008", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Event" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110292, + "CONCEPT_NAME" : "Hysterotomy, abdominal (eg, for hydatidiform mole, abortion)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59100", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4082412, + "CONCEPT_NAME" : "Hysterotomy and termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "18302006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444048, + "CONCEPT_NAME" : "Illegal termination of pregnancy complicated by damage to pelvic organs and/or tissues", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "38784004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 193821, + "CONCEPT_NAME" : "Illegal termination of pregnancy complicated by embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26743002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439400, + "CONCEPT_NAME" : "Illegal termination of pregnancy complicated by genital-pelvic infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "373902000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443705, + "CONCEPT_NAME" : "Illegal termination of pregnancy complicated by metabolic disorder", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "18684002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 195600, + "CONCEPT_NAME" : "Illegal termination of pregnancy complicated by renal failure", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "8996006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442596, + "CONCEPT_NAME" : "Illegal termination of pregnancy complicated by shock", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "61752008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439325, + "CONCEPT_NAME" : "Illegal termination of pregnancy, incomplete", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198743003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4143190, + "CONCEPT_NAME" : "Illegal termination of pregnancy with acute renal failure", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "33561005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4138267, + "CONCEPT_NAME" : "Illegal termination of pregnancy with afibrinogenemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "3230006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4185440, + "CONCEPT_NAME" : "Illegal termination of pregnancy with air embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "44101005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4303980, + "CONCEPT_NAME" : "Illegal termination of pregnancy with amniotic fluid embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "38905006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4066227, + "CONCEPT_NAME" : "Illegal termination of pregnancy with blood-clot embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "21604008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4182549, + "CONCEPT_NAME" : "Illegal termination of pregnancy with cardiac arrest AND/OR failure", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "54529009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4223627, + "CONCEPT_NAME" : "Illegal termination of pregnancy with cerebral anoxia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40405003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 436169, + "CONCEPT_NAME" : "Illegal termination of pregnancy with complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "74978008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4264914, + "CONCEPT_NAME" : "Illegal termination of pregnancy with defibrination syndrome", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "61810006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4101477, + "CONCEPT_NAME" : "Illegal termination of pregnancy with electrolyte imbalance", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25404008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4023781, + "CONCEPT_NAME" : "Illegal termination of pregnancy with endometritis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "195005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4107907, + "CONCEPT_NAME" : "Illegal termination of pregnancy with fat embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "29995000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4323434, + "CONCEPT_NAME" : "Illegal termination of pregnancy with intravascular hemolysis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "70823006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4180859, + "CONCEPT_NAME" : "Illegal termination of pregnancy with laceration of bladder", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "53247006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4066994, + "CONCEPT_NAME" : "Illegal termination of pregnancy with laceration of bowel", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "17335003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4105762, + "CONCEPT_NAME" : "Illegal termination of pregnancy with laceration of broad ligament", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "29583006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4077275, + "CONCEPT_NAME" : "Illegal termination of pregnancy with laceration of cervix", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "18872002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4025828, + "CONCEPT_NAME" : "Illegal termination of pregnancy with laceration of periurethral tissue", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "19564003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4229716, + "CONCEPT_NAME" : "Illegal termination of pregnancy with laceration of uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40500006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4249728, + "CONCEPT_NAME" : "Illegal termination of pregnancy with laceration of vagina", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "73280003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4266243, + "CONCEPT_NAME" : "Illegal termination of pregnancy with oliguria", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6134000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4305348, + "CONCEPT_NAME" : "Illegal termination of pregnancy with parametritis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "82204006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4234979, + "CONCEPT_NAME" : "Illegal termination of pregnancy with pelvic peritonitis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90450000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4197900, + "CONCEPT_NAME" : "Illegal termination of pregnancy with perforation of bladder", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80438008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4051784, + "CONCEPT_NAME" : "Illegal termination of pregnancy with perforation of bowel", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "23401002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4195243, + "CONCEPT_NAME" : "Illegal termination of pregnancy with perforation of broad ligament", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6802007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4224143, + "CONCEPT_NAME" : "Illegal termination of pregnancy with perforation of cervix", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84143004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4239192, + "CONCEPT_NAME" : "Illegal termination of pregnancy with perforation of periurethral tissue", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "68189005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4296872, + "CONCEPT_NAME" : "Illegal termination of pregnancy with perforation of uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "77099001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4103148, + "CONCEPT_NAME" : "Illegal termination of pregnancy with perforation of vagina", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25519006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4143018, + "CONCEPT_NAME" : "Illegal termination of pregnancy with postoperative shock", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "34701001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4206453, + "CONCEPT_NAME" : "Illegal termination of pregnancy with pulmonary embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55589000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4195297, + "CONCEPT_NAME" : "Illegal termination of pregnancy with renal tubular necrosis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "4451004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4318662, + "CONCEPT_NAME" : "Illegal termination of pregnancy with salpingitis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "22046002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4313005, + "CONCEPT_NAME" : "Illegal termination of pregnancy with salpingo-oophoritis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "8670007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4034753, + "CONCEPT_NAME" : "Illegal termination of pregnancy with sepsis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "11373009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4324965, + "CONCEPT_NAME" : "Illegal termination of pregnancy with septic embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "71362000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4219608, + "CONCEPT_NAME" : "Illegal termination of pregnancy with septic shock", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "82338001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4183557, + "CONCEPT_NAME" : "Illegal termination of pregnancy with uremia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54155004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4140509, + "CONCEPT_NAME" : "Illegal termination of pregnancy with urinary tract infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "33046001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439323, + "CONCEPT_NAME" : "Incomplete illegal termination of pregnancy with damage to pelvic organs or tissues", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198746006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437929, + "CONCEPT_NAME" : "Incomplete illegal termination of pregnancy with delayed or excessive hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198745005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438487, + "CONCEPT_NAME" : "Incomplete illegal termination of pregnancy with embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198750004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439324, + "CONCEPT_NAME" : "Incomplete illegal termination of pregnancy with genital tract or pelvic infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198744009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439321, + "CONCEPT_NAME" : "Incomplete illegal termination of pregnancy with metabolic disorder", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198748007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439322, + "CONCEPT_NAME" : "Incomplete illegal termination of pregnancy with renal failure", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198747002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439320, + "CONCEPT_NAME" : "Incomplete illegal termination of pregnancy with shock", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198749004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45768717, + "CONCEPT_NAME" : "Incomplete induced termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "707207004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45771353, + "CONCEPT_NAME" : "Incomplete induced termination of pregnancy with complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16101000119107", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438211, + "CONCEPT_NAME" : "Incomplete inevitable miscarriage complicated by delayed or excessive hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "307752007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 436748, + "CONCEPT_NAME" : "Incomplete inevitable miscarriage complicated by embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "307746006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437618, + "CONCEPT_NAME" : "Incomplete inevitable miscarriage complicated by genital tract and pelvic infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "307749004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4146775, + "CONCEPT_NAME" : "Incomplete inevitable miscarriage without complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "307748007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439328, + "CONCEPT_NAME" : "Incomplete legal abortion with no mention of complication", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "198715007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37110280, + "CONCEPT_NAME" : "Incomplete legal abortion without complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "724484007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435868, + "CONCEPT_NAME" : "Incomplete legal termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "267193004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434705, + "CONCEPT_NAME" : "Incomplete legal termination of pregnancy with damage to pelvic organs or tissues", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198707009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440453, + "CONCEPT_NAME" : "Incomplete legal termination of pregnancy with delayed or excessive hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198706000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439329, + "CONCEPT_NAME" : "Incomplete legal termination of pregnancy with embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198711003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 193532, + "CONCEPT_NAME" : "Incomplete legal termination of pregnancy with genital tract or pelvic infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198705001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434095, + "CONCEPT_NAME" : "Incomplete legal termination of pregnancy with metabolic disorder", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198709007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439331, + "CONCEPT_NAME" : "Incomplete legal termination of pregnancy with renal failure", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198708004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439330, + "CONCEPT_NAME" : "Incomplete legal termination of pregnancy with shock", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198710002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40318617, + "CONCEPT_NAME" : "Incomplete miscarriage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "156072005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434689, + "CONCEPT_NAME" : "Incomplete miscarriage", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "16863000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434413, + "CONCEPT_NAME" : "Incomplete miscarriage with complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "413338003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437933, + "CONCEPT_NAME" : "Incomplete miscarriage with damage to pelvic organs or tissues", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198646004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440460, + "CONCEPT_NAME" : "Incomplete miscarriage with delayed or excessive hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198645000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437045, + "CONCEPT_NAME" : "Incomplete miscarriage with embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198650006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 195317, + "CONCEPT_NAME" : "Incomplete miscarriage with genital tract or pelvic infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198644001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432689, + "CONCEPT_NAME" : "Incomplete miscarriage with metabolic disorder", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198648003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439688, + "CONCEPT_NAME" : "Incomplete miscarriage with renal failure", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198647008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441631, + "CONCEPT_NAME" : "Incomplete miscarriage with shock", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198649006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42535215, + "CONCEPT_NAME" : "Incomplete spontaneous abortion due to hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16111000119105", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44805020, + "CONCEPT_NAME" : "Incomplete termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "749781000000109", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2721146, + "CONCEPT_NAME" : "Induced abortion, 17 to 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "S2260", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2721148, + "CONCEPT_NAME" : "Induced abortion, 25 to 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "S2265", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2721149, + "CONCEPT_NAME" : "Induced abortion, 29 to 31 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "S2266", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2721150, + "CONCEPT_NAME" : "Induced abortion, 32 weeks or greater", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "S2267", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110331, + "CONCEPT_NAME" : "Induced abortion, by 1 or more intra-amniotic injections (amniocentesis-injections), including hospital admission and visits, delivery of fetus and secundines", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59850", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110332, + "CONCEPT_NAME" : "Induced abortion, by 1 or more intra-amniotic injections (amniocentesis-injections), including hospital admission and visits, delivery of fetus and secundines; with dilation and curettage and/or evacuation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59851", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110333, + "CONCEPT_NAME" : "Induced abortion, by 1 or more intra-amniotic injections (amniocentesis-injections), including hospital admission and visits, delivery of fetus and secundines; with hysterotomy (failed intra-amniotic injection)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59852", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110334, + "CONCEPT_NAME" : "Induced abortion, by 1 or more vaginal suppositories (eg, prostaglandin) with or without cervical dilation (eg, laminaria), including hospital admission and visits, delivery of fetus and secundines", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59855", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110335, + "CONCEPT_NAME" : "Induced abortion, by 1 or more vaginal suppositories (eg, prostaglandin) with or without cervical dilation (eg, laminaria), including hospital admission and visits, delivery of fetus and secundines; with dilation and curettage and/or evacuation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59856", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110336, + "CONCEPT_NAME" : "Induced abortion, by 1 or more vaginal suppositories (eg, prostaglandin) with or without cervical dilation (eg, laminaria), including hospital admission and visits, delivery of fetus and secundines; with hysterotomy (failed medical evacuation)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59857", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110329, + "CONCEPT_NAME" : "Induced abortion, by dilation and curettage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59840", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110330, + "CONCEPT_NAME" : "Induced abortion, by dilation and evacuation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59841", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37018340, + "CONCEPT_NAME" : "Induced termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "714812005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530913, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by acute necrosis of liver", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609454008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530914, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by acute renal failure", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609455009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530928, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by acute renal failure with oliguria", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609472002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530915, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by afibrinogenemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609456005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530916, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by air embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609457001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43531712, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by amniotic fluid embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609458006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530957, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by bladder damage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609503006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530917, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by blood-clot embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609459003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530958, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by bowel damage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609504000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530959, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by broad ligament damage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609505004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530960, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by cardiac arrest", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609506003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530918, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by cardiac arrest and/or failure", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "609460008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530961, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by cardiac failure", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609507007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530919, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by cerebral anoxia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609461007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530962, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by cervix damage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609508002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530908, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by damage to pelvic organs and/or tissues", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609447002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530920, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by defibrination syndrome", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609462000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43531713, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by electrolyte imbalance", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609463005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43531710, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609449004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530921, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by endometritis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609464004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530922, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by fat embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609465003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530910, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by genital-pelvic infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609450004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530964, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by infectious disease", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609510000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530923, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by intravascular hemolysis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609466002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530952, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by laceration of bladder", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609498008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530924, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by laceration of bowel", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609467006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530925, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by laceration of broad ligament", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609468001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43531714, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by laceration of cervix", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609469009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530953, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by laceration of periurethral tissue", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609499000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530926, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by laceration of uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609470005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530927, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by laceration of vagina", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609471009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530911, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by metabolic disorder", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609451000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530966, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by oliguria", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609512008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530929, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by parametritis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609473007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530948, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by pelvic disorder", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609494005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43531715, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by pelvic peritonitis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609474001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530954, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by perforation of bladder", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609500009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530930, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by perforation of bowel", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609475000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530955, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by perforation of broad ligament", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609501008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530931, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by perforation of cervix", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609476004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530956, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by perforation of periurethral tissue", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609502001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530932, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by perforation of uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609477008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530933, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by perforation of vagina", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609478003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530965, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by periurethral tissue damage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609511001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43531716, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by postoperative shock", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609479006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530934, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by pulmonary embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609480009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530912, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by renal failure", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609452007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530935, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by renal tubular necrosis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609482001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530936, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by salpingitis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609483006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530937, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by salpingo-oophoritis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609484000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530939, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by sepsis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609485004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530940, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by septic embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609486003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530941, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by septic shock", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609487007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43531711, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by shock", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609453002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530943, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by soap embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609489005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530947, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by tetanus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609493004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530944, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by uremia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609490001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530945, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by urinary tract infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609491002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530967, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by uterus damage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609513003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530968, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by vaginal damage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609514009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4200986, + "CONCEPT_NAME" : "Induced termination of pregnancy following intra-amniotic injection with hysterotomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "52660002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44784128, + "CONCEPT_NAME" : "Induced termination of pregnancy under unsafe conditions", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "700041001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4244408, + "CONCEPT_NAME" : "Inevitable miscarriage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59363009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4146772, + "CONCEPT_NAME" : "Inevitable miscarriage complete", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "307733001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4121775, + "CONCEPT_NAME" : "Injection of amnion for termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "288045002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4112315, + "CONCEPT_NAME" : "Insertion of abortifacient suppository", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "285434006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4074301, + "CONCEPT_NAME" : "Insertion of prostaglandin abortifacient suppository", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "176854004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4071638, + "CONCEPT_NAME" : "Instrumental removal of products of conception from delivered uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177200004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4063309, + "CONCEPT_NAME" : "Intrauterine death with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199608004", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Event" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4163996, + "CONCEPT_NAME" : "Late fetal death affecting management of mother", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "399363000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4113976, + "CONCEPT_NAME" : "Legally induced abortion NOS", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "198729008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444077, + "CONCEPT_NAME" : "Legal termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "39406005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 192379, + "CONCEPT_NAME" : "Legal termination of pregnancy complicated by damage to pelvic organ and/or tissues", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "111431001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 197617, + "CONCEPT_NAME" : "Legal termination of pregnancy complicated by delayed and/or excessive hemorrhage", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "58071009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442346, + "CONCEPT_NAME" : "Legal termination of pregnancy complicated by embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57734001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439883, + "CONCEPT_NAME" : "Legal termination of pregnancy complicated by genital-pelvic infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "373901007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 436474, + "CONCEPT_NAME" : "Legal termination of pregnancy complicated by metabolic disorder", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "3634007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 195595, + "CONCEPT_NAME" : "Legal termination of pregnancy complicated by renal failure", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "4576001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 197333, + "CONCEPT_NAME" : "Legal termination of pregnancy complicated by shock", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "27169005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181114, + "CONCEPT_NAME" : "Legal termination of pregnancy with acute renal failure", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "52342006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4147533, + "CONCEPT_NAME" : "Legal termination of pregnancy with afibrinogenemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "30479005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4009642, + "CONCEPT_NAME" : "Legal termination of pregnancy with air embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "111432008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4098441, + "CONCEPT_NAME" : "Legal termination of pregnancy with amniotic fluid embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "27015006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4292089, + "CONCEPT_NAME" : "Legal termination of pregnancy with blood-clot embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "37787009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4025639, + "CONCEPT_NAME" : "Legal termination of pregnancy with cardiac arrest and/or failure", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "12095001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4077454, + "CONCEPT_NAME" : "Legal termination of pregnancy with cerebral anoxia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "18894005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441349, + "CONCEPT_NAME" : "Legal termination of pregnancy with complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48433002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4280224, + "CONCEPT_NAME" : "Legal termination of pregnancy with defibrination syndrome", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6647006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4214233, + "CONCEPT_NAME" : "Legal termination of pregnancy with electrolyte imbalance", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "39239006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4294829, + "CONCEPT_NAME" : "Legal termination of pregnancy with endometritis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "75947000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4328084, + "CONCEPT_NAME" : "Legal termination of pregnancy with fat embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "75825001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4046510, + "CONCEPT_NAME" : "Legal termination of pregnancy with intravascular hemolysis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12296009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4243658, + "CONCEPT_NAME" : "Legal termination of pregnancy with laceration of bladder", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59859005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4183680, + "CONCEPT_NAME" : "Legal termination of pregnancy with laceration of bowel", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "5577003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4216436, + "CONCEPT_NAME" : "Legal termination of pregnancy with laceration of broad ligament", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "41806003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4324695, + "CONCEPT_NAME" : "Legal termination of pregnancy with laceration of cervix", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7166002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4324672, + "CONCEPT_NAME" : "Legal termination of pregnancy with laceration of periurethral tissue", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "71216006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4045581, + "CONCEPT_NAME" : "Legal termination of pregnancy with laceration of uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13100007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4204231, + "CONCEPT_NAME" : "Legal termination of pregnancy with laceration of vagina", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54044001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4269450, + "CONCEPT_NAME" : "Legal termination of pregnancy with oliguria", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36473002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 436747, + "CONCEPT_NAME" : "Legal termination of pregnancy without complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "34500003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4049453, + "CONCEPT_NAME" : "Legal termination of pregnancy with parametritis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15511008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4094081, + "CONCEPT_NAME" : "Legal termination of pregnancy with pelvic peritonitis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26010008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4271203, + "CONCEPT_NAME" : "Legal termination of pregnancy with perforation of bladder", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "62888008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4184150, + "CONCEPT_NAME" : "Legal termination of pregnancy with perforation of bowel", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55933000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4198404, + "CONCEPT_NAME" : "Legal termination of pregnancy with perforation of broad ligament", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "51953009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4312358, + "CONCEPT_NAME" : "Legal termination of pregnancy with perforation of cervix", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "85652000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4296459, + "CONCEPT_NAME" : "Legal termination of pregnancy with perforation of periurethral tissue", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "76472002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4068253, + "CONCEPT_NAME" : "Legal termination of pregnancy with perforation of uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "20216003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4327321, + "CONCEPT_NAME" : "Legal termination of pregnancy with perforation of vagina", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "75013000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4058932, + "CONCEPT_NAME" : "Legal termination of pregnancy with postoperative shock", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "21280005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4178578, + "CONCEPT_NAME" : "Legal termination of pregnancy with pulmonary embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "51096002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4070939, + "CONCEPT_NAME" : "Legal termination of pregnancy with renal tubular necrosis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "20483002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4204206, + "CONCEPT_NAME" : "Legal termination of pregnancy with salpingitis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "53098006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4197681, + "CONCEPT_NAME" : "Legal termination of pregnancy with salpingo-oophoritis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "51707007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4188764, + "CONCEPT_NAME" : "Legal termination of pregnancy with sepsis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "39246002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4106892, + "CONCEPT_NAME" : "Legal termination of pregnancy with septic embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "29950007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4105063, + "CONCEPT_NAME" : "Legal termination of pregnancy with septic shock", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25691001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4225572, + "CONCEPT_NAME" : "Legal termination of pregnancy with uremia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "8468007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4245041, + "CONCEPT_NAME" : "Legal termination of pregnancy with urinary tract infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "5945005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4238207, + "CONCEPT_NAME" : "Listeria miscarriage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57420002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44807900, + "CONCEPT_NAME" : "Medical evacuation of retained products of conception using prostaglandin", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "854611000000109", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2721012, + "CONCEPT_NAME" : "Medically induced abortion by oral ingestion of medication including all associated services and supplies (e.g., patient counseling, office visits, confirmation of pregnancy by hcg, ultrasound to confirm duration of pregnancy, ultrasound to confirm com...", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "S0199", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4115153, + "CONCEPT_NAME" : "Medical termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "285409006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40487510, + "CONCEPT_NAME" : "Medical termination of pregnancy using prostaglandin", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "447972007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4067106, + "CONCEPT_NAME" : "Miscarriage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "17369002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4087102, + "CONCEPT_NAME" : "Miscarriage at 8 to 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "184339009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 192678, + "CONCEPT_NAME" : "Miscarriage complicated by damage to pelvic organs and/or tissues", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "58990004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 195594, + "CONCEPT_NAME" : "Miscarriage complicated by delayed and/or excessive hemorrhage", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "2781009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 194704, + "CONCEPT_NAME" : "Miscarriage complicated by embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43306002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437920, + "CONCEPT_NAME" : "Miscarriage complicated by genital-pelvic infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "373896005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441348, + "CONCEPT_NAME" : "Miscarriage complicated by metabolic disorder", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13384007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 193820, + "CONCEPT_NAME" : "Miscarriage complicated by renal failure", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10697004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 196746, + "CONCEPT_NAME" : "Miscarriage complicated by shock", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "34270000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4323612, + "CONCEPT_NAME" : "Miscarriage due to Brucella abortus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428508008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4051244, + "CONCEPT_NAME" : "Miscarriage due to Leptospira", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16038004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4078393, + "CONCEPT_NAME" : "Miscarriage in first trimester", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "19169002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4224646, + "CONCEPT_NAME" : "Miscarriage in second trimester", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "85116003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4167685, + "CONCEPT_NAME" : "Miscarriage in third trimester", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48485000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4224597, + "CONCEPT_NAME" : "Miscarriage with acute necrosis of liver", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40444006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4211863, + "CONCEPT_NAME" : "Miscarriage with acute renal failure", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57469000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4064536, + "CONCEPT_NAME" : "Miscarriage with afibrinogenemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "21360006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4247270, + "CONCEPT_NAME" : "Miscarriage with air embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "60265009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4003276, + "CONCEPT_NAME" : "Miscarriage with amniotic fluid embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10058006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4209126, + "CONCEPT_NAME" : "Miscarriage with blood-clot embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55976003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4175137, + "CONCEPT_NAME" : "Miscarriage with cardiac arrest and/or cardiac failure", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48739004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4047775, + "CONCEPT_NAME" : "Miscarriage with cerebral anoxia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12394009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434094, + "CONCEPT_NAME" : "Miscarriage with complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "34614007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4179796, + "CONCEPT_NAME" : "Miscarriage with defibrination syndrome", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "50770000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4274315, + "CONCEPT_NAME" : "Miscarriage with electrolyte imbalance", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64814003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4149423, + "CONCEPT_NAME" : "Miscarriage with endometritis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "30806007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4278107, + "CONCEPT_NAME" : "Miscarriage with fat embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "66131005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4170457, + "CONCEPT_NAME" : "Miscarriage with heavy bleeding", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "275421004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4180568, + "CONCEPT_NAME" : "Miscarriage with intravascular hemolysis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "53183006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4194113, + "CONCEPT_NAME" : "Miscarriage with laceration of bladder", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "39199000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4041728, + "CONCEPT_NAME" : "Miscarriage with laceration of bowel", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16714009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4309780, + "CONCEPT_NAME" : "Miscarriage with laceration of broad ligament", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "85331004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4130670, + "CONCEPT_NAME" : "Miscarriage with laceration of cervix", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "127009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4261327, + "CONCEPT_NAME" : "Miscarriage with laceration of periurethral tissue", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "44814008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4302162, + "CONCEPT_NAME" : "Miscarriage with laceration of uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7809009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4311698, + "CONCEPT_NAME" : "Miscarriage with laceration of vagina", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "85632001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4217670, + "CONCEPT_NAME" : "Miscarriage with oliguria", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72613009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 436176, + "CONCEPT_NAME" : "Miscarriage without complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "23793007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4221853, + "CONCEPT_NAME" : "Miscarriage with parametritis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "83922009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4313166, + "CONCEPT_NAME" : "Miscarriage with pelvic peritonitis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "85991008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4310654, + "CONCEPT_NAME" : "Miscarriage with perforation of bladder", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "85467007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4216342, + "CONCEPT_NAME" : "Miscarriage with perforation of bowel", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "8071005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4031837, + "CONCEPT_NAME" : "Miscarriage with perforation of broad ligament", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14136000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4253804, + "CONCEPT_NAME" : "Miscarriage with perforation of cervix", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "74369005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4200070, + "CONCEPT_NAME" : "Miscarriage with perforation of periurethral tissue", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "51954003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4049891, + "CONCEPT_NAME" : "Miscarriage with perforation of uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15809008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4339107, + "CONCEPT_NAME" : "Miscarriage with perforation of vagina", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87967003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4168445, + "CONCEPT_NAME" : "Miscarriage with postoperative shock", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "47537002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4219469, + "CONCEPT_NAME" : "Miscarriage with pulmonary embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "82153002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4001856, + "CONCEPT_NAME" : "Miscarriage with renal tubular necrosis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "11026009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4195406, + "CONCEPT_NAME" : "Miscarriage with salpingitis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7910003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4189350, + "CONCEPT_NAME" : "Miscarriage with salpingo-oophoritis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "61568004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4285746, + "CONCEPT_NAME" : "Miscarriage with sepsis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "67465009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4244261, + "CONCEPT_NAME" : "Miscarriage with septic embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59204004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4085627, + "CONCEPT_NAME" : "Miscarriage with septic shock", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "18613002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4006806, + "CONCEPT_NAME" : "Miscarriage with uremia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "11109001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4033096, + "CONCEPT_NAME" : "Miscarriage with urinary tract infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1469007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 76482, + "CONCEPT_NAME" : "Missed miscarriage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16607004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42599849, + "CONCEPT_NAME" : "Mycotic abortion", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "360061000009103", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED Veterinary", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4119975, + "CONCEPT_NAME" : "Operative termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "302375005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44513476, + "CONCEPT_NAME" : "Other specified introduction of abortifacient into uterine cavity", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "Q14.8", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "OPCS4", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4149994, + "CONCEPT_NAME" : "Readmission for abortive pregnancy (NHS codes)", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "267195006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4113503, + "CONCEPT_NAME" : "Readmission for retained products of conception, legal termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198862007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4114280, + "CONCEPT_NAME" : "Readmission for retained products of conception, spontaneous abortion", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198861000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4150401, + "CONCEPT_NAME" : "Reason for termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "310506006", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Observable Entity" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4190767, + "CONCEPT_NAME" : "Referral for termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "415262008", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4153287, + "CONCEPT_NAME" : "Removal of products of conception from fallopian tube", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "271415006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4086797, + "CONCEPT_NAME" : "Requests pregnancy termination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "184005004", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4170121, + "CONCEPT_NAME" : "Retained products after miscarriage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "275425008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37206228, + "CONCEPT_NAME" : "Secondary hemorrhage due to and following illegally induced termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "785869007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37206227, + "CONCEPT_NAME" : "Secondary hemorrhage due to and following induced termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "785868004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37206229, + "CONCEPT_NAME" : "Secondary hemorrhage due to and following legally induced termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "785870008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4150538, + "CONCEPT_NAME" : "Suction evacuation of retained products of conception", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "310604000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4297250, + "CONCEPT_NAME" : "Termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "386639001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4240605, + "CONCEPT_NAME" : "Termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57797005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43020954, + "CONCEPT_NAME" : "Termination of pregnancy after first trimester", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "472839005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530907, + "CONCEPT_NAME" : "Termination of pregnancy with complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609446006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4189561, + "CONCEPT_NAME" : "Therapeutic termination of pregnancy by aspiration curettage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "391896006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4030009, + "CONCEPT_NAME" : "Therapeutic termination of pregnancy by insertion of laminaria", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10763001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4299609, + "CONCEPT_NAME" : "Therapeutic termination of pregnancy procedure", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "386641000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110325, + "CONCEPT_NAME" : "Treatment of incomplete abortion, any trimester, completed surgically", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59812", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110326, + "CONCEPT_NAME" : "Treatment of missed abortion, completed surgically; first trimester", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59820", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110327, + "CONCEPT_NAME" : "Treatment of missed abortion, completed surgically; second trimester", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59821", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110328, + "CONCEPT_NAME" : "Treatment of septic abortion, completed surgically", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59830", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4113986, + "CONCEPT_NAME" : "Unspecified abortion complete", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "198793004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4113983, + "CONCEPT_NAME" : "Unspecified abortion incomplete", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "198781008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4113036, + "CONCEPT_NAME" : "Unspecified legal abortion with no mention of complication", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "198702003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4112954, + "CONCEPT_NAME" : "Unspecified spontaneous abortion without mention of complication", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "198642002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 46269813, + "CONCEPT_NAME" : "Urinary tract infection due to incomplete miscarriage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10812041000119103", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44790180, + "CONCEPT_NAME" : "Vacuum aspiration of products of conception from uterus using flexible cannula", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "229761000000107", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44790181, + "CONCEPT_NAME" : "Vacuum aspiration of products of conception from uterus using rigid cannula", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "229801000000102", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 63, + "name" : "Gestational age (GEST) gt than 1 week", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4015296, + "CONCEPT_NAME" : "Antenatal 12 weeks examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169712008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014149, + "CONCEPT_NAME" : "Antenatal 16 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169713003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014150, + "CONCEPT_NAME" : "Antenatal 20 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169714009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808979, + "CONCEPT_NAME" : "Antenatal 22 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861281000000109", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015141, + "CONCEPT_NAME" : "Antenatal 24 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169715005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808980, + "CONCEPT_NAME" : "Antenatal 25 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861301000000105", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014151, + "CONCEPT_NAME" : "Antenatal 30 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169717002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808981, + "CONCEPT_NAME" : "Antenatal 31 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861321000000101", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015297, + "CONCEPT_NAME" : "Antenatal 32 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169718007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015298, + "CONCEPT_NAME" : "Antenatal 34 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169719004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014434, + "CONCEPT_NAME" : "Antenatal 35 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169720005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015299, + "CONCEPT_NAME" : "Antenatal 36 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169721009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015142, + "CONCEPT_NAME" : "Antenatal 37 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169722002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014152, + "CONCEPT_NAME" : "Antenatal 38 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169723007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015300, + "CONCEPT_NAME" : "Antenatal 39 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169724001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015301, + "CONCEPT_NAME" : "Antenatal 40 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169725000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015302, + "CONCEPT_NAME" : "Antenatal 41 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169726004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014435, + "CONCEPT_NAME" : "Antenatal 42 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169727008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4178165, + "CONCEPT_NAME" : "Gestation 14 - 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428567001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181468, + "CONCEPT_NAME" : "Gestation 9- 13 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428930004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181162, + "CONCEPT_NAME" : "Gestation greater than 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429715006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4324063, + "CONCEPT_NAME" : "Gestation less than 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428566005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438542, + "CONCEPT_NAME" : "Gestation less than 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313178001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45770261, + "CONCEPT_NAME" : "Gestation less than 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "925561000000100", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4322726, + "CONCEPT_NAME" : "Gestation less than 9 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428058009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4242241, + "CONCEPT_NAME" : "Gestation period, 10 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "38039008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4174506, + "CONCEPT_NAME" : "Gestation period, 11 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "50367001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4197245, + "CONCEPT_NAME" : "Gestation period, 12 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "79992004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4266517, + "CONCEPT_NAME" : "Gestation period, 13 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "62333002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4248725, + "CONCEPT_NAME" : "Gestation period, 14 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72846000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4283690, + "CONCEPT_NAME" : "Gestation period, 15 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6678005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4049621, + "CONCEPT_NAME" : "Gestation period, 16 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15633004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4277749, + "CONCEPT_NAME" : "Gestation period, 17 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65683006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4097608, + "CONCEPT_NAME" : "Gestation period, 18 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25026004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181751, + "CONCEPT_NAME" : "Gestation period, 19 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54318006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4051642, + "CONCEPT_NAME" : "Gestation period, 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "23464008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4185780, + "CONCEPT_NAME" : "Gestation period, 21 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "41438001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4274955, + "CONCEPT_NAME" : "Gestation period, 22 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65035007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336226, + "CONCEPT_NAME" : "Gestation period, 23 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86883006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439922, + "CONCEPT_NAME" : "Gestation period, 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313179009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435640, + "CONCEPT_NAME" : "Gestation period, 25 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72544005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444023, + "CONCEPT_NAME" : "Gestation period, 26 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48688005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432430, + "CONCEPT_NAME" : "Gestation period, 27 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46906003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444461, + "CONCEPT_NAME" : "Gestation period, 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90797000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444417, + "CONCEPT_NAME" : "Gestation period, 29 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45139008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4220085, + "CONCEPT_NAME" : "Gestation period, 2 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "82118009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434484, + "CONCEPT_NAME" : "Gestation period, 30 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "71355009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433864, + "CONCEPT_NAME" : "Gestation period, 31 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64920003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442558, + "CONCEPT_NAME" : "Gestation period, 32 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7707000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441678, + "CONCEPT_NAME" : "Gestation period, 33 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "78395001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443874, + "CONCEPT_NAME" : "Gestation period, 34 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13763000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444267, + "CONCEPT_NAME" : "Gestation period, 35 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84132007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438543, + "CONCEPT_NAME" : "Gestation period, 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57907009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442355, + "CONCEPT_NAME" : "Gestation period, 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43697006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443871, + "CONCEPT_NAME" : "Gestation period, 38 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13798002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435655, + "CONCEPT_NAME" : "Gestation period, 39 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80487005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4326232, + "CONCEPT_NAME" : "Gestation period, 3 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "74952004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442769, + "CONCEPT_NAME" : "Gestation period, 41 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63503002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444067, + "CONCEPT_NAME" : "Gestation period, 42 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36428009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4195157, + "CONCEPT_NAME" : "Gestation period, 4 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "44398003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4290009, + "CONCEPT_NAME" : "Gestation period, 5 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "37005007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4313026, + "CONCEPT_NAME" : "Gestation period, 6 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86801005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4270513, + "CONCEPT_NAME" : "Gestation period, 7 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63110000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4132434, + "CONCEPT_NAME" : "Gestation period, 8 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26690008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4245908, + "CONCEPT_NAME" : "Gestation period, 9 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "931004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 762907, + "CONCEPT_NAME" : "Gestation period greater than or equal to 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "433601000124106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336958, + "CONCEPT_NAME" : "Term pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87527008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4180111, + "CONCEPT_NAME" : "Third trimester pregnancy less than 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429240000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444098, + "CONCEPT_NAME" : "Gestation period, 40 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46230007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 64, + "name" : "Gestational age (GEST) gt than 2 week", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4015296, + "CONCEPT_NAME" : "Antenatal 12 weeks examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169712008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014149, + "CONCEPT_NAME" : "Antenatal 16 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169713003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014150, + "CONCEPT_NAME" : "Antenatal 20 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169714009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808979, + "CONCEPT_NAME" : "Antenatal 22 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861281000000109", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015141, + "CONCEPT_NAME" : "Antenatal 24 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169715005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808980, + "CONCEPT_NAME" : "Antenatal 25 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861301000000105", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014151, + "CONCEPT_NAME" : "Antenatal 30 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169717002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808981, + "CONCEPT_NAME" : "Antenatal 31 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861321000000101", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015297, + "CONCEPT_NAME" : "Antenatal 32 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169718007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015298, + "CONCEPT_NAME" : "Antenatal 34 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169719004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014434, + "CONCEPT_NAME" : "Antenatal 35 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169720005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015299, + "CONCEPT_NAME" : "Antenatal 36 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169721009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015142, + "CONCEPT_NAME" : "Antenatal 37 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169722002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014152, + "CONCEPT_NAME" : "Antenatal 38 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169723007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015300, + "CONCEPT_NAME" : "Antenatal 39 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169724001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015301, + "CONCEPT_NAME" : "Antenatal 40 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169725000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015302, + "CONCEPT_NAME" : "Antenatal 41 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169726004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014435, + "CONCEPT_NAME" : "Antenatal 42 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169727008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4178165, + "CONCEPT_NAME" : "Gestation 14 - 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428567001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181468, + "CONCEPT_NAME" : "Gestation 9- 13 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428930004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181162, + "CONCEPT_NAME" : "Gestation greater than 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429715006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4324063, + "CONCEPT_NAME" : "Gestation less than 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428566005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438542, + "CONCEPT_NAME" : "Gestation less than 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313178001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45770261, + "CONCEPT_NAME" : "Gestation less than 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "925561000000100", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4322726, + "CONCEPT_NAME" : "Gestation less than 9 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428058009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4242241, + "CONCEPT_NAME" : "Gestation period, 10 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "38039008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4174506, + "CONCEPT_NAME" : "Gestation period, 11 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "50367001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4197245, + "CONCEPT_NAME" : "Gestation period, 12 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "79992004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4266517, + "CONCEPT_NAME" : "Gestation period, 13 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "62333002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4248725, + "CONCEPT_NAME" : "Gestation period, 14 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72846000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4283690, + "CONCEPT_NAME" : "Gestation period, 15 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6678005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4049621, + "CONCEPT_NAME" : "Gestation period, 16 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15633004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4277749, + "CONCEPT_NAME" : "Gestation period, 17 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65683006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4097608, + "CONCEPT_NAME" : "Gestation period, 18 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25026004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181751, + "CONCEPT_NAME" : "Gestation period, 19 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54318006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4051642, + "CONCEPT_NAME" : "Gestation period, 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "23464008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4185780, + "CONCEPT_NAME" : "Gestation period, 21 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "41438001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4274955, + "CONCEPT_NAME" : "Gestation period, 22 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65035007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336226, + "CONCEPT_NAME" : "Gestation period, 23 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86883006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439922, + "CONCEPT_NAME" : "Gestation period, 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313179009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435640, + "CONCEPT_NAME" : "Gestation period, 25 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72544005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444023, + "CONCEPT_NAME" : "Gestation period, 26 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48688005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432430, + "CONCEPT_NAME" : "Gestation period, 27 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46906003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444461, + "CONCEPT_NAME" : "Gestation period, 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90797000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444417, + "CONCEPT_NAME" : "Gestation period, 29 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45139008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434484, + "CONCEPT_NAME" : "Gestation period, 30 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "71355009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433864, + "CONCEPT_NAME" : "Gestation period, 31 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64920003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442558, + "CONCEPT_NAME" : "Gestation period, 32 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7707000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441678, + "CONCEPT_NAME" : "Gestation period, 33 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "78395001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443874, + "CONCEPT_NAME" : "Gestation period, 34 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13763000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444267, + "CONCEPT_NAME" : "Gestation period, 35 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84132007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438543, + "CONCEPT_NAME" : "Gestation period, 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57907009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442355, + "CONCEPT_NAME" : "Gestation period, 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43697006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443871, + "CONCEPT_NAME" : "Gestation period, 38 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13798002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435655, + "CONCEPT_NAME" : "Gestation period, 39 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80487005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4326232, + "CONCEPT_NAME" : "Gestation period, 3 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "74952004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442769, + "CONCEPT_NAME" : "Gestation period, 41 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63503002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444067, + "CONCEPT_NAME" : "Gestation period, 42 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36428009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4195157, + "CONCEPT_NAME" : "Gestation period, 4 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "44398003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4290009, + "CONCEPT_NAME" : "Gestation period, 5 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "37005007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4313026, + "CONCEPT_NAME" : "Gestation period, 6 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86801005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4270513, + "CONCEPT_NAME" : "Gestation period, 7 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63110000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4132434, + "CONCEPT_NAME" : "Gestation period, 8 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26690008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4245908, + "CONCEPT_NAME" : "Gestation period, 9 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "931004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 762907, + "CONCEPT_NAME" : "Gestation period greater than or equal to 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "433601000124106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336958, + "CONCEPT_NAME" : "Term pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87527008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4180111, + "CONCEPT_NAME" : "Third trimester pregnancy less than 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429240000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444098, + "CONCEPT_NAME" : "Gestation period, 40 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46230007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 65, + "name" : "Gestational age (GEST) gt than 3 week", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4015296, + "CONCEPT_NAME" : "Antenatal 12 weeks examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169712008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014149, + "CONCEPT_NAME" : "Antenatal 16 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169713003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014150, + "CONCEPT_NAME" : "Antenatal 20 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169714009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808979, + "CONCEPT_NAME" : "Antenatal 22 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861281000000109", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015141, + "CONCEPT_NAME" : "Antenatal 24 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169715005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808980, + "CONCEPT_NAME" : "Antenatal 25 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861301000000105", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014151, + "CONCEPT_NAME" : "Antenatal 30 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169717002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808981, + "CONCEPT_NAME" : "Antenatal 31 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861321000000101", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015297, + "CONCEPT_NAME" : "Antenatal 32 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169718007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015298, + "CONCEPT_NAME" : "Antenatal 34 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169719004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014434, + "CONCEPT_NAME" : "Antenatal 35 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169720005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015299, + "CONCEPT_NAME" : "Antenatal 36 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169721009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015142, + "CONCEPT_NAME" : "Antenatal 37 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169722002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014152, + "CONCEPT_NAME" : "Antenatal 38 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169723007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015300, + "CONCEPT_NAME" : "Antenatal 39 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169724001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015301, + "CONCEPT_NAME" : "Antenatal 40 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169725000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015302, + "CONCEPT_NAME" : "Antenatal 41 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169726004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014435, + "CONCEPT_NAME" : "Antenatal 42 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169727008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4178165, + "CONCEPT_NAME" : "Gestation 14 - 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428567001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181468, + "CONCEPT_NAME" : "Gestation 9- 13 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428930004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181162, + "CONCEPT_NAME" : "Gestation greater than 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429715006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4324063, + "CONCEPT_NAME" : "Gestation less than 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428566005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438542, + "CONCEPT_NAME" : "Gestation less than 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313178001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45770261, + "CONCEPT_NAME" : "Gestation less than 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "925561000000100", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4322726, + "CONCEPT_NAME" : "Gestation less than 9 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428058009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4242241, + "CONCEPT_NAME" : "Gestation period, 10 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "38039008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4174506, + "CONCEPT_NAME" : "Gestation period, 11 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "50367001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4197245, + "CONCEPT_NAME" : "Gestation period, 12 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "79992004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4266517, + "CONCEPT_NAME" : "Gestation period, 13 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "62333002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4248725, + "CONCEPT_NAME" : "Gestation period, 14 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72846000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4283690, + "CONCEPT_NAME" : "Gestation period, 15 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6678005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4049621, + "CONCEPT_NAME" : "Gestation period, 16 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15633004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4277749, + "CONCEPT_NAME" : "Gestation period, 17 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65683006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4097608, + "CONCEPT_NAME" : "Gestation period, 18 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25026004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181751, + "CONCEPT_NAME" : "Gestation period, 19 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54318006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4051642, + "CONCEPT_NAME" : "Gestation period, 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "23464008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4185780, + "CONCEPT_NAME" : "Gestation period, 21 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "41438001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4274955, + "CONCEPT_NAME" : "Gestation period, 22 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65035007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336226, + "CONCEPT_NAME" : "Gestation period, 23 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86883006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439922, + "CONCEPT_NAME" : "Gestation period, 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313179009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435640, + "CONCEPT_NAME" : "Gestation period, 25 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72544005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444023, + "CONCEPT_NAME" : "Gestation period, 26 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48688005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432430, + "CONCEPT_NAME" : "Gestation period, 27 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46906003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444461, + "CONCEPT_NAME" : "Gestation period, 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90797000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444417, + "CONCEPT_NAME" : "Gestation period, 29 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45139008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434484, + "CONCEPT_NAME" : "Gestation period, 30 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "71355009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433864, + "CONCEPT_NAME" : "Gestation period, 31 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64920003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442558, + "CONCEPT_NAME" : "Gestation period, 32 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7707000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441678, + "CONCEPT_NAME" : "Gestation period, 33 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "78395001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443874, + "CONCEPT_NAME" : "Gestation period, 34 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13763000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444267, + "CONCEPT_NAME" : "Gestation period, 35 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84132007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438543, + "CONCEPT_NAME" : "Gestation period, 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57907009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442355, + "CONCEPT_NAME" : "Gestation period, 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43697006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443871, + "CONCEPT_NAME" : "Gestation period, 38 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13798002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435655, + "CONCEPT_NAME" : "Gestation period, 39 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80487005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442769, + "CONCEPT_NAME" : "Gestation period, 41 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63503002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444067, + "CONCEPT_NAME" : "Gestation period, 42 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36428009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4195157, + "CONCEPT_NAME" : "Gestation period, 4 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "44398003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4290009, + "CONCEPT_NAME" : "Gestation period, 5 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "37005007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4313026, + "CONCEPT_NAME" : "Gestation period, 6 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86801005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4270513, + "CONCEPT_NAME" : "Gestation period, 7 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63110000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4132434, + "CONCEPT_NAME" : "Gestation period, 8 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26690008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4245908, + "CONCEPT_NAME" : "Gestation period, 9 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "931004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 762907, + "CONCEPT_NAME" : "Gestation period greater than or equal to 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "433601000124106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336958, + "CONCEPT_NAME" : "Term pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87527008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4180111, + "CONCEPT_NAME" : "Third trimester pregnancy less than 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429240000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444098, + "CONCEPT_NAME" : "Gestation period, 40 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46230007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 66, + "name" : "Gestational age (GEST) gt than 4 week", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4015296, + "CONCEPT_NAME" : "Antenatal 12 weeks examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169712008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014149, + "CONCEPT_NAME" : "Antenatal 16 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169713003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014150, + "CONCEPT_NAME" : "Antenatal 20 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169714009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808979, + "CONCEPT_NAME" : "Antenatal 22 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861281000000109", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015141, + "CONCEPT_NAME" : "Antenatal 24 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169715005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808980, + "CONCEPT_NAME" : "Antenatal 25 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861301000000105", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014151, + "CONCEPT_NAME" : "Antenatal 30 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169717002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808981, + "CONCEPT_NAME" : "Antenatal 31 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861321000000101", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015297, + "CONCEPT_NAME" : "Antenatal 32 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169718007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015298, + "CONCEPT_NAME" : "Antenatal 34 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169719004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014434, + "CONCEPT_NAME" : "Antenatal 35 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169720005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015299, + "CONCEPT_NAME" : "Antenatal 36 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169721009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015142, + "CONCEPT_NAME" : "Antenatal 37 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169722002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014152, + "CONCEPT_NAME" : "Antenatal 38 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169723007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015300, + "CONCEPT_NAME" : "Antenatal 39 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169724001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015301, + "CONCEPT_NAME" : "Antenatal 40 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169725000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015302, + "CONCEPT_NAME" : "Antenatal 41 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169726004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014435, + "CONCEPT_NAME" : "Antenatal 42 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169727008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4178165, + "CONCEPT_NAME" : "Gestation 14 - 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428567001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181468, + "CONCEPT_NAME" : "Gestation 9- 13 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428930004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181162, + "CONCEPT_NAME" : "Gestation greater than 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429715006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4324063, + "CONCEPT_NAME" : "Gestation less than 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428566005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438542, + "CONCEPT_NAME" : "Gestation less than 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313178001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45770261, + "CONCEPT_NAME" : "Gestation less than 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "925561000000100", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4322726, + "CONCEPT_NAME" : "Gestation less than 9 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428058009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4242241, + "CONCEPT_NAME" : "Gestation period, 10 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "38039008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4174506, + "CONCEPT_NAME" : "Gestation period, 11 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "50367001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4197245, + "CONCEPT_NAME" : "Gestation period, 12 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "79992004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4266517, + "CONCEPT_NAME" : "Gestation period, 13 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "62333002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4248725, + "CONCEPT_NAME" : "Gestation period, 14 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72846000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4283690, + "CONCEPT_NAME" : "Gestation period, 15 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6678005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4049621, + "CONCEPT_NAME" : "Gestation period, 16 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15633004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4277749, + "CONCEPT_NAME" : "Gestation period, 17 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65683006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4097608, + "CONCEPT_NAME" : "Gestation period, 18 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25026004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181751, + "CONCEPT_NAME" : "Gestation period, 19 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54318006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4051642, + "CONCEPT_NAME" : "Gestation period, 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "23464008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4185780, + "CONCEPT_NAME" : "Gestation period, 21 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "41438001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4274955, + "CONCEPT_NAME" : "Gestation period, 22 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65035007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336226, + "CONCEPT_NAME" : "Gestation period, 23 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86883006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439922, + "CONCEPT_NAME" : "Gestation period, 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313179009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435640, + "CONCEPT_NAME" : "Gestation period, 25 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72544005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444023, + "CONCEPT_NAME" : "Gestation period, 26 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48688005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432430, + "CONCEPT_NAME" : "Gestation period, 27 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46906003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444461, + "CONCEPT_NAME" : "Gestation period, 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90797000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444417, + "CONCEPT_NAME" : "Gestation period, 29 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45139008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434484, + "CONCEPT_NAME" : "Gestation period, 30 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "71355009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433864, + "CONCEPT_NAME" : "Gestation period, 31 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64920003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442558, + "CONCEPT_NAME" : "Gestation period, 32 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7707000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441678, + "CONCEPT_NAME" : "Gestation period, 33 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "78395001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443874, + "CONCEPT_NAME" : "Gestation period, 34 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13763000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444267, + "CONCEPT_NAME" : "Gestation period, 35 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84132007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438543, + "CONCEPT_NAME" : "Gestation period, 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57907009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442355, + "CONCEPT_NAME" : "Gestation period, 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43697006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443871, + "CONCEPT_NAME" : "Gestation period, 38 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13798002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435655, + "CONCEPT_NAME" : "Gestation period, 39 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80487005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442769, + "CONCEPT_NAME" : "Gestation period, 41 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63503002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444067, + "CONCEPT_NAME" : "Gestation period, 42 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36428009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4290009, + "CONCEPT_NAME" : "Gestation period, 5 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "37005007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4313026, + "CONCEPT_NAME" : "Gestation period, 6 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86801005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4270513, + "CONCEPT_NAME" : "Gestation period, 7 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63110000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4132434, + "CONCEPT_NAME" : "Gestation period, 8 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26690008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4245908, + "CONCEPT_NAME" : "Gestation period, 9 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "931004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 762907, + "CONCEPT_NAME" : "Gestation period greater than or equal to 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "433601000124106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336958, + "CONCEPT_NAME" : "Term pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87527008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4180111, + "CONCEPT_NAME" : "Third trimester pregnancy less than 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429240000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444098, + "CONCEPT_NAME" : "Gestation period, 40 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46230007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 67, + "name" : "Gestational age (GEST) gt than 5 week", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4015296, + "CONCEPT_NAME" : "Antenatal 12 weeks examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169712008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014149, + "CONCEPT_NAME" : "Antenatal 16 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169713003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014150, + "CONCEPT_NAME" : "Antenatal 20 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169714009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808979, + "CONCEPT_NAME" : "Antenatal 22 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861281000000109", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015141, + "CONCEPT_NAME" : "Antenatal 24 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169715005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808980, + "CONCEPT_NAME" : "Antenatal 25 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861301000000105", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014151, + "CONCEPT_NAME" : "Antenatal 30 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169717002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808981, + "CONCEPT_NAME" : "Antenatal 31 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861321000000101", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015297, + "CONCEPT_NAME" : "Antenatal 32 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169718007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015298, + "CONCEPT_NAME" : "Antenatal 34 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169719004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014434, + "CONCEPT_NAME" : "Antenatal 35 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169720005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015299, + "CONCEPT_NAME" : "Antenatal 36 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169721009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015142, + "CONCEPT_NAME" : "Antenatal 37 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169722002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014152, + "CONCEPT_NAME" : "Antenatal 38 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169723007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015300, + "CONCEPT_NAME" : "Antenatal 39 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169724001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015301, + "CONCEPT_NAME" : "Antenatal 40 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169725000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015302, + "CONCEPT_NAME" : "Antenatal 41 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169726004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014435, + "CONCEPT_NAME" : "Antenatal 42 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169727008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4178165, + "CONCEPT_NAME" : "Gestation 14 - 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428567001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181468, + "CONCEPT_NAME" : "Gestation 9- 13 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428930004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181162, + "CONCEPT_NAME" : "Gestation greater than 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429715006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4324063, + "CONCEPT_NAME" : "Gestation less than 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428566005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438542, + "CONCEPT_NAME" : "Gestation less than 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313178001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45770261, + "CONCEPT_NAME" : "Gestation less than 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "925561000000100", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4322726, + "CONCEPT_NAME" : "Gestation less than 9 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428058009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4242241, + "CONCEPT_NAME" : "Gestation period, 10 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "38039008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4174506, + "CONCEPT_NAME" : "Gestation period, 11 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "50367001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4197245, + "CONCEPT_NAME" : "Gestation period, 12 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "79992004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4266517, + "CONCEPT_NAME" : "Gestation period, 13 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "62333002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4248725, + "CONCEPT_NAME" : "Gestation period, 14 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72846000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4283690, + "CONCEPT_NAME" : "Gestation period, 15 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6678005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4049621, + "CONCEPT_NAME" : "Gestation period, 16 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15633004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4277749, + "CONCEPT_NAME" : "Gestation period, 17 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65683006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4097608, + "CONCEPT_NAME" : "Gestation period, 18 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25026004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181751, + "CONCEPT_NAME" : "Gestation period, 19 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54318006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4051642, + "CONCEPT_NAME" : "Gestation period, 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "23464008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4185780, + "CONCEPT_NAME" : "Gestation period, 21 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "41438001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4274955, + "CONCEPT_NAME" : "Gestation period, 22 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65035007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336226, + "CONCEPT_NAME" : "Gestation period, 23 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86883006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439922, + "CONCEPT_NAME" : "Gestation period, 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313179009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435640, + "CONCEPT_NAME" : "Gestation period, 25 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72544005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444023, + "CONCEPT_NAME" : "Gestation period, 26 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48688005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432430, + "CONCEPT_NAME" : "Gestation period, 27 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46906003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444461, + "CONCEPT_NAME" : "Gestation period, 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90797000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444417, + "CONCEPT_NAME" : "Gestation period, 29 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45139008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434484, + "CONCEPT_NAME" : "Gestation period, 30 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "71355009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433864, + "CONCEPT_NAME" : "Gestation period, 31 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64920003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442558, + "CONCEPT_NAME" : "Gestation period, 32 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7707000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441678, + "CONCEPT_NAME" : "Gestation period, 33 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "78395001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443874, + "CONCEPT_NAME" : "Gestation period, 34 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13763000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444267, + "CONCEPT_NAME" : "Gestation period, 35 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84132007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438543, + "CONCEPT_NAME" : "Gestation period, 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57907009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442355, + "CONCEPT_NAME" : "Gestation period, 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43697006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443871, + "CONCEPT_NAME" : "Gestation period, 38 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13798002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435655, + "CONCEPT_NAME" : "Gestation period, 39 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80487005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442769, + "CONCEPT_NAME" : "Gestation period, 41 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63503002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444067, + "CONCEPT_NAME" : "Gestation period, 42 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36428009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4313026, + "CONCEPT_NAME" : "Gestation period, 6 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86801005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4270513, + "CONCEPT_NAME" : "Gestation period, 7 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63110000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4132434, + "CONCEPT_NAME" : "Gestation period, 8 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26690008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4245908, + "CONCEPT_NAME" : "Gestation period, 9 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "931004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 762907, + "CONCEPT_NAME" : "Gestation period greater than or equal to 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "433601000124106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336958, + "CONCEPT_NAME" : "Term pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87527008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4180111, + "CONCEPT_NAME" : "Third trimester pregnancy less than 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429240000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444098, + "CONCEPT_NAME" : "Gestation period, 40 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46230007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 68, + "name" : "Gestational age (GEST) gt than 6 week", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4015296, + "CONCEPT_NAME" : "Antenatal 12 weeks examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169712008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014149, + "CONCEPT_NAME" : "Antenatal 16 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169713003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014150, + "CONCEPT_NAME" : "Antenatal 20 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169714009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808979, + "CONCEPT_NAME" : "Antenatal 22 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861281000000109", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015141, + "CONCEPT_NAME" : "Antenatal 24 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169715005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808980, + "CONCEPT_NAME" : "Antenatal 25 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861301000000105", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014151, + "CONCEPT_NAME" : "Antenatal 30 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169717002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808981, + "CONCEPT_NAME" : "Antenatal 31 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861321000000101", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015297, + "CONCEPT_NAME" : "Antenatal 32 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169718007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015298, + "CONCEPT_NAME" : "Antenatal 34 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169719004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014434, + "CONCEPT_NAME" : "Antenatal 35 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169720005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015299, + "CONCEPT_NAME" : "Antenatal 36 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169721009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015142, + "CONCEPT_NAME" : "Antenatal 37 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169722002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014152, + "CONCEPT_NAME" : "Antenatal 38 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169723007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015300, + "CONCEPT_NAME" : "Antenatal 39 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169724001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015301, + "CONCEPT_NAME" : "Antenatal 40 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169725000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015302, + "CONCEPT_NAME" : "Antenatal 41 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169726004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014435, + "CONCEPT_NAME" : "Antenatal 42 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169727008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4178165, + "CONCEPT_NAME" : "Gestation 14 - 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428567001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181468, + "CONCEPT_NAME" : "Gestation 9- 13 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428930004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181162, + "CONCEPT_NAME" : "Gestation greater than 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429715006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4324063, + "CONCEPT_NAME" : "Gestation less than 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428566005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438542, + "CONCEPT_NAME" : "Gestation less than 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313178001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45770261, + "CONCEPT_NAME" : "Gestation less than 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "925561000000100", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4322726, + "CONCEPT_NAME" : "Gestation less than 9 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428058009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4242241, + "CONCEPT_NAME" : "Gestation period, 10 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "38039008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4174506, + "CONCEPT_NAME" : "Gestation period, 11 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "50367001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4197245, + "CONCEPT_NAME" : "Gestation period, 12 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "79992004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4266517, + "CONCEPT_NAME" : "Gestation period, 13 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "62333002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4248725, + "CONCEPT_NAME" : "Gestation period, 14 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72846000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4283690, + "CONCEPT_NAME" : "Gestation period, 15 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6678005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4049621, + "CONCEPT_NAME" : "Gestation period, 16 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15633004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4277749, + "CONCEPT_NAME" : "Gestation period, 17 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65683006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4097608, + "CONCEPT_NAME" : "Gestation period, 18 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25026004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181751, + "CONCEPT_NAME" : "Gestation period, 19 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54318006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4051642, + "CONCEPT_NAME" : "Gestation period, 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "23464008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4185780, + "CONCEPT_NAME" : "Gestation period, 21 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "41438001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4274955, + "CONCEPT_NAME" : "Gestation period, 22 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65035007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336226, + "CONCEPT_NAME" : "Gestation period, 23 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86883006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439922, + "CONCEPT_NAME" : "Gestation period, 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313179009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435640, + "CONCEPT_NAME" : "Gestation period, 25 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72544005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444023, + "CONCEPT_NAME" : "Gestation period, 26 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48688005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432430, + "CONCEPT_NAME" : "Gestation period, 27 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46906003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444461, + "CONCEPT_NAME" : "Gestation period, 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90797000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444417, + "CONCEPT_NAME" : "Gestation period, 29 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45139008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434484, + "CONCEPT_NAME" : "Gestation period, 30 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "71355009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433864, + "CONCEPT_NAME" : "Gestation period, 31 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64920003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442558, + "CONCEPT_NAME" : "Gestation period, 32 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7707000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441678, + "CONCEPT_NAME" : "Gestation period, 33 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "78395001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443874, + "CONCEPT_NAME" : "Gestation period, 34 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13763000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444267, + "CONCEPT_NAME" : "Gestation period, 35 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84132007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438543, + "CONCEPT_NAME" : "Gestation period, 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57907009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442355, + "CONCEPT_NAME" : "Gestation period, 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43697006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443871, + "CONCEPT_NAME" : "Gestation period, 38 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13798002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435655, + "CONCEPT_NAME" : "Gestation period, 39 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80487005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442769, + "CONCEPT_NAME" : "Gestation period, 41 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63503002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444067, + "CONCEPT_NAME" : "Gestation period, 42 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36428009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4270513, + "CONCEPT_NAME" : "Gestation period, 7 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63110000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4132434, + "CONCEPT_NAME" : "Gestation period, 8 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26690008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4245908, + "CONCEPT_NAME" : "Gestation period, 9 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "931004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 762907, + "CONCEPT_NAME" : "Gestation period greater than or equal to 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "433601000124106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336958, + "CONCEPT_NAME" : "Term pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87527008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4180111, + "CONCEPT_NAME" : "Third trimester pregnancy less than 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429240000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444098, + "CONCEPT_NAME" : "Gestation period, 40 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46230007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 69, + "name" : "Gestational age (GEST) gt than 7 week", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4015296, + "CONCEPT_NAME" : "Antenatal 12 weeks examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169712008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014149, + "CONCEPT_NAME" : "Antenatal 16 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169713003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014150, + "CONCEPT_NAME" : "Antenatal 20 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169714009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808979, + "CONCEPT_NAME" : "Antenatal 22 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861281000000109", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015141, + "CONCEPT_NAME" : "Antenatal 24 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169715005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808980, + "CONCEPT_NAME" : "Antenatal 25 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861301000000105", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014151, + "CONCEPT_NAME" : "Antenatal 30 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169717002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808981, + "CONCEPT_NAME" : "Antenatal 31 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861321000000101", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015297, + "CONCEPT_NAME" : "Antenatal 32 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169718007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015298, + "CONCEPT_NAME" : "Antenatal 34 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169719004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014434, + "CONCEPT_NAME" : "Antenatal 35 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169720005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015299, + "CONCEPT_NAME" : "Antenatal 36 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169721009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015142, + "CONCEPT_NAME" : "Antenatal 37 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169722002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014152, + "CONCEPT_NAME" : "Antenatal 38 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169723007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015300, + "CONCEPT_NAME" : "Antenatal 39 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169724001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015301, + "CONCEPT_NAME" : "Antenatal 40 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169725000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015302, + "CONCEPT_NAME" : "Antenatal 41 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169726004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014435, + "CONCEPT_NAME" : "Antenatal 42 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169727008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4178165, + "CONCEPT_NAME" : "Gestation 14 - 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428567001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181468, + "CONCEPT_NAME" : "Gestation 9- 13 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428930004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181162, + "CONCEPT_NAME" : "Gestation greater than 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429715006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4324063, + "CONCEPT_NAME" : "Gestation less than 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428566005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438542, + "CONCEPT_NAME" : "Gestation less than 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313178001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45770261, + "CONCEPT_NAME" : "Gestation less than 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "925561000000100", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4322726, + "CONCEPT_NAME" : "Gestation less than 9 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428058009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4242241, + "CONCEPT_NAME" : "Gestation period, 10 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "38039008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4174506, + "CONCEPT_NAME" : "Gestation period, 11 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "50367001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4197245, + "CONCEPT_NAME" : "Gestation period, 12 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "79992004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4266517, + "CONCEPT_NAME" : "Gestation period, 13 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "62333002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4248725, + "CONCEPT_NAME" : "Gestation period, 14 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72846000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4283690, + "CONCEPT_NAME" : "Gestation period, 15 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6678005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4049621, + "CONCEPT_NAME" : "Gestation period, 16 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15633004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4277749, + "CONCEPT_NAME" : "Gestation period, 17 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65683006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4097608, + "CONCEPT_NAME" : "Gestation period, 18 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25026004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181751, + "CONCEPT_NAME" : "Gestation period, 19 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54318006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4051642, + "CONCEPT_NAME" : "Gestation period, 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "23464008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4185780, + "CONCEPT_NAME" : "Gestation period, 21 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "41438001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4274955, + "CONCEPT_NAME" : "Gestation period, 22 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65035007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336226, + "CONCEPT_NAME" : "Gestation period, 23 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86883006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439922, + "CONCEPT_NAME" : "Gestation period, 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313179009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435640, + "CONCEPT_NAME" : "Gestation period, 25 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72544005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444023, + "CONCEPT_NAME" : "Gestation period, 26 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48688005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432430, + "CONCEPT_NAME" : "Gestation period, 27 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46906003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444461, + "CONCEPT_NAME" : "Gestation period, 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90797000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444417, + "CONCEPT_NAME" : "Gestation period, 29 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45139008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434484, + "CONCEPT_NAME" : "Gestation period, 30 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "71355009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433864, + "CONCEPT_NAME" : "Gestation period, 31 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64920003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442558, + "CONCEPT_NAME" : "Gestation period, 32 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7707000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441678, + "CONCEPT_NAME" : "Gestation period, 33 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "78395001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443874, + "CONCEPT_NAME" : "Gestation period, 34 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13763000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444267, + "CONCEPT_NAME" : "Gestation period, 35 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84132007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438543, + "CONCEPT_NAME" : "Gestation period, 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57907009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442355, + "CONCEPT_NAME" : "Gestation period, 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43697006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443871, + "CONCEPT_NAME" : "Gestation period, 38 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13798002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435655, + "CONCEPT_NAME" : "Gestation period, 39 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80487005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442769, + "CONCEPT_NAME" : "Gestation period, 41 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63503002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444067, + "CONCEPT_NAME" : "Gestation period, 42 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36428009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4132434, + "CONCEPT_NAME" : "Gestation period, 8 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26690008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4245908, + "CONCEPT_NAME" : "Gestation period, 9 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "931004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 762907, + "CONCEPT_NAME" : "Gestation period greater than or equal to 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "433601000124106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336958, + "CONCEPT_NAME" : "Term pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87527008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4180111, + "CONCEPT_NAME" : "Third trimester pregnancy less than 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429240000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444098, + "CONCEPT_NAME" : "Gestation period, 40 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46230007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 70, + "name" : "Gestational age (GEST) gt than 8 week", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4015296, + "CONCEPT_NAME" : "Antenatal 12 weeks examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169712008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014149, + "CONCEPT_NAME" : "Antenatal 16 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169713003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014150, + "CONCEPT_NAME" : "Antenatal 20 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169714009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808979, + "CONCEPT_NAME" : "Antenatal 22 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861281000000109", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015141, + "CONCEPT_NAME" : "Antenatal 24 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169715005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808980, + "CONCEPT_NAME" : "Antenatal 25 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861301000000105", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014151, + "CONCEPT_NAME" : "Antenatal 30 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169717002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808981, + "CONCEPT_NAME" : "Antenatal 31 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861321000000101", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015297, + "CONCEPT_NAME" : "Antenatal 32 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169718007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015298, + "CONCEPT_NAME" : "Antenatal 34 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169719004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014434, + "CONCEPT_NAME" : "Antenatal 35 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169720005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015299, + "CONCEPT_NAME" : "Antenatal 36 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169721009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015142, + "CONCEPT_NAME" : "Antenatal 37 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169722002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014152, + "CONCEPT_NAME" : "Antenatal 38 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169723007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015300, + "CONCEPT_NAME" : "Antenatal 39 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169724001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015301, + "CONCEPT_NAME" : "Antenatal 40 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169725000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015302, + "CONCEPT_NAME" : "Antenatal 41 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169726004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014435, + "CONCEPT_NAME" : "Antenatal 42 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169727008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4178165, + "CONCEPT_NAME" : "Gestation 14 - 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428567001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181468, + "CONCEPT_NAME" : "Gestation 9- 13 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428930004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181162, + "CONCEPT_NAME" : "Gestation greater than 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429715006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4324063, + "CONCEPT_NAME" : "Gestation less than 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428566005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438542, + "CONCEPT_NAME" : "Gestation less than 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313178001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45770261, + "CONCEPT_NAME" : "Gestation less than 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "925561000000100", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4242241, + "CONCEPT_NAME" : "Gestation period, 10 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "38039008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4174506, + "CONCEPT_NAME" : "Gestation period, 11 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "50367001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4197245, + "CONCEPT_NAME" : "Gestation period, 12 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "79992004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4266517, + "CONCEPT_NAME" : "Gestation period, 13 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "62333002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4248725, + "CONCEPT_NAME" : "Gestation period, 14 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72846000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4283690, + "CONCEPT_NAME" : "Gestation period, 15 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6678005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4049621, + "CONCEPT_NAME" : "Gestation period, 16 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15633004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4277749, + "CONCEPT_NAME" : "Gestation period, 17 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65683006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4097608, + "CONCEPT_NAME" : "Gestation period, 18 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25026004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181751, + "CONCEPT_NAME" : "Gestation period, 19 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54318006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4051642, + "CONCEPT_NAME" : "Gestation period, 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "23464008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4185780, + "CONCEPT_NAME" : "Gestation period, 21 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "41438001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4274955, + "CONCEPT_NAME" : "Gestation period, 22 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65035007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336226, + "CONCEPT_NAME" : "Gestation period, 23 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86883006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439922, + "CONCEPT_NAME" : "Gestation period, 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313179009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435640, + "CONCEPT_NAME" : "Gestation period, 25 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72544005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444023, + "CONCEPT_NAME" : "Gestation period, 26 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48688005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432430, + "CONCEPT_NAME" : "Gestation period, 27 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46906003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444461, + "CONCEPT_NAME" : "Gestation period, 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90797000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444417, + "CONCEPT_NAME" : "Gestation period, 29 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45139008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434484, + "CONCEPT_NAME" : "Gestation period, 30 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "71355009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433864, + "CONCEPT_NAME" : "Gestation period, 31 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64920003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442558, + "CONCEPT_NAME" : "Gestation period, 32 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7707000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441678, + "CONCEPT_NAME" : "Gestation period, 33 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "78395001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443874, + "CONCEPT_NAME" : "Gestation period, 34 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13763000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444267, + "CONCEPT_NAME" : "Gestation period, 35 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84132007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438543, + "CONCEPT_NAME" : "Gestation period, 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57907009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442355, + "CONCEPT_NAME" : "Gestation period, 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43697006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443871, + "CONCEPT_NAME" : "Gestation period, 38 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13798002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435655, + "CONCEPT_NAME" : "Gestation period, 39 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80487005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442769, + "CONCEPT_NAME" : "Gestation period, 41 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63503002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444067, + "CONCEPT_NAME" : "Gestation period, 42 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36428009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4245908, + "CONCEPT_NAME" : "Gestation period, 9 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "931004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 762907, + "CONCEPT_NAME" : "Gestation period greater than or equal to 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "433601000124106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336958, + "CONCEPT_NAME" : "Term pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87527008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4180111, + "CONCEPT_NAME" : "Third trimester pregnancy less than 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429240000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444098, + "CONCEPT_NAME" : "Gestation period, 40 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46230007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 71, + "name" : "Gestational age (GEST) gt than 9 week", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4015296, + "CONCEPT_NAME" : "Antenatal 12 weeks examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169712008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014149, + "CONCEPT_NAME" : "Antenatal 16 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169713003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014150, + "CONCEPT_NAME" : "Antenatal 20 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169714009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808979, + "CONCEPT_NAME" : "Antenatal 22 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861281000000109", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015141, + "CONCEPT_NAME" : "Antenatal 24 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169715005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808980, + "CONCEPT_NAME" : "Antenatal 25 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861301000000105", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014151, + "CONCEPT_NAME" : "Antenatal 30 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169717002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808981, + "CONCEPT_NAME" : "Antenatal 31 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861321000000101", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015297, + "CONCEPT_NAME" : "Antenatal 32 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169718007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015298, + "CONCEPT_NAME" : "Antenatal 34 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169719004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014434, + "CONCEPT_NAME" : "Antenatal 35 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169720005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015299, + "CONCEPT_NAME" : "Antenatal 36 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169721009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015142, + "CONCEPT_NAME" : "Antenatal 37 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169722002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014152, + "CONCEPT_NAME" : "Antenatal 38 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169723007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015300, + "CONCEPT_NAME" : "Antenatal 39 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169724001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015301, + "CONCEPT_NAME" : "Antenatal 40 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169725000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015302, + "CONCEPT_NAME" : "Antenatal 41 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169726004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014435, + "CONCEPT_NAME" : "Antenatal 42 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169727008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4178165, + "CONCEPT_NAME" : "Gestation 14 - 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428567001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181468, + "CONCEPT_NAME" : "Gestation 9- 13 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428930004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181162, + "CONCEPT_NAME" : "Gestation greater than 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429715006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4324063, + "CONCEPT_NAME" : "Gestation less than 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428566005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438542, + "CONCEPT_NAME" : "Gestation less than 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313178001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45770261, + "CONCEPT_NAME" : "Gestation less than 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "925561000000100", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4242241, + "CONCEPT_NAME" : "Gestation period, 10 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "38039008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4174506, + "CONCEPT_NAME" : "Gestation period, 11 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "50367001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4197245, + "CONCEPT_NAME" : "Gestation period, 12 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "79992004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4266517, + "CONCEPT_NAME" : "Gestation period, 13 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "62333002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4248725, + "CONCEPT_NAME" : "Gestation period, 14 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72846000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4283690, + "CONCEPT_NAME" : "Gestation period, 15 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6678005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4049621, + "CONCEPT_NAME" : "Gestation period, 16 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15633004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4277749, + "CONCEPT_NAME" : "Gestation period, 17 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65683006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4097608, + "CONCEPT_NAME" : "Gestation period, 18 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25026004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181751, + "CONCEPT_NAME" : "Gestation period, 19 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54318006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4051642, + "CONCEPT_NAME" : "Gestation period, 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "23464008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4185780, + "CONCEPT_NAME" : "Gestation period, 21 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "41438001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4274955, + "CONCEPT_NAME" : "Gestation period, 22 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65035007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336226, + "CONCEPT_NAME" : "Gestation period, 23 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86883006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439922, + "CONCEPT_NAME" : "Gestation period, 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313179009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435640, + "CONCEPT_NAME" : "Gestation period, 25 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72544005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444023, + "CONCEPT_NAME" : "Gestation period, 26 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48688005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432430, + "CONCEPT_NAME" : "Gestation period, 27 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46906003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444461, + "CONCEPT_NAME" : "Gestation period, 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90797000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444417, + "CONCEPT_NAME" : "Gestation period, 29 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45139008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434484, + "CONCEPT_NAME" : "Gestation period, 30 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "71355009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433864, + "CONCEPT_NAME" : "Gestation period, 31 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64920003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442558, + "CONCEPT_NAME" : "Gestation period, 32 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7707000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441678, + "CONCEPT_NAME" : "Gestation period, 33 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "78395001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443874, + "CONCEPT_NAME" : "Gestation period, 34 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13763000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444267, + "CONCEPT_NAME" : "Gestation period, 35 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84132007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438543, + "CONCEPT_NAME" : "Gestation period, 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57907009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442355, + "CONCEPT_NAME" : "Gestation period, 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43697006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443871, + "CONCEPT_NAME" : "Gestation period, 38 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13798002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435655, + "CONCEPT_NAME" : "Gestation period, 39 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80487005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442769, + "CONCEPT_NAME" : "Gestation period, 41 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63503002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444067, + "CONCEPT_NAME" : "Gestation period, 42 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36428009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 762907, + "CONCEPT_NAME" : "Gestation period greater than or equal to 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "433601000124106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336958, + "CONCEPT_NAME" : "Term pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87527008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4180111, + "CONCEPT_NAME" : "Third trimester pregnancy less than 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429240000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444098, + "CONCEPT_NAME" : "Gestation period, 40 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46230007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 72, + "name" : "Gestational age (GEST) gt than 10 week", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4015296, + "CONCEPT_NAME" : "Antenatal 12 weeks examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169712008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014149, + "CONCEPT_NAME" : "Antenatal 16 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169713003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014150, + "CONCEPT_NAME" : "Antenatal 20 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169714009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808979, + "CONCEPT_NAME" : "Antenatal 22 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861281000000109", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015141, + "CONCEPT_NAME" : "Antenatal 24 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169715005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808980, + "CONCEPT_NAME" : "Antenatal 25 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861301000000105", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014151, + "CONCEPT_NAME" : "Antenatal 30 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169717002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808981, + "CONCEPT_NAME" : "Antenatal 31 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861321000000101", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015297, + "CONCEPT_NAME" : "Antenatal 32 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169718007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015298, + "CONCEPT_NAME" : "Antenatal 34 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169719004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014434, + "CONCEPT_NAME" : "Antenatal 35 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169720005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015299, + "CONCEPT_NAME" : "Antenatal 36 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169721009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015142, + "CONCEPT_NAME" : "Antenatal 37 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169722002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014152, + "CONCEPT_NAME" : "Antenatal 38 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169723007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015300, + "CONCEPT_NAME" : "Antenatal 39 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169724001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015301, + "CONCEPT_NAME" : "Antenatal 40 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169725000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015302, + "CONCEPT_NAME" : "Antenatal 41 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169726004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014435, + "CONCEPT_NAME" : "Antenatal 42 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169727008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4178165, + "CONCEPT_NAME" : "Gestation 14 - 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428567001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181468, + "CONCEPT_NAME" : "Gestation 9- 13 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428930004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181162, + "CONCEPT_NAME" : "Gestation greater than 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429715006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4324063, + "CONCEPT_NAME" : "Gestation less than 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428566005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438542, + "CONCEPT_NAME" : "Gestation less than 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313178001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45770261, + "CONCEPT_NAME" : "Gestation less than 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "925561000000100", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4174506, + "CONCEPT_NAME" : "Gestation period, 11 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "50367001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4197245, + "CONCEPT_NAME" : "Gestation period, 12 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "79992004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4266517, + "CONCEPT_NAME" : "Gestation period, 13 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "62333002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4248725, + "CONCEPT_NAME" : "Gestation period, 14 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72846000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4283690, + "CONCEPT_NAME" : "Gestation period, 15 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6678005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4049621, + "CONCEPT_NAME" : "Gestation period, 16 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15633004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4277749, + "CONCEPT_NAME" : "Gestation period, 17 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65683006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4097608, + "CONCEPT_NAME" : "Gestation period, 18 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25026004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181751, + "CONCEPT_NAME" : "Gestation period, 19 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54318006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4051642, + "CONCEPT_NAME" : "Gestation period, 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "23464008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4185780, + "CONCEPT_NAME" : "Gestation period, 21 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "41438001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4274955, + "CONCEPT_NAME" : "Gestation period, 22 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65035007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336226, + "CONCEPT_NAME" : "Gestation period, 23 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86883006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439922, + "CONCEPT_NAME" : "Gestation period, 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313179009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435640, + "CONCEPT_NAME" : "Gestation period, 25 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72544005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444023, + "CONCEPT_NAME" : "Gestation period, 26 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48688005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432430, + "CONCEPT_NAME" : "Gestation period, 27 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46906003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444461, + "CONCEPT_NAME" : "Gestation period, 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90797000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444417, + "CONCEPT_NAME" : "Gestation period, 29 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45139008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434484, + "CONCEPT_NAME" : "Gestation period, 30 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "71355009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433864, + "CONCEPT_NAME" : "Gestation period, 31 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64920003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442558, + "CONCEPT_NAME" : "Gestation period, 32 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7707000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441678, + "CONCEPT_NAME" : "Gestation period, 33 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "78395001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443874, + "CONCEPT_NAME" : "Gestation period, 34 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13763000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444267, + "CONCEPT_NAME" : "Gestation period, 35 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84132007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438543, + "CONCEPT_NAME" : "Gestation period, 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57907009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442355, + "CONCEPT_NAME" : "Gestation period, 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43697006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443871, + "CONCEPT_NAME" : "Gestation period, 38 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13798002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435655, + "CONCEPT_NAME" : "Gestation period, 39 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80487005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442769, + "CONCEPT_NAME" : "Gestation period, 41 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63503002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444067, + "CONCEPT_NAME" : "Gestation period, 42 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36428009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 762907, + "CONCEPT_NAME" : "Gestation period greater than or equal to 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "433601000124106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336958, + "CONCEPT_NAME" : "Term pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87527008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4180111, + "CONCEPT_NAME" : "Third trimester pregnancy less than 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429240000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444098, + "CONCEPT_NAME" : "Gestation period, 40 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46230007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 73, + "name" : "Gestational age (GEST) gt than 11 week", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4015296, + "CONCEPT_NAME" : "Antenatal 12 weeks examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169712008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014149, + "CONCEPT_NAME" : "Antenatal 16 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169713003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014150, + "CONCEPT_NAME" : "Antenatal 20 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169714009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808979, + "CONCEPT_NAME" : "Antenatal 22 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861281000000109", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015141, + "CONCEPT_NAME" : "Antenatal 24 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169715005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808980, + "CONCEPT_NAME" : "Antenatal 25 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861301000000105", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014151, + "CONCEPT_NAME" : "Antenatal 30 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169717002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808981, + "CONCEPT_NAME" : "Antenatal 31 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861321000000101", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015297, + "CONCEPT_NAME" : "Antenatal 32 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169718007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015298, + "CONCEPT_NAME" : "Antenatal 34 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169719004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014434, + "CONCEPT_NAME" : "Antenatal 35 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169720005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015299, + "CONCEPT_NAME" : "Antenatal 36 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169721009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015142, + "CONCEPT_NAME" : "Antenatal 37 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169722002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014152, + "CONCEPT_NAME" : "Antenatal 38 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169723007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015300, + "CONCEPT_NAME" : "Antenatal 39 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169724001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015301, + "CONCEPT_NAME" : "Antenatal 40 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169725000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015302, + "CONCEPT_NAME" : "Antenatal 41 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169726004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014435, + "CONCEPT_NAME" : "Antenatal 42 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169727008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4178165, + "CONCEPT_NAME" : "Gestation 14 - 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428567001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181468, + "CONCEPT_NAME" : "Gestation 9- 13 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428930004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181162, + "CONCEPT_NAME" : "Gestation greater than 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429715006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4324063, + "CONCEPT_NAME" : "Gestation less than 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428566005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438542, + "CONCEPT_NAME" : "Gestation less than 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313178001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45770261, + "CONCEPT_NAME" : "Gestation less than 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "925561000000100", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4197245, + "CONCEPT_NAME" : "Gestation period, 12 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "79992004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4266517, + "CONCEPT_NAME" : "Gestation period, 13 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "62333002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4248725, + "CONCEPT_NAME" : "Gestation period, 14 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72846000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4283690, + "CONCEPT_NAME" : "Gestation period, 15 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6678005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4049621, + "CONCEPT_NAME" : "Gestation period, 16 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15633004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4277749, + "CONCEPT_NAME" : "Gestation period, 17 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65683006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4097608, + "CONCEPT_NAME" : "Gestation period, 18 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25026004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181751, + "CONCEPT_NAME" : "Gestation period, 19 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54318006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4051642, + "CONCEPT_NAME" : "Gestation period, 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "23464008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4185780, + "CONCEPT_NAME" : "Gestation period, 21 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "41438001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4274955, + "CONCEPT_NAME" : "Gestation period, 22 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65035007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336226, + "CONCEPT_NAME" : "Gestation period, 23 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86883006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439922, + "CONCEPT_NAME" : "Gestation period, 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313179009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435640, + "CONCEPT_NAME" : "Gestation period, 25 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72544005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444023, + "CONCEPT_NAME" : "Gestation period, 26 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48688005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432430, + "CONCEPT_NAME" : "Gestation period, 27 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46906003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444461, + "CONCEPT_NAME" : "Gestation period, 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90797000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444417, + "CONCEPT_NAME" : "Gestation period, 29 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45139008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434484, + "CONCEPT_NAME" : "Gestation period, 30 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "71355009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433864, + "CONCEPT_NAME" : "Gestation period, 31 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64920003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442558, + "CONCEPT_NAME" : "Gestation period, 32 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7707000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441678, + "CONCEPT_NAME" : "Gestation period, 33 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "78395001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443874, + "CONCEPT_NAME" : "Gestation period, 34 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13763000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444267, + "CONCEPT_NAME" : "Gestation period, 35 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84132007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438543, + "CONCEPT_NAME" : "Gestation period, 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57907009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442355, + "CONCEPT_NAME" : "Gestation period, 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43697006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443871, + "CONCEPT_NAME" : "Gestation period, 38 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13798002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435655, + "CONCEPT_NAME" : "Gestation period, 39 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80487005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442769, + "CONCEPT_NAME" : "Gestation period, 41 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63503002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444067, + "CONCEPT_NAME" : "Gestation period, 42 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36428009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 762907, + "CONCEPT_NAME" : "Gestation period greater than or equal to 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "433601000124106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336958, + "CONCEPT_NAME" : "Term pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87527008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4180111, + "CONCEPT_NAME" : "Third trimester pregnancy less than 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429240000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444098, + "CONCEPT_NAME" : "Gestation period, 40 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46230007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 74, + "name" : "Gestational age (GEST) gt than 12 week", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4014149, + "CONCEPT_NAME" : "Antenatal 16 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169713003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014150, + "CONCEPT_NAME" : "Antenatal 20 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169714009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808979, + "CONCEPT_NAME" : "Antenatal 22 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861281000000109", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015141, + "CONCEPT_NAME" : "Antenatal 24 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169715005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808980, + "CONCEPT_NAME" : "Antenatal 25 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861301000000105", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014151, + "CONCEPT_NAME" : "Antenatal 30 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169717002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808981, + "CONCEPT_NAME" : "Antenatal 31 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861321000000101", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015297, + "CONCEPT_NAME" : "Antenatal 32 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169718007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015298, + "CONCEPT_NAME" : "Antenatal 34 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169719004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014434, + "CONCEPT_NAME" : "Antenatal 35 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169720005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015299, + "CONCEPT_NAME" : "Antenatal 36 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169721009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015142, + "CONCEPT_NAME" : "Antenatal 37 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169722002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014152, + "CONCEPT_NAME" : "Antenatal 38 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169723007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015300, + "CONCEPT_NAME" : "Antenatal 39 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169724001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015301, + "CONCEPT_NAME" : "Antenatal 40 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169725000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015302, + "CONCEPT_NAME" : "Antenatal 41 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169726004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014435, + "CONCEPT_NAME" : "Antenatal 42 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169727008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4178165, + "CONCEPT_NAME" : "Gestation 14 - 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428567001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181468, + "CONCEPT_NAME" : "Gestation 9- 13 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428930004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181162, + "CONCEPT_NAME" : "Gestation greater than 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429715006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4324063, + "CONCEPT_NAME" : "Gestation less than 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428566005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438542, + "CONCEPT_NAME" : "Gestation less than 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313178001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45770261, + "CONCEPT_NAME" : "Gestation less than 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "925561000000100", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4266517, + "CONCEPT_NAME" : "Gestation period, 13 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "62333002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4248725, + "CONCEPT_NAME" : "Gestation period, 14 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72846000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4283690, + "CONCEPT_NAME" : "Gestation period, 15 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6678005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4049621, + "CONCEPT_NAME" : "Gestation period, 16 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15633004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4277749, + "CONCEPT_NAME" : "Gestation period, 17 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65683006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4097608, + "CONCEPT_NAME" : "Gestation period, 18 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25026004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181751, + "CONCEPT_NAME" : "Gestation period, 19 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54318006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4051642, + "CONCEPT_NAME" : "Gestation period, 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "23464008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4185780, + "CONCEPT_NAME" : "Gestation period, 21 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "41438001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4274955, + "CONCEPT_NAME" : "Gestation period, 22 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65035007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336226, + "CONCEPT_NAME" : "Gestation period, 23 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86883006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439922, + "CONCEPT_NAME" : "Gestation period, 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313179009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435640, + "CONCEPT_NAME" : "Gestation period, 25 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72544005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444023, + "CONCEPT_NAME" : "Gestation period, 26 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48688005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432430, + "CONCEPT_NAME" : "Gestation period, 27 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46906003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444461, + "CONCEPT_NAME" : "Gestation period, 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90797000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444417, + "CONCEPT_NAME" : "Gestation period, 29 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45139008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434484, + "CONCEPT_NAME" : "Gestation period, 30 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "71355009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433864, + "CONCEPT_NAME" : "Gestation period, 31 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64920003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442558, + "CONCEPT_NAME" : "Gestation period, 32 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7707000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441678, + "CONCEPT_NAME" : "Gestation period, 33 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "78395001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443874, + "CONCEPT_NAME" : "Gestation period, 34 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13763000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444267, + "CONCEPT_NAME" : "Gestation period, 35 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84132007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438543, + "CONCEPT_NAME" : "Gestation period, 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57907009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442355, + "CONCEPT_NAME" : "Gestation period, 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43697006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443871, + "CONCEPT_NAME" : "Gestation period, 38 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13798002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435655, + "CONCEPT_NAME" : "Gestation period, 39 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80487005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442769, + "CONCEPT_NAME" : "Gestation period, 41 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63503002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444067, + "CONCEPT_NAME" : "Gestation period, 42 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36428009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 762907, + "CONCEPT_NAME" : "Gestation period greater than or equal to 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "433601000124106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336958, + "CONCEPT_NAME" : "Term pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87527008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4180111, + "CONCEPT_NAME" : "Third trimester pregnancy less than 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429240000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444098, + "CONCEPT_NAME" : "Gestation period, 40 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46230007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 75, + "name" : "Gestational age (GEST) gt than 13 week", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4014149, + "CONCEPT_NAME" : "Antenatal 16 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169713003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014150, + "CONCEPT_NAME" : "Antenatal 20 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169714009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808979, + "CONCEPT_NAME" : "Antenatal 22 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861281000000109", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015141, + "CONCEPT_NAME" : "Antenatal 24 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169715005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808980, + "CONCEPT_NAME" : "Antenatal 25 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861301000000105", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014151, + "CONCEPT_NAME" : "Antenatal 30 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169717002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808981, + "CONCEPT_NAME" : "Antenatal 31 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861321000000101", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015297, + "CONCEPT_NAME" : "Antenatal 32 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169718007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015298, + "CONCEPT_NAME" : "Antenatal 34 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169719004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014434, + "CONCEPT_NAME" : "Antenatal 35 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169720005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015299, + "CONCEPT_NAME" : "Antenatal 36 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169721009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015142, + "CONCEPT_NAME" : "Antenatal 37 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169722002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014152, + "CONCEPT_NAME" : "Antenatal 38 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169723007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015300, + "CONCEPT_NAME" : "Antenatal 39 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169724001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015301, + "CONCEPT_NAME" : "Antenatal 40 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169725000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015302, + "CONCEPT_NAME" : "Antenatal 41 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169726004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014435, + "CONCEPT_NAME" : "Antenatal 42 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169727008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4178165, + "CONCEPT_NAME" : "Gestation 14 - 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428567001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181162, + "CONCEPT_NAME" : "Gestation greater than 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429715006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4324063, + "CONCEPT_NAME" : "Gestation less than 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428566005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438542, + "CONCEPT_NAME" : "Gestation less than 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313178001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45770261, + "CONCEPT_NAME" : "Gestation less than 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "925561000000100", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4248725, + "CONCEPT_NAME" : "Gestation period, 14 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72846000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4283690, + "CONCEPT_NAME" : "Gestation period, 15 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6678005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4049621, + "CONCEPT_NAME" : "Gestation period, 16 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15633004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4277749, + "CONCEPT_NAME" : "Gestation period, 17 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65683006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4097608, + "CONCEPT_NAME" : "Gestation period, 18 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25026004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181751, + "CONCEPT_NAME" : "Gestation period, 19 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54318006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4051642, + "CONCEPT_NAME" : "Gestation period, 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "23464008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4185780, + "CONCEPT_NAME" : "Gestation period, 21 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "41438001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4274955, + "CONCEPT_NAME" : "Gestation period, 22 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65035007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336226, + "CONCEPT_NAME" : "Gestation period, 23 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86883006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439922, + "CONCEPT_NAME" : "Gestation period, 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313179009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435640, + "CONCEPT_NAME" : "Gestation period, 25 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72544005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444023, + "CONCEPT_NAME" : "Gestation period, 26 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48688005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432430, + "CONCEPT_NAME" : "Gestation period, 27 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46906003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444461, + "CONCEPT_NAME" : "Gestation period, 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90797000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444417, + "CONCEPT_NAME" : "Gestation period, 29 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45139008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434484, + "CONCEPT_NAME" : "Gestation period, 30 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "71355009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433864, + "CONCEPT_NAME" : "Gestation period, 31 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64920003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442558, + "CONCEPT_NAME" : "Gestation period, 32 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7707000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441678, + "CONCEPT_NAME" : "Gestation period, 33 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "78395001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443874, + "CONCEPT_NAME" : "Gestation period, 34 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13763000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444267, + "CONCEPT_NAME" : "Gestation period, 35 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84132007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438543, + "CONCEPT_NAME" : "Gestation period, 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57907009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442355, + "CONCEPT_NAME" : "Gestation period, 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43697006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443871, + "CONCEPT_NAME" : "Gestation period, 38 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13798002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435655, + "CONCEPT_NAME" : "Gestation period, 39 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80487005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442769, + "CONCEPT_NAME" : "Gestation period, 41 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63503002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444067, + "CONCEPT_NAME" : "Gestation period, 42 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36428009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 762907, + "CONCEPT_NAME" : "Gestation period greater than or equal to 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "433601000124106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336958, + "CONCEPT_NAME" : "Term pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87527008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4180111, + "CONCEPT_NAME" : "Third trimester pregnancy less than 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429240000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444098, + "CONCEPT_NAME" : "Gestation period, 40 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46230007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 76, + "name" : "Gestational age (GEST) gt than 14 week", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4014149, + "CONCEPT_NAME" : "Antenatal 16 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169713003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014150, + "CONCEPT_NAME" : "Antenatal 20 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169714009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808979, + "CONCEPT_NAME" : "Antenatal 22 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861281000000109", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015141, + "CONCEPT_NAME" : "Antenatal 24 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169715005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808980, + "CONCEPT_NAME" : "Antenatal 25 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861301000000105", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014151, + "CONCEPT_NAME" : "Antenatal 30 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169717002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808981, + "CONCEPT_NAME" : "Antenatal 31 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861321000000101", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015297, + "CONCEPT_NAME" : "Antenatal 32 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169718007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015298, + "CONCEPT_NAME" : "Antenatal 34 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169719004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014434, + "CONCEPT_NAME" : "Antenatal 35 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169720005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015299, + "CONCEPT_NAME" : "Antenatal 36 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169721009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015142, + "CONCEPT_NAME" : "Antenatal 37 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169722002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014152, + "CONCEPT_NAME" : "Antenatal 38 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169723007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015300, + "CONCEPT_NAME" : "Antenatal 39 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169724001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015301, + "CONCEPT_NAME" : "Antenatal 40 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169725000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015302, + "CONCEPT_NAME" : "Antenatal 41 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169726004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014435, + "CONCEPT_NAME" : "Antenatal 42 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169727008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4178165, + "CONCEPT_NAME" : "Gestation 14 - 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428567001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181162, + "CONCEPT_NAME" : "Gestation greater than 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429715006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4324063, + "CONCEPT_NAME" : "Gestation less than 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428566005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438542, + "CONCEPT_NAME" : "Gestation less than 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313178001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45770261, + "CONCEPT_NAME" : "Gestation less than 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "925561000000100", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4283690, + "CONCEPT_NAME" : "Gestation period, 15 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6678005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4049621, + "CONCEPT_NAME" : "Gestation period, 16 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15633004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4277749, + "CONCEPT_NAME" : "Gestation period, 17 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65683006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4097608, + "CONCEPT_NAME" : "Gestation period, 18 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25026004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181751, + "CONCEPT_NAME" : "Gestation period, 19 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54318006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4051642, + "CONCEPT_NAME" : "Gestation period, 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "23464008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4185780, + "CONCEPT_NAME" : "Gestation period, 21 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "41438001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4274955, + "CONCEPT_NAME" : "Gestation period, 22 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65035007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336226, + "CONCEPT_NAME" : "Gestation period, 23 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86883006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439922, + "CONCEPT_NAME" : "Gestation period, 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313179009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435640, + "CONCEPT_NAME" : "Gestation period, 25 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72544005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444023, + "CONCEPT_NAME" : "Gestation period, 26 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48688005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432430, + "CONCEPT_NAME" : "Gestation period, 27 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46906003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444461, + "CONCEPT_NAME" : "Gestation period, 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90797000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444417, + "CONCEPT_NAME" : "Gestation period, 29 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45139008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434484, + "CONCEPT_NAME" : "Gestation period, 30 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "71355009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433864, + "CONCEPT_NAME" : "Gestation period, 31 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64920003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442558, + "CONCEPT_NAME" : "Gestation period, 32 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7707000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441678, + "CONCEPT_NAME" : "Gestation period, 33 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "78395001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443874, + "CONCEPT_NAME" : "Gestation period, 34 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13763000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444267, + "CONCEPT_NAME" : "Gestation period, 35 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84132007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438543, + "CONCEPT_NAME" : "Gestation period, 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57907009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442355, + "CONCEPT_NAME" : "Gestation period, 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43697006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443871, + "CONCEPT_NAME" : "Gestation period, 38 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13798002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435655, + "CONCEPT_NAME" : "Gestation period, 39 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80487005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442769, + "CONCEPT_NAME" : "Gestation period, 41 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63503002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444067, + "CONCEPT_NAME" : "Gestation period, 42 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36428009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 762907, + "CONCEPT_NAME" : "Gestation period greater than or equal to 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "433601000124106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336958, + "CONCEPT_NAME" : "Term pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87527008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4180111, + "CONCEPT_NAME" : "Third trimester pregnancy less than 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429240000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444098, + "CONCEPT_NAME" : "Gestation period, 40 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46230007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 77, + "name" : "Gestational age (GEST) gt than 15 week", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4014149, + "CONCEPT_NAME" : "Antenatal 16 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169713003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014150, + "CONCEPT_NAME" : "Antenatal 20 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169714009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808979, + "CONCEPT_NAME" : "Antenatal 22 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861281000000109", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015141, + "CONCEPT_NAME" : "Antenatal 24 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169715005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808980, + "CONCEPT_NAME" : "Antenatal 25 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861301000000105", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014151, + "CONCEPT_NAME" : "Antenatal 30 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169717002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808981, + "CONCEPT_NAME" : "Antenatal 31 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861321000000101", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015297, + "CONCEPT_NAME" : "Antenatal 32 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169718007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015298, + "CONCEPT_NAME" : "Antenatal 34 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169719004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014434, + "CONCEPT_NAME" : "Antenatal 35 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169720005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015299, + "CONCEPT_NAME" : "Antenatal 36 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169721009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015142, + "CONCEPT_NAME" : "Antenatal 37 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169722002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014152, + "CONCEPT_NAME" : "Antenatal 38 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169723007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015300, + "CONCEPT_NAME" : "Antenatal 39 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169724001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015301, + "CONCEPT_NAME" : "Antenatal 40 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169725000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015302, + "CONCEPT_NAME" : "Antenatal 41 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169726004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014435, + "CONCEPT_NAME" : "Antenatal 42 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169727008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4178165, + "CONCEPT_NAME" : "Gestation 14 - 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428567001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181162, + "CONCEPT_NAME" : "Gestation greater than 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429715006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4324063, + "CONCEPT_NAME" : "Gestation less than 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428566005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438542, + "CONCEPT_NAME" : "Gestation less than 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313178001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45770261, + "CONCEPT_NAME" : "Gestation less than 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "925561000000100", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4049621, + "CONCEPT_NAME" : "Gestation period, 16 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15633004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4277749, + "CONCEPT_NAME" : "Gestation period, 17 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65683006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4097608, + "CONCEPT_NAME" : "Gestation period, 18 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25026004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181751, + "CONCEPT_NAME" : "Gestation period, 19 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54318006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4051642, + "CONCEPT_NAME" : "Gestation period, 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "23464008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4185780, + "CONCEPT_NAME" : "Gestation period, 21 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "41438001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4274955, + "CONCEPT_NAME" : "Gestation period, 22 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65035007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336226, + "CONCEPT_NAME" : "Gestation period, 23 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86883006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439922, + "CONCEPT_NAME" : "Gestation period, 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313179009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435640, + "CONCEPT_NAME" : "Gestation period, 25 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72544005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444023, + "CONCEPT_NAME" : "Gestation period, 26 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48688005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432430, + "CONCEPT_NAME" : "Gestation period, 27 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46906003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444461, + "CONCEPT_NAME" : "Gestation period, 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90797000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444417, + "CONCEPT_NAME" : "Gestation period, 29 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45139008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434484, + "CONCEPT_NAME" : "Gestation period, 30 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "71355009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433864, + "CONCEPT_NAME" : "Gestation period, 31 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64920003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442558, + "CONCEPT_NAME" : "Gestation period, 32 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7707000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441678, + "CONCEPT_NAME" : "Gestation period, 33 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "78395001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443874, + "CONCEPT_NAME" : "Gestation period, 34 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13763000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444267, + "CONCEPT_NAME" : "Gestation period, 35 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84132007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438543, + "CONCEPT_NAME" : "Gestation period, 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57907009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442355, + "CONCEPT_NAME" : "Gestation period, 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43697006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443871, + "CONCEPT_NAME" : "Gestation period, 38 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13798002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435655, + "CONCEPT_NAME" : "Gestation period, 39 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80487005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442769, + "CONCEPT_NAME" : "Gestation period, 41 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63503002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444067, + "CONCEPT_NAME" : "Gestation period, 42 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36428009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 762907, + "CONCEPT_NAME" : "Gestation period greater than or equal to 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "433601000124106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336958, + "CONCEPT_NAME" : "Term pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87527008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4180111, + "CONCEPT_NAME" : "Third trimester pregnancy less than 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429240000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444098, + "CONCEPT_NAME" : "Gestation period, 40 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46230007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 78, + "name" : "Gestational age (GEST) gt than 41 week", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4014435, + "CONCEPT_NAME" : "Antenatal 42 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169727008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444067, + "CONCEPT_NAME" : "Gestation period, 42 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36428009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 79, + "name" : "Gestational age (GEST) gt than 40 week", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4015302, + "CONCEPT_NAME" : "Antenatal 41 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169726004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014435, + "CONCEPT_NAME" : "Antenatal 42 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169727008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442769, + "CONCEPT_NAME" : "Gestation period, 41 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63503002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444067, + "CONCEPT_NAME" : "Gestation period, 42 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36428009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 80, + "name" : "Gestational age (GEST) gt than 39 week", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4015301, + "CONCEPT_NAME" : "Antenatal 40 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169725000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015302, + "CONCEPT_NAME" : "Antenatal 41 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169726004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014435, + "CONCEPT_NAME" : "Antenatal 42 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169727008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442769, + "CONCEPT_NAME" : "Gestation period, 41 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63503002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444067, + "CONCEPT_NAME" : "Gestation period, 42 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36428009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336958, + "CONCEPT_NAME" : "Term pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87527008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444098, + "CONCEPT_NAME" : "Gestation period, 40 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46230007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 81, + "name" : "Gestational age (GEST) gt than 16 week", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4014150, + "CONCEPT_NAME" : "Antenatal 20 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169714009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808979, + "CONCEPT_NAME" : "Antenatal 22 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861281000000109", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015141, + "CONCEPT_NAME" : "Antenatal 24 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169715005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808980, + "CONCEPT_NAME" : "Antenatal 25 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861301000000105", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014151, + "CONCEPT_NAME" : "Antenatal 30 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169717002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808981, + "CONCEPT_NAME" : "Antenatal 31 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861321000000101", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015297, + "CONCEPT_NAME" : "Antenatal 32 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169718007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015298, + "CONCEPT_NAME" : "Antenatal 34 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169719004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014434, + "CONCEPT_NAME" : "Antenatal 35 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169720005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015299, + "CONCEPT_NAME" : "Antenatal 36 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169721009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015142, + "CONCEPT_NAME" : "Antenatal 37 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169722002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014152, + "CONCEPT_NAME" : "Antenatal 38 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169723007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015300, + "CONCEPT_NAME" : "Antenatal 39 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169724001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015301, + "CONCEPT_NAME" : "Antenatal 40 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169725000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015302, + "CONCEPT_NAME" : "Antenatal 41 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169726004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014435, + "CONCEPT_NAME" : "Antenatal 42 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169727008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4178165, + "CONCEPT_NAME" : "Gestation 14 - 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428567001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181162, + "CONCEPT_NAME" : "Gestation greater than 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429715006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4324063, + "CONCEPT_NAME" : "Gestation less than 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428566005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438542, + "CONCEPT_NAME" : "Gestation less than 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313178001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45770261, + "CONCEPT_NAME" : "Gestation less than 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "925561000000100", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4277749, + "CONCEPT_NAME" : "Gestation period, 17 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65683006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4097608, + "CONCEPT_NAME" : "Gestation period, 18 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25026004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181751, + "CONCEPT_NAME" : "Gestation period, 19 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54318006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4051642, + "CONCEPT_NAME" : "Gestation period, 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "23464008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4185780, + "CONCEPT_NAME" : "Gestation period, 21 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "41438001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4274955, + "CONCEPT_NAME" : "Gestation period, 22 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65035007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336226, + "CONCEPT_NAME" : "Gestation period, 23 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86883006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439922, + "CONCEPT_NAME" : "Gestation period, 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313179009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435640, + "CONCEPT_NAME" : "Gestation period, 25 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72544005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444023, + "CONCEPT_NAME" : "Gestation period, 26 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48688005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432430, + "CONCEPT_NAME" : "Gestation period, 27 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46906003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444461, + "CONCEPT_NAME" : "Gestation period, 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90797000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444417, + "CONCEPT_NAME" : "Gestation period, 29 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45139008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434484, + "CONCEPT_NAME" : "Gestation period, 30 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "71355009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433864, + "CONCEPT_NAME" : "Gestation period, 31 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64920003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442558, + "CONCEPT_NAME" : "Gestation period, 32 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7707000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441678, + "CONCEPT_NAME" : "Gestation period, 33 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "78395001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443874, + "CONCEPT_NAME" : "Gestation period, 34 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13763000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444267, + "CONCEPT_NAME" : "Gestation period, 35 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84132007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438543, + "CONCEPT_NAME" : "Gestation period, 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57907009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442355, + "CONCEPT_NAME" : "Gestation period, 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43697006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443871, + "CONCEPT_NAME" : "Gestation period, 38 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13798002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435655, + "CONCEPT_NAME" : "Gestation period, 39 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80487005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442769, + "CONCEPT_NAME" : "Gestation period, 41 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63503002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444067, + "CONCEPT_NAME" : "Gestation period, 42 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36428009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 762907, + "CONCEPT_NAME" : "Gestation period greater than or equal to 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "433601000124106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336958, + "CONCEPT_NAME" : "Term pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87527008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4180111, + "CONCEPT_NAME" : "Third trimester pregnancy less than 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429240000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444098, + "CONCEPT_NAME" : "Gestation period, 40 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46230007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 82, + "name" : "Gestational age (GEST) gt than 17 week", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4014150, + "CONCEPT_NAME" : "Antenatal 20 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169714009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808979, + "CONCEPT_NAME" : "Antenatal 22 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861281000000109", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015141, + "CONCEPT_NAME" : "Antenatal 24 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169715005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808980, + "CONCEPT_NAME" : "Antenatal 25 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861301000000105", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014151, + "CONCEPT_NAME" : "Antenatal 30 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169717002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808981, + "CONCEPT_NAME" : "Antenatal 31 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861321000000101", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015297, + "CONCEPT_NAME" : "Antenatal 32 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169718007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015298, + "CONCEPT_NAME" : "Antenatal 34 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169719004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014434, + "CONCEPT_NAME" : "Antenatal 35 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169720005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015299, + "CONCEPT_NAME" : "Antenatal 36 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169721009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015142, + "CONCEPT_NAME" : "Antenatal 37 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169722002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014152, + "CONCEPT_NAME" : "Antenatal 38 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169723007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015300, + "CONCEPT_NAME" : "Antenatal 39 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169724001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015301, + "CONCEPT_NAME" : "Antenatal 40 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169725000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015302, + "CONCEPT_NAME" : "Antenatal 41 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169726004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014435, + "CONCEPT_NAME" : "Antenatal 42 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169727008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4178165, + "CONCEPT_NAME" : "Gestation 14 - 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428567001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181162, + "CONCEPT_NAME" : "Gestation greater than 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429715006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4324063, + "CONCEPT_NAME" : "Gestation less than 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428566005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438542, + "CONCEPT_NAME" : "Gestation less than 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313178001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45770261, + "CONCEPT_NAME" : "Gestation less than 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "925561000000100", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4097608, + "CONCEPT_NAME" : "Gestation period, 18 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25026004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181751, + "CONCEPT_NAME" : "Gestation period, 19 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54318006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4051642, + "CONCEPT_NAME" : "Gestation period, 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "23464008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4185780, + "CONCEPT_NAME" : "Gestation period, 21 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "41438001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4274955, + "CONCEPT_NAME" : "Gestation period, 22 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65035007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336226, + "CONCEPT_NAME" : "Gestation period, 23 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86883006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439922, + "CONCEPT_NAME" : "Gestation period, 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313179009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435640, + "CONCEPT_NAME" : "Gestation period, 25 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72544005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444023, + "CONCEPT_NAME" : "Gestation period, 26 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48688005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432430, + "CONCEPT_NAME" : "Gestation period, 27 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46906003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444461, + "CONCEPT_NAME" : "Gestation period, 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90797000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444417, + "CONCEPT_NAME" : "Gestation period, 29 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45139008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434484, + "CONCEPT_NAME" : "Gestation period, 30 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "71355009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433864, + "CONCEPT_NAME" : "Gestation period, 31 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64920003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442558, + "CONCEPT_NAME" : "Gestation period, 32 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7707000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441678, + "CONCEPT_NAME" : "Gestation period, 33 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "78395001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443874, + "CONCEPT_NAME" : "Gestation period, 34 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13763000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444267, + "CONCEPT_NAME" : "Gestation period, 35 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84132007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438543, + "CONCEPT_NAME" : "Gestation period, 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57907009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442355, + "CONCEPT_NAME" : "Gestation period, 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43697006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443871, + "CONCEPT_NAME" : "Gestation period, 38 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13798002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435655, + "CONCEPT_NAME" : "Gestation period, 39 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80487005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442769, + "CONCEPT_NAME" : "Gestation period, 41 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63503002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444067, + "CONCEPT_NAME" : "Gestation period, 42 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36428009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 762907, + "CONCEPT_NAME" : "Gestation period greater than or equal to 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "433601000124106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336958, + "CONCEPT_NAME" : "Term pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87527008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4180111, + "CONCEPT_NAME" : "Third trimester pregnancy less than 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429240000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444098, + "CONCEPT_NAME" : "Gestation period, 40 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46230007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 83, + "name" : "Gestational age (GEST) gt than 18 week", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4014150, + "CONCEPT_NAME" : "Antenatal 20 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169714009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808979, + "CONCEPT_NAME" : "Antenatal 22 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861281000000109", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015141, + "CONCEPT_NAME" : "Antenatal 24 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169715005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808980, + "CONCEPT_NAME" : "Antenatal 25 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861301000000105", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014151, + "CONCEPT_NAME" : "Antenatal 30 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169717002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808981, + "CONCEPT_NAME" : "Antenatal 31 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861321000000101", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015297, + "CONCEPT_NAME" : "Antenatal 32 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169718007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015298, + "CONCEPT_NAME" : "Antenatal 34 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169719004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014434, + "CONCEPT_NAME" : "Antenatal 35 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169720005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015299, + "CONCEPT_NAME" : "Antenatal 36 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169721009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015142, + "CONCEPT_NAME" : "Antenatal 37 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169722002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014152, + "CONCEPT_NAME" : "Antenatal 38 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169723007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015300, + "CONCEPT_NAME" : "Antenatal 39 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169724001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015301, + "CONCEPT_NAME" : "Antenatal 40 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169725000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015302, + "CONCEPT_NAME" : "Antenatal 41 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169726004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014435, + "CONCEPT_NAME" : "Antenatal 42 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169727008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4178165, + "CONCEPT_NAME" : "Gestation 14 - 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428567001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181162, + "CONCEPT_NAME" : "Gestation greater than 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429715006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4324063, + "CONCEPT_NAME" : "Gestation less than 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428566005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438542, + "CONCEPT_NAME" : "Gestation less than 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313178001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45770261, + "CONCEPT_NAME" : "Gestation less than 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "925561000000100", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181751, + "CONCEPT_NAME" : "Gestation period, 19 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54318006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4051642, + "CONCEPT_NAME" : "Gestation period, 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "23464008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4185780, + "CONCEPT_NAME" : "Gestation period, 21 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "41438001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4274955, + "CONCEPT_NAME" : "Gestation period, 22 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65035007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336226, + "CONCEPT_NAME" : "Gestation period, 23 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86883006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439922, + "CONCEPT_NAME" : "Gestation period, 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313179009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435640, + "CONCEPT_NAME" : "Gestation period, 25 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72544005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444023, + "CONCEPT_NAME" : "Gestation period, 26 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48688005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432430, + "CONCEPT_NAME" : "Gestation period, 27 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46906003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444461, + "CONCEPT_NAME" : "Gestation period, 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90797000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444417, + "CONCEPT_NAME" : "Gestation period, 29 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45139008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434484, + "CONCEPT_NAME" : "Gestation period, 30 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "71355009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433864, + "CONCEPT_NAME" : "Gestation period, 31 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64920003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442558, + "CONCEPT_NAME" : "Gestation period, 32 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7707000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441678, + "CONCEPT_NAME" : "Gestation period, 33 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "78395001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443874, + "CONCEPT_NAME" : "Gestation period, 34 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13763000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444267, + "CONCEPT_NAME" : "Gestation period, 35 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84132007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438543, + "CONCEPT_NAME" : "Gestation period, 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57907009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442355, + "CONCEPT_NAME" : "Gestation period, 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43697006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443871, + "CONCEPT_NAME" : "Gestation period, 38 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13798002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435655, + "CONCEPT_NAME" : "Gestation period, 39 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80487005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442769, + "CONCEPT_NAME" : "Gestation period, 41 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63503002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444067, + "CONCEPT_NAME" : "Gestation period, 42 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36428009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 762907, + "CONCEPT_NAME" : "Gestation period greater than or equal to 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "433601000124106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336958, + "CONCEPT_NAME" : "Term pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87527008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4180111, + "CONCEPT_NAME" : "Third trimester pregnancy less than 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429240000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444098, + "CONCEPT_NAME" : "Gestation period, 40 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46230007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 84, + "name" : "Gestational age (GEST) gt than 19 week", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4014150, + "CONCEPT_NAME" : "Antenatal 20 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169714009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808979, + "CONCEPT_NAME" : "Antenatal 22 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861281000000109", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015141, + "CONCEPT_NAME" : "Antenatal 24 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169715005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808980, + "CONCEPT_NAME" : "Antenatal 25 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861301000000105", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014151, + "CONCEPT_NAME" : "Antenatal 30 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169717002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808981, + "CONCEPT_NAME" : "Antenatal 31 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861321000000101", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015297, + "CONCEPT_NAME" : "Antenatal 32 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169718007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015298, + "CONCEPT_NAME" : "Antenatal 34 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169719004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014434, + "CONCEPT_NAME" : "Antenatal 35 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169720005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015299, + "CONCEPT_NAME" : "Antenatal 36 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169721009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015142, + "CONCEPT_NAME" : "Antenatal 37 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169722002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014152, + "CONCEPT_NAME" : "Antenatal 38 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169723007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015300, + "CONCEPT_NAME" : "Antenatal 39 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169724001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015301, + "CONCEPT_NAME" : "Antenatal 40 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169725000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015302, + "CONCEPT_NAME" : "Antenatal 41 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169726004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014435, + "CONCEPT_NAME" : "Antenatal 42 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169727008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4178165, + "CONCEPT_NAME" : "Gestation 14 - 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428567001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181162, + "CONCEPT_NAME" : "Gestation greater than 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429715006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438542, + "CONCEPT_NAME" : "Gestation less than 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313178001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45770261, + "CONCEPT_NAME" : "Gestation less than 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "925561000000100", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4051642, + "CONCEPT_NAME" : "Gestation period, 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "23464008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4185780, + "CONCEPT_NAME" : "Gestation period, 21 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "41438001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4274955, + "CONCEPT_NAME" : "Gestation period, 22 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65035007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336226, + "CONCEPT_NAME" : "Gestation period, 23 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86883006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439922, + "CONCEPT_NAME" : "Gestation period, 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313179009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435640, + "CONCEPT_NAME" : "Gestation period, 25 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72544005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444023, + "CONCEPT_NAME" : "Gestation period, 26 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48688005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432430, + "CONCEPT_NAME" : "Gestation period, 27 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46906003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444461, + "CONCEPT_NAME" : "Gestation period, 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90797000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444417, + "CONCEPT_NAME" : "Gestation period, 29 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45139008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434484, + "CONCEPT_NAME" : "Gestation period, 30 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "71355009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433864, + "CONCEPT_NAME" : "Gestation period, 31 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64920003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442558, + "CONCEPT_NAME" : "Gestation period, 32 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7707000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441678, + "CONCEPT_NAME" : "Gestation period, 33 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "78395001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443874, + "CONCEPT_NAME" : "Gestation period, 34 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13763000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444267, + "CONCEPT_NAME" : "Gestation period, 35 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84132007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438543, + "CONCEPT_NAME" : "Gestation period, 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57907009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442355, + "CONCEPT_NAME" : "Gestation period, 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43697006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443871, + "CONCEPT_NAME" : "Gestation period, 38 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13798002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435655, + "CONCEPT_NAME" : "Gestation period, 39 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80487005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442769, + "CONCEPT_NAME" : "Gestation period, 41 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63503002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444067, + "CONCEPT_NAME" : "Gestation period, 42 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36428009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 762907, + "CONCEPT_NAME" : "Gestation period greater than or equal to 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "433601000124106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336958, + "CONCEPT_NAME" : "Term pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87527008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4180111, + "CONCEPT_NAME" : "Third trimester pregnancy less than 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429240000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444098, + "CONCEPT_NAME" : "Gestation period, 40 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46230007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 85, + "name" : "Gestational age (GEST) gt than 20 week", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 44808979, + "CONCEPT_NAME" : "Antenatal 22 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861281000000109", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015141, + "CONCEPT_NAME" : "Antenatal 24 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169715005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808980, + "CONCEPT_NAME" : "Antenatal 25 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861301000000105", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014151, + "CONCEPT_NAME" : "Antenatal 30 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169717002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808981, + "CONCEPT_NAME" : "Antenatal 31 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861321000000101", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015297, + "CONCEPT_NAME" : "Antenatal 32 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169718007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015298, + "CONCEPT_NAME" : "Antenatal 34 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169719004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014434, + "CONCEPT_NAME" : "Antenatal 35 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169720005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015299, + "CONCEPT_NAME" : "Antenatal 36 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169721009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015142, + "CONCEPT_NAME" : "Antenatal 37 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169722002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014152, + "CONCEPT_NAME" : "Antenatal 38 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169723007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015300, + "CONCEPT_NAME" : "Antenatal 39 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169724001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015301, + "CONCEPT_NAME" : "Antenatal 40 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169725000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015302, + "CONCEPT_NAME" : "Antenatal 41 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169726004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014435, + "CONCEPT_NAME" : "Antenatal 42 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169727008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438542, + "CONCEPT_NAME" : "Gestation less than 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313178001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45770261, + "CONCEPT_NAME" : "Gestation less than 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "925561000000100", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4185780, + "CONCEPT_NAME" : "Gestation period, 21 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "41438001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4274955, + "CONCEPT_NAME" : "Gestation period, 22 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65035007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336226, + "CONCEPT_NAME" : "Gestation period, 23 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86883006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439922, + "CONCEPT_NAME" : "Gestation period, 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313179009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435640, + "CONCEPT_NAME" : "Gestation period, 25 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72544005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444023, + "CONCEPT_NAME" : "Gestation period, 26 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48688005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432430, + "CONCEPT_NAME" : "Gestation period, 27 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46906003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444461, + "CONCEPT_NAME" : "Gestation period, 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90797000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444417, + "CONCEPT_NAME" : "Gestation period, 29 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45139008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434484, + "CONCEPT_NAME" : "Gestation period, 30 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "71355009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433864, + "CONCEPT_NAME" : "Gestation period, 31 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64920003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442558, + "CONCEPT_NAME" : "Gestation period, 32 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7707000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441678, + "CONCEPT_NAME" : "Gestation period, 33 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "78395001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443874, + "CONCEPT_NAME" : "Gestation period, 34 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13763000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444267, + "CONCEPT_NAME" : "Gestation period, 35 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84132007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438543, + "CONCEPT_NAME" : "Gestation period, 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57907009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442355, + "CONCEPT_NAME" : "Gestation period, 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43697006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443871, + "CONCEPT_NAME" : "Gestation period, 38 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13798002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435655, + "CONCEPT_NAME" : "Gestation period, 39 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80487005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442769, + "CONCEPT_NAME" : "Gestation period, 41 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63503002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444067, + "CONCEPT_NAME" : "Gestation period, 42 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36428009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 762907, + "CONCEPT_NAME" : "Gestation period greater than or equal to 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "433601000124106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336958, + "CONCEPT_NAME" : "Term pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87527008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4180111, + "CONCEPT_NAME" : "Third trimester pregnancy less than 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429240000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181162, + "CONCEPT_NAME" : "Gestation greater than 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429715006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444098, + "CONCEPT_NAME" : "Gestation period, 40 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46230007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 86, + "name" : "Gestational age (GEST) gt than 29 week", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4014151, + "CONCEPT_NAME" : "Antenatal 30 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169717002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808981, + "CONCEPT_NAME" : "Antenatal 31 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861321000000101", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015297, + "CONCEPT_NAME" : "Antenatal 32 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169718007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015298, + "CONCEPT_NAME" : "Antenatal 34 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169719004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014434, + "CONCEPT_NAME" : "Antenatal 35 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169720005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015299, + "CONCEPT_NAME" : "Antenatal 36 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169721009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015142, + "CONCEPT_NAME" : "Antenatal 37 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169722002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014152, + "CONCEPT_NAME" : "Antenatal 38 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169723007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015300, + "CONCEPT_NAME" : "Antenatal 39 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169724001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015301, + "CONCEPT_NAME" : "Antenatal 40 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169725000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015302, + "CONCEPT_NAME" : "Antenatal 41 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169726004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014435, + "CONCEPT_NAME" : "Antenatal 42 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169727008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434484, + "CONCEPT_NAME" : "Gestation period, 30 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "71355009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433864, + "CONCEPT_NAME" : "Gestation period, 31 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64920003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442558, + "CONCEPT_NAME" : "Gestation period, 32 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7707000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441678, + "CONCEPT_NAME" : "Gestation period, 33 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "78395001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443874, + "CONCEPT_NAME" : "Gestation period, 34 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13763000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444267, + "CONCEPT_NAME" : "Gestation period, 35 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84132007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438543, + "CONCEPT_NAME" : "Gestation period, 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57907009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442355, + "CONCEPT_NAME" : "Gestation period, 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43697006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443871, + "CONCEPT_NAME" : "Gestation period, 38 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13798002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435655, + "CONCEPT_NAME" : "Gestation period, 39 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80487005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442769, + "CONCEPT_NAME" : "Gestation period, 41 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63503002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444067, + "CONCEPT_NAME" : "Gestation period, 42 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36428009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 762907, + "CONCEPT_NAME" : "Gestation period greater than or equal to 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "433601000124106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336958, + "CONCEPT_NAME" : "Term pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87527008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4180111, + "CONCEPT_NAME" : "Third trimester pregnancy less than 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429240000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444098, + "CONCEPT_NAME" : "Gestation period, 40 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46230007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 87, + "name" : "Gestational age (GEST) gt than 21 week", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 44808979, + "CONCEPT_NAME" : "Antenatal 22 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861281000000109", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015141, + "CONCEPT_NAME" : "Antenatal 24 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169715005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808980, + "CONCEPT_NAME" : "Antenatal 25 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861301000000105", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014151, + "CONCEPT_NAME" : "Antenatal 30 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169717002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808981, + "CONCEPT_NAME" : "Antenatal 31 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861321000000101", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015297, + "CONCEPT_NAME" : "Antenatal 32 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169718007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015298, + "CONCEPT_NAME" : "Antenatal 34 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169719004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014434, + "CONCEPT_NAME" : "Antenatal 35 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169720005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015299, + "CONCEPT_NAME" : "Antenatal 36 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169721009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015142, + "CONCEPT_NAME" : "Antenatal 37 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169722002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014152, + "CONCEPT_NAME" : "Antenatal 38 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169723007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015300, + "CONCEPT_NAME" : "Antenatal 39 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169724001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015301, + "CONCEPT_NAME" : "Antenatal 40 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169725000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015302, + "CONCEPT_NAME" : "Antenatal 41 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169726004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014435, + "CONCEPT_NAME" : "Antenatal 42 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169727008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438542, + "CONCEPT_NAME" : "Gestation less than 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313178001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45770261, + "CONCEPT_NAME" : "Gestation less than 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "925561000000100", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4274955, + "CONCEPT_NAME" : "Gestation period, 22 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65035007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336226, + "CONCEPT_NAME" : "Gestation period, 23 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86883006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439922, + "CONCEPT_NAME" : "Gestation period, 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313179009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435640, + "CONCEPT_NAME" : "Gestation period, 25 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72544005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444023, + "CONCEPT_NAME" : "Gestation period, 26 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48688005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432430, + "CONCEPT_NAME" : "Gestation period, 27 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46906003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444461, + "CONCEPT_NAME" : "Gestation period, 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90797000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444417, + "CONCEPT_NAME" : "Gestation period, 29 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45139008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434484, + "CONCEPT_NAME" : "Gestation period, 30 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "71355009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433864, + "CONCEPT_NAME" : "Gestation period, 31 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64920003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442558, + "CONCEPT_NAME" : "Gestation period, 32 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7707000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441678, + "CONCEPT_NAME" : "Gestation period, 33 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "78395001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443874, + "CONCEPT_NAME" : "Gestation period, 34 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13763000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444267, + "CONCEPT_NAME" : "Gestation period, 35 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84132007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438543, + "CONCEPT_NAME" : "Gestation period, 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57907009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442355, + "CONCEPT_NAME" : "Gestation period, 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43697006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443871, + "CONCEPT_NAME" : "Gestation period, 38 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13798002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435655, + "CONCEPT_NAME" : "Gestation period, 39 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80487005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442769, + "CONCEPT_NAME" : "Gestation period, 41 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63503002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444067, + "CONCEPT_NAME" : "Gestation period, 42 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36428009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 762907, + "CONCEPT_NAME" : "Gestation period greater than or equal to 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "433601000124106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336958, + "CONCEPT_NAME" : "Term pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87527008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4180111, + "CONCEPT_NAME" : "Third trimester pregnancy less than 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429240000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444098, + "CONCEPT_NAME" : "Gestation period, 40 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46230007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 88, + "name" : "Gestational age (GEST) gt than 30 week", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 44808981, + "CONCEPT_NAME" : "Antenatal 31 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861321000000101", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015297, + "CONCEPT_NAME" : "Antenatal 32 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169718007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015298, + "CONCEPT_NAME" : "Antenatal 34 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169719004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014434, + "CONCEPT_NAME" : "Antenatal 35 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169720005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015299, + "CONCEPT_NAME" : "Antenatal 36 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169721009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015142, + "CONCEPT_NAME" : "Antenatal 37 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169722002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014152, + "CONCEPT_NAME" : "Antenatal 38 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169723007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015300, + "CONCEPT_NAME" : "Antenatal 39 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169724001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015301, + "CONCEPT_NAME" : "Antenatal 40 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169725000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015302, + "CONCEPT_NAME" : "Antenatal 41 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169726004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014435, + "CONCEPT_NAME" : "Antenatal 42 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169727008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433864, + "CONCEPT_NAME" : "Gestation period, 31 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64920003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442558, + "CONCEPT_NAME" : "Gestation period, 32 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7707000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441678, + "CONCEPT_NAME" : "Gestation period, 33 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "78395001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443874, + "CONCEPT_NAME" : "Gestation period, 34 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13763000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444267, + "CONCEPT_NAME" : "Gestation period, 35 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84132007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438543, + "CONCEPT_NAME" : "Gestation period, 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57907009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442355, + "CONCEPT_NAME" : "Gestation period, 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43697006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443871, + "CONCEPT_NAME" : "Gestation period, 38 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13798002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435655, + "CONCEPT_NAME" : "Gestation period, 39 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80487005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442769, + "CONCEPT_NAME" : "Gestation period, 41 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63503002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444067, + "CONCEPT_NAME" : "Gestation period, 42 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36428009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 762907, + "CONCEPT_NAME" : "Gestation period greater than or equal to 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "433601000124106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336958, + "CONCEPT_NAME" : "Term pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87527008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4180111, + "CONCEPT_NAME" : "Third trimester pregnancy less than 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429240000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444098, + "CONCEPT_NAME" : "Gestation period, 40 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46230007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 89, + "name" : "Gestational age (GEST) gt than 38 week", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4015300, + "CONCEPT_NAME" : "Antenatal 39 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169724001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015301, + "CONCEPT_NAME" : "Antenatal 40 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169725000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015302, + "CONCEPT_NAME" : "Antenatal 41 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169726004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014435, + "CONCEPT_NAME" : "Antenatal 42 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169727008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435655, + "CONCEPT_NAME" : "Gestation period, 39 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80487005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442769, + "CONCEPT_NAME" : "Gestation period, 41 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63503002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444067, + "CONCEPT_NAME" : "Gestation period, 42 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36428009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336958, + "CONCEPT_NAME" : "Term pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87527008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444098, + "CONCEPT_NAME" : "Gestation period, 40 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46230007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 90, + "name" : "Gestational age (GEST) gt than 37 week", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4014152, + "CONCEPT_NAME" : "Antenatal 38 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169723007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015300, + "CONCEPT_NAME" : "Antenatal 39 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169724001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015301, + "CONCEPT_NAME" : "Antenatal 40 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169725000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015302, + "CONCEPT_NAME" : "Antenatal 41 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169726004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014435, + "CONCEPT_NAME" : "Antenatal 42 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169727008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443871, + "CONCEPT_NAME" : "Gestation period, 38 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13798002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435655, + "CONCEPT_NAME" : "Gestation period, 39 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80487005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442769, + "CONCEPT_NAME" : "Gestation period, 41 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63503002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444067, + "CONCEPT_NAME" : "Gestation period, 42 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36428009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336958, + "CONCEPT_NAME" : "Term pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87527008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444098, + "CONCEPT_NAME" : "Gestation period, 40 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46230007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 91, + "name" : "Gestational age (GEST) gt than 36 week", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4015142, + "CONCEPT_NAME" : "Antenatal 37 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169722002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014152, + "CONCEPT_NAME" : "Antenatal 38 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169723007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015300, + "CONCEPT_NAME" : "Antenatal 39 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169724001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015301, + "CONCEPT_NAME" : "Antenatal 40 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169725000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015302, + "CONCEPT_NAME" : "Antenatal 41 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169726004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014435, + "CONCEPT_NAME" : "Antenatal 42 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169727008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442355, + "CONCEPT_NAME" : "Gestation period, 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43697006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443871, + "CONCEPT_NAME" : "Gestation period, 38 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13798002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435655, + "CONCEPT_NAME" : "Gestation period, 39 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80487005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442769, + "CONCEPT_NAME" : "Gestation period, 41 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63503002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444067, + "CONCEPT_NAME" : "Gestation period, 42 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36428009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 762907, + "CONCEPT_NAME" : "Gestation period greater than or equal to 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "433601000124106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336958, + "CONCEPT_NAME" : "Term pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87527008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444098, + "CONCEPT_NAME" : "Gestation period, 40 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46230007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 92, + "name" : "Gestational age (GEST) gt than 35 week", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4015299, + "CONCEPT_NAME" : "Antenatal 36 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169721009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015142, + "CONCEPT_NAME" : "Antenatal 37 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169722002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014152, + "CONCEPT_NAME" : "Antenatal 38 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169723007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015300, + "CONCEPT_NAME" : "Antenatal 39 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169724001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015301, + "CONCEPT_NAME" : "Antenatal 40 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169725000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015302, + "CONCEPT_NAME" : "Antenatal 41 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169726004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014435, + "CONCEPT_NAME" : "Antenatal 42 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169727008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438543, + "CONCEPT_NAME" : "Gestation period, 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57907009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442355, + "CONCEPT_NAME" : "Gestation period, 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43697006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443871, + "CONCEPT_NAME" : "Gestation period, 38 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13798002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435655, + "CONCEPT_NAME" : "Gestation period, 39 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80487005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442769, + "CONCEPT_NAME" : "Gestation period, 41 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63503002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444067, + "CONCEPT_NAME" : "Gestation period, 42 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36428009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 762907, + "CONCEPT_NAME" : "Gestation period greater than or equal to 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "433601000124106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336958, + "CONCEPT_NAME" : "Term pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87527008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444098, + "CONCEPT_NAME" : "Gestation period, 40 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46230007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 93, + "name" : "Gestational age (GEST) gt than 34 week", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4014434, + "CONCEPT_NAME" : "Antenatal 35 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169720005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015299, + "CONCEPT_NAME" : "Antenatal 36 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169721009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015142, + "CONCEPT_NAME" : "Antenatal 37 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169722002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014152, + "CONCEPT_NAME" : "Antenatal 38 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169723007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015300, + "CONCEPT_NAME" : "Antenatal 39 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169724001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015301, + "CONCEPT_NAME" : "Antenatal 40 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169725000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015302, + "CONCEPT_NAME" : "Antenatal 41 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169726004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014435, + "CONCEPT_NAME" : "Antenatal 42 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169727008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444267, + "CONCEPT_NAME" : "Gestation period, 35 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84132007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438543, + "CONCEPT_NAME" : "Gestation period, 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57907009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442355, + "CONCEPT_NAME" : "Gestation period, 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43697006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443871, + "CONCEPT_NAME" : "Gestation period, 38 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13798002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435655, + "CONCEPT_NAME" : "Gestation period, 39 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80487005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442769, + "CONCEPT_NAME" : "Gestation period, 41 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63503002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444067, + "CONCEPT_NAME" : "Gestation period, 42 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36428009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 762907, + "CONCEPT_NAME" : "Gestation period greater than or equal to 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "433601000124106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336958, + "CONCEPT_NAME" : "Term pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87527008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4180111, + "CONCEPT_NAME" : "Third trimester pregnancy less than 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429240000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444098, + "CONCEPT_NAME" : "Gestation period, 40 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46230007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 94, + "name" : "Gestational age (GEST) gt than 22 week", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4015141, + "CONCEPT_NAME" : "Antenatal 24 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169715005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808980, + "CONCEPT_NAME" : "Antenatal 25 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861301000000105", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014151, + "CONCEPT_NAME" : "Antenatal 30 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169717002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808981, + "CONCEPT_NAME" : "Antenatal 31 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861321000000101", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015297, + "CONCEPT_NAME" : "Antenatal 32 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169718007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015298, + "CONCEPT_NAME" : "Antenatal 34 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169719004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014434, + "CONCEPT_NAME" : "Antenatal 35 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169720005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015299, + "CONCEPT_NAME" : "Antenatal 36 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169721009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015142, + "CONCEPT_NAME" : "Antenatal 37 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169722002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014152, + "CONCEPT_NAME" : "Antenatal 38 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169723007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015300, + "CONCEPT_NAME" : "Antenatal 39 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169724001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015301, + "CONCEPT_NAME" : "Antenatal 40 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169725000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015302, + "CONCEPT_NAME" : "Antenatal 41 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169726004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014435, + "CONCEPT_NAME" : "Antenatal 42 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169727008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438542, + "CONCEPT_NAME" : "Gestation less than 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313178001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45770261, + "CONCEPT_NAME" : "Gestation less than 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "925561000000100", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336226, + "CONCEPT_NAME" : "Gestation period, 23 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86883006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439922, + "CONCEPT_NAME" : "Gestation period, 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313179009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435640, + "CONCEPT_NAME" : "Gestation period, 25 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72544005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444023, + "CONCEPT_NAME" : "Gestation period, 26 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48688005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432430, + "CONCEPT_NAME" : "Gestation period, 27 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46906003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444461, + "CONCEPT_NAME" : "Gestation period, 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90797000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444417, + "CONCEPT_NAME" : "Gestation period, 29 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45139008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434484, + "CONCEPT_NAME" : "Gestation period, 30 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "71355009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433864, + "CONCEPT_NAME" : "Gestation period, 31 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64920003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442558, + "CONCEPT_NAME" : "Gestation period, 32 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7707000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441678, + "CONCEPT_NAME" : "Gestation period, 33 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "78395001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443874, + "CONCEPT_NAME" : "Gestation period, 34 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13763000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444267, + "CONCEPT_NAME" : "Gestation period, 35 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84132007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438543, + "CONCEPT_NAME" : "Gestation period, 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57907009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442355, + "CONCEPT_NAME" : "Gestation period, 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43697006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443871, + "CONCEPT_NAME" : "Gestation period, 38 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13798002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435655, + "CONCEPT_NAME" : "Gestation period, 39 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80487005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442769, + "CONCEPT_NAME" : "Gestation period, 41 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63503002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444067, + "CONCEPT_NAME" : "Gestation period, 42 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36428009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 762907, + "CONCEPT_NAME" : "Gestation period greater than or equal to 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "433601000124106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336958, + "CONCEPT_NAME" : "Term pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87527008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4180111, + "CONCEPT_NAME" : "Third trimester pregnancy less than 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429240000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444098, + "CONCEPT_NAME" : "Gestation period, 40 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46230007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 95, + "name" : "Gestational age (GEST) gt than 23 week", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4015141, + "CONCEPT_NAME" : "Antenatal 24 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169715005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808980, + "CONCEPT_NAME" : "Antenatal 25 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861301000000105", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014151, + "CONCEPT_NAME" : "Antenatal 30 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169717002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808981, + "CONCEPT_NAME" : "Antenatal 31 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861321000000101", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015297, + "CONCEPT_NAME" : "Antenatal 32 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169718007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015298, + "CONCEPT_NAME" : "Antenatal 34 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169719004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014434, + "CONCEPT_NAME" : "Antenatal 35 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169720005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015299, + "CONCEPT_NAME" : "Antenatal 36 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169721009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015142, + "CONCEPT_NAME" : "Antenatal 37 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169722002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014152, + "CONCEPT_NAME" : "Antenatal 38 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169723007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015300, + "CONCEPT_NAME" : "Antenatal 39 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169724001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015301, + "CONCEPT_NAME" : "Antenatal 40 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169725000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015302, + "CONCEPT_NAME" : "Antenatal 41 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169726004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014435, + "CONCEPT_NAME" : "Antenatal 42 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169727008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45770261, + "CONCEPT_NAME" : "Gestation less than 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "925561000000100", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439922, + "CONCEPT_NAME" : "Gestation period, 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313179009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435640, + "CONCEPT_NAME" : "Gestation period, 25 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72544005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444023, + "CONCEPT_NAME" : "Gestation period, 26 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48688005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432430, + "CONCEPT_NAME" : "Gestation period, 27 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46906003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444461, + "CONCEPT_NAME" : "Gestation period, 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90797000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444417, + "CONCEPT_NAME" : "Gestation period, 29 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45139008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434484, + "CONCEPT_NAME" : "Gestation period, 30 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "71355009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433864, + "CONCEPT_NAME" : "Gestation period, 31 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64920003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442558, + "CONCEPT_NAME" : "Gestation period, 32 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7707000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441678, + "CONCEPT_NAME" : "Gestation period, 33 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "78395001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443874, + "CONCEPT_NAME" : "Gestation period, 34 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13763000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444267, + "CONCEPT_NAME" : "Gestation period, 35 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84132007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438543, + "CONCEPT_NAME" : "Gestation period, 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57907009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442355, + "CONCEPT_NAME" : "Gestation period, 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43697006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443871, + "CONCEPT_NAME" : "Gestation period, 38 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13798002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435655, + "CONCEPT_NAME" : "Gestation period, 39 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80487005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442769, + "CONCEPT_NAME" : "Gestation period, 41 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63503002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444067, + "CONCEPT_NAME" : "Gestation period, 42 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36428009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 762907, + "CONCEPT_NAME" : "Gestation period greater than or equal to 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "433601000124106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336958, + "CONCEPT_NAME" : "Term pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87527008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4180111, + "CONCEPT_NAME" : "Third trimester pregnancy less than 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429240000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444098, + "CONCEPT_NAME" : "Gestation period, 40 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46230007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 96, + "name" : "Gestational age (GEST) gt than 24 week", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 44808980, + "CONCEPT_NAME" : "Antenatal 25 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861301000000105", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014151, + "CONCEPT_NAME" : "Antenatal 30 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169717002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808981, + "CONCEPT_NAME" : "Antenatal 31 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861321000000101", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015297, + "CONCEPT_NAME" : "Antenatal 32 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169718007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015298, + "CONCEPT_NAME" : "Antenatal 34 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169719004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014434, + "CONCEPT_NAME" : "Antenatal 35 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169720005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015299, + "CONCEPT_NAME" : "Antenatal 36 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169721009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015142, + "CONCEPT_NAME" : "Antenatal 37 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169722002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014152, + "CONCEPT_NAME" : "Antenatal 38 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169723007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015300, + "CONCEPT_NAME" : "Antenatal 39 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169724001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015301, + "CONCEPT_NAME" : "Antenatal 40 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169725000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015302, + "CONCEPT_NAME" : "Antenatal 41 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169726004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014435, + "CONCEPT_NAME" : "Antenatal 42 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169727008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45770261, + "CONCEPT_NAME" : "Gestation less than 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "925561000000100", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435640, + "CONCEPT_NAME" : "Gestation period, 25 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72544005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444023, + "CONCEPT_NAME" : "Gestation period, 26 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48688005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432430, + "CONCEPT_NAME" : "Gestation period, 27 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46906003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444461, + "CONCEPT_NAME" : "Gestation period, 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90797000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444417, + "CONCEPT_NAME" : "Gestation period, 29 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45139008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434484, + "CONCEPT_NAME" : "Gestation period, 30 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "71355009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433864, + "CONCEPT_NAME" : "Gestation period, 31 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64920003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442558, + "CONCEPT_NAME" : "Gestation period, 32 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7707000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441678, + "CONCEPT_NAME" : "Gestation period, 33 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "78395001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443874, + "CONCEPT_NAME" : "Gestation period, 34 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13763000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444267, + "CONCEPT_NAME" : "Gestation period, 35 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84132007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438543, + "CONCEPT_NAME" : "Gestation period, 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57907009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442355, + "CONCEPT_NAME" : "Gestation period, 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43697006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443871, + "CONCEPT_NAME" : "Gestation period, 38 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13798002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435655, + "CONCEPT_NAME" : "Gestation period, 39 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80487005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442769, + "CONCEPT_NAME" : "Gestation period, 41 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63503002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444067, + "CONCEPT_NAME" : "Gestation period, 42 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36428009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 762907, + "CONCEPT_NAME" : "Gestation period greater than or equal to 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "433601000124106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336958, + "CONCEPT_NAME" : "Term pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87527008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4180111, + "CONCEPT_NAME" : "Third trimester pregnancy less than 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429240000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444098, + "CONCEPT_NAME" : "Gestation period, 40 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46230007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 97, + "name" : "Gestational age (GEST) gt than 25 week", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4014151, + "CONCEPT_NAME" : "Antenatal 30 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169717002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808981, + "CONCEPT_NAME" : "Antenatal 31 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861321000000101", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015297, + "CONCEPT_NAME" : "Antenatal 32 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169718007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015298, + "CONCEPT_NAME" : "Antenatal 34 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169719004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014434, + "CONCEPT_NAME" : "Antenatal 35 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169720005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015299, + "CONCEPT_NAME" : "Antenatal 36 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169721009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015142, + "CONCEPT_NAME" : "Antenatal 37 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169722002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014152, + "CONCEPT_NAME" : "Antenatal 38 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169723007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015300, + "CONCEPT_NAME" : "Antenatal 39 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169724001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015301, + "CONCEPT_NAME" : "Antenatal 40 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169725000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015302, + "CONCEPT_NAME" : "Antenatal 41 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169726004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014435, + "CONCEPT_NAME" : "Antenatal 42 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169727008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45770261, + "CONCEPT_NAME" : "Gestation less than 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "925561000000100", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444023, + "CONCEPT_NAME" : "Gestation period, 26 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48688005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432430, + "CONCEPT_NAME" : "Gestation period, 27 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46906003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444461, + "CONCEPT_NAME" : "Gestation period, 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90797000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444417, + "CONCEPT_NAME" : "Gestation period, 29 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45139008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434484, + "CONCEPT_NAME" : "Gestation period, 30 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "71355009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433864, + "CONCEPT_NAME" : "Gestation period, 31 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64920003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442558, + "CONCEPT_NAME" : "Gestation period, 32 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7707000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441678, + "CONCEPT_NAME" : "Gestation period, 33 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "78395001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443874, + "CONCEPT_NAME" : "Gestation period, 34 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13763000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444267, + "CONCEPT_NAME" : "Gestation period, 35 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84132007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438543, + "CONCEPT_NAME" : "Gestation period, 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57907009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442355, + "CONCEPT_NAME" : "Gestation period, 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43697006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443871, + "CONCEPT_NAME" : "Gestation period, 38 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13798002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435655, + "CONCEPT_NAME" : "Gestation period, 39 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80487005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442769, + "CONCEPT_NAME" : "Gestation period, 41 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63503002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444067, + "CONCEPT_NAME" : "Gestation period, 42 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36428009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 762907, + "CONCEPT_NAME" : "Gestation period greater than or equal to 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "433601000124106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336958, + "CONCEPT_NAME" : "Term pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87527008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4180111, + "CONCEPT_NAME" : "Third trimester pregnancy less than 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429240000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444098, + "CONCEPT_NAME" : "Gestation period, 40 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46230007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 98, + "name" : "Gestational age (GEST) gt than 26 week", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4014151, + "CONCEPT_NAME" : "Antenatal 30 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169717002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808981, + "CONCEPT_NAME" : "Antenatal 31 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861321000000101", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015297, + "CONCEPT_NAME" : "Antenatal 32 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169718007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015298, + "CONCEPT_NAME" : "Antenatal 34 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169719004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014434, + "CONCEPT_NAME" : "Antenatal 35 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169720005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015299, + "CONCEPT_NAME" : "Antenatal 36 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169721009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015142, + "CONCEPT_NAME" : "Antenatal 37 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169722002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014152, + "CONCEPT_NAME" : "Antenatal 38 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169723007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015300, + "CONCEPT_NAME" : "Antenatal 39 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169724001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015301, + "CONCEPT_NAME" : "Antenatal 40 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169725000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015302, + "CONCEPT_NAME" : "Antenatal 41 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169726004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014435, + "CONCEPT_NAME" : "Antenatal 42 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169727008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45770261, + "CONCEPT_NAME" : "Gestation less than 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "925561000000100", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432430, + "CONCEPT_NAME" : "Gestation period, 27 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46906003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444461, + "CONCEPT_NAME" : "Gestation period, 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90797000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444417, + "CONCEPT_NAME" : "Gestation period, 29 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45139008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434484, + "CONCEPT_NAME" : "Gestation period, 30 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "71355009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433864, + "CONCEPT_NAME" : "Gestation period, 31 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64920003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442558, + "CONCEPT_NAME" : "Gestation period, 32 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7707000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441678, + "CONCEPT_NAME" : "Gestation period, 33 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "78395001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443874, + "CONCEPT_NAME" : "Gestation period, 34 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13763000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444267, + "CONCEPT_NAME" : "Gestation period, 35 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84132007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438543, + "CONCEPT_NAME" : "Gestation period, 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57907009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442355, + "CONCEPT_NAME" : "Gestation period, 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43697006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443871, + "CONCEPT_NAME" : "Gestation period, 38 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13798002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435655, + "CONCEPT_NAME" : "Gestation period, 39 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80487005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442769, + "CONCEPT_NAME" : "Gestation period, 41 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63503002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444067, + "CONCEPT_NAME" : "Gestation period, 42 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36428009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 762907, + "CONCEPT_NAME" : "Gestation period greater than or equal to 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "433601000124106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336958, + "CONCEPT_NAME" : "Term pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87527008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4180111, + "CONCEPT_NAME" : "Third trimester pregnancy less than 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429240000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444098, + "CONCEPT_NAME" : "Gestation period, 40 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46230007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 99, + "name" : "Gestational age (GEST) gt than 27 week", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4014151, + "CONCEPT_NAME" : "Antenatal 30 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169717002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808981, + "CONCEPT_NAME" : "Antenatal 31 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861321000000101", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015297, + "CONCEPT_NAME" : "Antenatal 32 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169718007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015298, + "CONCEPT_NAME" : "Antenatal 34 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169719004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014434, + "CONCEPT_NAME" : "Antenatal 35 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169720005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015299, + "CONCEPT_NAME" : "Antenatal 36 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169721009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015142, + "CONCEPT_NAME" : "Antenatal 37 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169722002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014152, + "CONCEPT_NAME" : "Antenatal 38 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169723007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015300, + "CONCEPT_NAME" : "Antenatal 39 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169724001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015301, + "CONCEPT_NAME" : "Antenatal 40 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169725000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015302, + "CONCEPT_NAME" : "Antenatal 41 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169726004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014435, + "CONCEPT_NAME" : "Antenatal 42 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169727008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444461, + "CONCEPT_NAME" : "Gestation period, 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90797000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444417, + "CONCEPT_NAME" : "Gestation period, 29 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45139008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434484, + "CONCEPT_NAME" : "Gestation period, 30 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "71355009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433864, + "CONCEPT_NAME" : "Gestation period, 31 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64920003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442558, + "CONCEPT_NAME" : "Gestation period, 32 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7707000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441678, + "CONCEPT_NAME" : "Gestation period, 33 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "78395001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443874, + "CONCEPT_NAME" : "Gestation period, 34 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13763000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444267, + "CONCEPT_NAME" : "Gestation period, 35 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84132007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438543, + "CONCEPT_NAME" : "Gestation period, 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57907009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442355, + "CONCEPT_NAME" : "Gestation period, 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43697006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443871, + "CONCEPT_NAME" : "Gestation period, 38 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13798002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435655, + "CONCEPT_NAME" : "Gestation period, 39 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80487005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442769, + "CONCEPT_NAME" : "Gestation period, 41 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63503002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444067, + "CONCEPT_NAME" : "Gestation period, 42 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36428009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 762907, + "CONCEPT_NAME" : "Gestation period greater than or equal to 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "433601000124106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336958, + "CONCEPT_NAME" : "Term pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87527008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4180111, + "CONCEPT_NAME" : "Third trimester pregnancy less than 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429240000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444098, + "CONCEPT_NAME" : "Gestation period, 40 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46230007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 100, + "name" : "Gestational age (GEST) gt than 28 week", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4014151, + "CONCEPT_NAME" : "Antenatal 30 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169717002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808981, + "CONCEPT_NAME" : "Antenatal 31 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861321000000101", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015297, + "CONCEPT_NAME" : "Antenatal 32 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169718007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015298, + "CONCEPT_NAME" : "Antenatal 34 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169719004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014434, + "CONCEPT_NAME" : "Antenatal 35 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169720005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015299, + "CONCEPT_NAME" : "Antenatal 36 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169721009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015142, + "CONCEPT_NAME" : "Antenatal 37 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169722002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014152, + "CONCEPT_NAME" : "Antenatal 38 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169723007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015300, + "CONCEPT_NAME" : "Antenatal 39 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169724001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015301, + "CONCEPT_NAME" : "Antenatal 40 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169725000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015302, + "CONCEPT_NAME" : "Antenatal 41 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169726004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014435, + "CONCEPT_NAME" : "Antenatal 42 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169727008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444417, + "CONCEPT_NAME" : "Gestation period, 29 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45139008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434484, + "CONCEPT_NAME" : "Gestation period, 30 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "71355009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433864, + "CONCEPT_NAME" : "Gestation period, 31 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64920003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442558, + "CONCEPT_NAME" : "Gestation period, 32 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7707000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441678, + "CONCEPT_NAME" : "Gestation period, 33 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "78395001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443874, + "CONCEPT_NAME" : "Gestation period, 34 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13763000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444267, + "CONCEPT_NAME" : "Gestation period, 35 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84132007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438543, + "CONCEPT_NAME" : "Gestation period, 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57907009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442355, + "CONCEPT_NAME" : "Gestation period, 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43697006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443871, + "CONCEPT_NAME" : "Gestation period, 38 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13798002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435655, + "CONCEPT_NAME" : "Gestation period, 39 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80487005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442769, + "CONCEPT_NAME" : "Gestation period, 41 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63503002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444067, + "CONCEPT_NAME" : "Gestation period, 42 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36428009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 762907, + "CONCEPT_NAME" : "Gestation period greater than or equal to 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "433601000124106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336958, + "CONCEPT_NAME" : "Term pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87527008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4180111, + "CONCEPT_NAME" : "Third trimester pregnancy less than 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429240000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444098, + "CONCEPT_NAME" : "Gestation period, 40 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46230007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 101, + "name" : "Gestational age (GEST) gt than 31 week", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4015297, + "CONCEPT_NAME" : "Antenatal 32 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169718007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015298, + "CONCEPT_NAME" : "Antenatal 34 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169719004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014434, + "CONCEPT_NAME" : "Antenatal 35 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169720005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015299, + "CONCEPT_NAME" : "Antenatal 36 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169721009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015142, + "CONCEPT_NAME" : "Antenatal 37 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169722002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014152, + "CONCEPT_NAME" : "Antenatal 38 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169723007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015300, + "CONCEPT_NAME" : "Antenatal 39 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169724001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015301, + "CONCEPT_NAME" : "Antenatal 40 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169725000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015302, + "CONCEPT_NAME" : "Antenatal 41 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169726004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014435, + "CONCEPT_NAME" : "Antenatal 42 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169727008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442558, + "CONCEPT_NAME" : "Gestation period, 32 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7707000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441678, + "CONCEPT_NAME" : "Gestation period, 33 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "78395001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443874, + "CONCEPT_NAME" : "Gestation period, 34 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13763000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444267, + "CONCEPT_NAME" : "Gestation period, 35 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84132007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438543, + "CONCEPT_NAME" : "Gestation period, 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57907009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442355, + "CONCEPT_NAME" : "Gestation period, 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43697006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443871, + "CONCEPT_NAME" : "Gestation period, 38 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13798002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435655, + "CONCEPT_NAME" : "Gestation period, 39 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80487005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442769, + "CONCEPT_NAME" : "Gestation period, 41 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63503002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444067, + "CONCEPT_NAME" : "Gestation period, 42 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36428009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 762907, + "CONCEPT_NAME" : "Gestation period greater than or equal to 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "433601000124106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336958, + "CONCEPT_NAME" : "Term pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87527008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4180111, + "CONCEPT_NAME" : "Third trimester pregnancy less than 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429240000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444098, + "CONCEPT_NAME" : "Gestation period, 40 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46230007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 102, + "name" : "Gestational age (GEST) gt than 32 week", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4015298, + "CONCEPT_NAME" : "Antenatal 34 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169719004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014434, + "CONCEPT_NAME" : "Antenatal 35 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169720005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015299, + "CONCEPT_NAME" : "Antenatal 36 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169721009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015142, + "CONCEPT_NAME" : "Antenatal 37 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169722002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014152, + "CONCEPT_NAME" : "Antenatal 38 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169723007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015300, + "CONCEPT_NAME" : "Antenatal 39 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169724001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015301, + "CONCEPT_NAME" : "Antenatal 40 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169725000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015302, + "CONCEPT_NAME" : "Antenatal 41 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169726004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014435, + "CONCEPT_NAME" : "Antenatal 42 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169727008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441678, + "CONCEPT_NAME" : "Gestation period, 33 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "78395001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443874, + "CONCEPT_NAME" : "Gestation period, 34 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13763000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444267, + "CONCEPT_NAME" : "Gestation period, 35 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84132007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438543, + "CONCEPT_NAME" : "Gestation period, 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57907009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442355, + "CONCEPT_NAME" : "Gestation period, 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43697006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443871, + "CONCEPT_NAME" : "Gestation period, 38 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13798002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435655, + "CONCEPT_NAME" : "Gestation period, 39 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80487005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442769, + "CONCEPT_NAME" : "Gestation period, 41 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63503002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444067, + "CONCEPT_NAME" : "Gestation period, 42 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36428009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 762907, + "CONCEPT_NAME" : "Gestation period greater than or equal to 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "433601000124106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336958, + "CONCEPT_NAME" : "Term pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87527008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4180111, + "CONCEPT_NAME" : "Third trimester pregnancy less than 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429240000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444098, + "CONCEPT_NAME" : "Gestation period, 40 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46230007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 103, + "name" : "Gestational age (GEST) gt than 33 week", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4015298, + "CONCEPT_NAME" : "Antenatal 34 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169719004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014434, + "CONCEPT_NAME" : "Antenatal 35 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169720005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015299, + "CONCEPT_NAME" : "Antenatal 36 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169721009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015142, + "CONCEPT_NAME" : "Antenatal 37 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169722002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014152, + "CONCEPT_NAME" : "Antenatal 38 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169723007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015300, + "CONCEPT_NAME" : "Antenatal 39 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169724001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015301, + "CONCEPT_NAME" : "Antenatal 40 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169725000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015302, + "CONCEPT_NAME" : "Antenatal 41 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169726004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014435, + "CONCEPT_NAME" : "Antenatal 42 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169727008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443874, + "CONCEPT_NAME" : "Gestation period, 34 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13763000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444267, + "CONCEPT_NAME" : "Gestation period, 35 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84132007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438543, + "CONCEPT_NAME" : "Gestation period, 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57907009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442355, + "CONCEPT_NAME" : "Gestation period, 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43697006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443871, + "CONCEPT_NAME" : "Gestation period, 38 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13798002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435655, + "CONCEPT_NAME" : "Gestation period, 39 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80487005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442769, + "CONCEPT_NAME" : "Gestation period, 41 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63503002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444067, + "CONCEPT_NAME" : "Gestation period, 42 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36428009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 762907, + "CONCEPT_NAME" : "Gestation period greater than or equal to 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "433601000124106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336958, + "CONCEPT_NAME" : "Term pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87527008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4180111, + "CONCEPT_NAME" : "Third trimester pregnancy less than 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429240000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444098, + "CONCEPT_NAME" : "Gestation period, 40 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46230007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 104, + "name" : "Ectopic pregnancy (ECT)", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4215648, + "CONCEPT_NAME" : "Acute renal failure following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "71909003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4312095, + "CONCEPT_NAME" : "Afibrinogenemia following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "85796009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3655216, + "CONCEPT_NAME" : "Air embolism due to and following ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "860689000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3655215, + "CONCEPT_NAME" : "Air embolism due to and following molar pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "860688008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3655206, + "CONCEPT_NAME" : "Amniotic fluid embolism due to and following ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "860677002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3655205, + "CONCEPT_NAME" : "Amniotic fluid embolism due to and following molar pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "860676006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4152444, + "CONCEPT_NAME" : "Antenatal ultrasound confirms ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "370382007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45763635, + "CONCEPT_NAME" : "Aspiration of ectopic pregnancy from cornu of fallopian tube", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "700073007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3655208, + "CONCEPT_NAME" : "Blood clot embolism due to and following ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "860679004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3655207, + "CONCEPT_NAME" : "Blood clot embolism due to and following molar pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "860678007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4147060, + "CONCEPT_NAME" : "Cerebral anoxia following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "30243004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44783183, + "CONCEPT_NAME" : "Combined intrauterine and ovarian pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "699240001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4135209, + "CONCEPT_NAME" : "Combined pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "31601007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40483581, + "CONCEPT_NAME" : "Combined tubal and intrauterine pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "442478007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440464, + "CONCEPT_NAME" : "Complication following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "2989004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4100193, + "CONCEPT_NAME" : "Damage to bladder following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "27552001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4185718, + "CONCEPT_NAME" : "Damage to bowel following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "44017002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4232953, + "CONCEPT_NAME" : "Damage to broad ligament following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "89573004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4173946, + "CONCEPT_NAME" : "Damage to cervix following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "42294002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42537767, + "CONCEPT_NAME" : "Damage to pelvic organs and tissues following ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "737329004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42537768, + "CONCEPT_NAME" : "Damage to pelvic organs and tissues following molar pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "737330009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4174543, + "CONCEPT_NAME" : "Damage to periurethral tissue following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "42536002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4194053, + "CONCEPT_NAME" : "Damage to uterus following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "79333004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4216382, + "CONCEPT_NAME" : "Damage to vagina following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72209007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4266839, + "CONCEPT_NAME" : "Defibrination syndrome following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "62698000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42537762, + "CONCEPT_NAME" : "Delayed hemorrhage due to and following ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "737322008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42537770, + "CONCEPT_NAME" : "Disorder of vein following ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "737332001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42537771, + "CONCEPT_NAME" : "Disorder of vein following molar pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "737333006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437611, + "CONCEPT_NAME" : "Ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "34801009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4276942, + "CONCEPT_NAME" : "Electrolyte imbalance following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6509007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42539701, + "CONCEPT_NAME" : "Embolism due to and following ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "737324009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42537764, + "CONCEPT_NAME" : "Embolism due to and following molar pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "737325005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4066014, + "CONCEPT_NAME" : "Endometritis following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "172001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42537763, + "CONCEPT_NAME" : "Excessive hemorrhage due to and following ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "737323003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40493226, + "CONCEPT_NAME" : "Excision of fallopian tube and surgical removal of ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "445912000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3655214, + "CONCEPT_NAME" : "Fat embolism due to and following ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "860687003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3655213, + "CONCEPT_NAME" : "Fat embolism due to and following molar pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "860686007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4149029, + "CONCEPT_NAME" : "Intraligamentous pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "35656003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4066151, + "CONCEPT_NAME" : "Intraperitoneal pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "17285009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4063939, + "CONCEPT_NAME" : "Intravascular hemolysis following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "20084001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42872572, + "CONCEPT_NAME" : "Laparoscopic excision of ectopic ovarian pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "450563004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42872571, + "CONCEPT_NAME" : "Laparoscopic excision of ruptured ectopic tubal pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "450562009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4112952, + "CONCEPT_NAME" : "Membranous pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198624007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4113218, + "CONCEPT_NAME" : "Mesenteric pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198626009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530979, + "CONCEPT_NAME" : "Miscarriage of tubal ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609525000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4107071, + "CONCEPT_NAME" : "Oliguria following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "29908007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 200153, + "CONCEPT_NAME" : "Ovarian pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "9899009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336392, + "CONCEPT_NAME" : "Parametritis following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87169001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4314877, + "CONCEPT_NAME" : "Pelvic peritonitis following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86709000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42537765, + "CONCEPT_NAME" : "Physiological shock due to and following molar pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "737326006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4023382, + "CONCEPT_NAME" : "Postoperative shock following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "11669000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3655209, + "CONCEPT_NAME" : "Pulmonary embolism due to and following ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "860680001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3655210, + "CONCEPT_NAME" : "Pulmonary embolism due to and following molar pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "860681002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4308664, + "CONCEPT_NAME" : "Removal of ectopic fetus from abdominal cavity", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "387709005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4227423, + "CONCEPT_NAME" : "Removal of ectopic fetus from fallopian tube without salpingectomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "88362001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4247895, + "CONCEPT_NAME" : "Removal of ectopic fetus from ovary without oophorectomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "73341009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4300391, + "CONCEPT_NAME" : "Removal of extrauterine ectopic fetus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "387710000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45757120, + "CONCEPT_NAME" : "Renal failure after ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10752771000119100", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42537766, + "CONCEPT_NAME" : "Renal failure following molar pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "737327002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4095115, + "CONCEPT_NAME" : "Renal tubular necrosis following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26235008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4316051, + "CONCEPT_NAME" : "Salpingitis following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "9516007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4239009, + "CONCEPT_NAME" : "Salpingo-oophoritis following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57468008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4174577, + "CONCEPT_NAME" : "Secondary abdominal pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276881003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4187090, + "CONCEPT_NAME" : "Sepsis following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46848006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3655212, + "CONCEPT_NAME" : "Septic embolism due to and following ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "860683004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3655211, + "CONCEPT_NAME" : "Septic embolism due to and following molar pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "860682009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4080587, + "CONCEPT_NAME" : "Septic shock following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "24051007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110295, + "CONCEPT_NAME" : "Surgical treatment of ectopic pregnancy; abdominal pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59130", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110298, + "CONCEPT_NAME" : "Surgical treatment of ectopic pregnancy; cervical, with evacuation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59140", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110297, + "CONCEPT_NAME" : "Surgical treatment of ectopic pregnancy; interstitial, uterine pregnancy with partial resection of uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59136", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4296038, + "CONCEPT_NAME" : "Tetanus complicating ectopic AND/OR molar pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "76843005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 199076, + "CONCEPT_NAME" : "Tubal pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "79586000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4151214, + "CONCEPT_NAME" : "Uremia following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "28196006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4242401, + "CONCEPT_NAME" : "Urinary tract infection following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "38176009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4129027, + "CONCEPT_NAME" : "Viable fetus in abdominal pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237253003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 107, + "name" : "Ectopic pregnancy procedure (ECT1 & ECT 2)", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4200678, + "CONCEPT_NAME" : "Abdominal hysterectomy and left salpingo-oophorectomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "302191001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4300368, + "CONCEPT_NAME" : "Aspiration of ectopic pregnancy from fallopian tube", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "387617009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4093429, + "CONCEPT_NAME" : "Bilateral complete salpingectomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25811000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004347, + "CONCEPT_NAME" : "Bilateral partial salpingectomy, not otherwise specified", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "66.63", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4107080, + "CONCEPT_NAME" : "Bilateral salpingectomy with oophorectomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "29827000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4142956, + "CONCEPT_NAME" : "Diagnostic laparoscopy of female pelvis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "264973001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757216, + "CONCEPT_NAME" : "Discharge disposition [CARE]", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "52688-9", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Survey" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757177, + "CONCEPT_NAME" : "Discharge Status", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "52523-8", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Survey" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40259069, + "CONCEPT_NAME" : "Dye test of fallopian tube", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "177006000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4074443, + "CONCEPT_NAME" : "Endoscopic freeing of adhesions of fallopian tube", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "176994003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4074426, + "CONCEPT_NAME" : "Excision of ectopic ovarian pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "176928008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4074427, + "CONCEPT_NAME" : "Excision of ruptured ectopic tubal pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "176929000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004345, + "CONCEPT_NAME" : "Excision or destruction of lesion of fallopian tube", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "66.61", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4196129, + "CONCEPT_NAME" : "Failed minimum access approach", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "313004003", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4001541, + "CONCEPT_NAME" : "Fallopian tube excision", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "120053002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4306064, + "CONCEPT_NAME" : "Fimbrial extraction of tubal pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "387616000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4100257, + "CONCEPT_NAME" : "Fimbriectomy of fallopian tube", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25344002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4084217, + "CONCEPT_NAME" : "Gynecological emergency hospital admission", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "183459001", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4085257, + "CONCEPT_NAME" : "Inhalation anesthesia, machine system, closed, circulation of primary agent", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "24277005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40347147, + "CONCEPT_NAME" : "Laparoscopic", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "260508005", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Qualifier Value" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40378260, + "CONCEPT_NAME" : "Laparoscopic approach", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "180627003", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Qualifier Value" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4319321, + "CONCEPT_NAME" : "Laparoscopic lysis of adhesions", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "9540004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40490893, + "CONCEPT_NAME" : "Laparoscopic lysis of adhesions of ovary and fallopian tube", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "447077004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4190526, + "CONCEPT_NAME" : "Laparoscopic total abdominal hysterectomy and bilateral salpingo-oophorectomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "414575003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110299, + "CONCEPT_NAME" : "Laparoscopic treatment of ectopic pregnancy; without salpingectomy and/or oophorectomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59150", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110300, + "CONCEPT_NAME" : "Laparoscopic treatment of ectopic pregnancy; with salpingectomy and/or oophorectomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59151", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4251314, + "CONCEPT_NAME" : "Laparoscopy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "73632009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40480864, + "CONCEPT_NAME" : "Laparoscopy assisted vaginal hysterectomy with bilateral salpingo-oophorectomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "441820006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4032749, + "CONCEPT_NAME" : "Laparoscopy of fallopian tube", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "236938008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110240, + "CONCEPT_NAME" : "Laparoscopy, surgical; with removal of adnexal structures (partial or total oophorectomy and/or salpingectomy)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "58661", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2722205, + "CONCEPT_NAME" : "Laparoscopy, surgical; with removal of adnexal structures (partial or total oophorectomy and/or salpingectomy). (Deprecated)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "56307", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110245, + "CONCEPT_NAME" : "Laparoscopy, surgical; with salpingostomy (salpingoneostomy)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "58673", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2722217, + "CONCEPT_NAME" : "Laparoscopy, surgical; with salpingostomy (salpingoneostomy). (Deprecated)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "56343", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4074877, + "CONCEPT_NAME" : "Left salpingectomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "176917009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4074876, + "CONCEPT_NAME" : "Left salpingo-oophorectomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "176915001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4214980, + "CONCEPT_NAME" : "Lysis of adhesions", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "39270003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004348, + "CONCEPT_NAME" : "Other partial salpingectomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "66.69", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4267567, + "CONCEPT_NAME" : "Partial salpingectomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "62692004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004342, + "CONCEPT_NAME" : "Removal of both fallopian tubes at same operative episode", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "66.51", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004788, + "CONCEPT_NAME" : "Removal of extratubal ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "74.3", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "3-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004343, + "CONCEPT_NAME" : "Removal of remaining fallopian tube", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "66.52", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4074424, + "CONCEPT_NAME" : "Right salpingectomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "176916000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4072837, + "CONCEPT_NAME" : "Right salpingo-oophorectomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "176914002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110247, + "CONCEPT_NAME" : "Salpingectomy, complete or partial, unilateral or bilateral (separate procedure)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "58700", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4032000, + "CONCEPT_NAME" : "Salpingectomy of remaining fallopian tube", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "14353000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004346, + "CONCEPT_NAME" : "Salpingectomy with removal of tubal pregnancy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "66.62", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4021363, + "CONCEPT_NAME" : "Salpingo-oophorectomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "116028008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4073272, + "CONCEPT_NAME" : "Salpingo-oophorectomy of remaining solitary fallopian tube and ovary", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "176909001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004351, + "CONCEPT_NAME" : "Salpingo-oophorostomy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "66.72", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004362, + "CONCEPT_NAME" : "Salpingo-salpingostomy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "66.73", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4263669, + "CONCEPT_NAME" : "Salpingostomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "60463004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004308, + "CONCEPT_NAME" : "Salpingostomy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "66.02", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110253, + "CONCEPT_NAME" : "Salpingostomy (salpingoneostomy)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "58770", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004307, + "CONCEPT_NAME" : "Salpingotomy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "66.01", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004306, + "CONCEPT_NAME" : "Salpingotomy and salpingostomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "66.0", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "3-dig nonbill code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110296, + "CONCEPT_NAME" : "Surgical treatment of ectopic pregnancy; interstitial, uterine pregnancy requiring total hysterectomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59135", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110293, + "CONCEPT_NAME" : "Surgical treatment of ectopic pregnancy; tubal or ovarian, requiring salpingectomy and/or oophorectomy, abdominal or vaginal approach", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59120", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110294, + "CONCEPT_NAME" : "Surgical treatment of ectopic pregnancy; tubal or ovarian, without salpingectomy and/or oophorectomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59121", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40258875, + "CONCEPT_NAME" : "Termination of pregnancy NEC", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "176831008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4019096, + "CONCEPT_NAME" : "Total abdominal hysterectomy with bilateral salpingo-oophorectomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "116144002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004331, + "CONCEPT_NAME" : "Total bilateral salpingectomy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "66.5", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "3-dig nonbill code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004330, + "CONCEPT_NAME" : "Total unilateral salpingectomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "66.4", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "3-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336229, + "CONCEPT_NAME" : "Unilateral salpingectomy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "86894005", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4301905, + "CONCEPT_NAME" : "Unilateral salpingo-oophorectomy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "78698008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 108, + "name" : "Preterm (PREM)", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 432452, + "CONCEPT_NAME" : "Anemia of prematurity", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "47100003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014461, + "CONCEPT_NAME" : "Baby birth weight equal to 50 percent to 74 percent (3450-3749g)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169864006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4151169, + "CONCEPT_NAME" : "Baby birth weight less than 751gm", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "310491007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015275, + "CONCEPT_NAME" : "Baby extremely premature 28-32 weeks", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "169851005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4149449, + "CONCEPT_NAME" : "Baby premature 24-26 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "310523002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37016220, + "CONCEPT_NAME" : "Baby premature 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15887011000119107", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37016221, + "CONCEPT_NAME" : "Baby premature 25 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15887051000119108", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4149457, + "CONCEPT_NAME" : "Baby premature 26-28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "310548004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37016222, + "CONCEPT_NAME" : "Baby premature 26 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15887091000119103", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37018684, + "CONCEPT_NAME" : "Baby premature 27 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15887131000119101", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 46271955, + "CONCEPT_NAME" : "Baby premature 28-32 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "710235005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37016216, + "CONCEPT_NAME" : "Baby premature 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15750001000119103", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37016217, + "CONCEPT_NAME" : "Baby premature 29 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15750041000119101", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37016218, + "CONCEPT_NAME" : "Baby premature 30 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15750081000119106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37016213, + "CONCEPT_NAME" : "Baby premature 31 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15635451000119107", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 46271814, + "CONCEPT_NAME" : "Baby premature 32-36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "710068006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37018683, + "CONCEPT_NAME" : "Baby premature 32 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15635411000119106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37018889, + "CONCEPT_NAME" : "Baby premature 33 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15635371000119105", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37016212, + "CONCEPT_NAME" : "Baby premature 34 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15635331000119107", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 762577, + "CONCEPT_NAME" : "Baby premature 35-36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429151000124100", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37016211, + "CONCEPT_NAME" : "Baby premature 35 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15635291000119101", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014299, + "CONCEPT_NAME" : "Baby premature 36-38 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169849006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4149451, + "CONCEPT_NAME" : "Baby premature 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "310530008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4150406, + "CONCEPT_NAME" : "Baby premature 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "310529003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4150405, + "CONCEPT_NAME" : "Baby premature 38 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "310528006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4150404, + "CONCEPT_NAME" : "Baby premature 39 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "310527001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015274, + "CONCEPT_NAME" : "Baby very premature 32 to 36 weeks", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "169850006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36684754, + "CONCEPT_NAME" : "Bilateral retinopathy of prematurity", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "343791000119101", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37207968, + "CONCEPT_NAME" : "Bilateral retinopathy of prematurity of eyes stage 0", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "343781000119104", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36684753, + "CONCEPT_NAME" : "Bilateral retinopathy of prematurity of eyes stage 1 - demarcation line", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "343771000119102", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36684752, + "CONCEPT_NAME" : "Bilateral retinopathy of prematurity of eyes stage 2 - intraretinal ridge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "343761000119108", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36684751, + "CONCEPT_NAME" : "Bilateral retinopathy of prematurity of eyes stage 3 - ridge with extraretinal fibrovascular proliferation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "343751000119106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4141513, + "CONCEPT_NAME" : "Complication of prematurity", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "426850008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4195545, + "CONCEPT_NAME" : "Disorder relating to short gestation AND/OR low birthweight", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "67645006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 38001501, + "CONCEPT_NAME" : "Extreme immaturity or respiratory distress syndrome, neonate", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "790", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "DRG", + "CONCEPT_CLASS_ID" : "MS-DRG" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439128, + "CONCEPT_NAME" : "Extreme prematurity of infant", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276658003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4148097, + "CONCEPT_NAME" : "Fetal or neonatal effect of abruptio placentae", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "268803008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4118056, + "CONCEPT_NAME" : "Fetal or neonatal effect of maternal premature rupture of membrane", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206037001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 72726, + "CONCEPT_NAME" : "Light-for-dates with signs of fetal malnutrition", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64177003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36675173, + "CONCEPT_NAME" : "Moderate to late prematurity of infant", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "771507004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440847, + "CONCEPT_NAME" : "Neonatal jaundice associated with preterm delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "73749009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4086393, + "CONCEPT_NAME" : "Premature delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "282020008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4217564, + "CONCEPT_NAME" : "Premature infant", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "395507008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4147874, + "CONCEPT_NAME" : "Premature infant 28-37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "310661005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4273560, + "CONCEPT_NAME" : "Premature labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6383007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4175637, + "CONCEPT_NAME" : "Premature pregnancy delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "49550006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4064709, + "CONCEPT_NAME" : "Premature rupture of membranes, labor delayed by therapy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199661007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4058403, + "CONCEPT_NAME" : "Premature separation of placenta with coagulation defect", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198912003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440519, + "CONCEPT_NAME" : "Premature - weight 1000g-2499g or gestation of 28-37weeks", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "206169007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440525, + "CONCEPT_NAME" : "Prematurity of fetus", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "44247006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36675035, + "CONCEPT_NAME" : "Prematurity of infant", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "771299009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37311892, + "CONCEPT_NAME" : "Primary central sleep apnea of prematurity", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "789009003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2109484, + "CONCEPT_NAME" : "Repair, initial inguinal hernia, preterm infant (younger than 37 weeks gestation at birth), performed from birth up to 50 weeks postconception age, with or without hydrocelectomy; incarcerated or strangulated", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "49492", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2109483, + "CONCEPT_NAME" : "Repair, initial inguinal hernia, preterm infant (younger than 37 weeks gestation at birth), performed from birth up to 50 weeks postconception age, with or without hydrocelectomy; reducible", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "49491", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 373766, + "CONCEPT_NAME" : "Retinopathy of prematurity", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "415297005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36684687, + "CONCEPT_NAME" : "Retinopathy of prematurity of left eye", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "338021000119106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36684686, + "CONCEPT_NAME" : "Retinopathy of prematurity of left eye stage 1 - demarcation line", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "338001000119102", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36684685, + "CONCEPT_NAME" : "Retinopathy of prematurity of left eye stage 2 - intraretinal ridge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "337991000119106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36684684, + "CONCEPT_NAME" : "Retinopathy of prematurity of left eye stage 3 - ridge with extraretinal fibrovascular proliferation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "337981000119108", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36684624, + "CONCEPT_NAME" : "Retinopathy of prematurity of right eye", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "332411000119108", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36684623, + "CONCEPT_NAME" : "Retinopathy of prematurity of right eye stage 1 - demarcation line", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "332391000119108", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36684622, + "CONCEPT_NAME" : "Retinopathy of prematurity of right eye stage 2 - intraretinal ridge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "332381000119105", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36684621, + "CONCEPT_NAME" : "Retinopathy of prematurity of right eye stage 3 - ridge with extraretinal fibrovascular proliferation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "332371000119107", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45772079, + "CONCEPT_NAME" : "Retinopathy of prematurity stage 0", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "124111000119102", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 375250, + "CONCEPT_NAME" : "Retinopathy of prematurity stage 1 - demarcation line", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "408847006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 375251, + "CONCEPT_NAME" : "Retinopathy of prematurity stage 2 - intraretinal ridge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "408848001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 379009, + "CONCEPT_NAME" : "Retinopathy of prematurity stage 3 - ridge with extraretinal fibrovascular proliferation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "408849009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443519, + "CONCEPT_NAME" : "Retinopathy of prematurity stage 4 - subtotal retinal detachment", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "408850009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443520, + "CONCEPT_NAME" : "Retinopathy of prematurity stage 5 - total retinal detachment", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "408851008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 136530, + "CONCEPT_NAME" : "Sclerema neonatorum", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206539008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2514572, + "CONCEPT_NAME" : "Subsequent intensive care, per day, for the evaluation and management of the recovering infant (present body weight of 2501-5000 grams)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "99480", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42740403, + "CONCEPT_NAME" : "Subsequent intensive care, per day, for the evaluation and management of the recovering low birth weight infant (present body weight of 1500-2500 g)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "99299", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2514571, + "CONCEPT_NAME" : "Subsequent intensive care, per day, for the evaluation and management of the recovering low birth weight infant (present body weight of 1500-2500 grams)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "99479", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42739401, + "CONCEPT_NAME" : "Subsequent intensive care, per day, for the evaluation and management of the recovering very low birth weight infant (present body weight less than 1500 g)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "99298", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2514570, + "CONCEPT_NAME" : "Subsequent intensive care, per day, for the evaluation and management of the recovering very low birth weight infant (present body weight less than 1500 grams)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "99478", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2111055, + "CONCEPT_NAME" : "Treatment of extensive or progressive retinopathy, 1 or more sessions, preterm infant (less than 37 weeks gestation at birth), performed from birth up to 1 year of age (eg, retinopathy of prematurity), photocoagulation or cryotherapy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "67229", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435925, + "CONCEPT_NAME" : "Very premature - less than 1000g or less than 28 weeks", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "268817004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4149523, + "CONCEPT_NAME" : "Very preterm maturity of infant", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "268868001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 109, + "name" : "Methotrexate", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 1305058, + "CONCEPT_NAME" : "methotrexate", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6851", + "DOMAIN_ID" : "Drug", + "VOCABULARY_ID" : "RxNorm", + "CONCEPT_CLASS_ID" : "Ingredient" + }, + "isExcluded" : false, + "includeDescendants" : true, + "includeMapped" : false + } + ] + } + }, + { + "id" : 111, + "name" : "Pregnancy Confirmation (PCONF)", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 441092, + "CONCEPT_NAME" : "Advanced maternal age gravida", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "416413003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061424, + "CONCEPT_NAME" : "Antenatal care: primigravida", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169573007", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40760833, + "CONCEPT_NAME" : "Birth plurality of Pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57722-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Clinical Observation" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4139126, + "CONCEPT_NAME" : "Braxton Hicks contractions", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "32644009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015590, + "CONCEPT_NAME" : "Counseling for termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10383002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3011536, + "CONCEPT_NAME" : "Delivery date Estimated", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "11778-8", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Clinical Observation" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43054893, + "CONCEPT_NAME" : "Delivery location", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72150-6", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Survey" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43021054, + "CONCEPT_NAME" : "Dichorionic diamniotic twin pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "459166009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37017322, + "CONCEPT_NAME" : "Dizygotic twin pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "713575004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441085, + "CONCEPT_NAME" : "Elderly primigravida", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "29399001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 192380, + "CONCEPT_NAME" : "Failed attempted termination of pregnancy without complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90645002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4210896, + "CONCEPT_NAME" : "Fetal gestational age", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57036006", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Observable Entity" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3006722, + "CONCEPT_NAME" : "Fetal Heart Narrative Activity US", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "11616-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Clinical Observation" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40759953, + "CONCEPT_NAME" : "Fetal Narrative Movement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "56834-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Clinical Observation" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 195877, + "CONCEPT_NAME" : "Finding of gravid uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "289675001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061522, + "CONCEPT_NAME" : "General practitioner unit delivery booking", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169622009", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437937, + "CONCEPT_NAME" : "Grand multipara", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "18656007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4030415, + "CONCEPT_NAME" : "Illegitimate pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14080002", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 197031, + "CONCEPT_NAME" : "Intrauterine pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65727000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061672, + "CONCEPT_NAME" : "IUD failure - pregnant", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169488004", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43021951, + "CONCEPT_NAME" : "Monochorionic diamniotic twin pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "459168005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43021952, + "CONCEPT_NAME" : "Monochorionic monoamniotic twin pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "459171002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3045823, + "CONCEPT_NAME" : "Multiple pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45371-2", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Clinical Observation" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432969, + "CONCEPT_NAME" : "Multiple pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16356006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3000119, + "CONCEPT_NAME" : "Narrative Fetal presentation US", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "18850-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Clinical Observation" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4217975, + "CONCEPT_NAME" : "Normal pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72892002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038942, + "CONCEPT_NAME" : "O/E - fetal movements", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163535001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4150948, + "CONCEPT_NAME" : "O/E - fetal presentation", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "268952006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4148890, + "CONCEPT_NAME" : "Pregnancy benefits", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "270471004", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Qualifier Value" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4094910, + "CONCEPT_NAME" : "Pregnancy test positive", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "250423000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061785, + "CONCEPT_NAME" : "Pregnancy unplanned and unwanted", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169567006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060237, + "CONCEPT_NAME" : "Pregnancy unplanned but wanted", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169566002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4299535, + "CONCEPT_NAME" : "Pregnant", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "77386006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4059982, + "CONCEPT_NAME" : "Pregnant - blood test confirms", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169561007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061686, + "CONCEPT_NAME" : "Pregnant - on history", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169563005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4059984, + "CONCEPT_NAME" : "Pregnant - planned", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169565003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061411, + "CONCEPT_NAME" : "Pregnant, sheath failure", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169508004", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4059981, + "CONCEPT_NAME" : "Pregnant - urine test confirms", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169560008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4133029, + "CONCEPT_NAME" : "Primigravida", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "127364007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442594, + "CONCEPT_NAME" : "Quadruplet pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "60810003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440466, + "CONCEPT_NAME" : "Quadruplet pregnancy with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199326006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061423, + "CONCEPT_NAME" : "Questionable if pregnancy was planned", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169569009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4214930, + "CONCEPT_NAME" : "Refer to early pregnancy unit", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "417577000", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040000, + "CONCEPT_NAME" : "Reliability of last menstrual period observation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "53661-5", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Clinical Observation" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 196484, + "CONCEPT_NAME" : "Retroverted incarcerated gravid uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199466009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4042412, + "CONCEPT_NAME" : "Serum pregnancy test positive", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "166437003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 198212, + "CONCEPT_NAME" : "Spotting per vagina in pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "284075002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4129023, + "CONCEPT_NAME" : "Teenage pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237240001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4218813, + "CONCEPT_NAME" : "Third trimester pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "41587001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432375, + "CONCEPT_NAME" : "Triplet pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64254006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441919, + "CONCEPT_NAME" : "Twin pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65147003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4307820, + "CONCEPT_NAME" : "Unplanned pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "83074005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4059985, + "CONCEPT_NAME" : "Unplanned pregnancy unknown if child is wanted", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169568001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4239301, + "CONCEPT_NAME" : "Unwanted pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "58532003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4041878, + "CONCEPT_NAME" : "Urine pregnancy test positive", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "167256004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3023791, + "CONCEPT_NAME" : "Uterus Fundal height Tape measure", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "11881-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Clinical Observation" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40519557, + "CONCEPT_NAME" : "[V]Other unwanted pregnancy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "316385002", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40524802, + "CONCEPT_NAME" : "[V]Pregnant state, incidental", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "315903005", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40524805, + "CONCEPT_NAME" : "[V]Unspecified pregnant state", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "315906002", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 112, + "name" : "Pregnancy complications (PCOMP)", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4198125, + "CONCEPT_NAME" : "Abdominal pain in early pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "314041007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4149783, + "CONCEPT_NAME" : "Abdominal pain in pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "309737007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 193525, + "CONCEPT_NAME" : "Abdominal pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "82661006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 314099, + "CONCEPT_NAME" : "Abnormal fetal heart rate", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "312668007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437688, + "CONCEPT_NAME" : "Abnormal findings on antenatal screening of mother", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199732004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440216, + "CONCEPT_NAME" : "Abnormal glucose tolerance test", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "274858002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439403, + "CONCEPT_NAME" : "Abnormal glucose tolerance test during pregnancy - baby not yet delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "372054004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4162865, + "CONCEPT_NAME" : "Abnormal glucose tolerance test during pregnancy, childbirth and the puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "372046001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 197050, + "CONCEPT_NAME" : "Abnormality of organs AND/OR soft tissues of pelvis affecting pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1639007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4034308, + "CONCEPT_NAME" : "Acromion presentation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "23954006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004824, + "CONCEPT_NAME" : "Amnioinfusion", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "75.37", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435880, + "CONCEPT_NAME" : "Amniotic cavity infection with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199678003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435616, + "CONCEPT_NAME" : "Amniotic fluid embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "17263003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4154997, + "CONCEPT_NAME" : "Amniotic fluid leaking", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "371380006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441959, + "CONCEPT_NAME" : "Amniotic fluid -meconium stain", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "168092006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 436768, + "CONCEPT_NAME" : "Amniotic fluid pulmonary embolism with antenatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200296007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432967, + "CONCEPT_NAME" : "Anemia during pregnancy - baby not yet delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199246003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434701, + "CONCEPT_NAME" : "Anemia in mother complicating pregnancy, childbirth AND/OR puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45828008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4099889, + "CONCEPT_NAME" : "Anemia of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "27342004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4079835, + "CONCEPT_NAME" : "Antenatal risk factors", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276445008", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435887, + "CONCEPT_NAME" : "Antepartum deep vein thrombosis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "49956009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434089, + "CONCEPT_NAME" : "Antepartum hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "34842007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4143074, + "CONCEPT_NAME" : "Antepartum hemorrhage, abruptio placentae and placenta previa", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "267197003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438489, + "CONCEPT_NAME" : "Antepartum hemorrhage associated with coagulation defect", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "267199000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438203, + "CONCEPT_NAME" : "Antepartum hemorrhage with coagulation defect - not delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198918004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4129039, + "CONCEPT_NAME" : "Anti-D antibodies", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "237301008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 80156, + "CONCEPT_NAME" : "Asymptomatic bacteriuria in pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "31563000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 321638, + "CONCEPT_NAME" : "Benign essential hypertension complicating pregnancy, childbirth and the puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198942000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 314423, + "CONCEPT_NAME" : "Benign essential hypertension complicating pregnancy, childbirth and the puerperium - not delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198946002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4027371, + "CONCEPT_NAME" : "Bone AND/OR joint disorder in mother complicating pregnancy, childbirth AND/OR puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "128076000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 73282, + "CONCEPT_NAME" : "Breast engorgement in pregnancy, the puerperium or lactation with antenatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200420005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 76756, + "CONCEPT_NAME" : "Breech presentation with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199355003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 375016, + "CONCEPT_NAME" : "Central nervous system malformation in fetus affecting obstetrical care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1538006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110305, + "CONCEPT_NAME" : "Cerclage of cervix, during pregnancy; abdominal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59325", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110304, + "CONCEPT_NAME" : "Cerclage of cervix, during pregnancy; vaginal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59320", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4321386, + "CONCEPT_NAME" : "Cervical cerclage suture present", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "69802008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 436740, + "CONCEPT_NAME" : "Cervical incompetence", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "17382005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437334, + "CONCEPT_NAME" : "Cervical incompetence with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199484006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 72973, + "CONCEPT_NAME" : "Chromosomal abnormality in fetus affecting obstetrical care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "42686001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3170656, + "CONCEPT_NAME" : "Complcated pregnancy due to surgical history: uterine myomectomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6980001000004103", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "Nebraska Lexicon", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435875, + "CONCEPT_NAME" : "Complication of pregnancy, childbirth and/or puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198609003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433822, + "CONCEPT_NAME" : "Complication related to pregnancy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "90821003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 80205, + "CONCEPT_NAME" : "Condition in fetus originating in the perinatal period", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "41168002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 197339, + "CONCEPT_NAME" : "Congenital abnormality of uterus, affecting pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "41215002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 193825, + "CONCEPT_NAME" : "Congenital abnormality of uterus complicating antenatal care, baby not yet delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "267216000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 314426, + "CONCEPT_NAME" : "Congenital cardiovascular disorder during pregnancy - baby not yet delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199268008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 196175, + "CONCEPT_NAME" : "Congenital OR acquired abnormality of cervix affecting pregnancy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "111443000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 201920, + "CONCEPT_NAME" : "Congenital OR acquired abnormality of vagina affecting pregnancy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "111444006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440162, + "CONCEPT_NAME" : "Congenital or acquired abnormality of vulva complicating antenatal care - baby not yet delivered", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "267249009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433826, + "CONCEPT_NAME" : "Continuing pregnancy after abortion of one fetus or more", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199306007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432373, + "CONCEPT_NAME" : "Continuing pregnancy after intrauterine death of one or more fetuses", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199307003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43020670, + "CONCEPT_NAME" : "Continuing pregnancy after intrauterine death of one twin with intrauterine retention of dead twin", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "472321009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441647, + "CONCEPT_NAME" : "Continuing pregnancy after intrauterine death of twin fetus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429187001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4120986, + "CONCEPT_NAME" : "Controlled cord traction of placenta", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "302384005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433828, + "CONCEPT_NAME" : "Cord tangled or knotted with compression", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "267266006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442421, + "CONCEPT_NAME" : "Cord tangled with compression with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199881006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004823, + "CONCEPT_NAME" : "Correction of fetal defect", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "75.36", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4170118, + "CONCEPT_NAME" : "Cystitis of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "275412000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 73265, + "CONCEPT_NAME" : "Deep transverse arrest with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199775005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 192691, + "CONCEPT_NAME" : "Diabetes mellitus during pregnancy - baby not yet delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199227004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 194700, + "CONCEPT_NAME" : "Diabetes mellitus in mother complicating pregnancy, childbirth AND/OR puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "76751001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 201958, + "CONCEPT_NAME" : "Disorder involving the integument of fetus OR newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "111474003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438815, + "CONCEPT_NAME" : "Disorder of amniotic cavity AND/OR membrane", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72860003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 79890, + "CONCEPT_NAME" : "Disorder of pelvic size and disproportion", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237256006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4053583, + "CONCEPT_NAME" : "Disorder of placenta", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "125586008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 201091, + "CONCEPT_NAME" : "Disproportion - major pelvic abnormality", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199398004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4059763, + "CONCEPT_NAME" : "Disproportion - major pelvic abnormality with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199402008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442913, + "CONCEPT_NAME" : "Drug dependence during pregnancy - baby not yet delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199254001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440787, + "CONCEPT_NAME" : "Drug dependence in mother complicating pregnancy, childbirth AND/OR puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "34150001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443700, + "CONCEPT_NAME" : "Eclampsia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15938005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 137613, + "CONCEPT_NAME" : "Eclampsia in pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198992004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438204, + "CONCEPT_NAME" : "Edema or excessive weight gain in pregnancy without mention of hypertension", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "267202005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442442, + "CONCEPT_NAME" : "Elderly primigravida with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199719009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 81636, + "CONCEPT_NAME" : "Excessive fetal growth affecting management of mother", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "22173004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40479820, + "CONCEPT_NAME" : "Exposure to rubella in pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "444517009", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Event" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 78210, + "CONCEPT_NAME" : "Face OR brow presentation of fetus", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "37762002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4071437, + "CONCEPT_NAME" : "Face presentation of fetus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "21882006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437341, + "CONCEPT_NAME" : "Failed mechanical induction with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199695006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 201083, + "CONCEPT_NAME" : "Fetal AND/OR placental disorder affecting management of mother", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "22753004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43022052, + "CONCEPT_NAME" : "Fetal anemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "462166006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 79146, + "CONCEPT_NAME" : "Fetal blood loss", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206390008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4196670, + "CONCEPT_NAME" : "Fetal blood loss from vasa previa", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "50544004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 80165, + "CONCEPT_NAME" : "Fetal disproportion", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "31805001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 73268, + "CONCEPT_NAME" : "Fetal distress affecting management of mother", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12867002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4203009, + "CONCEPT_NAME" : "Fetal exsanguination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "52977000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 80204, + "CONCEPT_NAME" : "Fetal growth restriction", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "22033007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 201366, + "CONCEPT_NAME" : "Fetal-maternal hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "71028008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 196757, + "CONCEPT_NAME" : "Fetal-maternal hemorrhage with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199578005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4145315, + "CONCEPT_NAME" : "Fetal movements felt", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "268470003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441682, + "CONCEPT_NAME" : "Fetal or neonatal effect of compression of umbilical cord", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86629005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433027, + "CONCEPT_NAME" : "Fetal or neonatal effect of maternal hypertensive disease", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "268794002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 436219, + "CONCEPT_NAME" : "Fetal or neonatal effect of maternal infection", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "206005002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441680, + "CONCEPT_NAME" : "Fetal or neonatal effect of multiple pregnancy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "18001006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 81360, + "CONCEPT_NAME" : "Fetus papyraceous", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90127001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4047725, + "CONCEPT_NAME" : "Fetus small-for-dates with signs of malnutrition", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206164002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442827, + "CONCEPT_NAME" : "Fetus with central nervous system malformation with antenatal problem", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "199520001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 80463, + "CONCEPT_NAME" : "Fetus with chromosomal abnormality with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199527003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4064277, + "CONCEPT_NAME" : "Fetus with damage due to intrauterine contraceptive device", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199558002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4063297, + "CONCEPT_NAME" : "Fetus with damage due to intrauterine contraceptive device with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199561001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060672, + "CONCEPT_NAME" : "Fetus with drug damage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199547006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4064178, + "CONCEPT_NAME" : "Fetus with drug damage with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199550009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4064169, + "CONCEPT_NAME" : "Fetus with hereditary disease", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199531009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4064172, + "CONCEPT_NAME" : "Fetus with hereditary disease with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199534001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4143204, + "CONCEPT_NAME" : "Fetus with viral damage via mother", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "267254000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4064175, + "CONCEPT_NAME" : "Fetus with viral damage via mother with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199539006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3657563, + "CONCEPT_NAME" : "First trimester bleeding", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1323351000000104", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 76772, + "CONCEPT_NAME" : "Galactorrhea in pregnancy and the puerperium with antenatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200448005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 76750, + "CONCEPT_NAME" : "Generally contracted pelvis with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199406006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 77340, + "CONCEPT_NAME" : "Genitourinary tract infection in pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "267204006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 74415, + "CONCEPT_NAME" : "Genitourinary tract infection in pregnancy - not delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199108000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4024659, + "CONCEPT_NAME" : "Gestational diabetes mellitus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "11687002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443214, + "CONCEPT_NAME" : "Gestational edema", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237285000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442565, + "CONCEPT_NAME" : "Gestational edema without hypertension", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "77376005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4058113, + "CONCEPT_NAME" : "Gestational edema with proteinuria", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199141002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442441, + "CONCEPT_NAME" : "Grand multiparity with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199715003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 316478, + "CONCEPT_NAME" : "Heart disease in mother complicating pregnancy, childbirth AND/OR puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "78381004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2212713, + "CONCEPT_NAME" : "Hemoglobin or RBCs, fetal, for fetomaternal hemorrhage; differential lysis (Kleihauer-Betke)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "85460", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437090, + "CONCEPT_NAME" : "Hemolytic disease of fetus OR newborn due to ABO immunization", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "32858009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433603, + "CONCEPT_NAME" : "Hemolytic disease of fetus OR newborn due to RhD isoimmunization", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86986002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438478, + "CONCEPT_NAME" : "Hemorrhage in early pregnancy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "25825004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437935, + "CONCEPT_NAME" : "Hemorrhage in early pregnancy, antepartum", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "30850008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4311256, + "CONCEPT_NAME" : "Herpes gestationis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86081009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442088, + "CONCEPT_NAME" : "High head at term", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199373000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 72696, + "CONCEPT_NAME" : "High head at term with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199376008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4302252, + "CONCEPT_NAME" : "High risk pregnancy care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "386322007", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4062565, + "CONCEPT_NAME" : "History of recurrent miscarriage - not delivered", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199088001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 81923, + "CONCEPT_NAME" : "Hydrocephalic disproportion with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199428006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444245, + "CONCEPT_NAME" : "Hydrocephalic fetus causing disproportion", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "111439004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 77662, + "CONCEPT_NAME" : "Hydrops fetalis due to isoimmunization", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15539009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4030872, + "CONCEPT_NAME" : "Hyperemesis gravidarum", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14094001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4098582, + "CONCEPT_NAME" : "Hyperemesis gravidarum before end of 22 week gestation with carbohydrate depletion", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "27152008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4227141, + "CONCEPT_NAME" : "Hyperemesis gravidarum before end of 22 week gestation with dehydration", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87621000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4142340, + "CONCEPT_NAME" : "Hyperemesis gravidarum before end of 22 week gestation with electrolyte imbalance", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "33370009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 436485, + "CONCEPT_NAME" : "Hyperemesis gravidarum with metabolic disturbance", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199025001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440788, + "CONCEPT_NAME" : "Hyperemesis gravidarum with metabolic disturbance - not delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199028004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 321080, + "CONCEPT_NAME" : "Hypertension complicating pregnancy, childbirth and the puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198941007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 133284, + "CONCEPT_NAME" : "Impetigo herpetiformis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65539006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 436180, + "CONCEPT_NAME" : "Infection of amniotic cavity", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10573002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433823, + "CONCEPT_NAME" : "Infectious disease in mother complicating pregnancy, childbirth AND/OR puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40609001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433266, + "CONCEPT_NAME" : "Infective/parasitic disease in preg/childbirth/puerperium", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "199153003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 79896, + "CONCEPT_NAME" : "Inlet pelvic contraction with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199410009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4197403, + "CONCEPT_NAME" : "Intervillous thrombosis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80256005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4023420, + "CONCEPT_NAME" : "Intra-amniotic infection of fetus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "11618000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4180743, + "CONCEPT_NAME" : "Intraventricular hemorrhage of fetus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428241007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4058246, + "CONCEPT_NAME" : "Iron deficiency anemia of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199248002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4079751, + "CONCEPT_NAME" : "Iron supplement in pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "182947002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442772, + "CONCEPT_NAME" : "Isoimmunization from non-ABO, non-Rh blood-group incompatibility affecting pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "66958002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530880, + "CONCEPT_NAME" : "Known or suspected fetal abnormality", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "609414006", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 77335, + "CONCEPT_NAME" : "Known OR suspected fetal abnormality affecting management of mother", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "66064007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 78818, + "CONCEPT_NAME" : "Large fetus causing disproportion with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199423002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443325, + "CONCEPT_NAME" : "Late pregnancy vomiting - not delivered", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "199033000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439880, + "CONCEPT_NAME" : "Late vomiting of pregnancy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "38331001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 194699, + "CONCEPT_NAME" : "Liver disorder in pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15230009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443292, + "CONCEPT_NAME" : "Liver disorder in pregnancy - not delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199118005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4130310, + "CONCEPT_NAME" : "Macdonald's cervical cerclage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "236946009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 77338, + "CONCEPT_NAME" : "Malposition and malpresentation of fetus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "270498000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004764, + "CONCEPT_NAME" : "Manual rotation of fetal head", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "73.51", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4016059, + "CONCEPT_NAME" : "Maternal alcohol abuse", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "169942003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443295, + "CONCEPT_NAME" : "Maternal care for diminished fetal movements", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "200473005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432977, + "CONCEPT_NAME" : "Maternal distress with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200101003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441081, + "CONCEPT_NAME" : "Maternal gonorrhea during pregnancy - baby not yet delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199165004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 314432, + "CONCEPT_NAME" : "Maternal hypotension syndrome", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "88887003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 315327, + "CONCEPT_NAME" : "Maternal hypotension syndrome with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200113008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42872398, + "CONCEPT_NAME" : "Maternal obesity complicating pregnancy, childbirth and the puerperium, antepartum", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "171000119107", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439893, + "CONCEPT_NAME" : "Maternal obesity syndrome", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "44772007", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438205, + "CONCEPT_NAME" : "Maternal syphilis during pregnancy - baby not yet delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199158007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434697, + "CONCEPT_NAME" : "Maternal tobacco abuse", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169940006", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442918, + "CONCEPT_NAME" : "Mental disorder during pregnancy - baby not yet delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199261002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060424, + "CONCEPT_NAME" : "Mental disorders during pregnancy, childbirth and the puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199257008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 436166, + "CONCEPT_NAME" : "Mild hyperemesis gravidarum", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "19569008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435023, + "CONCEPT_NAME" : "Mild hyperemesis-not delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199023008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 314090, + "CONCEPT_NAME" : "Mild pre-eclampsia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "41114007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4063183, + "CONCEPT_NAME" : "Mixed feto-pelvic disproportion", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199416003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 78817, + "CONCEPT_NAME" : "Mixed feto-pelvic disproportion with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199419005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4030429, + "CONCEPT_NAME" : "Moderate hyperemesis gravidarum", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "129597002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4034094, + "CONCEPT_NAME" : "Moderate proteinuric hypertension of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237281009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4199931, + "CONCEPT_NAME" : "Morning sickness", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "51885006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437041, + "CONCEPT_NAME" : "Mother not delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "289257009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110337, + "CONCEPT_NAME" : "Multifetal pregnancy reduction(s) (MPR)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59866", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 75015, + "CONCEPT_NAME" : "Multiple gestation with one OR more fetal malpresentations", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80224003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4063175, + "CONCEPT_NAME" : "Multiple pregnancy with malpresentation with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199381004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4178154, + "CONCEPT_NAME" : "Multiple pregnancy with one fetal loss", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428511009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 194598, + "CONCEPT_NAME" : "Neoplasm of uncertain behavior of placenta", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "95005005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4080067, + "CONCEPT_NAME" : "Non-urgent obstetric admission", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "183494008", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442051, + "CONCEPT_NAME" : "Obstetric air pulmonary embolism with antenatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200290001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433545, + "CONCEPT_NAME" : "Obstetric blood-clot pulmonary embolism with antenatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200303005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 78218, + "CONCEPT_NAME" : "Obstetric breast abscess with antenatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200376001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4080059, + "CONCEPT_NAME" : "Obstetric emergency hospital admission", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "183460006", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441926, + "CONCEPT_NAME" : "Obstetric nipple infection with antenatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200369006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 76491, + "CONCEPT_NAME" : "Obstetric non-purulent mastitis with antenatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200383008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442071, + "CONCEPT_NAME" : "Obstetric shock with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200107004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038426, + "CONCEPT_NAME" : "O/E - fetal movements felt", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163538004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038755, + "CONCEPT_NAME" : "O/E - fundus 34-36 week size", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163506009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434111, + "CONCEPT_NAME" : "Oligohydramnios", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59566000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432386, + "CONCEPT_NAME" : "Oligohydramnios with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199654008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 72378, + "CONCEPT_NAME" : "Outlet pelvic contraction with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199414000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443323, + "CONCEPT_NAME" : "Papyraceous fetus - not delivered", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "199070009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 195019, + "CONCEPT_NAME" : "Pelvic soft tissue abnormality in pregnancy, childbirth and the puerperium with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199513008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 135370, + "CONCEPT_NAME" : "Perinatal cutaneous hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "18503002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 258564, + "CONCEPT_NAME" : "Perinatal interstitial emphysema", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "60125001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 313590, + "CONCEPT_NAME" : "Perinatal respiratory failure", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "91581004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 197608, + "CONCEPT_NAME" : "Peripheral neuritis in pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "17787002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 199086, + "CONCEPT_NAME" : "Peripheral neuritis in pregnancy - not delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199095005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444374, + "CONCEPT_NAME" : "Persistent occipitoposterior position", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "70068004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 317941, + "CONCEPT_NAME" : "Phlebitis AND/OR thrombosis complicating pregnancy AND/OR puerperium", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "26850007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014718, + "CONCEPT_NAME" : "Placental abnormality", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169957005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 198488, + "CONCEPT_NAME" : "Placental abruption", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "415105001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 201350, + "CONCEPT_NAME" : "Placental abruption - not delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198911005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 200784, + "CONCEPT_NAME" : "Placental condition affecting management of mother", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "111447004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014716, + "CONCEPT_NAME" : "Placental finding", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169952004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4034100, + "CONCEPT_NAME" : "Placental insufficiency", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237292005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4064854, + "CONCEPT_NAME" : "Placental localization", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "164817009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4284028, + "CONCEPT_NAME" : "Placenta previa", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36813001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 196751, + "CONCEPT_NAME" : "Placenta previa with hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198903000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 200149, + "CONCEPT_NAME" : "Placenta previa with hemorrhage - not delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198906008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 194710, + "CONCEPT_NAME" : "Placenta previa without hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7792000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 192372, + "CONCEPT_NAME" : "Placenta previa without hemorrhage - not delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198900002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437623, + "CONCEPT_NAME" : "Polyhydramnios", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86203003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433540, + "CONCEPT_NAME" : "Polyhydramnios with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199647002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 72693, + "CONCEPT_NAME" : "Poor fetal growth affecting management", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "397949005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 75639, + "CONCEPT_NAME" : "Poor fetal nutrition", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276608005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439393, + "CONCEPT_NAME" : "Pre-eclampsia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "398254007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 141084, + "CONCEPT_NAME" : "Pre-eclampsia or eclampsia with pre-existing hypertension", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198997005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 136743, + "CONCEPT_NAME" : "Pre-eclampsia or eclampsia with pre-existing hypertension - not delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199002002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4146816, + "CONCEPT_NAME" : "Pre-existing hypertension complicating AND/OR reason for care during childbirth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "34694006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4277110, + "CONCEPT_NAME" : "Pre-existing hypertension complicating AND/OR reason for care during pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65402008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 321074, + "CONCEPT_NAME" : "Pre-existing hypertension complicating pregnancy, childbirth and puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199005000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438209, + "CONCEPT_NAME" : "Pregnancy care of habitual aborter", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "199089009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4062674, + "CONCEPT_NAME" : "Pregnancy complication NOS", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "199152008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439348, + "CONCEPT_NAME" : "Pregnancy complications", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "198881004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4167493, + "CONCEPT_NAME" : "Pregnancy-induced hypertension", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48194001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4062574, + "CONCEPT_NAME" : "Pregnancy-related glycosuria", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199132007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 194702, + "CONCEPT_NAME" : "Premature rupture of membranes", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "44223004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 200468, + "CONCEPT_NAME" : "Premature rupture of membranes with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199659003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 201516, + "CONCEPT_NAME" : "Primary malignant neoplasm of placenta", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "93965008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435883, + "CONCEPT_NAME" : "Prolapse of cord with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199870008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4082504, + "CONCEPT_NAME" : "Pruritus of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "239102001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 313272, + "CONCEPT_NAME" : "Puerperal cerebrovascular disorder with antenatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200332008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 192679, + "CONCEPT_NAME" : "Renal disease in pregnancy AND/OR puerperium without hypertension", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "75150001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 192684, + "CONCEPT_NAME" : "Renal hypertension complicating pregnancy, childbirth and the puerperium - not delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198953006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 196486, + "CONCEPT_NAME" : "Retroverted incarcerated gravid uterus with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199470001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 199891, + "CONCEPT_NAME" : "Rhesus isoimmunization affecting pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "44795003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 192376, + "CONCEPT_NAME" : "Rhesus isoimmunization with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199583002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4327745, + "CONCEPT_NAME" : "Second trimester bleeding", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "430881000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4032345, + "CONCEPT_NAME" : "Severe hyperemesis gravidarum", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "129598007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433536, + "CONCEPT_NAME" : "Severe pre-eclampsia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46764007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 132685, + "CONCEPT_NAME" : "Severe pre-eclampsia - not delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198985009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4127241, + "CONCEPT_NAME" : "Shirodkar's cervical cerclage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "236947000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438226, + "CONCEPT_NAME" : "Short cord", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59795007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437946, + "CONCEPT_NAME" : "Short cord with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199890004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 75608, + "CONCEPT_NAME" : "Shoulder dystocia with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199784005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4087113, + "CONCEPT_NAME" : "Slow fetal growth AND/OR fetal malnutrition", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "18471004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435331, + "CONCEPT_NAME" : "Superficial thrombophlebitis in pregnancy and the puerperium with antenatal complication", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "200226001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530886, + "CONCEPT_NAME" : "Suspected fetal damage from disease in the mother", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609420007", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530888, + "CONCEPT_NAME" : "Suspected fetal damage from radiation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609422004", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4142581, + "CONCEPT_NAME" : "Third trimester bleeding", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "427139004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 138479, + "CONCEPT_NAME" : "Thyroid dysfunction during pregnancy - baby not yet delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199239007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 139895, + "CONCEPT_NAME" : "Thyroid dysfunction during pregnancy, childbirth and the puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199235001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110288, + "CONCEPT_NAME" : "Transabdominal amnioinfusion, including ultrasound guidance", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59070", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441922, + "CONCEPT_NAME" : "Transient hypertension of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237279007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 136760, + "CONCEPT_NAME" : "Transient hypertension of pregnancy - not delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198967002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 81358, + "CONCEPT_NAME" : "Transverse OR oblique presentation of fetus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "11914001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437931, + "CONCEPT_NAME" : "Triplet pregnancy with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199322008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 196758, + "CONCEPT_NAME" : "Tumor of body of uterus affecting pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "223003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 192385, + "CONCEPT_NAME" : "Tumor of uterine body complicating antenatal care, baby not yet delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "267223004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434097, + "CONCEPT_NAME" : "Twin pregnancy with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199318003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2211782, + "CONCEPT_NAME" : "Ultrasonic guidance for intrauterine fetal transfusion or cordocentesis, imaging supervision and interpretation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "76941", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061971, + "CONCEPT_NAME" : "Umbilical cord tight around neck with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199875003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110340, + "CONCEPT_NAME" : "Unlisted fetal invasive procedure, including ultrasound guidance, when performed", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59897", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 79091, + "CONCEPT_NAME" : "Unstable lie", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86356004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 72374, + "CONCEPT_NAME" : "Unstable lie with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199345002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4146482, + "CONCEPT_NAME" : "Urinary tract infection in pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "307534009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 194101, + "CONCEPT_NAME" : "Uterine size for dates discrepancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "430933008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37109810, + "CONCEPT_NAME" : "Vaginal bleeding complicating early pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "723665008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442290, + "CONCEPT_NAME" : "Varicose veins of legs complicating pregnancy AND/OR puerperium", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "5626004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434712, + "CONCEPT_NAME" : "Varicose veins of legs in pregnancy and the puerperium with antenatal complication", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "200208004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441929, + "CONCEPT_NAME" : "Varicose veins of perineum and vulva in pregnancy and the puerperium with antenatal complication", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "200217004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435021, + "CONCEPT_NAME" : "Vasa previa with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199896005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 315884, + "CONCEPT_NAME" : "Vascular lesions of cord with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199901007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4300078, + "CONCEPT_NAME" : "Velamentous insertion of umbilical cord", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "77278008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440158, + "CONCEPT_NAME" : "Venereal disease in mother complicating pregnancy, childbirth AND/OR puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "27075004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 313543, + "CONCEPT_NAME" : "Venous complication of pregnancy and/or puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "267280004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435604, + "CONCEPT_NAME" : "Viral disease in mother complicating pregnancy, childbirth AND/OR puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "31516002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 35625971, + "CONCEPT_NAME" : "Vomiting during third trimester of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "769087009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440785, + "CONCEPT_NAME" : "Vomiting of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90325002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 113, + "name" : "Threatened miscarriage (TA)", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 440457, + "CONCEPT_NAME" : "Threatened miscarriage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54048003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4252252, + "CONCEPT_NAME" : "Threatened miscarriage in first trimester", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "73790007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4294259, + "CONCEPT_NAME" : "Threatened miscarriage in second trimester", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "75933004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4032055, + "CONCEPT_NAME" : "Threatened miscarriage in third trimester", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10884004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + } + ], + "QualifiedLimit" : { + "Type" : "Last" + }, + "ExpressionLimit" : { + "Type" : "All" + }, + "InclusionRules" : [ + { + "name" : "Outcome between 140d-301d from entry event", + "expression" : { + "Type" : "ANY", + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 60, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 140, + "Coeff" : 1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 60, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 140, + "Coeff" : 1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + }, + { + "name" : "No outcome between 0d-139d from entry event", + "expression" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 60, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 60, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + }, + { + "name" : "No outcome in 28d before entry event", + "expression" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 60, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 28, + "Coeff" : -1 + }, + "End" : { + "Days" : 0, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 60, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 28, + "Coeff" : -1 + }, + "End" : { + "Days" : 0, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 1, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 28, + "Coeff" : -1 + }, + "End" : { + "Days" : 0, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 1, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 28, + "Coeff" : -1 + }, + "End" : { + "Days" : 0, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 107, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 14, + "Coeff" : -1 + }, + "End" : { + "Days" : 0, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "DrugEra" : { + "CodesetId" : 109 + } + }, + "StartWindow" : { + "Start" : { + "Days" : 14, + "Coeff" : -1 + }, + "End" : { + "Days" : 0, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 107, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 14, + "Coeff" : -1 + }, + "End" : { + "Days" : 0, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 62, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 14, + "Coeff" : -1 + }, + "End" : { + "Days" : 0, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 62, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 14, + "Coeff" : -1 + }, + "End" : { + "Days" : 0, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 62, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 14, + "Coeff" : -1 + }, + "End" : { + "Days" : 0, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 0, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 28, + "Coeff" : -1 + }, + "End" : { + "Days" : 0, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 0, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 28, + "Coeff" : -1 + }, + "End" : { + "Days" : 0, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 0, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 28, + "Coeff" : -1 + }, + "End" : { + "Days" : 0, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 0, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 28, + "Coeff" : -1 + }, + "End" : { + "Days" : 0, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + }, + { + "name" : "Has a second pregnancy marker", + "description" : "has a second marker", + "expression" : { + "Type" : "ANY", + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 61, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 2, + "IsDistinct" : true, + "CountColumn" : "DOMAIN_CONCEPT" + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 61, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 2, + "IsDistinct" : true, + "CountColumn" : "DOMAIN_CONCEPT" + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 61, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 2, + "IsDistinct" : true, + "CountColumn" : "DOMAIN_CONCEPT" + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 61, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 2, + "IsDistinct" : true, + "CountColumn" : "DOMAIN_CONCEPT" + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 2, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 61, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false, + "CountColumn" : "START_DATE" + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 61, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false, + "CountColumn" : "START_DATE" + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 61, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false, + "CountColumn" : "START_DATE" + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 61, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false, + "CountColumn" : "START_DATE" + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + } + }, + { + "name" : "Female, aged 12-55 on outcome date", + "expression" : { + "Type" : "ANY", + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 60, + "ConditionTypeExclude" : false, + "Age" : { + "Value" : 12, + "Op" : "bt", + "Extent" : 55 + }, + "Gender" : [ + { + "CONCEPT_ID" : 8532, + "CONCEPT_NAME" : "FEMALE", + "STANDARD_CONCEPT" : null, + "STANDARD_CONCEPT_CAPTION" : "Unknown", + "INVALID_REASON" : null, + "INVALID_REASON_CAPTION" : "Unknown", + "CONCEPT_CODE" : "F", + "DOMAIN_ID" : "Gender", + "VOCABULARY_ID" : "Gender", + "CONCEPT_CLASS_ID" : null + } + ] + } + }, + "StartWindow" : { + "Start" : { + "Days" : 140, + "Coeff" : 1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 60, + "ObservationTypeExclude" : false, + "Age" : { + "Value" : 12, + "Op" : "bt", + "Extent" : 55 + }, + "Gender" : [ + { + "CONCEPT_ID" : 8532, + "CONCEPT_NAME" : "FEMALE", + "STANDARD_CONCEPT" : null, + "STANDARD_CONCEPT_CAPTION" : "Unknown", + "INVALID_REASON" : null, + "INVALID_REASON_CAPTION" : "Unknown", + "CONCEPT_CODE" : "F", + "DOMAIN_ID" : "Gender", + "VOCABULARY_ID" : "Gender", + "CONCEPT_CLASS_ID" : null + } + ] + } + }, + "StartWindow" : { + "Start" : { + "Days" : 140, + "Coeff" : 1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + }, + { + "name" : "No post outcome event in 42d (AGP, PCONF)", + "expression" : { + "Type" : "ANY", + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 57, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 1, + "Coeff" : 1 + }, + "End" : { + "Days" : 42, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 57, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 1, + "Coeff" : 1 + }, + "End" : { + "Days" : 42, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 57, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 1, + "Coeff" : 1 + }, + "End" : { + "Days" : 42, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 57, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 1, + "Coeff" : 1 + }, + "End" : { + "Days" : 42, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 56, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 1, + "Coeff" : 1 + }, + "End" : { + "Days" : 42, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 56, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 1, + "Coeff" : 1 + }, + "End" : { + "Days" : 42, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "VisitOccurrence" : { + "CodesetId" : 56, + "VisitTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 1, + "Coeff" : 1 + }, + "End" : { + "Days" : 42, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 56, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 1, + "Coeff" : 1 + }, + "End" : { + "Days" : 42, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + }, + "CodesetId" : 60, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 140, + "Coeff" : 1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 57, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 1, + "Coeff" : 1 + }, + "End" : { + "Days" : 42, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 57, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 1, + "Coeff" : 1 + }, + "End" : { + "Days" : 42, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 57, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 1, + "Coeff" : 1 + }, + "End" : { + "Days" : 42, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 57, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 1, + "Coeff" : 1 + }, + "End" : { + "Days" : 42, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 56, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 1, + "Coeff" : 1 + }, + "End" : { + "Days" : 42, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 56, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 1, + "Coeff" : 1 + }, + "End" : { + "Days" : 42, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 56, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 1, + "Coeff" : 1 + }, + "End" : { + "Days" : 42, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "VisitOccurrence" : { + "CodesetId" : 56, + "VisitTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 1, + "Coeff" : 1 + }, + "End" : { + "Days" : 42, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + }, + "CodesetId" : 60, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 140, + "Coeff" : 1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + }, + { + "name" : " No live birth around outcome date", + "expression" : { + "Type" : "ANY", + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 1, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 168, + "Coeff" : -1 + }, + "End" : { + "Days" : 182, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 1, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 168, + "Coeff" : -1 + }, + "End" : { + "Days" : 182, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + }, + "CodesetId" : 60, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 140, + "Coeff" : 1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 1, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 168, + "Coeff" : -1 + }, + "End" : { + "Days" : 182, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 1, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 168, + "Coeff" : -1 + }, + "End" : { + "Days" : 182, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + }, + "CodesetId" : 60, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 140, + "Coeff" : 1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + }, + { + "name" : "Outcome marker in observation period", + "expression" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "ObservationPeriod" : { + "CorrelatedCriteria" : { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "Observation" : { + "CodesetId" : 60, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "EndWindow" : { + "Start" : { + "Coeff" : -1 + }, + "End" : { + "Days" : 0, + "Coeff" : 1 + }, + "UseIndexEnd" : true, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 60, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "EndWindow" : { + "Start" : { + "Coeff" : -1 + }, + "End" : { + "Days" : 0, + "Coeff" : 1 + }, + "UseIndexEnd" : true, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + } + }, + "StartWindow" : { + "Start" : { + "Coeff" : -1 + }, + "End" : { + "Days" : 0, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + } + ], + "EndStrategy" : { + "DateOffset" : { + "DateField" : "StartDate", + "Offset" : 301 + } + }, + "CensoringCriteria" : [ + { + "ConditionOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 1, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 168, + "Coeff" : -1 + }, + "End" : { + "Days" : 182, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 1, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 168, + "Coeff" : -1 + }, + "End" : { + "Days" : 182, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + }, + "CodesetId" : 60, + "ConditionTypeExclude" : false + } + }, + { + "Observation" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 1, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 168, + "Coeff" : -1 + }, + "End" : { + "Days" : 182, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 1, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 168, + "Coeff" : -1 + }, + "End" : { + "Days" : 182, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + }, + "CodesetId" : 60, + "ObservationTypeExclude" : false + } + } + ], + "CollapseSettings" : { + "CollapseType" : "ERA", + "EraPad" : 0 + }, + "CensorWindow" : {} +} \ No newline at end of file diff --git a/inst/cohorts/1433.json b/inst/cohorts/1433.json new file mode 100644 index 00000000..64c178ff --- /dev/null +++ b/inst/cohorts/1433.json @@ -0,0 +1,176914 @@ +{ + "cdmVersionRange" : ">=5.0.0", + "PrimaryCriteria" : { + "CriteriaList" : [ + { + "Measurement" : { + "CorrelatedCriteria" : { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 1, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 1, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 0, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 0, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 0, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 0, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + }, + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + { + "ConditionOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 63, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 63, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 1, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 1, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 0, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 0, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 0, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 0, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 20, + "ConditionTypeExclude" : false + } + }, + { + "ConditionOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 64, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 64, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 1, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 1, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 0, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 0, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 0, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 0, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 21, + "ConditionTypeExclude" : false + } + }, + { + "ConditionOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 65, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 65, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 1, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 1, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 0, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 0, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 0, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 0, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 22, + "ConditionTypeExclude" : false + } + }, + { + "ConditionOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 66, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 66, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 1, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 1, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 0, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 0, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 0, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 0, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 23, + "ConditionTypeExclude" : false + } + }, + { + "ConditionOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 67, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 67, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 1, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 1, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 0, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 0, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 0, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 0, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 24, + "ConditionTypeExclude" : false + } + }, + { + "ConditionOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 68, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 68, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 1, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 1, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 0, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 0, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 0, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 0, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 25, + "ConditionTypeExclude" : false + } + }, + { + "ConditionOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 69, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 69, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 1, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 1, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 0, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 0, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 0, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 0, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 26, + "ConditionTypeExclude" : false + } + }, + { + "ConditionOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 70, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 70, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 1, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 1, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 0, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 0, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 0, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 0, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 3, + "ConditionTypeExclude" : false + } + }, + { + "ProcedureOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 70, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 70, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 1, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 1, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 0, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 0, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 0, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 0, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 3, + "ProcedureTypeExclude" : false + } + }, + { + "ConditionOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 71, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 71, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 1, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 1, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 0, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 0, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 0, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 0, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 14, + "ConditionTypeExclude" : false + } + }, + { + "ConditionOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 72, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 72, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 1, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 1, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 0, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 0, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 0, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 0, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 17, + "ConditionTypeExclude" : false + } + }, + { + "ConditionOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionEra" : { + "CodesetId" : 73 + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 73, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 1, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 1, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 0, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 0, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 0, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 0, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 18, + "ConditionTypeExclude" : false + } + }, + { + "ConditionOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 74, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 74, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 1, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 1, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 0, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 0, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 0, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 0, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 9, + "ConditionTypeExclude" : false + } + }, + { + "ProcedureOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 74, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 74, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 1, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 1, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 0, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 0, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 0, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 0, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 9, + "ProcedureTypeExclude" : false + } + }, + { + "ConditionOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 75, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 75, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 1, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 1, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 0, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 0, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 0, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 0, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 19, + "ConditionTypeExclude" : false + } + }, + { + "ConditionOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 76, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 76, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 1, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 1, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 0, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 0, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 0, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 0, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 28, + "ConditionTypeExclude" : false + } + }, + { + "ConditionOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 77, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 77, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 1, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 1, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 0, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 0, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 0, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 0, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 29, + "ConditionTypeExclude" : false + } + }, + { + "ConditionOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 81, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 81, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 1, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 1, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 0, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 0, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 0, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 0, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 30, + "ConditionTypeExclude" : false + } + }, + { + "ProcedureOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 81, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 81, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 1, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 1, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 0, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 0, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 0, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 0, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 30, + "ProcedureTypeExclude" : false + } + }, + { + "ConditionOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 82, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 82, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 1, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 1, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 0, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 0, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 0, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 0, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 31, + "ConditionTypeExclude" : false + } + }, + { + "ConditionOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 83, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 83, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 1, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 1, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 0, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 0, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 0, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 0, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 32, + "ConditionTypeExclude" : false + } + }, + { + "ConditionOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 84, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 84, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 1, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 1, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 0, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 0, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 0, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 0, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 33, + "ConditionTypeExclude" : false + } + }, + { + "ConditionOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 85, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 85, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 1, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 1, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 0, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 0, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 0, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 0, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 34, + "ConditionTypeExclude" : false + } + }, + { + "ProcedureOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 85, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 85, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 1, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 1, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 0, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 0, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 0, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 0, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 34, + "ProcedureTypeExclude" : false + } + }, + { + "ConditionOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 87, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 87, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 1, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 1, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 0, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 0, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 0, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 0, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 35, + "ConditionTypeExclude" : false + } + }, + { + "ConditionOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 94, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 94, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 1, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 1, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 0, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 0, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 0, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 0, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 36, + "ConditionTypeExclude" : false + } + }, + { + "ProcedureOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 94, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 94, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 1, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 1, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 0, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 0, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 0, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 0, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 36, + "ProcedureTypeExclude" : false + } + }, + { + "ConditionOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 95, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 95, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 1, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 1, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 0, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 0, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 0, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 0, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 37, + "ConditionTypeExclude" : false + } + }, + { + "ProcedureOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 96, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 96, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 1, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 1, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 0, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 0, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 0, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 0, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 38, + "ProcedureTypeExclude" : false + } + }, + { + "ConditionOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 96, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 96, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 1, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 1, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 0, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 0, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 0, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 0, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 38, + "ConditionTypeExclude" : false + } + }, + { + "ConditionOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 97, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 97, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 1, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 1, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 0, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 0, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 0, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 0, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 40, + "ConditionTypeExclude" : false + } + }, + { + "ProcedureOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 97, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 97, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 1, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 1, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 0, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 0, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 0, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 0, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 40, + "ProcedureTypeExclude" : false + } + }, + { + "ConditionOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 98, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 98, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 1, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 1, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 0, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 0, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 0, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 0, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 41, + "ConditionTypeExclude" : false + } + }, + { + "ConditionOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 99, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 99, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 1, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 1, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 0, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 0, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 0, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 0, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 42, + "ConditionTypeExclude" : false + } + }, + { + "ConditionOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 100, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 100, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 1, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 1, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 0, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 0, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 0, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 0, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 43, + "ConditionTypeExclude" : false + } + }, + { + "ConditionOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 86, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 86, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 1, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 1, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 0, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 0, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 0, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 0, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 44, + "ConditionTypeExclude" : false + } + }, + { + "ConditionOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 88, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 88, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 1, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 1, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 0, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 0, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 0, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 0, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 45, + "ConditionTypeExclude" : false + } + }, + { + "ProcedureOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 88, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 88, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 1, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 1, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 0, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 0, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 0, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 0, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 45, + "ProcedureTypeExclude" : false + } + }, + { + "ConditionOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 101, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 101, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 1, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 1, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 0, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 0, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 0, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 0, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 47, + "ConditionTypeExclude" : false + } + }, + { + "ProcedureOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 101, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 101, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 1, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 1, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 0, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 0, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 0, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 0, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 47, + "ProcedureTypeExclude" : false + } + }, + { + "ConditionOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 102, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 102, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 1, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 1, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 0, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 0, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 0, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 0, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 48, + "ConditionTypeExclude" : false + } + }, + { + "ProcedureOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 102, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 102, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 1, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 1, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 0, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 0, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 0, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 0, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 48, + "ProcedureTypeExclude" : false + } + }, + { + "ConditionOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 103, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 103, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 1, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 1, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 0, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 0, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 0, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 0, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 49, + "ConditionTypeExclude" : false + } + }, + { + "ConditionOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 93, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 93, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 1, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 1, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 0, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 0, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 0, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 0, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 50, + "ConditionTypeExclude" : false + } + }, + { + "ProcedureOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 93, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 93, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 1, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 1, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 0, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 0, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 0, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 0, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 50, + "ProcedureTypeExclude" : false + } + }, + { + "ProcedureOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 92, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 92, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 1, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 1, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 0, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 0, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 0, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 0, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 12, + "ProcedureTypeExclude" : false + } + }, + { + "ConditionOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 92, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 92, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 1, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 1, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 0, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 0, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 0, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 0, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 12, + "ConditionTypeExclude" : false + } + }, + { + "ConditionOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 91, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 91, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 1, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 1, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 0, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 0, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 0, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 0, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 11, + "ConditionTypeExclude" : false + } + }, + { + "ProcedureOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 91, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 91, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 1, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 1, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 0, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 0, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 0, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 0, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 11, + "ProcedureTypeExclude" : false + } + }, + { + "ConditionOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 90, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 90, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 1, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 1, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 0, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 0, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 0, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 0, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 10, + "ConditionTypeExclude" : false + } + }, + { + "ProcedureOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 90, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 90, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 1, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 1, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 0, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 0, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 0, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 0, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 10, + "ProcedureTypeExclude" : false + } + }, + { + "ConditionOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 89, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 89, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 1, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 1, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 0, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 0, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 0, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 0, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 51, + "ConditionTypeExclude" : false + } + }, + { + "ProcedureOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 89, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 89, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 1, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 1, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 0, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 0, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 0, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 0, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 51, + "ProcedureTypeExclude" : false + } + }, + { + "ConditionOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 80, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 80, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 1, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 1, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 0, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 0, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 0, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 0, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 13, + "ConditionTypeExclude" : false + } + }, + { + "ProcedureOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 80, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 80, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 1, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 1, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 0, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 0, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 0, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 0, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 13, + "ProcedureTypeExclude" : false + } + }, + { + "ConditionOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 79, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 79, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 1, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 1, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 0, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 0, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 0, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 0, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 15, + "ConditionTypeExclude" : false + } + }, + { + "ProcedureOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 79, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 79, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 1, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 1, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 0, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 0, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 0, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 0, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 15, + "ProcedureTypeExclude" : false + } + }, + { + "ProcedureOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 78, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 78, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 1, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 1, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 0, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 0, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 0, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 0, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 52, + "ProcedureTypeExclude" : false + } + }, + { + "ConditionOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 78, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 78, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 1, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 1, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 0, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 0, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 0, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 0, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 52, + "ConditionTypeExclude" : false + } + }, + { + "ConditionOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 1, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 1, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 0, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 0, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 0, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 0, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 53, + "ConditionTypeExclude" : false + } + }, + { + "ProcedureOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 1, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 1, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 0, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 0, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 0, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 0, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 53, + "ProcedureTypeExclude" : false + } + }, + { + "ConditionOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 2, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 2, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 1, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 1, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 0, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 0, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 0, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 0, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 55, + "ConditionTypeExclude" : false + } + }, + { + "ProcedureOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 2, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 2, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 1, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 1, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 0, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 0, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 0, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 0, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 55, + "ProcedureTypeExclude" : false + } + }, + { + "Observation" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 2, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 2, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 1, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 1, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 0, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 0, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 0, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 0, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 55, + "ObservationTypeExclude" : false + } + }, + { + "ProcedureOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 2, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 2, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 55, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 55, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 55, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 1, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 1, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 0, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 0, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 0, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 0, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 5, + "ProcedureTypeExclude" : false + } + }, + { + "ConditionOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 2, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 2, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 55, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 55, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 55, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 5, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 1, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 1, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 0, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 0, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 0, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 0, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 6, + "ConditionTypeExclude" : false + } + }, + { + "Observation" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 2, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 2, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 55, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 55, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 55, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 5, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 1, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 1, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 0, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 0, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 0, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 0, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 6, + "ObservationTypeExclude" : false + } + }, + { + "Measurement" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 2, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 2, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 55, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 55, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 55, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 5, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 1, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 1, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 0, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 0, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 0, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 0, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 6, + "MeasurementTypeExclude" : false + } + }, + { + "ConditionOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 2, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 2, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 55, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 55, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 55, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 5, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 6, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 6, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 6, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 7, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 280, + "Coeff" : -1 + }, + "End" : { + "Days" : 175, + "Coeff" : -1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "EndWindow" : { + "Start" : { + "Days" : 55, + "Coeff" : -1 + }, + "End" : { + "Days" : 0, + "Coeff" : -1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + }, + "CodesetId" : 1, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 7, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 280, + "Coeff" : -1 + }, + "End" : { + "Days" : 175, + "Coeff" : -1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "EndWindow" : { + "Start" : { + "Days" : 55, + "Coeff" : -1 + }, + "End" : { + "Days" : 0, + "Coeff" : -1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + }, + "CodesetId" : 1, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 7, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 280, + "Coeff" : -1 + }, + "End" : { + "Days" : 175, + "Coeff" : -1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "EndWindow" : { + "Start" : { + "Days" : 55, + "Coeff" : -1 + }, + "End" : { + "Days" : 0, + "Coeff" : -1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + }, + "CodesetId" : 0, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 7, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 280, + "Coeff" : -1 + }, + "End" : { + "Days" : 175, + "Coeff" : -1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "EndWindow" : { + "Start" : { + "Days" : 55, + "Coeff" : -1 + }, + "End" : { + "Days" : 0, + "Coeff" : -1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + }, + "CodesetId" : 0, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 7, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 280, + "Coeff" : -1 + }, + "End" : { + "Days" : 175, + "Coeff" : -1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "EndWindow" : { + "Start" : { + "Days" : 55, + "Coeff" : -1 + }, + "End" : { + "Days" : 0, + "Coeff" : -1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + }, + "CodesetId" : 0, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Measurement" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 7, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 280, + "Coeff" : -1 + }, + "End" : { + "Days" : 175, + "Coeff" : -1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "EndWindow" : { + "Start" : { + "Days" : 55, + "Coeff" : -1 + }, + "End" : { + "Days" : 0, + "Coeff" : -1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + }, + "CodesetId" : 0, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 7, + "ConditionTypeExclude" : false + } + }, + { + "Observation" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 2, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 2, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 55, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 55, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 55, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 5, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 6, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 6, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 6, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Observation" : { + "CodesetId" : 7, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 280, + "Coeff" : -1 + }, + "End" : { + "Days" : 175, + "Coeff" : -1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "EndWindow" : { + "Start" : { + "Days" : 55, + "Coeff" : -1 + }, + "End" : { + "Days" : 0, + "Coeff" : -1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + }, + "CodesetId" : 1, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Observation" : { + "CodesetId" : 7, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 280, + "Coeff" : -1 + }, + "End" : { + "Days" : 175, + "Coeff" : -1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "EndWindow" : { + "Start" : { + "Days" : 55, + "Coeff" : -1 + }, + "End" : { + "Days" : 0, + "Coeff" : -1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + }, + "CodesetId" : 1, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Observation" : { + "CodesetId" : 7, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 280, + "Coeff" : -1 + }, + "End" : { + "Days" : 175, + "Coeff" : -1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "EndWindow" : { + "Start" : { + "Days" : 55, + "Coeff" : -1 + }, + "End" : { + "Days" : 0, + "Coeff" : -1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + }, + "CodesetId" : 0, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Observation" : { + "CodesetId" : 7, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 280, + "Coeff" : -1 + }, + "End" : { + "Days" : 175, + "Coeff" : -1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "EndWindow" : { + "Start" : { + "Days" : 55, + "Coeff" : -1 + }, + "End" : { + "Days" : 0, + "Coeff" : -1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + }, + "CodesetId" : 0, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Observation" : { + "CodesetId" : 7, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 280, + "Coeff" : -1 + }, + "End" : { + "Days" : 175, + "Coeff" : -1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "EndWindow" : { + "Start" : { + "Days" : 55, + "Coeff" : -1 + }, + "End" : { + "Days" : 0, + "Coeff" : -1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + }, + "CodesetId" : 0, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Measurement" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Observation" : { + "CodesetId" : 7, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 280, + "Coeff" : -1 + }, + "End" : { + "Days" : 175, + "Coeff" : -1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "EndWindow" : { + "Start" : { + "Days" : 55, + "Coeff" : -1 + }, + "End" : { + "Days" : 0, + "Coeff" : -1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + }, + "CodesetId" : 0, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 7, + "ObservationTypeExclude" : false + } + }, + { + "ProcedureOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 2, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 2, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 55, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 55, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 55, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 5, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 6, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 6, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 6, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 7, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 7, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 8, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 280, + "Coeff" : -1 + }, + "End" : { + "Days" : 175, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "EndWindow" : { + "Start" : { + "Days" : 55, + "Coeff" : -1 + }, + "End" : { + "Days" : 0, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + }, + "CodesetId" : 1, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 8, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 280, + "Coeff" : -1 + }, + "End" : { + "Days" : 175, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "EndWindow" : { + "Start" : { + "Days" : 55, + "Coeff" : -1 + }, + "End" : { + "Days" : 0, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + }, + "CodesetId" : 1, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 8, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 280, + "Coeff" : -1 + }, + "End" : { + "Days" : 175, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "EndWindow" : { + "Start" : { + "Days" : 55, + "Coeff" : -1 + }, + "End" : { + "Days" : 0, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + }, + "CodesetId" : 0, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 8, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 280, + "Coeff" : -1 + }, + "End" : { + "Days" : 175, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "EndWindow" : { + "Start" : { + "Days" : 55, + "Coeff" : -1 + }, + "End" : { + "Days" : 0, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + }, + "CodesetId" : 0, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 8, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 280, + "Coeff" : -1 + }, + "End" : { + "Days" : 175, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "EndWindow" : { + "Start" : { + "Days" : 55, + "Coeff" : -1 + }, + "End" : { + "Days" : 0, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + }, + "CodesetId" : 0, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Measurement" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 8, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 280, + "Coeff" : -1 + }, + "End" : { + "Days" : 175, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "EndWindow" : { + "Start" : { + "Days" : 55, + "Coeff" : -1 + }, + "End" : { + "Days" : 0, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + }, + "CodesetId" : 0, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 8, + "ProcedureTypeExclude" : false + } + }, + { + "Measurement" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 2, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 2, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 55, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 55, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 55, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 5, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 6, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 6, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 6, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 7, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 7, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 8, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 280, + "Coeff" : -1 + }, + "End" : { + "Days" : 175, + "Coeff" : -1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "EndWindow" : { + "Start" : { + "Days" : 55, + "Coeff" : -1 + }, + "End" : { + "Days" : 0, + "Coeff" : -1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + }, + "CodesetId" : 1, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CorrelatedCriteria" : { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 8, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 280, + "Coeff" : -1 + }, + "End" : { + "Days" : 175, + "Coeff" : -1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "EndWindow" : { + "Start" : { + "Days" : 55, + "Coeff" : -1 + }, + "End" : { + "Days" : 0, + "Coeff" : -1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + }, + "CodesetId" : 1, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 8, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 280, + "Coeff" : -1 + }, + "End" : { + "Days" : 175, + "Coeff" : -1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "EndWindow" : { + "Start" : { + "Days" : 55, + "Coeff" : -1 + }, + "End" : { + "Days" : 0, + "Coeff" : -1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + }, + "CodesetId" : 0, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : -1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 8, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 280, + "Coeff" : -1 + }, + "End" : { + "Days" : 175, + "Coeff" : -1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "EndWindow" : { + "Start" : { + "Days" : 55, + "Coeff" : -1 + }, + "End" : { + "Days" : 0, + "Coeff" : -1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + }, + "CodesetId" : 0, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : -1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 8, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 280, + "Coeff" : -1 + }, + "End" : { + "Days" : 175, + "Coeff" : -1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "EndWindow" : { + "Start" : { + "Days" : 55, + "Coeff" : -1 + }, + "End" : { + "Days" : 0, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + }, + "CodesetId" : 0, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : -1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Measurement" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 8, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 280, + "Coeff" : -1 + }, + "End" : { + "Days" : 175, + "Coeff" : -1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "EndWindow" : { + "Start" : { + "Days" : 55, + "Coeff" : -1 + }, + "End" : { + "Days" : 0, + "Coeff" : -1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + }, + "CodesetId" : 0, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : -1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 8, + "MeasurementTypeExclude" : false + } + }, + { + "ConditionOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 2, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 2, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 55, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 55, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 55, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 5, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 6, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 6, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 6, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 1, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 1, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 0, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 0, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 0, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 0, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 57, + "ConditionTypeExclude" : false + } + }, + { + "ProcedureOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 2, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 2, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 55, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 55, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 55, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 5, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 6, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 6, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 6, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 1, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 1, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 0, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 0, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 0, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 0, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 57, + "ProcedureTypeExclude" : false + } + }, + { + "Observation" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 2, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 2, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 55, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 55, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 55, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 5, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 6, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 6, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 6, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 1, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 1, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 0, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 0, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 0, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 0, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 57, + "ObservationTypeExclude" : false + } + }, + { + "Measurement" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 2, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 2, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 55, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 55, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 55, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 5, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 6, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 6, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 6, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 1, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 1, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 0, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 0, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 0, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 0, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 57, + "MeasurementTypeExclude" : false + } + }, + { + "ConditionOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 2, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 2, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 55, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 55, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 55, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 5, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 6, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 6, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 6, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 1, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 1, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 0, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 0, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 0, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 0, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 113, + "ConditionTypeExclude" : false + } + }, + { + "ConditionOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 2, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 2, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 55, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 55, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 55, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 5, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 6, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 6, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 6, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 1, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 1, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 0, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 0, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 0, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 0, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 56, + "ConditionTypeExclude" : false + } + }, + { + "ProcedureOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 2, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 2, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 55, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 55, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 55, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 5, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 6, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 6, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 6, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 1, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 1, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 0, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 0, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 0, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 0, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 56, + "ProcedureTypeExclude" : false + } + }, + { + "Observation" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 2, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 2, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 55, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 55, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 55, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 5, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 6, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 6, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 6, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 1, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 1, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 0, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 0, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 0, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 0, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 56, + "ObservationTypeExclude" : false + } + }, + { + "ConditionOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 2, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 2, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 55, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 55, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 55, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 5, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 6, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 6, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 6, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 1, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 1, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 0, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 0, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 0, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 0, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 112, + "ConditionTypeExclude" : false + } + }, + { + "ProcedureOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 2, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 2, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 55, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 55, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 55, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 5, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 6, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 6, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 6, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 1, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 1, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 0, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 0, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 0, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 0, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 112, + "ProcedureTypeExclude" : false + } + }, + { + "Observation" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 2, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 2, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 55, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 55, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 55, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 5, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 6, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 6, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 6, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 1, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 1, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 0, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 0, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 0, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 0, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 112, + "ObservationTypeExclude" : false + } + }, + { + "Measurement" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 2, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 2, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 55, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 55, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 55, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 5, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 6, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 6, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 6, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 1, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 1, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 0, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 0, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 0, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 0, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 112, + "MeasurementTypeExclude" : false + } + }, + { + "ConditionOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 2, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 2, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 55, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 55, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 55, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 5, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 6, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 6, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 6, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 7, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 56, + "Coeff" : 1 + }, + "End" : { + "Days" : 174, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 7, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 56, + "Coeff" : 1 + }, + "End" : { + "Days" : 174, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 8, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 56, + "Coeff" : 1 + }, + "End" : { + "Days" : 174, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 8, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 56, + "Coeff" : 1 + }, + "End" : { + "Days" : 174, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 108, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 108, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 108, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + }, + "CodesetId" : 1, + "ConditionTypeExclude" : false + } + }, + { + "Observation" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 2, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 2, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 55, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 55, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 55, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 5, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 6, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 6, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 6, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 7, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 56, + "Coeff" : 1 + }, + "End" : { + "Days" : 174, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 7, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 56, + "Coeff" : 1 + }, + "End" : { + "Days" : 174, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 8, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 56, + "Coeff" : 1 + }, + "End" : { + "Days" : 174, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 8, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 56, + "Coeff" : 1 + }, + "End" : { + "Days" : 174, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 108, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 108, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 108, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + }, + "CodesetId" : 1, + "ObservationTypeExclude" : false + } + }, + { + "ProcedureOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 2, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 2, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 55, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 55, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 55, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 5, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 6, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 6, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 6, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 7, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 56, + "Coeff" : 1 + }, + "End" : { + "Days" : 174, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 7, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 56, + "Coeff" : 1 + }, + "End" : { + "Days" : 174, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 8, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 56, + "Coeff" : 1 + }, + "End" : { + "Days" : 174, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 8, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 56, + "Coeff" : 1 + }, + "End" : { + "Days" : 174, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 108, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 108, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 108, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 1, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : 1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 1, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : 1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + }, + "CodesetId" : 0, + "ProcedureTypeExclude" : false + } + }, + { + "Measurement" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 2, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 2, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 55, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 55, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 55, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 5, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 6, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 6, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 6, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 7, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 56, + "Coeff" : 1 + }, + "End" : { + "Days" : 174, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 7, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 56, + "Coeff" : 1 + }, + "End" : { + "Days" : 174, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 8, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 56, + "Coeff" : 1 + }, + "End" : { + "Days" : 174, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 8, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 56, + "Coeff" : 1 + }, + "End" : { + "Days" : 174, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 108, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 108, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 108, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 1, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : 1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 1, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : 1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + }, + "CodesetId" : 0, + "MeasurementTypeExclude" : false + } + }, + { + "ConditionOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 2, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 2, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 55, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 55, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 55, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 5, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 6, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 6, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 6, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 7, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 56, + "Coeff" : 1 + }, + "End" : { + "Days" : 174, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 7, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 56, + "Coeff" : 1 + }, + "End" : { + "Days" : 174, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 8, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 56, + "Coeff" : 1 + }, + "End" : { + "Days" : 174, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 8, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 56, + "Coeff" : 1 + }, + "End" : { + "Days" : 174, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 108, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 108, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 108, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 1, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : 1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 1, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : 1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + }, + "CodesetId" : 0, + "ConditionTypeExclude" : false + } + }, + { + "Observation" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 2, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 2, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 5, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 6, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 6, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 6, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 7, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 56, + "Coeff" : 1 + }, + "End" : { + "Days" : 174, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 7, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 56, + "Coeff" : 1 + }, + "End" : { + "Days" : 174, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 8, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 56, + "Coeff" : 1 + }, + "End" : { + "Days" : 174, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 8, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 56, + "Coeff" : 1 + }, + "End" : { + "Days" : 174, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 108, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 108, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 108, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 1, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : 1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 1, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : 1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + }, + "CodesetId" : 0, + "ObservationTypeExclude" : false + } + }, + { + "ConditionOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 2, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 2, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 55, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 55, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 55, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 5, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 6, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 6, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 6, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 7, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 56, + "Coeff" : 1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 7, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 56, + "Coeff" : 1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 8, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 56, + "Coeff" : 1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 8, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 56, + "Coeff" : 1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 108, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 108, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 108, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 1, + "ConditionTypeExclude" : false + } + }, + { + "Observation" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 2, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 2, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 55, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 55, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 55, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 5, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 6, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 6, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 6, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 7, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 56, + "Coeff" : 1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 7, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 56, + "Coeff" : 1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 8, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 56, + "Coeff" : 1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 8, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 56, + "Coeff" : 1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 108, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 108, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 108, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 1, + "ObservationTypeExclude" : false + } + }, + { + "ConditionOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 2, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 2, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 55, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 55, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 55, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 5, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 6, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 6, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 6, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 7, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 56, + "Coeff" : 1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 7, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 56, + "Coeff" : 1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 8, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 56, + "Coeff" : 1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 8, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 56, + "Coeff" : 1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 1, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : 1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 1, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : 1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 108, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 108, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 108, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 0, + "ConditionTypeExclude" : false + } + }, + { + "ProcedureOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 2, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 2, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 55, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 55, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 55, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 5, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 6, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 6, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 6, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 7, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 56, + "Coeff" : 1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 7, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 56, + "Coeff" : 1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 8, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 56, + "Coeff" : 1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 8, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 56, + "Coeff" : 1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 1, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : 1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 1, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : 1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 108, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 108, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 108, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 0, + "ProcedureTypeExclude" : false + } + }, + { + "Measurement" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 2, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 2, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 55, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 55, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 55, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 5, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 6, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 6, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 6, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 7, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 56, + "Coeff" : 1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 7, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 56, + "Coeff" : 1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 8, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 56, + "Coeff" : 1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 8, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 56, + "Coeff" : 1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 1, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : 1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 1, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : 1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 108, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 108, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 108, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 0, + "MeasurementTypeExclude" : false + } + }, + { + "Observation" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 2, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 2, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 55, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 55, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 55, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 5, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 6, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 6, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 6, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 7, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 56, + "Coeff" : 1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 7, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 56, + "Coeff" : 1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 8, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 56, + "Coeff" : 1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 8, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 56, + "Coeff" : 1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 1, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : 1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 1, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : 1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 108, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 108, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 108, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 0, + "ObservationTypeExclude" : false + } + } + ], + "ObservationWindow" : { + "PriorDays" : 0, + "PostDays" : 0 + }, + "PrimaryCriteriaLimit" : { + "Type" : "All" + } + }, + "ConceptSets" : [ + { + "id" : 0, + "name" : "Delivery (DELIV)", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4130321, + "CONCEPT_NAME" : "Abdominal delivery for shoulder dystocia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "236989008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439402, + "CONCEPT_NAME" : "Abnormal glucose tolerance test during pregnancy - baby delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "372055003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4155282, + "CONCEPT_NAME" : "Abnormal glucose tolerance test in the puerperium - baby delivered during current episode of care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "372051007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437936, + "CONCEPT_NAME" : "Amniotic cavity infection - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199677008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4248954, + "CONCEPT_NAME" : "Amniotomy at delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "408817009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432968, + "CONCEPT_NAME" : "Anemia during pregnancy - baby delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199244000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442923, + "CONCEPT_NAME" : "Anemia in the puerperium - baby delivered during current episode of care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199245004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442922, + "CONCEPT_NAME" : "Anemia in the puerperium - baby delivered during previous episode of care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199247007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2101814, + "CONCEPT_NAME" : "Anesthesia for cesarean delivery following neuraxial labor analgesia/anesthesia (List separately in addition to code for primary procedure performed)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "01968", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441649, + "CONCEPT_NAME" : "Antenatal deep vein thrombosis - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200232006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443133, + "CONCEPT_NAME" : "Antepartum hemorrhage with coagulation defect - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198917009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4075168, + "CONCEPT_NAME" : "Assisted breech delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177158008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 76761, + "CONCEPT_NAME" : "Asymptomatic bacteriuria in pregnancy - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199099004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 73526, + "CONCEPT_NAME" : "Asymptomatic bacteriuria in pregnancy - delivered with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199100007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4078138, + "CONCEPT_NAME" : "Baby normal at birth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "275735001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4075169, + "CONCEPT_NAME" : "Barton forceps cephalic delivery with rotation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177167008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4147974, + "CONCEPT_NAME" : "Barton's forceps delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "30476003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 314103, + "CONCEPT_NAME" : "Benign essential hypertension complicating pregnancy, childbirth and the puerperium - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198944004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 320456, + "CONCEPT_NAME" : "Benign essential hypertension complicating pregnancy, childbirth and the puerperium - delivered with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198945003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014291, + "CONCEPT_NAME" : "Birth detail", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169811007", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Observable Entity" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4016064, + "CONCEPT_NAME" : "Birth details not known", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169963001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015277, + "CONCEPT_NAME" : "Birth head circumference", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169876006", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Observable Entity" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015270, + "CONCEPT_NAME" : "Birth of child", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169836001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4192676, + "CONCEPT_NAME" : "Born by cesarean section", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "394699000", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 77624, + "CONCEPT_NAME" : "Breast engorgement in pregnancy, the puerperium or lactation - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200418007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 81086, + "CONCEPT_NAME" : "Breast engorgement in pregnancy, the puerperium or lactation - delivered with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200419004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3662128, + "CONCEPT_NAME" : "Breech delivery following termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1147961000000102", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 436767, + "CONCEPT_NAME" : "Breech extraction - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200142000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4075165, + "CONCEPT_NAME" : "Breech extraction delivery with version", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177152009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 73537, + "CONCEPT_NAME" : "Breech presentation - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199354004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4235752, + "CONCEPT_NAME" : "Central laceration during delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90532005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3662129, + "CONCEPT_NAME" : "Cephalic delivery following termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1147971000000109", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4071629, + "CONCEPT_NAME" : "Cephalic vaginal delivery with abnormal presentation of head at delivery without instrument", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177179008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441369, + "CONCEPT_NAME" : "Cervical incompetence - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199482005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435607, + "CONCEPT_NAME" : "Cervical incompetence - delivered with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199483000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437942, + "CONCEPT_NAME" : "Cesarean delivery - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200146002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110316, + "CONCEPT_NAME" : "Cesarean delivery only", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59514", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110323, + "CONCEPT_NAME" : "Cesarean delivery only, following attempted vaginal delivery after previous cesarean delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59620", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4165077, + "CONCEPT_NAME" : "Cesarean hysterectomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "41059002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015701, + "CONCEPT_NAME" : "Cesarean section", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "11466000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004789, + "CONCEPT_NAME" : "Cesarean section of other specified type", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "74.4", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "3-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42872492, + "CONCEPT_NAME" : "Cesarean section through inverted T shaped incision of uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "450483001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42872493, + "CONCEPT_NAME" : "Cesarean section through J shaped incision of uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "450484007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4152029, + "CONCEPT_NAME" : "Childbirth examination - normal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "268484008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014738, + "CONCEPT_NAME" : "Child examination - birth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "170099002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4223536, + "CONCEPT_NAME" : "Classical cesarean section", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84195007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37208486, + "CONCEPT_NAME" : "Clitoral tear during delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1105801000000107", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4034145, + "CONCEPT_NAME" : "Complete breech delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237311001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 194707, + "CONCEPT_NAME" : "Congenital abnormality of uterus - baby delivered with postpartum complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "267215001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 315013, + "CONCEPT_NAME" : "Congenital cardiovascular disorder during pregnancy - baby delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199266007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435879, + "CONCEPT_NAME" : "Congenital or acquired abnormality of vulva - baby delivered with postpartum complication", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "267248001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4129041, + "CONCEPT_NAME" : "Cord beside head", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237306003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433270, + "CONCEPT_NAME" : "Cord entanglement without compression", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "11209007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439092, + "CONCEPT_NAME" : "Cord tangled with compression - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199880007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 75882, + "CONCEPT_NAME" : "Deep transverse arrest - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199774009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441361, + "CONCEPT_NAME" : "Delayed delivery after artificial rupture of membranes", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "35347003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4075190, + "CONCEPT_NAME" : "DeLee forceps cephalic delivery with rotation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177168003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440793, + "CONCEPT_NAME" : "Deliveries by breech extraction", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "271370008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 193277, + "CONCEPT_NAME" : "Deliveries by cesarean", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200144004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4106406, + "CONCEPT_NAME" : "Delivery by double application of forceps", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "29613008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061457, + "CONCEPT_NAME" : "Delivery by elective cesarean section", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200148001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4066112, + "CONCEPT_NAME" : "Delivery by emergency cesarean section", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200149009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4232028, + "CONCEPT_NAME" : "Delivery by Kielland rotation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "89346004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4234710, + "CONCEPT_NAME" : "Delivery by Malstrom's extraction", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90438006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4223638, + "CONCEPT_NAME" : "Delivery by Malstrom's extraction with episiotomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40219000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4278225, + "CONCEPT_NAME" : "Delivery by midwife", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65243006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4100410, + "CONCEPT_NAME" : "Delivery by Scanzoni maneuver", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25296001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4189205, + "CONCEPT_NAME" : "Delivery by vacuum extraction", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "61586001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4096145, + "CONCEPT_NAME" : "Delivery by vacuum extraction with episiotomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26313002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038495, + "CONCEPT_NAME" : "Delivery finding", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "118215003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441641, + "CONCEPT_NAME" : "Delivery normal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48782003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40551541, + "CONCEPT_NAME" : "Delivery of cephalic presentation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "384730009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4056129, + "CONCEPT_NAME" : "Delivery of face presentation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16819009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42872805, + "CONCEPT_NAME" : "Delivery of occipitoposterior presentation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "450798003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4130319, + "CONCEPT_NAME" : "Delivery of the after coming head", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "236982004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4293034, + "CONCEPT_NAME" : "Delivery of vertex presentation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "384729004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443012, + "CONCEPT_NAME" : "Diabetes mellitus during pregnancy - baby delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199225007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4062685, + "CONCEPT_NAME" : "Diabetes mellitus in the puerperium - baby delivered during current episode of care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199226008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4309425, + "CONCEPT_NAME" : "Dilation and curettage of uterus after delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "391998006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 198486, + "CONCEPT_NAME" : "Disproportion - major pelvic abnormality - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199400000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4134722, + "CONCEPT_NAME" : "Disruption of episiotomy wound in the puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "398262004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442915, + "CONCEPT_NAME" : "Drug dependence during pregnancy - baby delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199252002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 133816, + "CONCEPT_NAME" : "Eclampsia - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198990007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443321, + "CONCEPT_NAME" : "Edema or excessive weight gain in pregnancy without mention of hypertension, delivered with mention of postpartum complication", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "199075004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440794, + "CONCEPT_NAME" : "Elderly primigravida - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199718001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4075182, + "CONCEPT_NAME" : "Elective cesarean section", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177141003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4075161, + "CONCEPT_NAME" : "Elective lower segment cesarean section", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177143000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42536960, + "CONCEPT_NAME" : "Elective lower segment cesarean section with bilateral tubal ligation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "736026009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4075160, + "CONCEPT_NAME" : "Elective upper segment cesarean section", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177142005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42536952, + "CONCEPT_NAME" : "Elective upper segment cesarean section with bilateral tubal ligation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "736018001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4167089, + "CONCEPT_NAME" : "Emergency cesarean section", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "274130007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4127252, + "CONCEPT_NAME" : "Emergency lower segment cesarean section", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "236985002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42537021, + "CONCEPT_NAME" : "Emergency lower segment cesarean section with bilateral tubal ligation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "736118004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 46270991, + "CONCEPT_NAME" : "Emergency lower segment cesarean section with inverted T incision", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "709004006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4032767, + "CONCEPT_NAME" : "Emergency upper segment cesarean section", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "236986001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42536954, + "CONCEPT_NAME" : "Emergency upper segment cesarean section with bilateral tubal ligation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "736020003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4272812, + "CONCEPT_NAME" : "Episioproctotomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63407004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4311671, + "CONCEPT_NAME" : "Episiotomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "85548006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44513763, + "CONCEPT_NAME" : "Episiotomy to facilitate delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "R27.1", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "OPCS4", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4211824, + "CONCEPT_NAME" : "Extraperitoneal cesarean section", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57271003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45757775, + "CONCEPT_NAME" : "Failed attempted vaginal birth after previous cesarean section", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "38451000119105", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441924, + "CONCEPT_NAME" : "Failed mechanical induction - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199694005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443521, + "CONCEPT_NAME" : "Failed trial of labor - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "413339006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 193535, + "CONCEPT_NAME" : "Fetal-maternal hemorrhage - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199577000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 72697, + "CONCEPT_NAME" : "Fetus with chromosomal abnormality - delivered", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "199526007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4063296, + "CONCEPT_NAME" : "Fetus with damage due to intrauterine contraceptive device - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199560000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4064177, + "CONCEPT_NAME" : "Fetus with drug damage - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199549009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4064171, + "CONCEPT_NAME" : "Fetus with hereditary disease - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199533007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4064174, + "CONCEPT_NAME" : "Fetus with viral damage via mother - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199538003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 192978, + "CONCEPT_NAME" : "First degree perineal tear during delivery - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199916005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 199088, + "CONCEPT_NAME" : "First degree perineal tear during delivery with postnatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199917001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4217642, + "CONCEPT_NAME" : "Footling breech delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72492007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4075187, + "CONCEPT_NAME" : "Forceps cephalic delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177161009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4114637, + "CONCEPT_NAME" : "Forceps delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "302383004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435022, + "CONCEPT_NAME" : "Forceps delivery - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200130005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4032761, + "CONCEPT_NAME" : "Forceps delivery, face to pubes", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "236977006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4324549, + "CONCEPT_NAME" : "Forceps delivery with rotation of fetal head", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "71166009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004702, + "CONCEPT_NAME" : "Forceps, vacuum, and breech delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "2-dig nonbill code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 194429, + "CONCEPT_NAME" : "Fourth degree perineal tear during delivery - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199934009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4244672, + "CONCEPT_NAME" : "Frank breech delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "38479009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 74440, + "CONCEPT_NAME" : "Galactorrhea in pregnancy and the puerperium - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200446009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 77052, + "CONCEPT_NAME" : "Generally contracted pelvis - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199405005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4091200, + "CONCEPT_NAME" : "Genital tear resulting from childbirth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "249219008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 81357, + "CONCEPT_NAME" : "Genitourinary tract infection in pregnancy - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199106001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 80778, + "CONCEPT_NAME" : "Genitourinary tract infection in pregnancy - delivered with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199107005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4009879, + "CONCEPT_NAME" : "Good neonatal condition at birth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "102500002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014452, + "CONCEPT_NAME" : "GP unit birth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169814004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434110, + "CONCEPT_NAME" : "Grand multiparity - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199714004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4032764, + "CONCEPT_NAME" : "Groin traction at breech delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "236980007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435323, + "CONCEPT_NAME" : "Hemorrhage in early pregnancy, delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "81448000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44513743, + "CONCEPT_NAME" : "High forceps cephalic delivery NEC", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "R21.2", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "OPCS4", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4075188, + "CONCEPT_NAME" : "High forceps cephalic delivery with rotation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177162002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4231702, + "CONCEPT_NAME" : "High forceps delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "89849000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4035778, + "CONCEPT_NAME" : "High forceps delivery with episiotomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15413009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 77615, + "CONCEPT_NAME" : "High head at term - delivered", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "199375007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4075170, + "CONCEPT_NAME" : "High vacuum delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177173009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441630, + "CONCEPT_NAME" : "History of recurrent miscarriage - delivered", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199087006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014451, + "CONCEPT_NAME" : "Home birth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169813005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 73538, + "CONCEPT_NAME" : "Hydrocephalic disproportion - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199427001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 436173, + "CONCEPT_NAME" : "Hyperemesis gravidarum with metabolic disturbance - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199027009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4064834, + "CONCEPT_NAME" : "Hypertonic uterine inertia - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199838008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004771, + "CONCEPT_NAME" : "Incision of cervix to assist delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "73.93", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 77621, + "CONCEPT_NAME" : "Inlet pelvic contraction - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199409004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4128031, + "CONCEPT_NAME" : "Instrumental delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "236974004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40760193, + "CONCEPT_NAME" : "Labor and delivery process Narrative", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57074-7", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Clinical Observation" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 80782, + "CONCEPT_NAME" : "Large fetus causing disproportion - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199422007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441082, + "CONCEPT_NAME" : "Late pregnancy vomiting - delivered", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "199032005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 196170, + "CONCEPT_NAME" : "Liver disorder in pregnancy - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199117000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004786, + "CONCEPT_NAME" : "Low cervical cesarean section", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "74.1", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "3-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4161944, + "CONCEPT_NAME" : "Low cervical cesarean section", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "398307005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37312440, + "CONCEPT_NAME" : "Lower uterine segment cesarean section", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "788180009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44513746, + "CONCEPT_NAME" : "Low forceps cephalic delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "R21.5", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "OPCS4", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4088084, + "CONCEPT_NAME" : "Low forceps delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "18625004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4075735, + "CONCEPT_NAME" : "Low forceps delivery with episiotomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "17860005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4075191, + "CONCEPT_NAME" : "Low vacuum delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177174003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4071505, + "CONCEPT_NAME" : "Manipulative cephalic vaginal delivery with abnormal presentation of head at delivery without instrument", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177180006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4069969, + "CONCEPT_NAME" : "Manual removal of placenta from delivered uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177204008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 313829, + "CONCEPT_NAME" : "Maternal hypotension syndrome - delivered with postnatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200112003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438206, + "CONCEPT_NAME" : "Maternal rubella during pregnancy - baby delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199192005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435606, + "CONCEPT_NAME" : "Maternal syphilis during pregnancy - baby delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199156006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442920, + "CONCEPT_NAME" : "Mental disorder during pregnancy - baby delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199259006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442919, + "CONCEPT_NAME" : "Mental disorder in the puerperium - baby delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199260001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44513745, + "CONCEPT_NAME" : "Mid forceps cephalic delivery NEC", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "R21.4", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "OPCS4", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4075189, + "CONCEPT_NAME" : "Midforceps cephalic delivery with rotation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177164001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4266683, + "CONCEPT_NAME" : "Mid forceps delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "62508004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4093774, + "CONCEPT_NAME" : "Mid forceps delivery with episiotomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25828002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4143647, + "CONCEPT_NAME" : "Midforceps delivery without rotation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "265639000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42535817, + "CONCEPT_NAME" : "Mid vacuum delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "734276001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 72970, + "CONCEPT_NAME" : "Mixed feto-pelvic disproportion - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199418002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433260, + "CONCEPT_NAME" : "Mother delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "289256000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4063163, + "CONCEPT_NAME" : "Multiple delivery, all by cesarean section", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199331008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4063162, + "CONCEPT_NAME" : "Multiple delivery, all by forceps and vacuum extractor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199330009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4059751, + "CONCEPT_NAME" : "Multiple delivery, all spontaneous", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199329004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42539267, + "CONCEPT_NAME" : "Multiple liveborn in hospital by vaginal delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16089691000119102", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442082, + "CONCEPT_NAME" : "Multiple pregnancy with malpresentation - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199380003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2101016, + "CONCEPT_NAME" : "Neuraxial analgesia/anesthesia for labor ending in a cesarean delivery (includes any repeat subarachnoid needle placement and drug injection and/or any necessary replacement of an epidural catheter during labor) (Deprecated)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "00857", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4071630, + "CONCEPT_NAME" : "Non-manipulative cephalic vaginal delivery with abnormal presentation of head at delivery without instrument", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177181005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4127248, + "CONCEPT_NAME" : "Nonrotational forceps delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "236975003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014720, + "CONCEPT_NAME" : "Normal birth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169961004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4063160, + "CONCEPT_NAME" : "Normal delivery but ante- or post- natal conditions present", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199314001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4071507, + "CONCEPT_NAME" : "Normal delivery procedure", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177184002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442053, + "CONCEPT_NAME" : "Obstetric blood-clot pulmonary embolism - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200301007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 74433, + "CONCEPT_NAME" : "Obstetric breast abscess - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200374003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 78494, + "CONCEPT_NAME" : "Obstetric breast abscess - delivered with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200375002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 75326, + "CONCEPT_NAME" : "Obstetric damage to pelvic joints and ligaments - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199990003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 193269, + "CONCEPT_NAME" : "Obstetric high vaginal laceration - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199979008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 197048, + "CONCEPT_NAME" : "Obstetric inversion of uterus - delivered with postnatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199969006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442080, + "CONCEPT_NAME" : "Obstetric laceration of cervix - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199974003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 79897, + "CONCEPT_NAME" : "Obstetric non-purulent mastitis - delivered with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200382003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 201368, + "CONCEPT_NAME" : "Obstetric pelvic hematoma - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199995008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 193271, + "CONCEPT_NAME" : "Obstetric pelvic hematoma - delivered with postnatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199996009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 195025, + "CONCEPT_NAME" : "Obstetric shock - delivered with postnatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200106008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 199087, + "CONCEPT_NAME" : "Obstructed labor caused by bony pelvis - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199759007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 196182, + "CONCEPT_NAME" : "Obstructed labor caused by pelvic soft tissues - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199769001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 194711, + "CONCEPT_NAME" : "Obstructed labor due to fetal malposition - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199749006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433274, + "CONCEPT_NAME" : "Oligohydramnios - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199653002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004767, + "CONCEPT_NAME" : "Operations on fetus to facilitate delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "73.8", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "3-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004802, + "CONCEPT_NAME" : "Other cesarean section of unspecified type", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "74.99", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004765, + "CONCEPT_NAME" : "Other manually assisted delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "73.59", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004768, + "CONCEPT_NAME" : "Other operations assisting delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "73.9", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "3-dig nonbill code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004783, + "CONCEPT_NAME" : "Other operations assisting delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "73.99", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4191809, + "CONCEPT_NAME" : "Other procedures inducing or assisting delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "73", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "2-dig nonbill code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44513736, + "CONCEPT_NAME" : "Other specified breech extraction delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "R19.8", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "OPCS4", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44513756, + "CONCEPT_NAME" : "Other specified cephalic vaginal delivery with abnormal presentation of head at delivery without instrument", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "R23.8", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "OPCS4", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44513729, + "CONCEPT_NAME" : "Other specified elective caesarean delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "R17.8", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "OPCS4", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44513747, + "CONCEPT_NAME" : "Other specified forceps cephalic delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "R21.8", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "OPCS4", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004731, + "CONCEPT_NAME" : "Other specified instrumental delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72.8", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "3-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44513740, + "CONCEPT_NAME" : "Other specified other breech delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "R20.8", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "OPCS4", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44513733, + "CONCEPT_NAME" : "Other specified other caesarean delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "R18.8", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "OPCS4", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44513752, + "CONCEPT_NAME" : "Other specified vacuum delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "R22.8", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "OPCS4", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4145318, + "CONCEPT_NAME" : "Outcome of delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "268475008", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Observable Entity" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4127249, + "CONCEPT_NAME" : "Outlet forceps delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "236976002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 73824, + "CONCEPT_NAME" : "Outlet pelvic contraction - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199413006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42535816, + "CONCEPT_NAME" : "Outlet vacuum delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "734275002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4234421, + "CONCEPT_NAME" : "Partial breech delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "359943008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4023797, + "CONCEPT_NAME" : "Partial breech delivery with forceps to aftercoming head", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "19390001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4307825, + "CONCEPT_NAME" : "Perineal hematoma during delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "83094001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4073438, + "CONCEPT_NAME" : "Piper forceps delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177170007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 193539, + "CONCEPT_NAME" : "Placental abruption - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198910006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4172142, + "CONCEPT_NAME" : "Placenta previa found before labor AND delivery by cesarean section without hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48888007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 193264, + "CONCEPT_NAME" : "Placenta previa with hemorrhage - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198905007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 201359, + "CONCEPT_NAME" : "Placenta previa without hemorrhage - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198899007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014292, + "CONCEPT_NAME" : "Place of birth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169812000", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Observable Entity" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434427, + "CONCEPT_NAME" : "Polyhydramnios - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199646006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435031, + "CONCEPT_NAME" : "Postnatal deep vein thrombosis - delivered with postnatal complication", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "200237000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441363, + "CONCEPT_NAME" : "Postpartum coagulation defects - delivered with postnatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200030007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438220, + "CONCEPT_NAME" : "Precipitate labor - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199833004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 200160, + "CONCEPT_NAME" : "Premature rupture of membranes - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199658006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37110284, + "CONCEPT_NAME" : "Preterm delivery following Cesarean section", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "724489002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37110283, + "CONCEPT_NAME" : "Preterm delivery following induction of labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "724488005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45757175, + "CONCEPT_NAME" : "Preterm labor in second trimester with preterm delivery in second trimester", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10761141000119107", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45757176, + "CONCEPT_NAME" : "Preterm labor in third trimester with preterm delivery in third trimester", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10761191000119104", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36712702, + "CONCEPT_NAME" : "Preterm labor with preterm delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10761241000119104", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44784550, + "CONCEPT_NAME" : "Preterm spontaneous labor with preterm delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "698716002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44784551, + "CONCEPT_NAME" : "Preterm spontaneous labor with term delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "698717006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 196762, + "CONCEPT_NAME" : "Primary uterine inertia - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199819004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 72692, + "CONCEPT_NAME" : "Prolapsed arm - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199384007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440476, + "CONCEPT_NAME" : "Prolapse of cord", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "270500004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441645, + "CONCEPT_NAME" : "Prolapse of cord - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199869007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440475, + "CONCEPT_NAME" : "Prolonged first stage - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199847000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434431, + "CONCEPT_NAME" : "Prolonged second stage - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199857004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442419, + "CONCEPT_NAME" : "Puerperal cerebrovascular disorder - delivered", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "200330000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442418, + "CONCEPT_NAME" : "Puerperal cerebrovascular disorder - delivered with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200331001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4065749, + "CONCEPT_NAME" : "Puerperal endometritis - delivered with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200181000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434713, + "CONCEPT_NAME" : "Puerperal pyrexia of unknown origin - delivered with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200280009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438481, + "CONCEPT_NAME" : "Quadruplet pregnancy - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199325005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 200157, + "CONCEPT_NAME" : "Renal hypertension complicating pregnancy, childbirth and the puerperium - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198951008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442078, + "CONCEPT_NAME" : "Retained placenta with no hemorrhage - delivered with postnatal problem", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "200037005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 198216, + "CONCEPT_NAME" : "Retroverted incarcerated gravid uterus - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199468005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 195878, + "CONCEPT_NAME" : "Rhesus isoimmunization - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199582007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4127253, + "CONCEPT_NAME" : "Right mediolateral episiotomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "236992007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4121924, + "CONCEPT_NAME" : "Routine episiotomy and repair", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "288194000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 198816, + "CONCEPT_NAME" : "Rupture of uterus before labor - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199960005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 192699, + "CONCEPT_NAME" : "Rupture of uterus during and after labor - delivered", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "199964001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4064960, + "CONCEPT_NAME" : "Rupture of uterus during and after labor - delivered with postnatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199965000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4065618, + "CONCEPT_NAME" : "Secondary postpartum hemorrhage - delivered with postnatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200025008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 192384, + "CONCEPT_NAME" : "Secondary uterine inertia - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199824001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 198499, + "CONCEPT_NAME" : "Second degree perineal tear during delivery - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199925004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4264738, + "CONCEPT_NAME" : "Separation of symphysis pubis during delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "61007003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438490, + "CONCEPT_NAME" : "Severe pre-eclampsia - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198983002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439077, + "CONCEPT_NAME" : "Severe pre-eclampsia - delivered with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198984008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4092760, + "CONCEPT_NAME" : "Sex of baby at delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "281053000", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Observable Entity" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435020, + "CONCEPT_NAME" : "Short cord - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199889008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 80474, + "CONCEPT_NAME" : "Shoulder dystocia - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199783004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4170152, + "CONCEPT_NAME" : "Simpson's forceps delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "275169009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36713074, + "CONCEPT_NAME" : "Single liveborn born in hospital by vaginal delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "17561000119102", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4073422, + "CONCEPT_NAME" : "Spontaneous breech delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177157003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4167497, + "CONCEPT_NAME" : "Spontaneous unassisted delivery, medical personnel present", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48204000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4205240, + "CONCEPT_NAME" : "Spontaneous vertex delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "309469004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110318, + "CONCEPT_NAME" : "Subtotal or total hysterectomy after cesarean delivery (List separately in addition to code for primary procedure)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59525", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439094, + "CONCEPT_NAME" : "Superficial thrombophlebitis in pregnancy and the puerperium - delivered", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "200224003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439095, + "CONCEPT_NAME" : "Superficial thrombophlebitis in pregnancy and the puerperium - delivered with postnatal complication", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "267283002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 193275, + "CONCEPT_NAME" : "Third degree perineal tear during delivery - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199930000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3186670, + "CONCEPT_NAME" : "Threatened premature labor - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "480001000004104", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "Nebraska Lexicon", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 136755, + "CONCEPT_NAME" : "Thyroid dysfunction during pregnancy - baby delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199237009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 138207, + "CONCEPT_NAME" : "Thyroid dysfunction in the puerperium - baby delivered during current episode of care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199238004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4204679, + "CONCEPT_NAME" : "Total breech delivery with forceps to aftercoming head", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54973000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 137940, + "CONCEPT_NAME" : "Transient hypertension of pregnancy - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198965005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4063171, + "CONCEPT_NAME" : "Transverse lie - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199362007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4174854, + "CONCEPT_NAME" : "Trauma from instrument during delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "42599006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4267072, + "CONCEPT_NAME" : "Traumatic extension of episiotomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36497006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439093, + "CONCEPT_NAME" : "Traumatic lesion during delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64229006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432975, + "CONCEPT_NAME" : "Trauma to perineum and/or vulva during delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "267268007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4161678, + "CONCEPT_NAME" : "Trauma to perineum during delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "397952002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3655718, + "CONCEPT_NAME" : "Trauma to urethra and bladder during delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "866229004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4134431, + "CONCEPT_NAME" : "Trauma to vagina during delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "128077009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4326563, + "CONCEPT_NAME" : "Trauma to vulva during delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7504005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4290245, + "CONCEPT_NAME" : "Trial forceps delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "69422002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4073424, + "CONCEPT_NAME" : "Trial of vacuum delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177176001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440462, + "CONCEPT_NAME" : "Triplet pregnancy - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199321001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 196181, + "CONCEPT_NAME" : "Tumor of uterine body - baby delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "267221002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 197049, + "CONCEPT_NAME" : "Tumor of uterine body - baby delivered with postpartum complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "267222009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4101844, + "CONCEPT_NAME" : "Twin birth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "28030000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42535052, + "CONCEPT_NAME" : "Twin live born in hospital by vaginal delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "151441000119105", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435018, + "CONCEPT_NAME" : "Twin pregnancy - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199317008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060157, + "CONCEPT_NAME" : "Umbilical cord tight around neck - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199874004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110342, + "CONCEPT_NAME" : "Unlisted procedure, maternity care and delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59899", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004742, + "CONCEPT_NAME" : "Unspecified instrumental delivery", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72.9", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "3-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 79889, + "CONCEPT_NAME" : "Unstable lie - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199344003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45757158, + "CONCEPT_NAME" : "Uterine laceration during delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10760261000119106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4075171, + "CONCEPT_NAME" : "Vacuum delivery before full dilation of cervix", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177175002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442069, + "CONCEPT_NAME" : "Vacuum extractor delivery - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200138003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 193544, + "CONCEPT_NAME" : "Vaginal abnormality - baby delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "267240008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4228344, + "CONCEPT_NAME" : "Vaginal cesarean section", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "89053004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4331179, + "CONCEPT_NAME" : "Vaginal delivery, medical personnel present", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "22633006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44784097, + "CONCEPT_NAME" : "Vaginal delivery of fetus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "700000006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110320, + "CONCEPT_NAME" : "Vaginal delivery only, after previous cesarean delivery (with or without episiotomy and/or forceps)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59612", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110308, + "CONCEPT_NAME" : "Vaginal delivery only (with or without episiotomy and/or forceps)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59409", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4167018, + "CONCEPT_NAME" : "Vaginal delivery with forceps including postpartum care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45718005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442059, + "CONCEPT_NAME" : "Varicose veins of legs in pregnancy and the puerperium - delivered", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "200206000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435610, + "CONCEPT_NAME" : "Varicose veins of perineum and vulva in pregnancy and the puerperium - delivered", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "200215007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435609, + "CONCEPT_NAME" : "Vasa previa - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199895009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 321367, + "CONCEPT_NAME" : "Vascular lesions of cord - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199900008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443246, + "CONCEPT_NAME" : "Vulval abnormality - baby delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "267247006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441087, + "CONCEPT_NAME" : "Vulval and/or perineal hematoma during delivery - delivered", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "199944006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4071632, + "CONCEPT_NAME" : "Water birth delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177185001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40394878, + "CONCEPT_NAME" : "[X]Delivery", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "200548008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 1, + "name" : "Livebirth (LB)", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4092289, + "CONCEPT_NAME" : "Livebirth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "281050002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4307044, + "CONCEPT_NAME" : "Live birth surviving more than one year", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "390959009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40482735, + "CONCEPT_NAME" : "Liveborn born in hospital", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "442311008", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40483126, + "CONCEPT_NAME" : "Liveborn born in hospital by cesarean section", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "442365008", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4163851, + "CONCEPT_NAME" : "Multiple birth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45384004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36713468, + "CONCEPT_NAME" : "Multiple liveborn other than twins born in hospital", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "717807001", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3174212, + "CONCEPT_NAME" : "Premature 28 week quadruplet", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7550001000004101", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "Nebraska Lexicon", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4097427, + "CONCEPT_NAME" : "Premature birth of fraternal twins, both living", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25192009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4147043, + "CONCEPT_NAME" : "Premature birth of fraternal twins, one living, one stillborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "30165006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4142021, + "CONCEPT_NAME" : "Premature birth of identical twins, both living", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "34100008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4310910, + "CONCEPT_NAME" : "Premature birth of identical twins, one living, one stillborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "39213008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4069200, + "CONCEPT_NAME" : "Premature birth of multiple newborns", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "20272009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4145125, + "CONCEPT_NAME" : "Premature birth of newborn quadruplets", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "34089005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4082863, + "CONCEPT_NAME" : "Premature birth of newborn quintuplets", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "24146004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4008884, + "CONCEPT_NAME" : "Premature birth of newborn sextuplets", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "112075006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4107401, + "CONCEPT_NAME" : "Premature birth of newborn triplets", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "29997008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4029786, + "CONCEPT_NAME" : "Premature birth of newborn twins", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13859001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45765500, + "CONCEPT_NAME" : "Quadruplet birth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "702452007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45757166, + "CONCEPT_NAME" : "Quadruplets, all live born", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10760701000119102", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45773428, + "CONCEPT_NAME" : "Quadruplets, some live born", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10760741000119100", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45765501, + "CONCEPT_NAME" : "Quintuplet birth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "702453002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45757167, + "CONCEPT_NAME" : "Quintuplets, all live born", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10760781000119105", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45757168, + "CONCEPT_NAME" : "Quintuplets, some live born", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10760821000119100", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45765502, + "CONCEPT_NAME" : "Sextuplet birth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "702454008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45772082, + "CONCEPT_NAME" : "Sextuplets, all live born", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10760861000119105", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45757169, + "CONCEPT_NAME" : "Sextuplets, some live born", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10760901000119104", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014295, + "CONCEPT_NAME" : "Single live birth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169826009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40483521, + "CONCEPT_NAME" : "Single liveborn born in hospital by cesarean section", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "442423001", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36713465, + "CONCEPT_NAME" : "Singleton liveborn born in hospital", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "717803002", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4227728, + "CONCEPT_NAME" : "Term birth of fraternal twins, both living", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87662006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4330570, + "CONCEPT_NAME" : "Term birth of fraternal twins, one living, one stillborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "22514005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4049333, + "CONCEPT_NAME" : "Term birth of identical twins, both living", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15467003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4243026, + "CONCEPT_NAME" : "Term birth of identical twins, one living, one stillborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "38257001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4066292, + "CONCEPT_NAME" : "Term birth of multiple newborns", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "17333005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4193224, + "CONCEPT_NAME" : "Term birth of newborn quadruplets", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7888004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336090, + "CONCEPT_NAME" : "Term birth of newborn quintuplets", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86803008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4199146, + "CONCEPT_NAME" : "Term birth of newborn sextuplets", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "52483005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4307237, + "CONCEPT_NAME" : "Term birth of newborn triplets", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "8333008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4178275, + "CONCEPT_NAME" : "Term birth of newborn twins", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "50758004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4094046, + "CONCEPT_NAME" : "Triplet birth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "281052005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42539210, + "CONCEPT_NAME" : "Triplet liveborn in hospital by cesarean section", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16089571000119102", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014456, + "CONCEPT_NAME" : "Triplets - all live born", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169831006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015422, + "CONCEPT_NAME" : "Triplets - one live and two stillborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169833009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45757165, + "CONCEPT_NAME" : "Triplets, some live born", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10760661000119109", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015421, + "CONCEPT_NAME" : "Triplets - two live and one stillborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169832004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40483084, + "CONCEPT_NAME" : "Twin liveborn born in hospital", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "442327001", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40483101, + "CONCEPT_NAME" : "Twin liveborn born in hospital by cesarean section", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "442342003", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014296, + "CONCEPT_NAME" : "Twins - both live born", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169828005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014455, + "CONCEPT_NAME" : "Twins - one still and one live born", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169829002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 2, + "name" : "Gestational age (GEST)", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4015296, + "CONCEPT_NAME" : "Antenatal 12 weeks examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169712008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014149, + "CONCEPT_NAME" : "Antenatal 16 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169713003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014150, + "CONCEPT_NAME" : "Antenatal 20 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169714009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808979, + "CONCEPT_NAME" : "Antenatal 22 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861281000000109", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015141, + "CONCEPT_NAME" : "Antenatal 24 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169715005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808980, + "CONCEPT_NAME" : "Antenatal 25 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861301000000105", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014151, + "CONCEPT_NAME" : "Antenatal 30 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169717002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808981, + "CONCEPT_NAME" : "Antenatal 31 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861321000000101", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015297, + "CONCEPT_NAME" : "Antenatal 32 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169718007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015298, + "CONCEPT_NAME" : "Antenatal 34 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169719004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014434, + "CONCEPT_NAME" : "Antenatal 35 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169720005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015299, + "CONCEPT_NAME" : "Antenatal 36 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169721009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015142, + "CONCEPT_NAME" : "Antenatal 37 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169722002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014152, + "CONCEPT_NAME" : "Antenatal 38 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169723007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015300, + "CONCEPT_NAME" : "Antenatal 39 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169724001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015301, + "CONCEPT_NAME" : "Antenatal 40 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169725000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015302, + "CONCEPT_NAME" : "Antenatal 41 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169726004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014435, + "CONCEPT_NAME" : "Antenatal 42 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169727008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4178165, + "CONCEPT_NAME" : "Gestation 14 - 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428567001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181468, + "CONCEPT_NAME" : "Gestation 9- 13 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428930004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181162, + "CONCEPT_NAME" : "Gestation greater than 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429715006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4324063, + "CONCEPT_NAME" : "Gestation less than 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428566005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438542, + "CONCEPT_NAME" : "Gestation less than 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313178001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45770261, + "CONCEPT_NAME" : "Gestation less than 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "925561000000100", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4322726, + "CONCEPT_NAME" : "Gestation less than 9 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428058009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4242241, + "CONCEPT_NAME" : "Gestation period, 10 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "38039008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4174506, + "CONCEPT_NAME" : "Gestation period, 11 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "50367001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4197245, + "CONCEPT_NAME" : "Gestation period, 12 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "79992004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4266517, + "CONCEPT_NAME" : "Gestation period, 13 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "62333002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4248725, + "CONCEPT_NAME" : "Gestation period, 14 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72846000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4283690, + "CONCEPT_NAME" : "Gestation period, 15 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6678005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4049621, + "CONCEPT_NAME" : "Gestation period, 16 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15633004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4277749, + "CONCEPT_NAME" : "Gestation period, 17 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65683006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4097608, + "CONCEPT_NAME" : "Gestation period, 18 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25026004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181751, + "CONCEPT_NAME" : "Gestation period, 19 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54318006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4337360, + "CONCEPT_NAME" : "Gestation period, 1 week", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87178007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4051642, + "CONCEPT_NAME" : "Gestation period, 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "23464008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4185780, + "CONCEPT_NAME" : "Gestation period, 21 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "41438001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4274955, + "CONCEPT_NAME" : "Gestation period, 22 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65035007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336226, + "CONCEPT_NAME" : "Gestation period, 23 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86883006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439922, + "CONCEPT_NAME" : "Gestation period, 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313179009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435640, + "CONCEPT_NAME" : "Gestation period, 25 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72544005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444023, + "CONCEPT_NAME" : "Gestation period, 26 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48688005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432430, + "CONCEPT_NAME" : "Gestation period, 27 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46906003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444461, + "CONCEPT_NAME" : "Gestation period, 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90797000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444417, + "CONCEPT_NAME" : "Gestation period, 29 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45139008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4220085, + "CONCEPT_NAME" : "Gestation period, 2 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "82118009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434484, + "CONCEPT_NAME" : "Gestation period, 30 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "71355009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433864, + "CONCEPT_NAME" : "Gestation period, 31 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64920003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442558, + "CONCEPT_NAME" : "Gestation period, 32 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7707000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441678, + "CONCEPT_NAME" : "Gestation period, 33 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "78395001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443874, + "CONCEPT_NAME" : "Gestation period, 34 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13763000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444267, + "CONCEPT_NAME" : "Gestation period, 35 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84132007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438543, + "CONCEPT_NAME" : "Gestation period, 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57907009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442355, + "CONCEPT_NAME" : "Gestation period, 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43697006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443871, + "CONCEPT_NAME" : "Gestation period, 38 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13798002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435655, + "CONCEPT_NAME" : "Gestation period, 39 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80487005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4326232, + "CONCEPT_NAME" : "Gestation period, 3 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "74952004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442769, + "CONCEPT_NAME" : "Gestation period, 41 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63503002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444067, + "CONCEPT_NAME" : "Gestation period, 42 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36428009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4195157, + "CONCEPT_NAME" : "Gestation period, 4 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "44398003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4290009, + "CONCEPT_NAME" : "Gestation period, 5 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "37005007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4313026, + "CONCEPT_NAME" : "Gestation period, 6 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86801005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4270513, + "CONCEPT_NAME" : "Gestation period, 7 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63110000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4132434, + "CONCEPT_NAME" : "Gestation period, 8 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26690008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4245908, + "CONCEPT_NAME" : "Gestation period, 9 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "931004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 762907, + "CONCEPT_NAME" : "Gestation period greater than or equal to 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "433601000124106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336958, + "CONCEPT_NAME" : "Term pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87527008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4180111, + "CONCEPT_NAME" : "Third trimester pregnancy less than 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429240000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444098, + "CONCEPT_NAME" : "Gestation period, 40 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46230007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 3, + "name" : "Gestational period, 8 weeks", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4132434, + "CONCEPT_NAME" : "Gestation period, 8 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26690008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4322726, + "CONCEPT_NAME" : "Gestation less than 9 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428058009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 4, + "name" : "Last menstrual period (LMP)", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4072438, + "CONCEPT_NAME" : "Date of last menstrual period", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "21840007", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Observable Entity" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4088445, + "CONCEPT_NAME" : "Date of last normal period", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "248993009", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Observable Entity" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4058439, + "CONCEPT_NAME" : "Last menstrual period -1st day", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "161713000", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Observable Entity" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 5, + "name" : "Nuchal ultrasound (ULS)", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4186424, + "CONCEPT_NAME" : "Nuchal ultrasound scan", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "414880004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4324606, + "CONCEPT_NAME" : "Transvaginal nuchal ultrasonography", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "430063002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40489798, + "CONCEPT_NAME" : "Ultrasonography of multiple pregnancy for fetal nuchal translucency", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "446810002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2211754, + "CONCEPT_NAME" : "Ultrasound, pregnant uterus, real time with image documentation, first trimester fetal nuchal translucency measurement, transabdominal or transvaginal approach; each additional gestation (List separately in addition to code for primary procedure)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "76814", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2211753, + "CONCEPT_NAME" : "Ultrasound, pregnant uterus, real time with image documentation, first trimester fetal nuchal translucency measurement, transabdominal or transvaginal approach; single or first gestation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "76813", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4237339, + "CONCEPT_NAME" : "Ultrasound scan for fetal nuchal translucency", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "408815001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 6, + "name" : "Alpha fetal protein (AFP)", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 40480490, + "CONCEPT_NAME" : "Abnormal presence of alpha-fetoprotein", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "441772009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061810, + "CONCEPT_NAME" : "AFP - blood sent", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169688006", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061809, + "CONCEPT_NAME" : "AFP blood test not wanted", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169687001", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040768, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein interpretation in Amniotic fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "41273-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3038294, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein interpretation in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "41274-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3010296, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Mass/volume] in Amniotic fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1832-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42529192, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Mass/volume] in Amniotic fluid by Immunoassay", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "83075-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3027634, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Mass/volume] in Cerebral spinal fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1833-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757479, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Mass/volume] in Cord blood", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54348-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3032506, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Mass/volume] in Peritoneal fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "49761-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3033080, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Mass/volume] in Pleural fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "49762-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3009306, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Mass/volume] in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1834-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42529190, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Mass/volume] in Serum or Plasma by Immunoassay", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "83073-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4197249, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80152001", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4099476, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein measurement, amniotic fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "27220002", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014768, + "CONCEPT_NAME" : "Alpha-1-fetoprotein measurement, serum", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "104404005", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3012116, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Moles/volume] in Amniotic fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15019-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3024289, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Moles/volume] in Pleural fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "19173-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3021607, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Moles/volume] in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "19177-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3046154, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Multiple of the median] adjusted for diabetes in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43998-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3044142, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Multiple of the median] adjusted for diabetes+weight in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43996-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3030180, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Multiple of the median] adjusted for multiple gestations in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "50610-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3046979, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Multiple of the median] adjusted for weight in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43997-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3022269, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Multiple of the median] adjusted in Amniotic fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "29253-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3016670, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Multiple of the median] adjusted in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "23811-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3024370, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Multiple of the median] in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "20450-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40761829, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein panel - Amniotic fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "58735-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3044397, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Presence] in Amniotic fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43798-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3025053, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Presence] in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "31993-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3027505, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Units/volume] in Amniotic fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "19171-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42529191, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Units/volume] in Amniotic fluid by Immunoassay", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "83074-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3045958, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Units/volume] in Body fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "44910-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40762626, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Units/volume] in Cerebral spinal fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59564-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3028331, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Units/volume] in Pleural fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "19172-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42529189, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Units/volume] in Serum or Plasma by Immunoassay", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "83072-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2212200, + "CONCEPT_NAME" : "Alpha-fetoprotein (AFP); AFP-L3 fraction isoform and total AFP (including ratio)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "82107", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2212199, + "CONCEPT_NAME" : "Alpha-fetoprotein (AFP); amniotic fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "82106", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2212198, + "CONCEPT_NAME" : "Alpha-fetoprotein (AFP); serum", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "82105", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4147940, + "CONCEPT_NAME" : "Alpha-fetoprotein blood test", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "268468007", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4269851, + "CONCEPT_NAME" : "Alpha-fetoprotein level - finding", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "365802003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4041177, + "CONCEPT_NAME" : "Alpha-fetoprotein low", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "166562001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44807243, + "CONCEPT_NAME" : "Alpha fetoprotein multiple of median measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "816011000000101", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4042555, + "CONCEPT_NAME" : "Alpha-fetoprotein normal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "166558007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4059689, + "CONCEPT_NAME" : "Alpha-fetoprotein radioimmunoassay", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169188005", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4042557, + "CONCEPT_NAME" : "Alpha-fetoprotein raised", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "166561008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4078285, + "CONCEPT_NAME" : "Alpha-fetoprotein test - antenatal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "275833003", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4057158, + "CONCEPT_NAME" : "Amniotic fluid AFP equivocal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "168108003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4269860, + "CONCEPT_NAME" : "Amniotic fluid AFP - finding", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "365827005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4042936, + "CONCEPT_NAME" : "Blood sent: alpha-fetoprotein", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "166557002", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40761828, + "CONCEPT_NAME" : "Collection date of Amniotic fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "58734-5", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Clinical Observation" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37396772, + "CONCEPT_NAME" : "Congenital deficiency of alpha-fetoprotein", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "716698007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37396771, + "CONCEPT_NAME" : "Hereditary persistence of alpha-fetoprotein", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "716697002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40478936, + "CONCEPT_NAME" : "Measurement of alpha fetoprotein and analysis of chromosomes in amniotic fluid specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "444311009", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40483704, + "CONCEPT_NAME" : "Measurement of alpha fetoprotein and human chorionic gonadotropin and unconjugated estriol in serum or plasma specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "443883001", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40480870, + "CONCEPT_NAME" : "Measurement of alpha fetoprotein as marker for malignant neoplasm", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "441825001", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40483600, + "CONCEPT_NAME" : "Measurement of alpha fetoprotein in second trimester", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "442495004", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4310471, + "CONCEPT_NAME" : "MS alpha-fetoprotein level", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "391516001", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4210719, + "CONCEPT_NAME" : "Plasma alpha-fetoprotein multiple of median measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313867006", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4161969, + "CONCEPT_NAME" : "Serum alpha-fetoprotein level elevated", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "399643001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4275335, + "CONCEPT_NAME" : "Serum alpha-fetoprotein level - finding", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "365804002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4195345, + "CONCEPT_NAME" : "Serum alpha-fetoprotein multiple of median measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313868001", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4078287, + "CONCEPT_NAME" : "Triple test", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "275835005", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3051868, + "CONCEPT_NAME" : "Trisomy 21 risk based on maternal age+Alpha-1-Fetoprotein+Choriogonadotropin+Estriol.unconjugated [Likelihood] in Fetus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "47222-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 7, + "name" : "Amenorrhea (AMEN)", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 443800, + "CONCEPT_NAME" : "Amenorrhea", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14302001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4184965, + "CONCEPT_NAME" : "Amenorrhea associated with obesity", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "413487000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40480713, + "CONCEPT_NAME" : "Anovulatory amenorrhea", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "444769001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4242590, + "CONCEPT_NAME" : "Cryptomenorrhea", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "58851004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4211822, + "CONCEPT_NAME" : "Dietary amenorrhea", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57260004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4070773, + "CONCEPT_NAME" : "Dysponderal amenorrhea", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "21669001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4034017, + "CONCEPT_NAME" : "Exercise-related amenorrhea", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237119008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4034018, + "CONCEPT_NAME" : "Lactational amenorrhea", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237122005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45765512, + "CONCEPT_NAME" : "Normogonadotropic amenorrhea", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "702466002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4211227, + "CONCEPT_NAME" : "Pathologic amenorrhea", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "56561006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4261326, + "CONCEPT_NAME" : "Physiologic amenorrhea", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "44811000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4219015, + "CONCEPT_NAME" : "Postpill amenorrhea", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "39931000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4138554, + "CONCEPT_NAME" : "Premenopausal amenorrhea", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "32590007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40318194, + "CONCEPT_NAME" : "Primary amenorrhea", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "156035004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4230947, + "CONCEPT_NAME" : "Primary physiologic amenorrhea", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "8913004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40318195, + "CONCEPT_NAME" : "Secondary amenorrhea", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "156036003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4312727, + "CONCEPT_NAME" : "Secondary physiologic amenorrhea", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86030004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 8, + "name" : "Urine pregnancy test (URINE)", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4055287, + "CONCEPT_NAME" : "High sensitivity urine pregnancy test", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "167257008", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37392366, + "CONCEPT_NAME" : "High sensitivity urine pregnancy test", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1003171000000104", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Observable Entity" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4250175, + "CONCEPT_NAME" : "Pregnancy detection examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "74036000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4091293, + "CONCEPT_NAME" : "Sensitive pregnancy test", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "252161000", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4091461, + "CONCEPT_NAME" : "Standard pregnancy test", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "252160004", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4055285, + "CONCEPT_NAME" : "Urine pregnancy test", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "167252002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37392365, + "CONCEPT_NAME" : "Urine pregnancy test", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1003161000000106", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Observable Entity" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2212173, + "CONCEPT_NAME" : "Urine pregnancy test, by visual color comparison methods", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "81025", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014769, + "CONCEPT_NAME" : "Urine pregnancy test, by visual color comparison methods", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "104405006", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 9, + "name" : "Gestational period, 12 weeks", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4015296, + "CONCEPT_NAME" : "Antenatal 12 weeks examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169712008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4197245, + "CONCEPT_NAME" : "Gestation period, 12 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "79992004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 10, + "name" : "Gestational period, 37 weeks", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4015142, + "CONCEPT_NAME" : "Antenatal 37 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169722002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442355, + "CONCEPT_NAME" : "Gestation period, 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43697006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 762907, + "CONCEPT_NAME" : "Gestation period greater than or equal to 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "433601000124106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 11, + "name" : "Gestational period, 36 weeks", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4015299, + "CONCEPT_NAME" : "Antenatal 36 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169721009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438543, + "CONCEPT_NAME" : "Gestation period, 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57907009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 12, + "name" : "Gestational period, 35 weeks", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4014434, + "CONCEPT_NAME" : "Antenatal 35 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169720005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444267, + "CONCEPT_NAME" : "Gestation period, 35 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84132007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4180111, + "CONCEPT_NAME" : "Third trimester pregnancy less than 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429240000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 13, + "name" : "Gestational period, 39 weeks", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4015300, + "CONCEPT_NAME" : "Antenatal 39 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169724001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435655, + "CONCEPT_NAME" : "Gestation period, 39 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80487005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 14, + "name" : "Gestational period, 9 weeks", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4245908, + "CONCEPT_NAME" : "Gestation period, 9 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "931004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 15, + "name" : "Gestational period, 40 weeks", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4015301, + "CONCEPT_NAME" : "Antenatal 40 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169725000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336958, + "CONCEPT_NAME" : "Term pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87527008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444098, + "CONCEPT_NAME" : "Gestation period, 40 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46230007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 17, + "name" : "Gestational period, 10 weeks", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4242241, + "CONCEPT_NAME" : "Gestation period, 10 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "38039008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 18, + "name" : "Gestational period, 11 weeks", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4174506, + "CONCEPT_NAME" : "Gestation period, 11 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "50367001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 19, + "name" : "Gestational period, 13 weeks", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4181468, + "CONCEPT_NAME" : "Gestation 9- 13 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428930004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4266517, + "CONCEPT_NAME" : "Gestation period, 13 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "62333002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 20, + "name" : "Gestational period, 1 week", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4337360, + "CONCEPT_NAME" : "Gestation period, 1 week", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87178007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 21, + "name" : "Gestational period, 2 weeks", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4220085, + "CONCEPT_NAME" : "Gestation period, 2 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "82118009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 22, + "name" : "Gestational period, 3 weeks", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4326232, + "CONCEPT_NAME" : "Gestation period, 3 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "74952004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 23, + "name" : "Gestational period, 4 weeks", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4195157, + "CONCEPT_NAME" : "Gestation period, 4 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "44398003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 24, + "name" : "Gestational period, 5 weeks", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4290009, + "CONCEPT_NAME" : "Gestation period, 5 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "37005007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 25, + "name" : "Gestational period, 6 weeks", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4313026, + "CONCEPT_NAME" : "Gestation period, 6 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86801005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 26, + "name" : "Gestational period, 7 weeks", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4270513, + "CONCEPT_NAME" : "Gestation period, 7 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63110000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 28, + "name" : "Gestational period, 14 weeks", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4248725, + "CONCEPT_NAME" : "Gestation period, 14 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72846000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 29, + "name" : "Gestational period, 15 weeks", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4283690, + "CONCEPT_NAME" : "Gestation period, 15 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6678005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 30, + "name" : "Gestational period, 16 weeks", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4014149, + "CONCEPT_NAME" : "Antenatal 16 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169713003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4049621, + "CONCEPT_NAME" : "Gestation period, 16 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15633004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 31, + "name" : "Gestational period, 17 weeks", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4277749, + "CONCEPT_NAME" : "Gestation period, 17 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65683006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 32, + "name" : "Gestational period, 18 weeks", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4097608, + "CONCEPT_NAME" : "Gestation period, 18 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25026004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 33, + "name" : "Gestational period, 19 weeks", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4324063, + "CONCEPT_NAME" : "Gestation less than 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428566005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181751, + "CONCEPT_NAME" : "Gestation period, 19 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54318006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 34, + "name" : "Gestational period, 20 weeks", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4014150, + "CONCEPT_NAME" : "Antenatal 20 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169714009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4178165, + "CONCEPT_NAME" : "Gestation 14 - 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428567001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4051642, + "CONCEPT_NAME" : "Gestation period, 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "23464008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 35, + "name" : "Gestational period, 21 weeks", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4181162, + "CONCEPT_NAME" : "Gestation greater than 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429715006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4185780, + "CONCEPT_NAME" : "Gestation period, 21 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "41438001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 36, + "name" : "Gestational period, 22 weeks", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 44808979, + "CONCEPT_NAME" : "Antenatal 22 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861281000000109", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4274955, + "CONCEPT_NAME" : "Gestation period, 22 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65035007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 37, + "name" : "Gestational period, 23 weeks", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 438542, + "CONCEPT_NAME" : "Gestation less than 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313178001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336226, + "CONCEPT_NAME" : "Gestation period, 23 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86883006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 38, + "name" : "Gestational period, 24 weeks", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4015141, + "CONCEPT_NAME" : "Antenatal 24 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169715005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439922, + "CONCEPT_NAME" : "Gestation period, 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313179009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 40, + "name" : "Gestational period, 25 weeks", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 44808980, + "CONCEPT_NAME" : "Antenatal 25 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861301000000105", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435640, + "CONCEPT_NAME" : "Gestation period, 25 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72544005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 41, + "name" : "Gestational period, 26 weeks", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 444023, + "CONCEPT_NAME" : "Gestation period, 26 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48688005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 42, + "name" : "Gestational period, 27 weeks", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 45770261, + "CONCEPT_NAME" : "Gestation less than 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "925561000000100", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432430, + "CONCEPT_NAME" : "Gestation period, 27 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46906003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 43, + "name" : "Gestational period, 28 weeks", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 444461, + "CONCEPT_NAME" : "Gestation period, 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90797000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 44, + "name" : "Gestational period, 29 weeks", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 444417, + "CONCEPT_NAME" : "Gestation period, 29 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45139008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 45, + "name" : "Gestational period, 30 weeks", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4014151, + "CONCEPT_NAME" : "Antenatal 30 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169717002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434484, + "CONCEPT_NAME" : "Gestation period, 30 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "71355009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 47, + "name" : "Gestational period, 31 weeks", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 44808981, + "CONCEPT_NAME" : "Antenatal 31 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861321000000101", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433864, + "CONCEPT_NAME" : "Gestation period, 31 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64920003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 48, + "name" : "Gestational period, 32 weeks", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4015297, + "CONCEPT_NAME" : "Antenatal 32 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169718007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442558, + "CONCEPT_NAME" : "Gestation period, 32 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7707000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 49, + "name" : "Gestational period, 33 weeks", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 441678, + "CONCEPT_NAME" : "Gestation period, 33 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "78395001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 50, + "name" : "Gestational period, 34 weeks", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4015298, + "CONCEPT_NAME" : "Antenatal 34 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169719004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443874, + "CONCEPT_NAME" : "Gestation period, 34 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13763000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 51, + "name" : "Gestational period, 38 weeks", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4014152, + "CONCEPT_NAME" : "Antenatal 38 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169723007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443871, + "CONCEPT_NAME" : "Gestation period, 38 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13798002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 52, + "name" : "Gestational period, 41 weeks", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4015302, + "CONCEPT_NAME" : "Antenatal 41 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169726004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442769, + "CONCEPT_NAME" : "Gestation period, 41 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63503002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 53, + "name" : "Gestational period, 42 weeks", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4014435, + "CONCEPT_NAME" : "Antenatal 42 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169727008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444067, + "CONCEPT_NAME" : "Gestation period, 42 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36428009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 55, + "name" : "Fertility procedure, condition or observation (NFERT)", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4239302, + "CONCEPT_NAME" : "Artificial insemination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "58533008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004542, + "CONCEPT_NAME" : "Artificial insemination", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "69.92", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4130186, + "CONCEPT_NAME" : "Artificial insemination by donor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "236896006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4127094, + "CONCEPT_NAME" : "Artificial insemination by husband", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "236895005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4187819, + "CONCEPT_NAME" : "Artificial insemination, heterologous", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46249006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4280831, + "CONCEPT_NAME" : "Artificial insemination, homologous", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "66601000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110196, + "CONCEPT_NAME" : "Artificial insemination; intra-cervical", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "58321", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110197, + "CONCEPT_NAME" : "Artificial insemination; intra-uterine", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "58322", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4238828, + "CONCEPT_NAME" : "Artificial insemination with sperm washing and capacitation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57233006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2213350, + "CONCEPT_NAME" : "Assisted embryo hatching, microtechniques (any method)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "89253", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4272937, + "CONCEPT_NAME" : "Assisted fertilization", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63487001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2721246, + "CONCEPT_NAME" : "Assisted oocyte fertilization, case rate", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "S4022", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42739500, + "CONCEPT_NAME" : "Assisted oocyte fertilization, microtechnique (any method) (Deprecated)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "89252", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2213363, + "CONCEPT_NAME" : "Assisted oocyte fertilization, microtechnique; greater than 10 oocytes", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "89281", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2213362, + "CONCEPT_NAME" : "Assisted oocyte fertilization, microtechnique; less than or equal to 10 oocytes", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "89280", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2213365, + "CONCEPT_NAME" : "Biopsy, oocyte polar body or embryo blastomere, microtechnique (for pre-implantation genetic diagnosis); greater than 5 embryos", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "89291", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2213364, + "CONCEPT_NAME" : "Biopsy, oocyte polar body or embryo blastomere, microtechnique (for pre-implantation genetic diagnosis); less than or equal to 5 embryos", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "89290", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2721238, + "CONCEPT_NAME" : "Complete cycle, gamete intrafallopian transfer (gift), case rate", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "S4013", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2721239, + "CONCEPT_NAME" : "Complete cycle, zygote intrafallopian transfer (zift), case rate", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "S4014", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2721240, + "CONCEPT_NAME" : "Complete in vitro fertilization cycle, not otherwise specified, case rate", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "S4015", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4309021, + "CONCEPT_NAME" : "Complications of attempted introduction of fertilized ovum following in vitro fertilization", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "213202009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40482399, + "CONCEPT_NAME" : "Conceived by in vitro fertilization", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "443633009", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2213355, + "CONCEPT_NAME" : "Cryopreservation; embryo(s)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "89258", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2721256, + "CONCEPT_NAME" : "Cryopreserved embryo transfer, case rate", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "S4037", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2213347, + "CONCEPT_NAME" : "Culture of oocyte(s)/embryo(s), less than 4 days", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "89250", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2213348, + "CONCEPT_NAME" : "Culture of oocyte(s)/embryo(s), less than 4 days; with co-culture of oocyte(s)/embryos", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "89251", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4022096, + "CONCEPT_NAME" : "Direct injection of sperm into cytoplasm of the oocyte", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "225244002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4024589, + "CONCEPT_NAME" : "Direct intraperitoneal insemination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "225247009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2721247, + "CONCEPT_NAME" : "Donor egg cycle, incomplete, case rate", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "S4023", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2721248, + "CONCEPT_NAME" : "Donor services for in vitro fertilization (sperm or embryo), case rate", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "S4025", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4327048, + "CONCEPT_NAME" : "Embryo transfer", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "75456002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110275, + "CONCEPT_NAME" : "Embryo transfer, intrauterine", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "58974", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4072852, + "CONCEPT_NAME" : "Endoscopic intrafallopian transfer of gamete", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "176996001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4072863, + "CONCEPT_NAME" : "Endoscopic transurethral ultrasound directed oocyte recovery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177038005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4074569, + "CONCEPT_NAME" : "Endoscopic transvesical oocyte recovery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177039002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2213361, + "CONCEPT_NAME" : "Extended culture of oocyte(s)/embryo(s), 4-7 days", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "89272", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4127892, + "CONCEPT_NAME" : "Fallopian replacement of egg with delayed insemination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "236913003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110274, + "CONCEPT_NAME" : "Follicle puncture for oocyte retrieval, any method", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "58970", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4032737, + "CONCEPT_NAME" : "Frozen embryo transfer", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "236894009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2721243, + "CONCEPT_NAME" : "Frozen embryo transfer procedure cancelled before transfer, case rate", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "S4018", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2721241, + "CONCEPT_NAME" : "Frozen in vitro fertilization cycle, case rate", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "S4016", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4127104, + "CONCEPT_NAME" : "Gamete intrafallopian transfer", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "236912008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4072421, + "CONCEPT_NAME" : "Gamete intrauterine transfer", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "176843009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110276, + "CONCEPT_NAME" : "Gamete, zygote, or embryo intrafallopian transfer, any method", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "58976", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4309019, + "CONCEPT_NAME" : "Infection associated with artificial insemination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "213200001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2213360, + "CONCEPT_NAME" : "Insemination of oocytes", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "89268", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4072715, + "CONCEPT_NAME" : "Intracervical artificial insemination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "176844003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4030829, + "CONCEPT_NAME" : "Intraperitoneal insemination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "238312005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4138741, + "CONCEPT_NAME" : "Intrauterine artificial insemination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "265064001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4139858, + "CONCEPT_NAME" : "Intrauterine insemination using donor sperm", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "426250000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4139060, + "CONCEPT_NAME" : "Intrauterine insemination using partner sperm", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "426389008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4137390, + "CONCEPT_NAME" : "Intrauterine insemination with controlled ovarian hyperstimulation using donor sperm", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "425644009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4145843, + "CONCEPT_NAME" : "Intrauterine insemination with controlled ovarian hyperstimulation using partner sperm", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "426968007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4020898, + "CONCEPT_NAME" : "Intravaginal artificial insemination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "225250007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2721255, + "CONCEPT_NAME" : "INTRAVAGINAL CULTURE (IVC)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "S4036", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4199599, + "CONCEPT_NAME" : "In vitro fertilization", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "52637005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2788842, + "CONCEPT_NAME" : "In Vitro Fertilization", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "8E0ZXY1", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD10PCS", + "CONCEPT_CLASS_ID" : "ICD10PCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2721237, + "CONCEPT_NAME" : "In vitro fertilization; including but not limited to identification and incubation of mature oocytes, fertilization with sperm, incubation of embryo(s), and subsequent visualization for determination of development", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "S4011", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3049700, + "CONCEPT_NAME" : "In vitro fertilization pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "47224-1", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Clinical Observation" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2721245, + "CONCEPT_NAME" : "In vitro fertilization procedure cancelled after aspiration, case rate", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "S4021", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2721244, + "CONCEPT_NAME" : "In vitro fertilization procedure cancelled before aspiration, case rate", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "S4020", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4138627, + "CONCEPT_NAME" : "In vitro fertilization using donor eggs", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "425866000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 46273065, + "CONCEPT_NAME" : "In vitro fertilization with surrogacy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "711544002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4145664, + "CONCEPT_NAME" : "IVF - In vitro fertilization using donor sperm", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "427664000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4138633, + "CONCEPT_NAME" : "IVF - In vitro fertilization with intracytoplasmic sperm injection (ICSI)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "425901007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4141534, + "CONCEPT_NAME" : "IVF - In vitro fertilization with intracytoplasmic sperm injection (ICSI) and donor egg", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "426914002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4142402, + "CONCEPT_NAME" : "IVF - In vitro fertilization with pre-implantation genetic diagnosis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "426417003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4144415, + "CONCEPT_NAME" : "Laparoscopic oocyte recovery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "265082003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40259107, + "CONCEPT_NAME" : "Laparoscopic oocyte recovery (& NEC)", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "177040000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2213351, + "CONCEPT_NAME" : "Oocyte identification from follicular fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "89254", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4072862, + "CONCEPT_NAME" : "Oocyte recovery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177037000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 46232934, + "CONCEPT_NAME" : "Other introduction of gametes into uterine cavity", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "Q21", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "OPCS4", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44513468, + "CONCEPT_NAME" : "Other specified introduction of gametes into uterine cavity", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "Q13.8", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "OPCS4", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44517168, + "CONCEPT_NAME" : "Other specified in vitro fertilisation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "Y96.8", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "OPCS4", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4075024, + "CONCEPT_NAME" : "Other specified oocyte recovery", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "177043003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44513634, + "CONCEPT_NAME" : "Other specified oocyte recovery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "Q48.8", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "OPCS4", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44513516, + "CONCEPT_NAME" : "Other specified other introduction of gametes into uterine cavity", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "Q21.8", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "OPCS4", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2213352, + "CONCEPT_NAME" : "Preparation of embryo for transfer (any method)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "89255", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40490338, + "CONCEPT_NAME" : "Retrieval of oocyte by transabdominal approach", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "446934006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2213358, + "CONCEPT_NAME" : "Sperm isolation; complex prep (eg, Percoll gradient, albumin gradient) for insemination or diagnosis with semen analysis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "89261", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2213357, + "CONCEPT_NAME" : "Sperm isolation; simple prep (eg, sperm wash and swim-up) for insemination or diagnosis with semen analysis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "89260", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110198, + "CONCEPT_NAME" : "Sperm washing for artificial insemination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "58323", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2721254, + "CONCEPT_NAME" : "Stimulated intrauterine insemination (iui), case rate", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "S4035", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4022098, + "CONCEPT_NAME" : "Subzonal insemination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "225249007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44790511, + "CONCEPT_NAME" : "Transfer of embryo to uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "233111000000108", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40490447, + "CONCEPT_NAME" : "Transmyometrial transfer of embryo to uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "448543003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4073406, + "CONCEPT_NAME" : "Transvaginal oocyte recovery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177042008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4127106, + "CONCEPT_NAME" : "Tubal embryo transfer", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "236915005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4020897, + "CONCEPT_NAME" : "Zona drilling", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "225248004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4127105, + "CONCEPT_NAME" : "Zygote intrafallopian transfer", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "236914009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 56, + "name" : "Antenatal GP visits (AGP)", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4014433, + "CONCEPT_NAME" : "Antenatal 28 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169716006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014148, + "CONCEPT_NAME" : "Antenatal booking examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169711001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4173786, + "CONCEPT_NAME" : "Antenatal care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "424525001", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061786, + "CONCEPT_NAME" : "Antenatal care categorized by gravida number", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169572002", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060243, + "CONCEPT_NAME" : "Antenatal care: elderly primiparous", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169588002", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530904, + "CONCEPT_NAME" : "Antenatal care for woman with history of recurrent miscarriage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609442008", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061437, + "CONCEPT_NAME" : "Antenatal care from consultant", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169615001", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060251, + "CONCEPT_NAME" : "Antenatal care from general practitioner", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169614002", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439656, + "CONCEPT_NAME" : "Antenatal care: grand multiparity", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169581008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060246, + "CONCEPT_NAME" : "Antenatal care: history of child abuse", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169595006", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060097, + "CONCEPT_NAME" : "Antenatal care: history of infertility", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169589005", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060242, + "CONCEPT_NAME" : "Antenatal care: history of perinatal death", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169583006", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060241, + "CONCEPT_NAME" : "Antenatal care: history of stillbirth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169582001", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4059989, + "CONCEPT_NAME" : "Antenatal care: history of trophoblastic disease", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169585004", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060247, + "CONCEPT_NAME" : "Antenatal care: medical risk", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169597003", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4147564, + "CONCEPT_NAME" : "Antenatal care midwifery led", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "310248000", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060239, + "CONCEPT_NAME" : "Antenatal care: multip", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169576004", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061433, + "CONCEPT_NAME" : "Antenatal care: multiparous, older than 35 years", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169605007", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061426, + "CONCEPT_NAME" : "Antenatal care: obstetric risk", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169578003", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36713461, + "CONCEPT_NAME" : "Antenatal care of elderly primigravida", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "717797001", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061425, + "CONCEPT_NAME" : "Antenatal care of second pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169574001", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061787, + "CONCEPT_NAME" : "Antenatal care of third pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169575000", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060098, + "CONCEPT_NAME" : "Antenatal care: poor home conditions", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169592009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4059988, + "CONCEPT_NAME" : "Antenatal care: poor obstetric history", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169584000", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061789, + "CONCEPT_NAME" : "Antenatal care: precious pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169587007", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060248, + "CONCEPT_NAME" : "Antenatal care: primiparous, older than 30 years", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169604006", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060101, + "CONCEPT_NAME" : "Antenatal care: primiparous, under 17 years", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169603000", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061793, + "CONCEPT_NAME" : "Antenatal care provider", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169613008", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060240, + "CONCEPT_NAME" : "Antenatal care: recurrent aborter", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169580009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060244, + "CONCEPT_NAME" : "Antenatal care: social risk", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169591002", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4059987, + "CONCEPT_NAME" : "Antenatal care: uncertain dates", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169579006", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4190427, + "CONCEPT_NAME" : "Antenatal clinic", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "394574007", + "DOMAIN_ID" : "Visit", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Location" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4147941, + "CONCEPT_NAME" : "Antenatal data", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "268469004", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Observable Entity" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4047845, + "CONCEPT_NAME" : "Antenatal education", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "135892000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4084186, + "CONCEPT_NAME" : "Antenatal exercises", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "183329005", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4062361, + "CONCEPT_NAME" : "Antenatal relaxation class", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "171066005", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061521, + "CONCEPT_NAME" : "Antenatal - shared care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169616000", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4081196, + "CONCEPT_NAME" : "Antepartum", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276986009", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Qualifier Value" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110312, + "CONCEPT_NAME" : "Antepartum care only; 4-6 visits", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59425", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110313, + "CONCEPT_NAME" : "Antepartum care only; 7 or more visits", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59426", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2108689, + "CONCEPT_NAME" : "Anti-D immune globulin received between 26 and 30 weeks gestation (Pre-Cr)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "4178F", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015159, + "CONCEPT_NAME" : "Consultant unit birth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169815003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060252, + "CONCEPT_NAME" : "Consultant unit booking", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169623004", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37016958, + "CONCEPT_NAME" : "Counting fetal movement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "713120004", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4076939, + "CONCEPT_NAME" : "Delivery booking place", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "275816005", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Observable Entity" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061795, + "CONCEPT_NAME" : "Delivery: no place booked", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169620001", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4156955, + "CONCEPT_NAME" : "Delivery place booked", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "271402002", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4150421, + "CONCEPT_NAME" : "Delivery place planned", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "310585007", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4059478, + "CONCEPT_NAME" : "Estimated date of delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "161714006", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Observable Entity" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4128833, + "CONCEPT_NAME" : "Estimated date of delivery from last period", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "289206005", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Observable Entity" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4226978, + "CONCEPT_NAME" : "External fetal monitor surveillance during multiple pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87663001", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060255, + "CONCEPT_NAME" : "Feeding intention - breast", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169643005", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4084439, + "CONCEPT_NAME" : "Fetal heart monitoring", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "281568006", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015304, + "CONCEPT_NAME" : "Fetal size accords with dates", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169732009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060104, + "CONCEPT_NAME" : "Home delivery booked", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169621002", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4151190, + "CONCEPT_NAME" : "Home delivery planned", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "310586008", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2514574, + "CONCEPT_NAME" : "Home visit for prenatal monitoring and assessment to include fetal heart rate, non-stress test, uterine monitoring, and gestational diabetes monitoring", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "99500", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061791, + "CONCEPT_NAME" : "Late onset antenatal care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169594005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4066354, + "CONCEPT_NAME" : "Maternal care for poor fetal growth", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "200474004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4305717, + "CONCEPT_NAME" : "Midwife unit delivery booking", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "390782000", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37016955, + "CONCEPT_NAME" : "Monitoring fetal development", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "713117007", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4084521, + "CONCEPT_NAME" : "Obstetric D.V. done", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "183760007", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038747, + "CONCEPT_NAME" : "Obstetric examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "163497009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4140250, + "CONCEPT_NAME" : "Obstetric monitoring", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "265642006", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038420, + "CONCEPT_NAME" : "O/E - breech presentation", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163514003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038571, + "CONCEPT_NAME" : "O/E - fetal heart 120-160", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163548002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038945, + "CONCEPT_NAME" : "O/E - fetal heart heard", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163542001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4039088, + "CONCEPT_NAME" : "O/E - fetal heart not heard", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163543006", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038943, + "CONCEPT_NAME" : "O/E - fetal movement diminished", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163540009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4039610, + "CONCEPT_NAME" : "O/E - fetal movements seen", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163537009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038938, + "CONCEPT_NAME" : "O/E -fetal presentation unsure", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163518000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038760, + "CONCEPT_NAME" : "O/E - fetus very active", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163539007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038418, + "CONCEPT_NAME" : "O/E - fundal size = dates", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163510007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038749, + "CONCEPT_NAME" : "O/E - fundus 12-16 week size", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163499007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038751, + "CONCEPT_NAME" : "O/E - fundus 16-20 week size", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163500003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038932, + "CONCEPT_NAME" : "O/E - fundus 20-24 week size", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163501004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4039602, + "CONCEPT_NAME" : "O/E - fundus 24-28 week size", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163502006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038753, + "CONCEPT_NAME" : "O/E - fundus 28-32 week size", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163504007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038935, + "CONCEPT_NAME" : "O/E - fundus = term size", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163509002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038748, + "CONCEPT_NAME" : "O/E - gravid uterus size", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163498004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4039609, + "CONCEPT_NAME" : "O/E - no fetal movements", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163536000", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038759, + "CONCEPT_NAME" : "O/E - partial engagement - 3/5", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163531005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4175225, + "CONCEPT_NAME" : "O/E - PP free - not engaged", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "275968002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038424, + "CONCEPT_NAME" : "O/E - presentation engaged-1/5", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163533008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4171428, + "CONCEPT_NAME" : "O/E - presenting part engaged", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "275969005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4039608, + "CONCEPT_NAME" : "O/E - presenting part free-4/5", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163530006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038941, + "CONCEPT_NAME" : "O/E - presenting part free-5/5", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163529001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038939, + "CONCEPT_NAME" : "O/E - presenting part position", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163520002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038937, + "CONCEPT_NAME" : "O/E - transverse lie", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163516001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038573, + "CONCEPT_NAME" : "O/E - VE for pelvic assessment", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163555000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4039603, + "CONCEPT_NAME" : "O/E - vertex presentation", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163513009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4194143, + "CONCEPT_NAME" : "O/E - viable fetus", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "312354009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4016475, + "CONCEPT_NAME" : "Placenta normal O/E", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "169954003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2618150, + "CONCEPT_NAME" : "Prenatal care, at-risk assessment", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "H1000", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2618151, + "CONCEPT_NAME" : "Prenatal care, at-risk enhanced service; antepartum management", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "H1001", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2618152, + "CONCEPT_NAME" : "Prenatal care, at risk enhanced service; care coordination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "H1002", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2618154, + "CONCEPT_NAME" : "Prenatal care, at-risk enhanced service; follow-up home visit", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "H1004", + "DOMAIN_ID" : "Visit", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2618155, + "CONCEPT_NAME" : "Prenatal care, at-risk enhanced service package (includes h1001-h1004)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "H1005", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4176966, + "CONCEPT_NAME" : "Prenatal education", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "363266006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4112701, + "CONCEPT_NAME" : "Prenatal examination and care of mother", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "18114009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4311447, + "CONCEPT_NAME" : "Prenatal initial visit", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "424441002", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4172038, + "CONCEPT_NAME" : "Prenatal supplemental visit", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "422808006", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4313474, + "CONCEPT_NAME" : "Prenatal visit", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "424619006", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060105, + "CONCEPT_NAME" : "Private home delivery booking", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169624005", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 77619, + "CONCEPT_NAME" : "Reduced fetal movement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276369006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4081292, + "CONCEPT_NAME" : "Referral to antenatal clinic", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "183860003", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 46272536, + "CONCEPT_NAME" : "Referral to breastfeeding education class during prenatal period", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "710916001", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4084693, + "CONCEPT_NAME" : "Referral to obstetrics service", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "183548008", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4047564, + "CONCEPT_NAME" : "Routine antenatal care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "134435003", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4083415, + "CONCEPT_NAME" : "Seen in antenatal clinic", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "185226003", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4260976, + "CONCEPT_NAME" : "Seen in fetal medicine clinic", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "440580005", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2101831, + "CONCEPT_NAME" : "Subsequent prenatal care visit (Prenatal) [Excludes: patients who are seen for a condition unrelated to pregnancy or prenatal care (eg, an upper respiratory infection; patients seen for consultation only, not for continuing care)]", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "0502F", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40517216, + "CONCEPT_NAME" : "[V]Pregnancy examination and test", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "308165008", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40525253, + "CONCEPT_NAME" : "[V]Unspecified antenatal screening", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "315976001", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 57, + "name" : "Confirmation of pregnancy (PCONF)", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 441092, + "CONCEPT_NAME" : "Advanced maternal age gravida", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "416413003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061424, + "CONCEPT_NAME" : "Antenatal care: primigravida", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169573007", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40760833, + "CONCEPT_NAME" : "Birth plurality of Pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57722-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Clinical Observation" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4139126, + "CONCEPT_NAME" : "Braxton Hicks contractions", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "32644009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015590, + "CONCEPT_NAME" : "Counseling for termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10383002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3011536, + "CONCEPT_NAME" : "Delivery date Estimated", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "11778-8", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Clinical Observation" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43054893, + "CONCEPT_NAME" : "Delivery location", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72150-6", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Survey" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43021054, + "CONCEPT_NAME" : "Dichorionic diamniotic twin pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "459166009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37017322, + "CONCEPT_NAME" : "Dizygotic twin pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "713575004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441085, + "CONCEPT_NAME" : "Elderly primigravida", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "29399001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 192380, + "CONCEPT_NAME" : "Failed attempted termination of pregnancy without complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90645002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4210896, + "CONCEPT_NAME" : "Fetal gestational age", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57036006", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Observable Entity" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3006722, + "CONCEPT_NAME" : "Fetal Heart Narrative Activity US", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "11616-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Clinical Observation" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40759953, + "CONCEPT_NAME" : "Fetal Narrative Movement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "56834-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Clinical Observation" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 195877, + "CONCEPT_NAME" : "Finding of gravid uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "289675001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061522, + "CONCEPT_NAME" : "General practitioner unit delivery booking", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169622009", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437937, + "CONCEPT_NAME" : "Grand multipara", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "18656007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4030415, + "CONCEPT_NAME" : "Illegitimate pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14080002", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 197031, + "CONCEPT_NAME" : "Intrauterine pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65727000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061672, + "CONCEPT_NAME" : "IUD failure - pregnant", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169488004", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43021951, + "CONCEPT_NAME" : "Monochorionic diamniotic twin pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "459168005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43021952, + "CONCEPT_NAME" : "Monochorionic monoamniotic twin pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "459171002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3045823, + "CONCEPT_NAME" : "Multiple pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45371-2", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Clinical Observation" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432969, + "CONCEPT_NAME" : "Multiple pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16356006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3000119, + "CONCEPT_NAME" : "Narrative Fetal presentation US", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "18850-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Clinical Observation" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4217975, + "CONCEPT_NAME" : "Normal pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72892002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038942, + "CONCEPT_NAME" : "O/E - fetal movements", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163535001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4150948, + "CONCEPT_NAME" : "O/E - fetal presentation", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "268952006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4148890, + "CONCEPT_NAME" : "Pregnancy benefits", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "270471004", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Qualifier Value" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4094910, + "CONCEPT_NAME" : "Pregnancy test positive", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "250423000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061785, + "CONCEPT_NAME" : "Pregnancy unplanned and unwanted", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169567006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060237, + "CONCEPT_NAME" : "Pregnancy unplanned but wanted", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169566002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4299535, + "CONCEPT_NAME" : "Pregnant", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "77386006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4059982, + "CONCEPT_NAME" : "Pregnant - blood test confirms", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169561007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061686, + "CONCEPT_NAME" : "Pregnant - on history", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169563005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4059984, + "CONCEPT_NAME" : "Pregnant - planned", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169565003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061411, + "CONCEPT_NAME" : "Pregnant, sheath failure", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169508004", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4059981, + "CONCEPT_NAME" : "Pregnant - urine test confirms", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169560008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4133029, + "CONCEPT_NAME" : "Primigravida", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "127364007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442594, + "CONCEPT_NAME" : "Quadruplet pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "60810003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440466, + "CONCEPT_NAME" : "Quadruplet pregnancy with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199326006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061423, + "CONCEPT_NAME" : "Questionable if pregnancy was planned", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169569009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4214930, + "CONCEPT_NAME" : "Refer to early pregnancy unit", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "417577000", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040000, + "CONCEPT_NAME" : "Reliability of last menstrual period observation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "53661-5", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Clinical Observation" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 196484, + "CONCEPT_NAME" : "Retroverted incarcerated gravid uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199466009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4042412, + "CONCEPT_NAME" : "Serum pregnancy test positive", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "166437003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 198212, + "CONCEPT_NAME" : "Spotting per vagina in pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "284075002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4129023, + "CONCEPT_NAME" : "Teenage pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237240001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4218813, + "CONCEPT_NAME" : "Third trimester pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "41587001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432375, + "CONCEPT_NAME" : "Triplet pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64254006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441919, + "CONCEPT_NAME" : "Twin pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65147003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4307820, + "CONCEPT_NAME" : "Unplanned pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "83074005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4059985, + "CONCEPT_NAME" : "Unplanned pregnancy unknown if child is wanted", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169568001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4239301, + "CONCEPT_NAME" : "Unwanted pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "58532003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4041878, + "CONCEPT_NAME" : "Urine pregnancy test positive", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "167256004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3023791, + "CONCEPT_NAME" : "Uterus Fundal height Tape measure", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "11881-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Clinical Observation" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40519557, + "CONCEPT_NAME" : "[V]Other unwanted pregnancy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "316385002", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40524802, + "CONCEPT_NAME" : "[V]Pregnant state, incidental", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "315903005", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40524805, + "CONCEPT_NAME" : "[V]Unspecified pregnant state", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "315906002", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 58, + "name" : "Gonadotropin, chorionic (hCG) (HCG)", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 2721180, + "CONCEPT_NAME" : "BLOOD CHEMISTRY FOR FREE BETA HUMAN CHORIONIC GONADOTROPIN (HCG)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "S3618", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3019145, + "CONCEPT_NAME" : "Choriogonadotropin.beta subunit free [Mass/volume] in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25373-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3011465, + "CONCEPT_NAME" : "Choriogonadotropin.beta subunit free [Units/volume] in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "19180-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3011996, + "CONCEPT_NAME" : "Choriogonadotropin.beta subunit [Moles/volume] in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "2111-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3010164, + "CONCEPT_NAME" : "Choriogonadotropin.beta subunit [Multiple of the median] adjusted in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "23841-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40758989, + "CONCEPT_NAME" : "Choriogonadotropin.beta subunit [Multiple of the median] in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55868-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3011149, + "CONCEPT_NAME" : "Choriogonadotropin.beta subunit (pregnancy test) [Presence] in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "2110-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3009417, + "CONCEPT_NAME" : "Choriogonadotropin.beta subunit (pregnancy test) [Presence] in Urine", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "2112-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3038136, + "CONCEPT_NAME" : "Choriogonadotropin.beta subunit [Units/volume] in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "21198-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3004303, + "CONCEPT_NAME" : "Choriogonadotropin.intact [Moles/volume] in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "2117-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3036988, + "CONCEPT_NAME" : "Choriogonadotropin.intact [Units/volume] in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "30243-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3002091, + "CONCEPT_NAME" : "Choriogonadotropin [Moles/volume] in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "2119-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3008714, + "CONCEPT_NAME" : "Choriogonadotropin [Multiple of the median] adjusted in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "32166-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3003191, + "CONCEPT_NAME" : "Choriogonadotropin (pregnancy test) [Presence] in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "2118-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3018954, + "CONCEPT_NAME" : "Choriogonadotropin (pregnancy test) [Presence] in Urine", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "2106-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3018171, + "CONCEPT_NAME" : "Choriogonadotropin [Units/volume] in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "19080-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4018189, + "CONCEPT_NAME" : "Chorionic gonadotropin, alpha subunit measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "104595003", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4296540, + "CONCEPT_NAME" : "Chorionic gonadotropin, beta-subunit measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "386558001", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4296541, + "CONCEPT_NAME" : "Chorionic gonadotropin, beta-subunit measurement, spinal fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "386559009", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4016953, + "CONCEPT_NAME" : "Chorionic gonadotropin, intact measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "104596002", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4017479, + "CONCEPT_NAME" : "Chorionic gonadotropin measurement, qualitative", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "104406007", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4263011, + "CONCEPT_NAME" : "Elevated serum human chorionic gonadotropin level, beta subunit", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "396700001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43527960, + "CONCEPT_NAME" : "Fetal congenital abnormalities, biochemical assays of three proteins (PAPP-A, hCG [any form], DIA), utilizing maternal serum, algorithm reported as a risk score", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "81509", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43527959, + "CONCEPT_NAME" : "Fetal congenital abnormalities, biochemical assays of two proteins (PAPP-A, hCG [any form]), utilizing maternal serum, algorithm reported as a risk score", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "81508", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4096237, + "CONCEPT_NAME" : "Free beta human chorionic gonadotrophin measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "250658009", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44807244, + "CONCEPT_NAME" : "Free beta human chorionic gonadotrophin multiple of median measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "816021000000107", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2212633, + "CONCEPT_NAME" : "Gonadotropin, chorionic (hCG); free beta chain", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84704", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2212632, + "CONCEPT_NAME" : "Gonadotropin, chorionic (hCG); qualitative", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84703", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2212631, + "CONCEPT_NAME" : "Gonadotropin, chorionic (hCG); quantitative", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84702", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44807240, + "CONCEPT_NAME" : "Human chorionic gonadotrophin multiple of median measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "815981000000104", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4285271, + "CONCEPT_NAME" : "Human chorionic gonadotropin measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "67900009", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44806337, + "CONCEPT_NAME" : "Human chorionic gonadotropin output measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "800821000000104", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038817, + "CONCEPT_NAME" : "Increased human chorionic gonadotropin level", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "131102000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44812174, + "CONCEPT_NAME" : "Plasma human chorionic gonadotrophin concentration measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "911491000000101", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4210718, + "CONCEPT_NAME" : "Plasma human chorionic gonadotropin multiple of median measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313865003", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4210722, + "CONCEPT_NAME" : "Serum free beta human chorionic gonadotrophin measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313872002", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4195509, + "CONCEPT_NAME" : "Serum free beta human chorionic gonadotropin multiple of median measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "314070003", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4198892, + "CONCEPT_NAME" : "Serum human chorionic gonadotropin multiple of median measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313866002", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4041161, + "CONCEPT_NAME" : "Serum pregnancy test (B-HCG)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "166434005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4042751, + "CONCEPT_NAME" : "Serum total HCG measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "167037004", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4214677, + "CONCEPT_NAME" : "Total beta human chorionic gonadotrophin level", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "394721004", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44789306, + "CONCEPT_NAME" : "Total human chorionic gonadotropin measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "195261000000107", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4055426, + "CONCEPT_NAME" : "Urine chorionic gonadotrophin measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "167376008", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4055954, + "CONCEPT_NAME" : "Urine HCG 24 hour assay", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "167391005", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 60, + "name" : "Stillbirth (SB)", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4129846, + "CONCEPT_NAME" : "Antepartum fetal death", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237361005", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Event" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37017027, + "CONCEPT_NAME" : "Antepartum stillbirth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "713202001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4079844, + "CONCEPT_NAME" : "Fetal death", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276507005", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Event" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4071603, + "CONCEPT_NAME" : "Fetal death due to prelabor anoxia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206258000", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Event" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442338, + "CONCEPT_NAME" : "Fetal death from asphyxia AND/OR anoxia before onset of labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "44174001", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Event" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443695, + "CONCEPT_NAME" : "Fetal death from asphyxia AND/OR anoxia during labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1762004", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Event" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4034159, + "CONCEPT_NAME" : "Fresh stillbirth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237365001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45773593, + "CONCEPT_NAME" : "Intrapartum stillbirth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "921611000000101", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060687, + "CONCEPT_NAME" : "Intrauterine death - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199607009", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Event" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4028787, + "CONCEPT_NAME" : "Macerated stillbirth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237366000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4222915, + "CONCEPT_NAME" : "Premature birth of fraternal twins, both stillborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84382006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4242724, + "CONCEPT_NAME" : "Premature birth of identical twins, both stillborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "3798002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4184594, + "CONCEPT_NAME" : "Premature birth of stillborn twins", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54650005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42539377, + "CONCEPT_NAME" : "Quadruplets with all four stillborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "762612009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42538805, + "CONCEPT_NAME" : "Quintuplets with all five stillborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "762613004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42538806, + "CONCEPT_NAME" : "Sextuplets with all six stillborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "762614005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014454, + "CONCEPT_NAME" : "Single stillbirth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169827000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443213, + "CONCEPT_NAME" : "Stillbirth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237364002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40406337, + "CONCEPT_NAME" : "Stillbirth", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "206581002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4287409, + "CONCEPT_NAME" : "Stillbirth of immature female (500-999 gms.)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "68509000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4217655, + "CONCEPT_NAME" : "Stillbirth of immature fetus, sex undetermined (500-999 gms.)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72543004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4261819, + "CONCEPT_NAME" : "Stillbirth of immature male (500-999 gms.)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "35608009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4321563, + "CONCEPT_NAME" : "Stillbirth of mature female (2500 gms. or more)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "70112005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4301269, + "CONCEPT_NAME" : "Stillbirth of mature male (2500 gms. or more)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7860005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4103876, + "CONCEPT_NAME" : "Stillbirth of premature female (1000-2499 gms.)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "28996007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4300979, + "CONCEPT_NAME" : "Stillbirth of premature male (1000-2499 gms.)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "77814006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443463, + "CONCEPT_NAME" : "Stillbirth - unknown if fetal death intrapartum or prior to labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "408796008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4306288, + "CONCEPT_NAME" : "Term birth of fraternal twins, both stillborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "83121003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4192641, + "CONCEPT_NAME" : "Term birth of identical twins, both stillborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "75697004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4203001, + "CONCEPT_NAME" : "Term birth of stillborn twins", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "52942000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015163, + "CONCEPT_NAME" : "Triplets - three stillborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169834003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015162, + "CONCEPT_NAME" : "Twins - both stillborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169830007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 61, + "name" : "Pregnancy markers", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4198718, + "CONCEPT_NAME" : "120 minute blood glucose measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313545000", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4209254, + "CONCEPT_NAME" : "120 minute plasma glucose measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313627007", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4197835, + "CONCEPT_NAME" : "120 minute serum glucose measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313631001", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4193852, + "CONCEPT_NAME" : "150 minute blood glucose measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313624000", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4198731, + "CONCEPT_NAME" : "150 minute plasma glucose measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313628002", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4195213, + "CONCEPT_NAME" : "150 minute serum glucose measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313810002", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44805579, + "CONCEPT_NAME" : "180 minute plasma glucose measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "754261000000106", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3016704, + "CONCEPT_NAME" : "1 minute Apgar Score", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "9272-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Clinical Observation" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4234906, + "CONCEPT_NAME" : "240 minute plasma glucose measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "440576000", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4258832, + "CONCEPT_NAME" : "300 minute plasma glucose measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "440620002", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4198733, + "CONCEPT_NAME" : "30 minute blood glucose measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313637002", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4193853, + "CONCEPT_NAME" : "30 minute plasma glucose measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313625004", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4198732, + "CONCEPT_NAME" : "30 minute serum glucose measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313629005", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3004221, + "CONCEPT_NAME" : "5 minute Apgar Score", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "9274-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Clinical Observation" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4209122, + "CONCEPT_NAME" : "60 minute blood glucose measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313474007", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4193854, + "CONCEPT_NAME" : "60 minute plasma glucose measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313626003", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4193855, + "CONCEPT_NAME" : "60 minute serum glucose measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313630000", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4198719, + "CONCEPT_NAME" : "90 minute blood glucose measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313546004", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4198742, + "CONCEPT_NAME" : "90 minute plasma glucose measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313697000", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4198743, + "CONCEPT_NAME" : "90 minute serum glucose measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313698005", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4130321, + "CONCEPT_NAME" : "Abdominal delivery for shoulder dystocia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "236989008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4200678, + "CONCEPT_NAME" : "Abdominal hysterectomy and left salpingo-oophorectomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "302191001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4059050, + "CONCEPT_NAME" : "Abdominal obstetric X-ray", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "168759005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4198125, + "CONCEPT_NAME" : "Abdominal pain in early pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "314041007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4149783, + "CONCEPT_NAME" : "Abdominal pain in pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "309737007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 193525, + "CONCEPT_NAME" : "Abdominal pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "82661006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442631, + "CONCEPT_NAME" : "Abnormal cerebral signs in the newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63814006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 314478, + "CONCEPT_NAME" : "Abnormal fetal heart beat first noted during labor AND/OR delivery in liveborn infant", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "22271007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 312733, + "CONCEPT_NAME" : "Abnormal fetal heart beat, not clear if noted before OR after onset of labor in liveborn infant", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "231958008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 137974, + "CONCEPT_NAME" : "Abnormal fetal heart beat noted before labor in liveborn infant", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "655007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 314099, + "CONCEPT_NAME" : "Abnormal fetal heart rate", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "312668007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437688, + "CONCEPT_NAME" : "Abnormal findings on antenatal screening of mother", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199732004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438557, + "CONCEPT_NAME" : "Abnormal glucose level", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "102660008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440216, + "CONCEPT_NAME" : "Abnormal glucose tolerance test", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "274858002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439402, + "CONCEPT_NAME" : "Abnormal glucose tolerance test during pregnancy - baby delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "372055003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439403, + "CONCEPT_NAME" : "Abnormal glucose tolerance test during pregnancy - baby not yet delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "372054004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4162865, + "CONCEPT_NAME" : "Abnormal glucose tolerance test during pregnancy, childbirth and the puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "372046001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4155282, + "CONCEPT_NAME" : "Abnormal glucose tolerance test in the puerperium - baby delivered during current episode of care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "372051007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4162866, + "CONCEPT_NAME" : "Abnormal glucose tolerance test in the puerperium - baby delivered during previous episode of care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "372050008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4306804, + "CONCEPT_NAME" : "Abnormal head circumference in relation to growth / age standard", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "422695002", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437342, + "CONCEPT_NAME" : "Abnormality of forces of labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "35882009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 197050, + "CONCEPT_NAME" : "Abnormality of organs AND/OR soft tissues of pelvis affecting pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1639007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40480490, + "CONCEPT_NAME" : "Abnormal presence of alpha-fetoprotein", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "441772009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4136368, + "CONCEPT_NAME" : "Abnormal presence of glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "31649001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 436477, + "CONCEPT_NAME" : "Abnormal products of conception", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "39804004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3003694, + "CONCEPT_NAME" : "ABO and Rh group [Type] in Blood", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "882-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444365, + "CONCEPT_NAME" : "Abortion", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "70317007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42597053, + "CONCEPT_NAME" : "Abortion associated with Equine arteritis virus infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "318481000009103", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED Veterinary", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42597052, + "CONCEPT_NAME" : "Abortion associated with Equine herpesvirus infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "318471000009100", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED Veterinary", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42597051, + "CONCEPT_NAME" : "Abortion associated with umbilical torsion", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "318461000009109", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED Veterinary", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 201076, + "CONCEPT_NAME" : "Abortion complicated by damage to pelvic organs AND/OR tissues", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "373908001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 197612, + "CONCEPT_NAME" : "Abortion complicated by delayed AND/OR excessive hemorrhage", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "111426003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438812, + "CONCEPT_NAME" : "Abortion complicated by genital-pelvic infection", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "373891000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 195319, + "CONCEPT_NAME" : "Abortion complicated by renal failure", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "10123006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42599848, + "CONCEPT_NAME" : "Abortion due to Brucella canis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "360051000009101", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED Veterinary", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2721147, + "CONCEPT_NAME" : "ABORTION FOR MATERNAL INDICATION", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "S2262", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2784560, + "CONCEPT_NAME" : "Abortion of Products of Conception, Abortifacient, Via Natural or Artificial Opening", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10A07ZX", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD10PCS", + "CONCEPT_CLASS_ID" : "ICD10PCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2784559, + "CONCEPT_NAME" : "Abortion of Products of Conception, Laminaria, Via Natural or Artificial Opening", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10A07ZW", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD10PCS", + "CONCEPT_CLASS_ID" : "ICD10PCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2784555, + "CONCEPT_NAME" : "Abortion of Products of Conception, Open Approach", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10A00ZZ", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD10PCS", + "CONCEPT_CLASS_ID" : "ICD10PCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2784556, + "CONCEPT_NAME" : "Abortion of Products of Conception, Percutaneous Approach", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10A03ZZ", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD10PCS", + "CONCEPT_CLASS_ID" : "ICD10PCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2784557, + "CONCEPT_NAME" : "Abortion of Products of Conception, Percutaneous Endoscopic Approach", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10A04ZZ", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD10PCS", + "CONCEPT_CLASS_ID" : "ICD10PCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2784558, + "CONCEPT_NAME" : "Abortion of Products of Conception, Vacuum, Via Natural or Artificial Opening", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10A07Z6", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD10PCS", + "CONCEPT_CLASS_ID" : "ICD10PCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2784561, + "CONCEPT_NAME" : "Abortion of Products of Conception, Via Natural or Artificial Opening", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10A07ZZ", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD10PCS", + "CONCEPT_CLASS_ID" : "ICD10PCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2784562, + "CONCEPT_NAME" : "Abortion of Products of Conception, Via Natural or Artificial Opening Endoscopic", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10A08ZZ", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD10PCS", + "CONCEPT_CLASS_ID" : "ICD10PCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440776, + "CONCEPT_NAME" : "Abortion with complication", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "371332008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440454, + "CONCEPT_NAME" : "Abortion without complication", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "51830007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4050827, + "CONCEPT_NAME" : "Abrasion of anus, infected", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "211060000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4052366, + "CONCEPT_NAME" : "Abrasion of penis, infected", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "211064009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4052365, + "CONCEPT_NAME" : "Abrasion of perineum, infected", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "211063003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4050829, + "CONCEPT_NAME" : "Abrasion of vulva, infected", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "211066006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36713476, + "CONCEPT_NAME" : "Abscess of breast associated with childbirth with attachment difficulty", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "717817006", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4262542, + "CONCEPT_NAME" : "Abscess of nipple associated with childbirth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46273003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3034139, + "CONCEPT_NAME" : "Acetylcholinesterase [Enzymatic activity/volume] in Amniotic fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1708-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4173330, + "CONCEPT_NAME" : "Acquired subglottic stenosis in newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276635001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4034308, + "CONCEPT_NAME" : "Acromion presentation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "23954006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 761075, + "CONCEPT_NAME" : "Acute idiopathic neonatal pulmonary hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "142221000119105", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 196490, + "CONCEPT_NAME" : "Acute renal failure following labor AND/OR delivery", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "13010001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4215648, + "CONCEPT_NAME" : "Acute renal failure following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "71909003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45772947, + "CONCEPT_NAME" : "Acute respiratory distress in newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "707540007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45768986, + "CONCEPT_NAME" : "Acute respiratory distress in newborn with surfactant disorder", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "707541006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37397030, + "CONCEPT_NAME" : "Adult onset non-insulinoma persistent hyperinsulinemic hypoglycemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "717044000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441092, + "CONCEPT_NAME" : "Advanced maternal age gravida", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "416413003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4312095, + "CONCEPT_NAME" : "Afibrinogenemia following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "85796009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4129840, + "CONCEPT_NAME" : "Afibrinogenemia - postpartum", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237337003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061810, + "CONCEPT_NAME" : "AFP - blood sent", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169688006", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061809, + "CONCEPT_NAME" : "AFP blood test not wanted", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169687001", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3655216, + "CONCEPT_NAME" : "Air embolism due to and following ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "860689000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3655215, + "CONCEPT_NAME" : "Air embolism due to and following molar pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "860688008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4030070, + "CONCEPT_NAME" : "Alcohol-induced hypoglycemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237641009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4029428, + "CONCEPT_NAME" : "Alimentary hyperinsulinemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237647008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4029425, + "CONCEPT_NAME" : "Alimentary hypoglycemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237639008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040768, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein interpretation in Amniotic fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "41273-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3038294, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein interpretation in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "41274-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3010296, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Mass/volume] in Amniotic fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1832-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42529192, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Mass/volume] in Amniotic fluid by Immunoassay", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "83075-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3027634, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Mass/volume] in Cerebral spinal fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1833-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757479, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Mass/volume] in Cord blood", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54348-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3032506, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Mass/volume] in Peritoneal fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "49761-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3033080, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Mass/volume] in Pleural fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "49762-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3009306, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Mass/volume] in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1834-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42529190, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Mass/volume] in Serum or Plasma by Immunoassay", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "83073-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4197249, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80152001", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4099476, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein measurement, amniotic fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "27220002", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014768, + "CONCEPT_NAME" : "Alpha-1-fetoprotein measurement, serum", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "104404005", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3012116, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Moles/volume] in Amniotic fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15019-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3024289, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Moles/volume] in Pleural fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "19173-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3021607, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Moles/volume] in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "19177-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3046154, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Multiple of the median] adjusted for diabetes in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43998-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3044142, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Multiple of the median] adjusted for diabetes+weight in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43996-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3030180, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Multiple of the median] adjusted for multiple gestations in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "50610-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3046979, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Multiple of the median] adjusted for weight in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43997-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3022269, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Multiple of the median] adjusted in Amniotic fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "29253-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3016670, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Multiple of the median] adjusted in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "23811-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3004943, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Multiple of the median] in Amniotic fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "29595-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3024370, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Multiple of the median] in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "20450-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40761829, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein panel - Amniotic fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "58735-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3044397, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Presence] in Amniotic fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43798-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3025053, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Presence] in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "31993-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3027505, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Units/volume] in Amniotic fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "19171-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42529191, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Units/volume] in Amniotic fluid by Immunoassay", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "83074-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3045958, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Units/volume] in Body fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "44910-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40762626, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Units/volume] in Cerebral spinal fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59564-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3028331, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Units/volume] in Pleural fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "19172-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42529189, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Units/volume] in Serum or Plasma by Immunoassay", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "83072-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2212200, + "CONCEPT_NAME" : "Alpha-fetoprotein (AFP); AFP-L3 fraction isoform and total AFP (including ratio)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "82107", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2212199, + "CONCEPT_NAME" : "Alpha-fetoprotein (AFP); amniotic fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "82106", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2212198, + "CONCEPT_NAME" : "Alpha-fetoprotein (AFP); serum", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "82105", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4147940, + "CONCEPT_NAME" : "Alpha-fetoprotein blood test", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "268468007", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4269851, + "CONCEPT_NAME" : "Alpha-fetoprotein level - finding", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "365802003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4041177, + "CONCEPT_NAME" : "Alpha-fetoprotein low", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "166562001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44807243, + "CONCEPT_NAME" : "Alpha fetoprotein multiple of median measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "816011000000101", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4042555, + "CONCEPT_NAME" : "Alpha-fetoprotein normal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "166558007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4059689, + "CONCEPT_NAME" : "Alpha-fetoprotein radioimmunoassay", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169188005", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4042557, + "CONCEPT_NAME" : "Alpha-fetoprotein raised", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "166561008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4078285, + "CONCEPT_NAME" : "Alpha-fetoprotein test - antenatal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "275833003", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4207608, + "CONCEPT_NAME" : "Ambulatory continuous glucose monitoring of interstitial tissue fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "439926003", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2314093, + "CONCEPT_NAME" : "Ambulatory continuous glucose monitoring of interstitial tissue fluid via a subcutaneous sensor for a minimum of 72 hours; analysis, interpretation and report", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "95251", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2314092, + "CONCEPT_NAME" : "Ambulatory continuous glucose monitoring of interstitial tissue fluid via a subcutaneous sensor for a minimum of 72 hours; physician or other qualified health care professional (office) provided equipment, sensor placement, hook-up, calibration of monitor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "95250", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4208334, + "CONCEPT_NAME" : "Ambulatory continuous glucose monitoring of interstitial tissue fluid with sensor placement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "440404000", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443800, + "CONCEPT_NAME" : "Amenorrhea", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14302001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4184965, + "CONCEPT_NAME" : "Amenorrhea associated with obesity", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "413487000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4146045, + "CONCEPT_NAME" : "Amniocentesis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "34536000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110279, + "CONCEPT_NAME" : "Amniocentesis; diagnostic", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4140734, + "CONCEPT_NAME" : "Amniocentesis for possible chromosomal abnormality", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "427230007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110280, + "CONCEPT_NAME" : "Amniocentesis; therapeutic amniotic fluid reduction (includes ultrasound guidance)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004824, + "CONCEPT_NAME" : "Amnioinfusion", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "75.37", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437936, + "CONCEPT_NAME" : "Amniotic cavity infection - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199677008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435880, + "CONCEPT_NAME" : "Amniotic cavity infection with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199678003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4057158, + "CONCEPT_NAME" : "Amniotic fluid AFP equivocal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "168108003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4269860, + "CONCEPT_NAME" : "Amniotic fluid AFP - finding", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "365827005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4231903, + "CONCEPT_NAME" : "Amniotic fluid analysis for hemolytic disease of the newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "359878007", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435616, + "CONCEPT_NAME" : "Amniotic fluid embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "17263003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3655206, + "CONCEPT_NAME" : "Amniotic fluid embolism due to and following ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "860677002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3655205, + "CONCEPT_NAME" : "Amniotic fluid embolism due to and following molar pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "860676006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4057149, + "CONCEPT_NAME" : "Amniotic fluid examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "168083008", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433880, + "CONCEPT_NAME" : "Amniotic fluid examination abnormal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "410037001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4154997, + "CONCEPT_NAME" : "Amniotic fluid leaking", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "371380006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441959, + "CONCEPT_NAME" : "Amniotic fluid -meconium stain", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "168092006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 436768, + "CONCEPT_NAME" : "Amniotic fluid pulmonary embolism with antenatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200296007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437948, + "CONCEPT_NAME" : "Amniotic fluid pulmonary embolism with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200297003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2212210, + "CONCEPT_NAME" : "Amniotic fluid scan (spectrophotometric)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "82143", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4248954, + "CONCEPT_NAME" : "Amniotomy at delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "408817009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4173032, + "CONCEPT_NAME" : "Anal margin hematoma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276465001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4170460, + "CONCEPT_NAME" : "Anal sphincter tear", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "275431006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432968, + "CONCEPT_NAME" : "Anemia during pregnancy - baby delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199244000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432967, + "CONCEPT_NAME" : "Anemia during pregnancy - baby not yet delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199246003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4209094, + "CONCEPT_NAME" : "Anemia during the puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313291009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434701, + "CONCEPT_NAME" : "Anemia in mother complicating pregnancy, childbirth AND/OR puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45828008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442923, + "CONCEPT_NAME" : "Anemia in the puerperium - baby delivered during current episode of care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199245004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442922, + "CONCEPT_NAME" : "Anemia in the puerperium - baby delivered during previous episode of care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199247007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4099889, + "CONCEPT_NAME" : "Anemia of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "27342004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432452, + "CONCEPT_NAME" : "Anemia of prematurity", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "47100003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42739743, + "CONCEPT_NAME" : "Anesthesia for abortion procedures (Deprecated)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "01964", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2101814, + "CONCEPT_NAME" : "Anesthesia for cesarean delivery following neuraxial labor analgesia/anesthesia (List separately in addition to code for primary procedure performed)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "01968", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2101807, + "CONCEPT_NAME" : "Anesthesia for cesarean delivery only", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "01961", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2101809, + "CONCEPT_NAME" : "Anesthesia for cesarean hysterectomy without any labor analgesia/anesthesia care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "01963", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2101804, + "CONCEPT_NAME" : "Anesthesia for external cephalic version procedure", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "01958", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2101811, + "CONCEPT_NAME" : "Anesthesia for incomplete or missed abortion procedures", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "01965", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2101812, + "CONCEPT_NAME" : "Anesthesia for induced abortion procedures", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "01966", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2100998, + "CONCEPT_NAME" : "Anesthesia for intraperitoneal procedures in lower abdomen including laparoscopy; amniocentesis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "00842", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2101808, + "CONCEPT_NAME" : "Anesthesia for urgent hysterectomy following delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "01962", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2101806, + "CONCEPT_NAME" : "Anesthesia for vaginal delivery only", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "01960", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4118417, + "CONCEPT_NAME" : "Anomalies of umbilicus", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "205840009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40480713, + "CONCEPT_NAME" : "Anovulatory amenorrhea", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "444769001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4149405, + "CONCEPT_NAME" : "Anoxia, in liveborn infant", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "30828007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015296, + "CONCEPT_NAME" : "Antenatal 12 weeks examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169712008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014149, + "CONCEPT_NAME" : "Antenatal 16 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169713003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014150, + "CONCEPT_NAME" : "Antenatal 20 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169714009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808979, + "CONCEPT_NAME" : "Antenatal 22 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861281000000109", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015141, + "CONCEPT_NAME" : "Antenatal 24 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169715005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808980, + "CONCEPT_NAME" : "Antenatal 25 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861301000000105", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014433, + "CONCEPT_NAME" : "Antenatal 28 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169716006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014151, + "CONCEPT_NAME" : "Antenatal 30 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169717002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808981, + "CONCEPT_NAME" : "Antenatal 31 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861321000000101", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015297, + "CONCEPT_NAME" : "Antenatal 32 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169718007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015298, + "CONCEPT_NAME" : "Antenatal 34 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169719004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014434, + "CONCEPT_NAME" : "Antenatal 35 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169720005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015299, + "CONCEPT_NAME" : "Antenatal 36 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169721009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015142, + "CONCEPT_NAME" : "Antenatal 37 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169722002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014152, + "CONCEPT_NAME" : "Antenatal 38 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169723007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015300, + "CONCEPT_NAME" : "Antenatal 39 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169724001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015301, + "CONCEPT_NAME" : "Antenatal 40 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169725000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015302, + "CONCEPT_NAME" : "Antenatal 41 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169726004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014435, + "CONCEPT_NAME" : "Antenatal 42 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169727008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061154, + "CONCEPT_NAME" : "Antenatal amniocentesis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169646002", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060259, + "CONCEPT_NAME" : "Antenatal amniocentesis - abnormal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169653006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061530, + "CONCEPT_NAME" : "Antenatal amniocentesis - normal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169652001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014319, + "CONCEPT_NAME" : "Antenatal blood group screening", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169703006", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015139, + "CONCEPT_NAME" : "Antenatal blood group screening done", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169705004", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4207466, + "CONCEPT_NAME" : "Antenatal blood tests", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "312404004", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014148, + "CONCEPT_NAME" : "Antenatal booking examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169711001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4173786, + "CONCEPT_NAME" : "Antenatal care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "424525001", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061786, + "CONCEPT_NAME" : "Antenatal care categorized by gravida number", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169572002", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060243, + "CONCEPT_NAME" : "Antenatal care: elderly primiparous", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169588002", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530904, + "CONCEPT_NAME" : "Antenatal care for woman with history of recurrent miscarriage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609442008", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061437, + "CONCEPT_NAME" : "Antenatal care from consultant", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169615001", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060251, + "CONCEPT_NAME" : "Antenatal care from general practitioner", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169614002", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439656, + "CONCEPT_NAME" : "Antenatal care: grand multiparity", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169581008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060246, + "CONCEPT_NAME" : "Antenatal care: history of child abuse", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169595006", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060097, + "CONCEPT_NAME" : "Antenatal care: history of infertility", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169589005", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060242, + "CONCEPT_NAME" : "Antenatal care: history of perinatal death", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169583006", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060241, + "CONCEPT_NAME" : "Antenatal care: history of stillbirth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169582001", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4059989, + "CONCEPT_NAME" : "Antenatal care: history of trophoblastic disease", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169585004", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060247, + "CONCEPT_NAME" : "Antenatal care: medical risk", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169597003", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4147564, + "CONCEPT_NAME" : "Antenatal care midwifery led", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "310248000", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060239, + "CONCEPT_NAME" : "Antenatal care: multip", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169576004", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061433, + "CONCEPT_NAME" : "Antenatal care: multiparous, older than 35 years", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169605007", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061426, + "CONCEPT_NAME" : "Antenatal care: obstetric risk", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169578003", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36713461, + "CONCEPT_NAME" : "Antenatal care of elderly primigravida", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "717797001", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061425, + "CONCEPT_NAME" : "Antenatal care of second pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169574001", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061787, + "CONCEPT_NAME" : "Antenatal care of third pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169575000", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060098, + "CONCEPT_NAME" : "Antenatal care: poor home conditions", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169592009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4059988, + "CONCEPT_NAME" : "Antenatal care: poor obstetric history", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169584000", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061789, + "CONCEPT_NAME" : "Antenatal care: precious pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169587007", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061424, + "CONCEPT_NAME" : "Antenatal care: primigravida", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169573007", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060248, + "CONCEPT_NAME" : "Antenatal care: primiparous, older than 30 years", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169604006", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060101, + "CONCEPT_NAME" : "Antenatal care: primiparous, under 17 years", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169603000", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061793, + "CONCEPT_NAME" : "Antenatal care provider", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169613008", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060240, + "CONCEPT_NAME" : "Antenatal care: recurrent aborter", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169580009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060244, + "CONCEPT_NAME" : "Antenatal care: social risk", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169591002", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4059987, + "CONCEPT_NAME" : "Antenatal care: uncertain dates", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169579006", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4190427, + "CONCEPT_NAME" : "Antenatal clinic", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "394574007", + "DOMAIN_ID" : "Visit", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Location" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4147941, + "CONCEPT_NAME" : "Antenatal data", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "268469004", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Observable Entity" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441649, + "CONCEPT_NAME" : "Antenatal deep vein thrombosis - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200232006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4047845, + "CONCEPT_NAME" : "Antenatal education", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "135892000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4084186, + "CONCEPT_NAME" : "Antenatal exercises", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "183329005", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4170305, + "CONCEPT_NAME" : "Antenatal/postnatal care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "275305005", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4062361, + "CONCEPT_NAME" : "Antenatal relaxation class", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "171066005", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060266, + "CONCEPT_NAME" : "Antenatal RhD antibody screening", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169673001", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4079835, + "CONCEPT_NAME" : "Antenatal risk factors", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276445008", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4152443, + "CONCEPT_NAME" : "Antenatal scan unable to confirm pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "370381000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4087235, + "CONCEPT_NAME" : "Antenatal screening", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "243787009", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37310544, + "CONCEPT_NAME" : "Antenatal screening blood test for Down's, Edwards' and Patau's syndromes", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "747731000000104", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37310338, + "CONCEPT_NAME" : "Antenatal screening blood test for Edwards'and Patau's syndromes", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1128891000000103", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36713463, + "CONCEPT_NAME" : "Antenatal screening for fetal growth retardation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "717801000", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4191703, + "CONCEPT_NAME" : "Antenatal screening for human immunodeficiency virus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "390786002", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36713464, + "CONCEPT_NAME" : "Antenatal screening for isoimmunization", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "717802007", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36713462, + "CONCEPT_NAME" : "Antenatal screening for malformation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "717800004", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37016744, + "CONCEPT_NAME" : "Antenatal screening for viral hepatitis type B", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "712853001", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 35609139, + "CONCEPT_NAME" : "Antenatal screening quadruple test", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1079091000000109", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061521, + "CONCEPT_NAME" : "Antenatal - shared care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169616000", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014320, + "CONCEPT_NAME" : "Antenatal sickle cell screening", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169707007", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015137, + "CONCEPT_NAME" : "Antenatal syphilis screen-blood sent", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169700009", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015294, + "CONCEPT_NAME" : "Antenatal syphilis screening", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169698000", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37016760, + "CONCEPT_NAME" : "Antenatal thalassemia screening", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "712871008", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4152444, + "CONCEPT_NAME" : "Antenatal ultrasound confirms ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "370382007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4152445, + "CONCEPT_NAME" : "Antenatal ultrasound confirms intrauterine pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "370383002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061131, + "CONCEPT_NAME" : "Antenatal ultrasound result received", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169231003", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Observable Entity" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061803, + "CONCEPT_NAME" : "Antenatal ultrasound scan 4-8 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169668007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061157, + "CONCEPT_NAME" : "Antenatal ultrasound scan abnormal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169665005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061534, + "CONCEPT_NAME" : "Antenatal ultrasound scan at 17-22 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169670003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4141415, + "CONCEPT_NAME" : "Antenatal ultrasound scan at 22-40 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "307813007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060265, + "CONCEPT_NAME" : "Antenatal ultrasound scan at 9-16 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169669004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060263, + "CONCEPT_NAME" : "Antenatal ultrasound scan awaited", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169662008", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4143115, + "CONCEPT_NAME" : "Antenatal ultrasound scan for possible abnormality", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "425551008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060264, + "CONCEPT_NAME" : "Antenatal ultrasound scan normal and appropriate for dates", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169663003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061802, + "CONCEPT_NAME" : "Antenatal ultrasound scan status", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169657007", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060262, + "CONCEPT_NAME" : "Antenatal ultrasound scan wanted", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169661001", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4081196, + "CONCEPT_NAME" : "Antepartum", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276986009", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Qualifier Value" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110312, + "CONCEPT_NAME" : "Antepartum care only; 4-6 visits", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59425", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110313, + "CONCEPT_NAME" : "Antepartum care only; 7 or more visits", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59426", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435887, + "CONCEPT_NAME" : "Antepartum deep vein thrombosis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "49956009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4079969, + "CONCEPT_NAME" : "Antepartum fetal asphyxia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276642001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4129846, + "CONCEPT_NAME" : "Antepartum fetal death", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237361005", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Event" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434089, + "CONCEPT_NAME" : "Antepartum hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "34842007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4143074, + "CONCEPT_NAME" : "Antepartum hemorrhage, abruptio placentae and placenta previa", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "267197003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438489, + "CONCEPT_NAME" : "Antepartum hemorrhage associated with coagulation defect", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "267199000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443133, + "CONCEPT_NAME" : "Antepartum hemorrhage with coagulation defect - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198917009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438203, + "CONCEPT_NAME" : "Antepartum hemorrhage with coagulation defect - not delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198918004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37017027, + "CONCEPT_NAME" : "Antepartum stillbirth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "713202001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4129039, + "CONCEPT_NAME" : "Anti-D antibodies", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "237301008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2108689, + "CONCEPT_NAME" : "Anti-D immune globulin received between 26 and 30 weeks gestation (Pre-Cr)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "4178F", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061531, + "CONCEPT_NAME" : "A/N U/S scan offered", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "169659005", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014312, + "CONCEPT_NAME" : "Apgar at 10 minutes = 1", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169924008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4016469, + "CONCEPT_NAME" : "Apgar at 10 minutes = 4", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169927001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014579, + "CONCEPT_NAME" : "Apgar at 10 minutes = 6", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169929003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4016470, + "CONCEPT_NAME" : "Apgar at 10 minutes = 7", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169930008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4269556, + "CONCEPT_NAME" : "Apgar at 10 minutes - finding", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "364743002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014304, + "CONCEPT_NAME" : "Apgar at 1 minute", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169895004", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Observable Entity" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4016052, + "CONCEPT_NAME" : "Apgar at 1 minute = 8", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169905005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015431, + "CONCEPT_NAME" : "Apgar at 1 minute = 9", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169906006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4269555, + "CONCEPT_NAME" : "Apgar at 1 minute - finding", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "364741000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4016464, + "CONCEPT_NAME" : "Apgar at 5 minutes", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169909004", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Observable Entity" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4016467, + "CONCEPT_NAME" : "Apgar at 5 minutes = 10", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169920004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4016466, + "CONCEPT_NAME" : "Apgar at 5 minutes = 9", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169919005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4266765, + "CONCEPT_NAME" : "Apgar at 5 minutes - finding", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "364742007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4167905, + "CONCEPT_NAME" : "Apgar normal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "275307002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4299090, + "CONCEPT_NAME" : "Apgar score 0", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "77714001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4183596, + "CONCEPT_NAME" : "Apgar score 1", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43610007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4170878, + "CONCEPT_NAME" : "Apgar score 10", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "49544001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4219591, + "CONCEPT_NAME" : "Apgar score 2", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "39910003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4132308, + "CONCEPT_NAME" : "Apgar score 3", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26635001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4244236, + "CONCEPT_NAME" : "Apgar score 4", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "38107004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4088036, + "CONCEPT_NAME" : "Apgar score 5", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "24388001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4011798, + "CONCEPT_NAME" : "Apgar score 6", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10318004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4028032, + "CONCEPT_NAME" : "Apgar score 7", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13323003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4049582, + "CONCEPT_NAME" : "Apgar score 8", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12431004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4274664, + "CONCEPT_NAME" : "Apgar score 9", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64198003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 318247, + "CONCEPT_NAME" : "Apnea in the newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13094009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36716744, + "CONCEPT_NAME" : "Apnea of newborn due to neurological injury", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "722915009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4079848, + "CONCEPT_NAME" : "Apnea of prematurity", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276544005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3006511, + "CONCEPT_NAME" : "Appearance of Amniotic fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1887-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4080668, + "CONCEPT_NAME" : "Arrested active phase of labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "24699006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004542, + "CONCEPT_NAME" : "Artificial insemination", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "69.92", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4239302, + "CONCEPT_NAME" : "Artificial insemination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "58533008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4130186, + "CONCEPT_NAME" : "Artificial insemination by donor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "236896006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4127094, + "CONCEPT_NAME" : "Artificial insemination by husband", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "236895005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4187819, + "CONCEPT_NAME" : "Artificial insemination, heterologous", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46249006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4280831, + "CONCEPT_NAME" : "Artificial insemination, homologous", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "66601000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110196, + "CONCEPT_NAME" : "Artificial insemination; intra-cervical", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "58321", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110197, + "CONCEPT_NAME" : "Artificial insemination; intra-uterine", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "58322", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4238828, + "CONCEPT_NAME" : "Artificial insemination with sperm washing and capacitation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57233006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4131376, + "CONCEPT_NAME" : "Ascitic fluid glucose measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "413059003", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439136, + "CONCEPT_NAME" : "Asphyxia, in liveborn infant", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "28314004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004526, + "CONCEPT_NAME" : "Aspiration curettage following delivery or abortion", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "69.52", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004525, + "CONCEPT_NAME" : "Aspiration curettage of uterus for termination of pregnancy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "69.51", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4212941, + "CONCEPT_NAME" : "Aspiration curettage of uterus for termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "391897002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45763635, + "CONCEPT_NAME" : "Aspiration of ectopic pregnancy from cornu of fallopian tube", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "700073007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4300368, + "CONCEPT_NAME" : "Aspiration of ectopic pregnancy from fallopian tube", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "387617009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4153454, + "CONCEPT_NAME" : "Aspiration of liquor or mucus in newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "268832006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4075168, + "CONCEPT_NAME" : "Assisted breech delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177158008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2213350, + "CONCEPT_NAME" : "Assisted embryo hatching, microtechniques (any method)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "89253", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4272937, + "CONCEPT_NAME" : "Assisted fertilization", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63487001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2721246, + "CONCEPT_NAME" : "Assisted oocyte fertilization, case rate", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "S4022", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42739500, + "CONCEPT_NAME" : "Assisted oocyte fertilization, microtechnique (any method) (Deprecated)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "89252", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2213363, + "CONCEPT_NAME" : "Assisted oocyte fertilization, microtechnique; greater than 10 oocytes", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "89281", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2213362, + "CONCEPT_NAME" : "Assisted oocyte fertilization, microtechnique; less than or equal to 10 oocytes", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "89280", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 80156, + "CONCEPT_NAME" : "Asymptomatic bacteriuria in pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "31563000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 76761, + "CONCEPT_NAME" : "Asymptomatic bacteriuria in pregnancy - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199099004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 73526, + "CONCEPT_NAME" : "Asymptomatic bacteriuria in pregnancy - delivered with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199100007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 196488, + "CONCEPT_NAME" : "Atonic postpartum hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "27214003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42739562, + "CONCEPT_NAME" : "Attendance at delivery (when requested by delivering physician) and initial stabilization of newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "99436", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2514559, + "CONCEPT_NAME" : "Attendance at delivery (when requested by the delivering physician or other qualified health care professional) and initial stabilization of newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "99464", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4173192, + "CONCEPT_NAME" : "Atypical isoimmunization of newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276580005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4215792, + "CONCEPT_NAME" : "Autoimmune hypoglycemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "71858003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37397031, + "CONCEPT_NAME" : "Autosomal dominant hyperinsulinism due to Kir6.2 deficiency", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "717045004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37397032, + "CONCEPT_NAME" : "Autosomal dominant hyperinsulinism due to SUR1 deficiency", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "717046003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37204850, + "CONCEPT_NAME" : "Autosomal recessive hyperinsulinism due to Kir6.2 deficiency", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "783768006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37204849, + "CONCEPT_NAME" : "Autosomal recessive hyperinsulinism due to SUR1 deficiency", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "783767001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4149455, + "CONCEPT_NAME" : "Baby birth weight 2 to 2.5 kilogram", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "310538001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014461, + "CONCEPT_NAME" : "Baby birth weight equal to 50 percent to 74 percent (3450-3749g)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169864006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4151169, + "CONCEPT_NAME" : "Baby birth weight less than 751gm", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "310491007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015275, + "CONCEPT_NAME" : "Baby extremely premature 28-32 weeks", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "169851005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4078138, + "CONCEPT_NAME" : "Baby normal at birth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "275735001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4149449, + "CONCEPT_NAME" : "Baby premature 24-26 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "310523002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37016220, + "CONCEPT_NAME" : "Baby premature 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15887011000119107", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37016221, + "CONCEPT_NAME" : "Baby premature 25 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15887051000119108", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4149457, + "CONCEPT_NAME" : "Baby premature 26-28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "310548004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37016222, + "CONCEPT_NAME" : "Baby premature 26 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15887091000119103", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37018684, + "CONCEPT_NAME" : "Baby premature 27 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15887131000119101", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 46271955, + "CONCEPT_NAME" : "Baby premature 28-32 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "710235005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37016216, + "CONCEPT_NAME" : "Baby premature 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15750001000119103", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37016217, + "CONCEPT_NAME" : "Baby premature 29 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15750041000119101", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37016218, + "CONCEPT_NAME" : "Baby premature 30 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15750081000119106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37016213, + "CONCEPT_NAME" : "Baby premature 31 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15635451000119107", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 46271814, + "CONCEPT_NAME" : "Baby premature 32-36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "710068006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37018683, + "CONCEPT_NAME" : "Baby premature 32 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15635411000119106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37018889, + "CONCEPT_NAME" : "Baby premature 33 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15635371000119105", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37016212, + "CONCEPT_NAME" : "Baby premature 34 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15635331000119107", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 762577, + "CONCEPT_NAME" : "Baby premature 35-36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429151000124100", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37016211, + "CONCEPT_NAME" : "Baby premature 35 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15635291000119101", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014299, + "CONCEPT_NAME" : "Baby premature 36-38 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169849006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4149451, + "CONCEPT_NAME" : "Baby premature 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "310530008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4150406, + "CONCEPT_NAME" : "Baby premature 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "310529003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4150405, + "CONCEPT_NAME" : "Baby premature 38 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "310528006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4150404, + "CONCEPT_NAME" : "Baby premature 39 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "310527001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015274, + "CONCEPT_NAME" : "Baby very premature 32 to 36 weeks", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "169850006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 133594, + "CONCEPT_NAME" : "Bacterial sepsis of newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276669000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4075169, + "CONCEPT_NAME" : "Barton forceps cephalic delivery with rotation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177167008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4147974, + "CONCEPT_NAME" : "Barton's forceps delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "30476003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42742559, + "CONCEPT_NAME" : "BCKDHB (branched-chain keto acid dehydrogenase E1, beta polypeptide) (eg, maple syrup urine disease) gene analysis, common variants (eg, R183P, G278S, E422X)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "81205", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42742561, + "CONCEPT_NAME" : "BCR/ABL1 (t(9;22)) (eg, chronic myelogenous leukemia) translocation analysis; minor breakpoint, qualitative or quantitative", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "81207", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4150338, + "CONCEPT_NAME" : "Bedtime blood glucose measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "271065008", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 321638, + "CONCEPT_NAME" : "Benign essential hypertension complicating pregnancy, childbirth and the puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198942000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 314103, + "CONCEPT_NAME" : "Benign essential hypertension complicating pregnancy, childbirth and the puerperium - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198944004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 320456, + "CONCEPT_NAME" : "Benign essential hypertension complicating pregnancy, childbirth and the puerperium - delivered with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198945003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 314423, + "CONCEPT_NAME" : "Benign essential hypertension complicating pregnancy, childbirth and the puerperium - not delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198946002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4062811, + "CONCEPT_NAME" : "Benign essential hypertension complicating pregnancy, childbirth and the puerperium with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198947006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 762706, + "CONCEPT_NAME" : "Benign familial neonatal seizures, non-refractory", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "430821000124108", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 762705, + "CONCEPT_NAME" : "Benign familial neonatal seizures, refractory", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "430811000124100", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4244383, + "CONCEPT_NAME" : "Benign neonatal convulsions", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "38281008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4043411, + "CONCEPT_NAME" : "Benign neonatal familial convulsions", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "230410004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4046209, + "CONCEPT_NAME" : "Benign non-familial neonatal convulsions", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "230411000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4028640, + "CONCEPT_NAME" : "Bicornuate uterus in pregnancy, childbirth and the puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237225003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4093429, + "CONCEPT_NAME" : "Bilateral complete salpingectomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25811000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004347, + "CONCEPT_NAME" : "Bilateral partial salpingectomy, not otherwise specified", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "66.63", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36684754, + "CONCEPT_NAME" : "Bilateral retinopathy of prematurity", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "343791000119101", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37207968, + "CONCEPT_NAME" : "Bilateral retinopathy of prematurity of eyes stage 0", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "343781000119104", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36684753, + "CONCEPT_NAME" : "Bilateral retinopathy of prematurity of eyes stage 1 - demarcation line", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "343771000119102", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36684752, + "CONCEPT_NAME" : "Bilateral retinopathy of prematurity of eyes stage 2 - intraretinal ridge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "343761000119108", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36684751, + "CONCEPT_NAME" : "Bilateral retinopathy of prematurity of eyes stage 3 - ridge with extraretinal fibrovascular proliferation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "343751000119106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4107080, + "CONCEPT_NAME" : "Bilateral salpingectomy with oophorectomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "29827000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36716760, + "CONCEPT_NAME" : "Bilious vomiting of newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "722933003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4028644, + "CONCEPT_NAME" : "Biochemical pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237243004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2213365, + "CONCEPT_NAME" : "Biopsy, oocyte polar body or embryo blastomere, microtechnique (for pre-implantation genetic diagnosis); greater than 5 embryos", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "89291", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2213364, + "CONCEPT_NAME" : "Biopsy, oocyte polar body or embryo blastomere, microtechnique (for pre-implantation genetic diagnosis); less than or equal to 5 embryos", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "89290", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4184996, + "CONCEPT_NAME" : "Birth asphyxia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "413654009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36716763, + "CONCEPT_NAME" : "Birth asphyxia co-occurrent with metabolic acidemia of cord blood", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "722937002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36716762, + "CONCEPT_NAME" : "Birth asphyxia with Apgar score 5 minute Apgar score 4-6", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "722936006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014291, + "CONCEPT_NAME" : "Birth detail", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169811007", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Observable Entity" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4016064, + "CONCEPT_NAME" : "Birth details not known", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169963001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015277, + "CONCEPT_NAME" : "Birth head circumference", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169876006", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Observable Entity" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015278, + "CONCEPT_NAME" : "Birth head circumference equal to 10th-24th centile", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169879004", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015282, + "CONCEPT_NAME" : "Birth head circumference equal to 90th-96th centile", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169883004", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42536751, + "CONCEPT_NAME" : "Birth injury of long bone", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "735745004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42536565, + "CONCEPT_NAME" : "Birth injury of thorax", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "735494000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4290881, + "CONCEPT_NAME" : "Birth injury to scalp", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "37384000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014465, + "CONCEPT_NAME" : "Birth length", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169886007", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Observable Entity" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015288, + "CONCEPT_NAME" : "Birth length=75th-89th centile", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169892001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015429, + "CONCEPT_NAME" : "Birth length equal to 10th-24th centile", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169889000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015287, + "CONCEPT_NAME" : "Birth length equal to 50th-74th centile", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169891008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014466, + "CONCEPT_NAME" : "Birth length equal to 90th-96th centile", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169893006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015284, + "CONCEPT_NAME" : "Birth length equal to third centile", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169887003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015270, + "CONCEPT_NAME" : "Birth of child", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169836001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40760833, + "CONCEPT_NAME" : "Birth plurality of Pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57722-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Clinical Observation" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435641, + "CONCEPT_NAME" : "Birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "56110009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4030440, + "CONCEPT_NAME" : "Birth trauma deafness", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "129631008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4149610, + "CONCEPT_NAME" : "Birth weight 999 g or less", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "310660006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4171114, + "CONCEPT_NAME" : "Birth weight abnormality", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276609002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4187520, + "CONCEPT_NAME" : "Birth weight finding", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "47340003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 46271901, + "CONCEPT_NAME" : "Birth weight less than 500g", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "710168009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40759177, + "CONCEPT_NAME" : "Birth weight - Reported", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "56056-5", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Clinical Observation" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4262136, + "CONCEPT_NAME" : "Blighted ovum", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "35999006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2721180, + "CONCEPT_NAME" : "BLOOD CHEMISTRY FOR FREE BETA HUMAN CHORIONIC GONADOTROPIN (HCG)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "S3618", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3655208, + "CONCEPT_NAME" : "Blood clot embolism due to and following ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "860679004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3655207, + "CONCEPT_NAME" : "Blood clot embolism due to and following molar pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "860678007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4028780, + "CONCEPT_NAME" : "Blood dyscrasia puerperal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237338008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4055674, + "CONCEPT_NAME" : "Blood glucose 0-1.4 mmol/L", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "166914001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4041701, + "CONCEPT_NAME" : "Blood glucose 10-13.9 mmol/L", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "166919006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4041702, + "CONCEPT_NAME" : "Blood glucose 14+ mmol/L", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "166923003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4041700, + "CONCEPT_NAME" : "Blood glucose 1.5-2.4 mmol/L", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "166915000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4055675, + "CONCEPT_NAME" : "Blood glucose 2.5-4.9 mmol/L", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "166916004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4055676, + "CONCEPT_NAME" : "Blood glucose 5-6.9 mmol/L", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "166917008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4042726, + "CONCEPT_NAME" : "Blood glucose 7-9.9 mmol/L", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "166918003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4042728, + "CONCEPT_NAME" : "Blood glucose abnormal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "166922008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4275337, + "CONCEPT_NAME" : "Blood glucose level - finding", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "365812005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4041697, + "CONCEPT_NAME" : "Blood glucose method", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "166888009", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4042727, + "CONCEPT_NAME" : "Blood glucose normal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "166921001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4135545, + "CONCEPT_NAME" : "Blood glucose series", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "412928005", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44784272, + "CONCEPT_NAME" : "Blood in vomit of newborn due to swallowed maternal blood", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "698317008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4042936, + "CONCEPT_NAME" : "Blood sent: alpha-fetoprotein", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "166557002", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4078281, + "CONCEPT_NAME" : "BM stix glucose measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "275810004", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4027371, + "CONCEPT_NAME" : "Bone AND/OR joint disorder in mother complicating pregnancy, childbirth AND/OR puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "128076000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4192676, + "CONCEPT_NAME" : "Born by cesarean section", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "394699000", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4260748, + "CONCEPT_NAME" : "Bottle fed at birth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "412728002", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42742564, + "CONCEPT_NAME" : "BRAF (B-Raf proto-oncogene, serine/threonine kinase) (eg, colon cancer, melanoma), gene analysis, V600 variant(s)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "81210", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4139126, + "CONCEPT_NAME" : "Braxton Hicks contractions", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "32644009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 73019, + "CONCEPT_NAME" : "Breast engorgement in newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "34831003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4066255, + "CONCEPT_NAME" : "Breast engorgement in pregnancy/puerperium/lact + p/n comp", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "200421009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443330, + "CONCEPT_NAME" : "Breast engorgement in pregnancy, the puerperium or lactation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200416006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 77624, + "CONCEPT_NAME" : "Breast engorgement in pregnancy, the puerperium or lactation - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200418007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 81086, + "CONCEPT_NAME" : "Breast engorgement in pregnancy, the puerperium or lactation - delivered with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200419004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 73282, + "CONCEPT_NAME" : "Breast engorgement in pregnancy, the puerperium or lactation with antenatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200420005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4260749, + "CONCEPT_NAME" : "Breast fed at birth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "412729005", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4054949, + "CONCEPT_NAME" : "Breastfeeding education", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "243094003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4066258, + "CONCEPT_NAME" : "Breastfeeding painful", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200430001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4345684, + "CONCEPT_NAME" : "Breastfeeding problem in the newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "240301009", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015144, + "CONCEPT_NAME" : "Breastfeeding started", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169745008", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40766616, + "CONCEPT_NAME" : "Breastfeeding status", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63895-7", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Clinical Observation" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4254219, + "CONCEPT_NAME" : "Breastfeeding support", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "408883002", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3662128, + "CONCEPT_NAME" : "Breech delivery following termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1147961000000102", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4213387, + "CONCEPT_NAME" : "Breech extraction", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "417121007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 436767, + "CONCEPT_NAME" : "Breech extraction - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200142000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4075165, + "CONCEPT_NAME" : "Breech extraction delivery with version", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177152009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 73267, + "CONCEPT_NAME" : "Breech malpresentation successfully converted to cephalic presentation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "17532001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 74698, + "CONCEPT_NAME" : "Breech presentation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6096002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 73537, + "CONCEPT_NAME" : "Breech presentation - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199354004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 76756, + "CONCEPT_NAME" : "Breech presentation with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199355003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4283942, + "CONCEPT_NAME" : "Bronchopulmonary dysplasia of newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "67569000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4122871, + "CONCEPT_NAME" : "Bruising of umbilical cord", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "289333007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3026267, + "CONCEPT_NAME" : "Calorie intake total 24 hour", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "9057-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Clinical Observation" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4120298, + "CONCEPT_NAME" : "Capillary blood glucose measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "302789003", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4031037, + "CONCEPT_NAME" : "Carbuncle of umbilicus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14268002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 317669, + "CONCEPT_NAME" : "Cardiac arrest in fetus OR newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "179924009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36713582, + "CONCEPT_NAME" : "Cardiac complication of anesthesia during the puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "717959008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4306192, + "CONCEPT_NAME" : "Cardiotochogram", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "387672006", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4261479, + "CONCEPT_NAME" : "Carneous mole", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "44979007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42742390, + "CONCEPT_NAME" : "Car seat/bed testing for airway integrity, for infants through 12 months of age, with continual clinical staff observation and continuous recording of pulse oximetry, heart rate and respiratory rate, with interpretation and report; 60 minutes", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "94780", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2108149, + "CONCEPT_NAME" : "Catheterization of umbilical vein for diagnosis or therapy, newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36510", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4065999, + "CONCEPT_NAME" : "Cellulitis and abscess of umbilicus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200660001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4208980, + "CONCEPT_NAME" : "Cellulitis of umbilicus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "56644003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4235752, + "CONCEPT_NAME" : "Central laceration during delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90532005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36716743, + "CONCEPT_NAME" : "Central neonatal apnea", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "722914008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36713583, + "CONCEPT_NAME" : "Central nervous system complication of anesthesia during the puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "717960003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 375016, + "CONCEPT_NAME" : "Central nervous system malformation in fetus affecting obstetrical care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1538006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4047852, + "CONCEPT_NAME" : "Cephalhematoma due to birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206200000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3662129, + "CONCEPT_NAME" : "Cephalic delivery following termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1147971000000109", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4071629, + "CONCEPT_NAME" : "Cephalic vaginal delivery with abnormal presentation of head at delivery without instrument", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177179008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110305, + "CONCEPT_NAME" : "Cerclage of cervix, during pregnancy; abdominal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59325", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110304, + "CONCEPT_NAME" : "Cerclage of cervix, during pregnancy; vaginal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59320", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4147060, + "CONCEPT_NAME" : "Cerebral anoxia following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "30243004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4243309, + "CONCEPT_NAME" : "Cerebral hemorrhage due to intrapartum anoxia or hypoxia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "38453000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 377980, + "CONCEPT_NAME" : "Cerebral irritability in newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "4952001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4171109, + "CONCEPT_NAME" : "Cerebral irritation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276596008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4171111, + "CONCEPT_NAME" : "Cerebral leukomalacia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276599001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4082313, + "CONCEPT_NAME" : "Cerebral ventricular distension", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "277476007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 316494, + "CONCEPT_NAME" : "Cerebrovascular disorder in the puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6594005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4321386, + "CONCEPT_NAME" : "Cervical cerclage suture present", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "69802008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4034148, + "CONCEPT_NAME" : "Cervical dystocia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237324001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 436740, + "CONCEPT_NAME" : "Cervical incompetence", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "17382005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441369, + "CONCEPT_NAME" : "Cervical incompetence - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199482005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435607, + "CONCEPT_NAME" : "Cervical incompetence - delivered with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199483000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437334, + "CONCEPT_NAME" : "Cervical incompetence with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199484006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440166, + "CONCEPT_NAME" : "Cervical incompetence with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199485007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44790204, + "CONCEPT_NAME" : "Cervical length scanning at 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "228531000000103", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 197043, + "CONCEPT_NAME" : "Cervical observation during pregnancy and labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "249020006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437942, + "CONCEPT_NAME" : "Cesarean delivery - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200146002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110316, + "CONCEPT_NAME" : "Cesarean delivery only", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59514", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110323, + "CONCEPT_NAME" : "Cesarean delivery only, following attempted vaginal delivery after previous cesarean delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59620", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110324, + "CONCEPT_NAME" : "Cesarean delivery only, following attempted vaginal delivery after previous cesarean delivery; including postpartum care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59622", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110317, + "CONCEPT_NAME" : "Cesarean delivery only; including postpartum care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59515", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4165077, + "CONCEPT_NAME" : "Cesarean hysterectomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "41059002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015701, + "CONCEPT_NAME" : "Cesarean section", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "11466000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4303297, + "CONCEPT_NAME" : "Cesarean section care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "386234001", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004789, + "CONCEPT_NAME" : "Cesarean section of other specified type", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "74.4", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "3-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4066111, + "CONCEPT_NAME" : "Cesarean section - pregnancy at term", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200147006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42872492, + "CONCEPT_NAME" : "Cesarean section through inverted T shaped incision of uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "450483001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42872493, + "CONCEPT_NAME" : "Cesarean section through J shaped incision of uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "450484007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 197344, + "CONCEPT_NAME" : "Cesarean wound disruption", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "396544001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 194113, + "CONCEPT_NAME" : "Cesarean wound disruption - delivered with postnatal complication", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "200337002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4065866, + "CONCEPT_NAME" : "Cesarean wound disruption with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200338007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40482050, + "CONCEPT_NAME" : "Chemical pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "445086005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4152029, + "CONCEPT_NAME" : "Childbirth examination - normal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "268484008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4253751, + "CONCEPT_NAME" : "Child examination - 2 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "410622001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40479783, + "CONCEPT_NAME" : "Child examination at birth with explicit context", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "444483000", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014738, + "CONCEPT_NAME" : "Child examination - birth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "170099002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4194590, + "CONCEPT_NAME" : "Child HC < 0.4th centile", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "314643009", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4200299, + "CONCEPT_NAME" : "Child HC = 0.4th centile", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "314644003", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4194591, + "CONCEPT_NAME" : "Child HC 0.5th - 1.9th centile", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "314645002", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4199794, + "CONCEPT_NAME" : "Child HC 10th - 24th centile", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "314649008", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4194593, + "CONCEPT_NAME" : "Child HC 26th - 49th centile", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "314651007", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4199793, + "CONCEPT_NAME" : "Child HC = 2nd centile", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "314646001", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4194592, + "CONCEPT_NAME" : "Child HC 3rd - 8th centile", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "314647005", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014735, + "CONCEPT_NAME" : "Child HC = 3rd-9th centile", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "170063007", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014605, + "CONCEPT_NAME" : "Child HC = 50th-74th centile", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "170066004", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4194594, + "CONCEPT_NAME" : "Child HC 51st - 74th centile", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "314653005", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014606, + "CONCEPT_NAME" : "Child HC = 75th-89th centile", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "170067008", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4194595, + "CONCEPT_NAME" : "Child HC = 75th centile", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "314654004", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4199796, + "CONCEPT_NAME" : "Child HC 76th - 90th centile", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "314655003", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014607, + "CONCEPT_NAME" : "Child HC = 90th-96th centile", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "170068003", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4199797, + "CONCEPT_NAME" : "Child HC 92nd - 97th centile", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "314657006", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014736, + "CONCEPT_NAME" : "Child HC = > 97th centile", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "170069006", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4194596, + "CONCEPT_NAME" : "Child HC 98.1st-99.6th centile", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "314659009", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4200422, + "CONCEPT_NAME" : "Child HC = 98th centile", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "314658001", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4199798, + "CONCEPT_NAME" : "Child HC >99.6th centile", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "314660004", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4197178, + "CONCEPT_NAME" : "Child HC = 9th centile", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "314648000", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4200300, + "CONCEPT_NAME" : "Child head circumference 50 equal to 50th centile", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "314652000", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4276725, + "CONCEPT_NAME" : "Child head circumference centile finding", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "365943002", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4016184, + "CONCEPT_NAME" : "Child head circumference equal to 25th-49th centile", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "170065000", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4199795, + "CONCEPT_NAME" : "Child head circumference equal to 25th centile", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "314650008", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4197179, + "CONCEPT_NAME" : "Child head circumference equal to 91st centile", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "314656002", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4016183, + "CONCEPT_NAME" : "Child head circumference equal to third centile", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "170062002", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4102952, + "CONCEPT_NAME" : "Cholestasis-edema syndrome, Norwegian type", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "28724005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4203366, + "CONCEPT_NAME" : "Cholestasis in newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "433237003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4340944, + "CONCEPT_NAME" : "Cholestasis of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "235888006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3019145, + "CONCEPT_NAME" : "Choriogonadotropin.beta subunit free [Mass/volume] in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25373-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3011465, + "CONCEPT_NAME" : "Choriogonadotropin.beta subunit free [Units/volume] in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "19180-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3011996, + "CONCEPT_NAME" : "Choriogonadotropin.beta subunit [Moles/volume] in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "2111-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3010164, + "CONCEPT_NAME" : "Choriogonadotropin.beta subunit [Multiple of the median] adjusted in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "23841-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40758989, + "CONCEPT_NAME" : "Choriogonadotropin.beta subunit [Multiple of the median] in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55868-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3011149, + "CONCEPT_NAME" : "Choriogonadotropin.beta subunit (pregnancy test) [Presence] in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "2110-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3009417, + "CONCEPT_NAME" : "Choriogonadotropin.beta subunit (pregnancy test) [Presence] in Urine", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "2112-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3038136, + "CONCEPT_NAME" : "Choriogonadotropin.beta subunit [Units/volume] in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "21198-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3004303, + "CONCEPT_NAME" : "Choriogonadotropin.intact [Moles/volume] in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "2117-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3036988, + "CONCEPT_NAME" : "Choriogonadotropin.intact [Units/volume] in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "30243-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3002091, + "CONCEPT_NAME" : "Choriogonadotropin [Moles/volume] in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "2119-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3008714, + "CONCEPT_NAME" : "Choriogonadotropin [Multiple of the median] adjusted in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "32166-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3003191, + "CONCEPT_NAME" : "Choriogonadotropin (pregnancy test) [Presence] in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "2118-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3018954, + "CONCEPT_NAME" : "Choriogonadotropin (pregnancy test) [Presence] in Urine", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "2106-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3018171, + "CONCEPT_NAME" : "Choriogonadotropin [Units/volume] in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "19080-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4018189, + "CONCEPT_NAME" : "Chorionic gonadotropin, alpha subunit measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "104595003", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4296540, + "CONCEPT_NAME" : "Chorionic gonadotropin, beta-subunit measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "386558001", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4296541, + "CONCEPT_NAME" : "Chorionic gonadotropin, beta-subunit measurement, spinal fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "386559009", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4016953, + "CONCEPT_NAME" : "Chorionic gonadotropin, intact measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "104596002", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4017479, + "CONCEPT_NAME" : "Chorionic gonadotropin measurement, qualitative", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "104406007", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2212145, + "CONCEPT_NAME" : "Chorionic gonadotropin stimulation panel; estradiol response This panel must include the following: Estradiol, total (82670 x 2 on 3 pooled blood samples)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80415", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2212144, + "CONCEPT_NAME" : "Chorionic gonadotropin stimulation panel; testosterone response This panel must include the following: Testosterone (84403 x 2 on 3 pooled blood samples)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80414", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110282, + "CONCEPT_NAME" : "Chorionic villus sampling, any method", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59015", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44793560, + "CONCEPT_NAME" : "Chorionic villus sampling culture", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "283931000000109", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44791458, + "CONCEPT_NAME" : "Chorionic villus sampling culture and direct chromosome analysis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "283941000000100", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4162502, + "CONCEPT_NAME" : "Chorionic villus sampling using obstetric ultrasound guidance", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "433153009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 72973, + "CONCEPT_NAME" : "Chromosomal abnormality in fetus affecting obstetrical care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "42686001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40760436, + "CONCEPT_NAME" : "Chromosome 13+18+21+X+Y aneuploidy in Amniotic fluid or Chorionic villus sample by FISH Nominal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57317-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2213267, + "CONCEPT_NAME" : "Chromosome analysis, amniotic fluid or chorionic villus, count 15 cells, 1 karyotype, with banding", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "88267", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2213268, + "CONCEPT_NAME" : "Chromosome analysis, in situ for amniotic fluid cells, count cells from 6-12 colonies, 1 karyotype, with banding", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "88269", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4080590, + "CONCEPT_NAME" : "Chronic congenital cytomegalic inclusion disease", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "240551003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4173190, + "CONCEPT_NAME" : "Chronic partial asphyxia of newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276573008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 313023, + "CONCEPT_NAME" : "Chronic respiratory disease in perinatal period", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "20322005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4223536, + "CONCEPT_NAME" : "Classical cesarean section", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84195007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004785, + "CONCEPT_NAME" : "Classical cesarean section", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "74.0", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "3-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36713561, + "CONCEPT_NAME" : "Classic onset hemorrhagic disease of newborn due to vitamin K deficiency", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "717936002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37208486, + "CONCEPT_NAME" : "Clitoral tear during delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1105801000000107", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434167, + "CONCEPT_NAME" : "Cold injury syndrome of newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26746005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40761828, + "CONCEPT_NAME" : "Collection date of Amniotic fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "58734-5", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Clinical Observation" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4182145, + "CONCEPT_NAME" : "Color of lochia - finding", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "366298006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44783183, + "CONCEPT_NAME" : "Combined intrauterine and ovarian pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "699240001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4135209, + "CONCEPT_NAME" : "Combined pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "31601007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40483581, + "CONCEPT_NAME" : "Combined tubal and intrauterine pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "442478007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3170656, + "CONCEPT_NAME" : "Complcated pregnancy due to surgical history: uterine myomectomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6980001000004103", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "Nebraska Lexicon", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437046, + "CONCEPT_NAME" : "Complete abortion", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "69124005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4034145, + "CONCEPT_NAME" : "Complete breech delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237311001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2721238, + "CONCEPT_NAME" : "Complete cycle, gamete intrafallopian transfer (gift), case rate", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "S4013", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2721239, + "CONCEPT_NAME" : "Complete cycle, zygote intrafallopian transfer (zift), case rate", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "S4014", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439085, + "CONCEPT_NAME" : "Complete inevitable miscarriage complicated by delayed or excessive hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "307735008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441629, + "CONCEPT_NAME" : "Complete inevitable miscarriage complicated by embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "307750004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441921, + "CONCEPT_NAME" : "Complete inevitable miscarriage complicated by genital tract and pelvic infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "307734007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4146774, + "CONCEPT_NAME" : "Complete inevitable miscarriage without complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "307738005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2721240, + "CONCEPT_NAME" : "Complete in vitro fertilization cycle, not otherwise specified, case rate", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "S4015", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441073, + "CONCEPT_NAME" : "Complete legal termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "267194005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438196, + "CONCEPT_NAME" : "Complete legal termination of pregnancy with delayed or excessive hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198719001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40318618, + "CONCEPT_NAME" : "Complete miscarriage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "156073000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441910, + "CONCEPT_NAME" : "Complete miscarriage with damage to pelvic organs or tissues", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198657009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432682, + "CONCEPT_NAME" : "Complete miscarriage with delayed or excessive hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198656000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441632, + "CONCEPT_NAME" : "Complete miscarriage with embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198663000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435318, + "CONCEPT_NAME" : "Complete miscarriage with genital tract or pelvic infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198655001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435000, + "CONCEPT_NAME" : "Complete miscarriage with metabolic disorder", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198660002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 436742, + "CONCEPT_NAME" : "Complete miscarriage with renal failure", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198659007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438805, + "CONCEPT_NAME" : "Complete miscarriage with shock", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198661003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4113352, + "CONCEPT_NAME" : "Complete spontaneous abortion NOS", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "198667004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440464, + "CONCEPT_NAME" : "Complication following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "2989004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440795, + "CONCEPT_NAME" : "Complication occurring during labor and delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199745000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36715374, + "CONCEPT_NAME" : "Complication of anesthesia during the puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "721022000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432382, + "CONCEPT_NAME" : "Complication of labor AND/OR delivery", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "27541007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 436489, + "CONCEPT_NAME" : "Complication of obstetrical surgery AND/OR procedure", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "78408007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437947, + "CONCEPT_NAME" : "Complication of obstetrical surgical wound", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "32999002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435875, + "CONCEPT_NAME" : "Complication of pregnancy, childbirth and/or puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198609003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4141513, + "CONCEPT_NAME" : "Complication of prematurity", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "426850008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441364, + "CONCEPT_NAME" : "Complication of the puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80113008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433822, + "CONCEPT_NAME" : "Complication related to pregnancy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "90821003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433263, + "CONCEPT_NAME" : "Complications following abortion and ectopic and molar pregnancies", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "198818003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4309021, + "CONCEPT_NAME" : "Complications of attempted introduction of fertilized ovum following in vitro fertilization", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "213202009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4193765, + "CONCEPT_NAME" : "Compression of umbilical cord", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "79222000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40482399, + "CONCEPT_NAME" : "Conceived by in vitro fertilization", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "443633009", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 80205, + "CONCEPT_NAME" : "Condition in fetus originating in the perinatal period", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "41168002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441964, + "CONCEPT_NAME" : "Conditions involving the integument AND/OR temperature regulation of fetus OR newborn", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "40504002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 197339, + "CONCEPT_NAME" : "Congenital abnormality of uterus, affecting pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "41215002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 194707, + "CONCEPT_NAME" : "Congenital abnormality of uterus - baby delivered with postpartum complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "267215001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 193825, + "CONCEPT_NAME" : "Congenital abnormality of uterus complicating antenatal care, baby not yet delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "267216000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 315013, + "CONCEPT_NAME" : "Congenital cardiovascular disorder during pregnancy - baby delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199266007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 314426, + "CONCEPT_NAME" : "Congenital cardiovascular disorder during pregnancy - baby not yet delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199268008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443249, + "CONCEPT_NAME" : "Congenital cardiovascular disorders during pregnancy, childbirth and the puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "267207004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 436532, + "CONCEPT_NAME" : "Congenital cytomegalovirus infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59527008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37396772, + "CONCEPT_NAME" : "Congenital deficiency of alpha-fetoprotein", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "716698007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4236230, + "CONCEPT_NAME" : "Congenital hyperinsulinism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "360339005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 196175, + "CONCEPT_NAME" : "Congenital OR acquired abnormality of cervix affecting pregnancy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "111443000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 201920, + "CONCEPT_NAME" : "Congenital OR acquired abnormality of vagina affecting pregnancy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "111444006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435879, + "CONCEPT_NAME" : "Congenital or acquired abnormality of vulva - baby delivered with postpartum complication", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "267248001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440162, + "CONCEPT_NAME" : "Congenital or acquired abnormality of vulva complicating antenatal care - baby not yet delivered", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "267249009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4188480, + "CONCEPT_NAME" : "Congenital rubella pneumonitis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "47082005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433869, + "CONCEPT_NAME" : "Congenital rubella syndrome", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1857005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015159, + "CONCEPT_NAME" : "Consultant unit birth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169815003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060252, + "CONCEPT_NAME" : "Consultant unit booking", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169623004", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433826, + "CONCEPT_NAME" : "Continuing pregnancy after abortion of one fetus or more", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199306007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432373, + "CONCEPT_NAME" : "Continuing pregnancy after intrauterine death of one or more fetuses", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199307003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43020670, + "CONCEPT_NAME" : "Continuing pregnancy after intrauterine death of one twin with intrauterine retention of dead twin", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "472321009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441647, + "CONCEPT_NAME" : "Continuing pregnancy after intrauterine death of twin fetus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429187001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45757769, + "CONCEPT_NAME" : "Continuing triplet pregnancy after spontaneous abortion of one or more fetuses", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36801000119105", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4237335, + "CONCEPT_NAME" : "Continuous fetal heart monitoring during labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "408804006", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4268171, + "CONCEPT_NAME" : "Contraction ring dystocia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "62129004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4120986, + "CONCEPT_NAME" : "Controlled cord traction of placenta", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "302384005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36716738, + "CONCEPT_NAME" : "Contusion of brain due to birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "722908001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36716737, + "CONCEPT_NAME" : "Contusion of cerebellum due to birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "722907006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 380533, + "CONCEPT_NAME" : "Convulsions in the newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87476004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434708, + "CONCEPT_NAME" : "Cord around neck with compression", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "289311005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4129041, + "CONCEPT_NAME" : "Cord beside head", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237306003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442292, + "CONCEPT_NAME" : "Cord entanglement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "53419009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433270, + "CONCEPT_NAME" : "Cord entanglement without compression", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "11209007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110281, + "CONCEPT_NAME" : "Cordocentesis (intrauterine), any method", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59012", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433828, + "CONCEPT_NAME" : "Cord tangled or knotted with compression", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "267266006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439092, + "CONCEPT_NAME" : "Cord tangled with compression - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199880007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442421, + "CONCEPT_NAME" : "Cord tangled with compression with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199881006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4055252, + "CONCEPT_NAME" : "Correct fixing of baby to breast education", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "243096001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004823, + "CONCEPT_NAME" : "Correction of fetal defect", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "75.36", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015590, + "CONCEPT_NAME" : "Counseling for termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10383002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37016958, + "CONCEPT_NAME" : "Counting fetal movement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "713120004", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2212630, + "CONCEPT_NAME" : "C-peptide", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84681", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433548, + "CONCEPT_NAME" : "Cracked nipple associated with childbirth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "35716006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36713479, + "CONCEPT_NAME" : "Cracked nipple associated with childbirth with attachment difficulty", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "717820003", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45757216, + "CONCEPT_NAME" : "Cracked nipple associated with lactation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10836241000119104", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443243, + "CONCEPT_NAME" : "Cracked nipple in pregnancy, the puerperium or lactation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "267291006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440481, + "CONCEPT_NAME" : "Cracked nipple in pregnancy, the puerperium or lactation - delivered with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200412008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432396, + "CONCEPT_NAME" : "Cracked nipple in pregnancy, the puerperium or lactation with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200414009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442529, + "CONCEPT_NAME" : "Cranial nerve injury due to birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206234004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2213355, + "CONCEPT_NAME" : "Cryopreservation; embryo(s)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "89258", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2721256, + "CONCEPT_NAME" : "Cryopreserved embryo transfer, case rate", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "S4037", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4242590, + "CONCEPT_NAME" : "Cryptomenorrhea", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "58851004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4057444, + "CONCEPT_NAME" : "CSF: glucose decreased", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "167740005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4055550, + "CONCEPT_NAME" : "CSF: glucose increased", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "167741009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4269855, + "CONCEPT_NAME" : "CSF: glucose level - finding", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "365815007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4057443, + "CONCEPT_NAME" : "CSF: glucose normal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "167739008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2213347, + "CONCEPT_NAME" : "Culture of oocyte(s)/embryo(s), less than 4 days", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "89250", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2213348, + "CONCEPT_NAME" : "Culture of oocyte(s)/embryo(s), less than 4 days; with co-culture of oocyte(s)/embryos", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "89251", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110301, + "CONCEPT_NAME" : "Curettage, postpartum", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59160", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 193174, + "CONCEPT_NAME" : "Cystic fibrosis with meconium ileus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86092005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4170118, + "CONCEPT_NAME" : "Cystitis of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "275412000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42742301, + "CONCEPT_NAME" : "Cytogenomic constitutional (genome-wide) microarray analysis; interrogation of genomic regions for copy number and single nucleotide polymorphism (SNP) variants for chromosomal abnormalities", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "81229", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4100193, + "CONCEPT_NAME" : "Damage to bladder following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "27552001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4185718, + "CONCEPT_NAME" : "Damage to bowel following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "44017002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4232953, + "CONCEPT_NAME" : "Damage to broad ligament following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "89573004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4173946, + "CONCEPT_NAME" : "Damage to cervix following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "42294002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 196475, + "CONCEPT_NAME" : "Damage to pelvic organs AND/OR tissues following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16083003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42537767, + "CONCEPT_NAME" : "Damage to pelvic organs and tissues following ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "737329004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42537768, + "CONCEPT_NAME" : "Damage to pelvic organs and tissues following molar pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "737330009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4174543, + "CONCEPT_NAME" : "Damage to periurethral tissue following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "42536002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4194053, + "CONCEPT_NAME" : "Damage to uterus following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "79333004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4216382, + "CONCEPT_NAME" : "Damage to vagina following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72209007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4072438, + "CONCEPT_NAME" : "Date of last menstrual period", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "21840007", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Observable Entity" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4088445, + "CONCEPT_NAME" : "Date of last normal period", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "248993009", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Observable Entity" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060625, + "CONCEPT_NAME" : "Dating/booking US scan", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169229007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44810005, + "CONCEPT_NAME" : "Dating obstetric ultrasound scan", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "866481000000104", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40491449, + "CONCEPT_NAME" : "Decline in Edinburgh postnatal depression scale score", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "448717002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40487136, + "CONCEPT_NAME" : "Decline in Edinburgh postnatal depression scale score at 8 months", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "449413009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4197955, + "CONCEPT_NAME" : "Decreased glucose level", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "51798006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 75882, + "CONCEPT_NAME" : "Deep transverse arrest - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199774009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 73265, + "CONCEPT_NAME" : "Deep transverse arrest with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199775005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44784536, + "CONCEPT_NAME" : "Deep transverse arrest with persistent occipitoposterior position", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "698702007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438820, + "CONCEPT_NAME" : "Deep venous thrombosis in puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "56272000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4266839, + "CONCEPT_NAME" : "Defibrination syndrome following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "62698000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4234604, + "CONCEPT_NAME" : "Dehiscence AND/OR disruption of uterine wound in the puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "361095003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438814, + "CONCEPT_NAME" : "Delayed AND/OR excessive hemorrhage following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "79133008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 194109, + "CONCEPT_NAME" : "Delayed AND/OR secondary postpartum hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "23171006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4048293, + "CONCEPT_NAME" : "Delayed conjugation causing neonatal jaundice associated with another disorder", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206453006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441361, + "CONCEPT_NAME" : "Delayed delivery after artificial rupture of membranes", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "35347003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42537762, + "CONCEPT_NAME" : "Delayed hemorrhage due to and following ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "737322008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42537759, + "CONCEPT_NAME" : "Delayed hemorrhage due to and following miscarriage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "737318003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4114265, + "CONCEPT_NAME" : "Delayed or excessive hemorrhage following abortive pregnancy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "198827002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4277103, + "CONCEPT_NAME" : "Delayed repair of episiotomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65378009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4075190, + "CONCEPT_NAME" : "DeLee forceps cephalic delivery with rotation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177168003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440793, + "CONCEPT_NAME" : "Deliveries by breech extraction", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "271370008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 193277, + "CONCEPT_NAME" : "Deliveries by cesarean", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200144004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2514560, + "CONCEPT_NAME" : "Delivery/birthing room resuscitation, provision of positive pressure ventilation and/or chest compressions in the presence of acute inadequate ventilation and/or cardiac output", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "99465", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4076939, + "CONCEPT_NAME" : "Delivery booking place", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "275816005", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Observable Entity" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4106406, + "CONCEPT_NAME" : "Delivery by double application of forceps", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "29613008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061457, + "CONCEPT_NAME" : "Delivery by elective cesarean section", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200148001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4066112, + "CONCEPT_NAME" : "Delivery by emergency cesarean section", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200149009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4232028, + "CONCEPT_NAME" : "Delivery by Kielland rotation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "89346004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4234710, + "CONCEPT_NAME" : "Delivery by Malstrom's extraction", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90438006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4223638, + "CONCEPT_NAME" : "Delivery by Malstrom's extraction with episiotomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40219000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4278225, + "CONCEPT_NAME" : "Delivery by midwife", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65243006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4100410, + "CONCEPT_NAME" : "Delivery by Scanzoni maneuver", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25296001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4189205, + "CONCEPT_NAME" : "Delivery by vacuum extraction", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "61586001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4096145, + "CONCEPT_NAME" : "Delivery by vacuum extraction with episiotomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26313002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4237496, + "CONCEPT_NAME" : "Delivery care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "409006000", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3011536, + "CONCEPT_NAME" : "Delivery date Estimated", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "11778-8", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Clinical Observation" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038495, + "CONCEPT_NAME" : "Delivery finding", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "118215003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43054893, + "CONCEPT_NAME" : "Delivery location", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72150-6", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Survey" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061795, + "CONCEPT_NAME" : "Delivery: no place booked", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169620001", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441641, + "CONCEPT_NAME" : "Delivery normal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48782003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40551541, + "CONCEPT_NAME" : "Delivery of cephalic presentation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "384730009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4056129, + "CONCEPT_NAME" : "Delivery of face presentation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16819009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42872805, + "CONCEPT_NAME" : "Delivery of occipitoposterior presentation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "450798003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110311, + "CONCEPT_NAME" : "Delivery of placenta (separate procedure)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59414", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4130319, + "CONCEPT_NAME" : "Delivery of the after coming head", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "236982004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4293034, + "CONCEPT_NAME" : "Delivery of vertex presentation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "384729004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4156955, + "CONCEPT_NAME" : "Delivery place booked", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "271402002", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4150421, + "CONCEPT_NAME" : "Delivery place planned", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "310585007", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4128030, + "CONCEPT_NAME" : "Delivery procedure", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "236973005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4046029, + "CONCEPT_NAME" : "Delivery room care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "133905007", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36715417, + "CONCEPT_NAME" : "DEND syndrome", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "721088003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36716734, + "CONCEPT_NAME" : "Depressed fracture of skull due to birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "722904004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4252401, + "CONCEPT_NAME" : "Dermatitis of the newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7392002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4193756, + "CONCEPT_NAME" : "Desultory labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "79179003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40478932, + "CONCEPT_NAME" : "Detection of ordinal level of hemoglobin F in amniotic fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "444308008", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443012, + "CONCEPT_NAME" : "Diabetes mellitus during pregnancy - baby delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199225007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 192691, + "CONCEPT_NAME" : "Diabetes mellitus during pregnancy - baby not yet delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199227004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4058243, + "CONCEPT_NAME" : "Diabetes mellitus during pregnancy, childbirth and the puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199223000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 194700, + "CONCEPT_NAME" : "Diabetes mellitus in mother complicating pregnancy, childbirth AND/OR puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "76751001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4062685, + "CONCEPT_NAME" : "Diabetes mellitus in the puerperium - baby delivered during current episode of care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199226008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4062686, + "CONCEPT_NAME" : "Diabetes mellitus in the puerperium - baby delivered during previous episode of care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199228009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43531645, + "CONCEPT_NAME" : "Diabetes mellitus, transient neonatal 1", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609579009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43531019, + "CONCEPT_NAME" : "Diabetes mellitus, transient neonatal 2", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609580007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43531020, + "CONCEPT_NAME" : "Diabetes mellitus, transient neonatal 3", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609581006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40758528, + "CONCEPT_NAME" : "Diabetes tracking panel", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55399-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Clinical Observation" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3169474, + "CONCEPT_NAME" : "Diabetic hypoglycemia w anger outbursts", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16580001000004105", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "Nebraska Lexicon", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443727, + "CONCEPT_NAME" : "Diabetic ketoacidosis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "420422005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4009303, + "CONCEPT_NAME" : "Diabetic ketoacidosis without coma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "111556005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004805, + "CONCEPT_NAME" : "Diagnostic amniocentesis", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "75.1", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "3-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4143646, + "CONCEPT_NAME" : "Diagnostic amniocentesis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "265635006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40479665, + "CONCEPT_NAME" : "Diagnostic amniocentesis using ultrasound guidance", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "443005005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4032755, + "CONCEPT_NAME" : "Diagnostic amniocentesis with fluid replacement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "236954006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4142956, + "CONCEPT_NAME" : "Diagnostic laparoscopy of female pelvis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "264973001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2006934, + "CONCEPT_NAME" : "Diagnostic ultrasound of gravid uterus", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "88.78", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4135437, + "CONCEPT_NAME" : "Dialysis fluid glucose measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "412865006", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37204835, + "CONCEPT_NAME" : "Diazoxide-resistant focal hyperinsulinism due to Kir6.2 deficiency", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "783741006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37204834, + "CONCEPT_NAME" : "Diazoxide-resistant focal hyperinsulinism due to SUR1 deficiency", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "783740007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43021054, + "CONCEPT_NAME" : "Dichorionic diamniotic twin pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "459166009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4211822, + "CONCEPT_NAME" : "Dietary amenorrhea", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57260004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434482, + "CONCEPT_NAME" : "Diethylstilbestrol poisoning", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "66698002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4016060, + "CONCEPT_NAME" : "Difficult to establish feeding", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169947009", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4173784, + "CONCEPT_NAME" : "Difficulty coping with postpartum changes", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "424474002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4314846, + "CONCEPT_NAME" : "Difficulty following postpartum diet", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "424712007", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4313768, + "CONCEPT_NAME" : "Difficulty following postpartum exercise routine", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "423675002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4071864, + "CONCEPT_NAME" : "Difficulty in feeding at breast", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206568009", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4309556, + "CONCEPT_NAME" : "Difficulty with postpartum rest pattern", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "423502007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4149472, + "CONCEPT_NAME" : "Digital evacuation of retained products of conception", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "310603006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004489, + "CONCEPT_NAME" : "Dilation and curettage for termination of pregnancy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "69.01", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4106559, + "CONCEPT_NAME" : "Dilation and curettage for termination of pregnancy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "29682007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4309425, + "CONCEPT_NAME" : "Dilation and curettage of uterus after delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "391998006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4168396, + "CONCEPT_NAME" : "Dilation of cervix uteri and curettage for termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "274973002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4138740, + "CONCEPT_NAME" : "Dilation of cervix uteri and curettage of products of conception from uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "265062002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4074867, + "CONCEPT_NAME" : "Dilation of cervix uteri and curettage of uterus for removal of missed miscarriage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "176833006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4072420, + "CONCEPT_NAME" : "Dilation of cervix uteri and curettage of uterus for removal of mole", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "176832001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4074297, + "CONCEPT_NAME" : "Dilation of cervix uteri and vacuum aspiration of products of conception from uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "176827002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4022096, + "CONCEPT_NAME" : "Direct injection of sperm into cytoplasm of the oocyte", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "225244002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4024589, + "CONCEPT_NAME" : "Direct intraperitoneal insemination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "225247009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4084845, + "CONCEPT_NAME" : "Discharged from hospital within 6 hours of delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "183673002", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757216, + "CONCEPT_NAME" : "Discharge disposition [CARE]", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "52688-9", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Survey" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757177, + "CONCEPT_NAME" : "Discharge Status", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "52523-8", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Survey" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4071597, + "CONCEPT_NAME" : "Dislocation of spine due to birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206221000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 201958, + "CONCEPT_NAME" : "Disorder involving the integument of fetus OR newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "111474003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438815, + "CONCEPT_NAME" : "Disorder of amniotic cavity AND/OR membrane", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72860003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 73546, + "CONCEPT_NAME" : "Disorder of breast associated with childbirth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86196005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 200524, + "CONCEPT_NAME" : "Disorder of digestive system specific to fetus OR newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "42357009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4130161, + "CONCEPT_NAME" : "Disorder of glucose regulation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237597000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 80471, + "CONCEPT_NAME" : "Disorder of lactation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "35046003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 79890, + "CONCEPT_NAME" : "Disorder of pelvic size and disproportion", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237256006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4053583, + "CONCEPT_NAME" : "Disorder of placenta", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "125586008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42537770, + "CONCEPT_NAME" : "Disorder of vein following ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "737332001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42537769, + "CONCEPT_NAME" : "Disorder of vein following miscarriage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "737331008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42537771, + "CONCEPT_NAME" : "Disorder of vein following molar pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "737333006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4195545, + "CONCEPT_NAME" : "Disorder relating to short gestation AND/OR low birthweight", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "67645006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 201091, + "CONCEPT_NAME" : "Disproportion - major pelvic abnormality", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199398004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 198486, + "CONCEPT_NAME" : "Disproportion - major pelvic abnormality - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199400000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4059763, + "CONCEPT_NAME" : "Disproportion - major pelvic abnormality with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199402008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443418, + "CONCEPT_NAME" : "Disruption of cesarean wound in the puerperium", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "361096002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4134722, + "CONCEPT_NAME" : "Disruption of episiotomy wound in the puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "398262004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4282151, + "CONCEPT_NAME" : "Disruption of perineal laceration repair in the puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "66119008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443897, + "CONCEPT_NAME" : "Disruption of perineal wound in the puerperium", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "14918004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432443, + "CONCEPT_NAME" : "Disseminated intravascular coagulation in newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "34417008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4091783, + "CONCEPT_NAME" : "Distress from pain in labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "249196008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437985, + "CONCEPT_NAME" : "Disturbance of temperature regulation of newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "68550008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37017322, + "CONCEPT_NAME" : "Dizygotic twin pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "713575004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2721247, + "CONCEPT_NAME" : "Donor egg cycle, incomplete, case rate", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "S4023", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2721248, + "CONCEPT_NAME" : "Donor services for in vitro fertilization (sperm or embryo), case rate", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "S4025", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2211763, + "CONCEPT_NAME" : "Doppler echocardiography, fetal, pulsed wave and/or continuous wave with spectral display; complete", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "76827", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2211764, + "CONCEPT_NAME" : "Doppler echocardiography, fetal, pulsed wave and/or continuous wave with spectral display; follow-up or repeat study", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "76828", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44807919, + "CONCEPT_NAME" : "Doppler ultrasonography of multiple pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "855031000000109", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2211761, + "CONCEPT_NAME" : "Doppler velocimetry, fetal; middle cerebral artery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "76821", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2211760, + "CONCEPT_NAME" : "Doppler velocimetry, fetal; umbilical artery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "76820", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4149370, + "CONCEPT_NAME" : "Down's screening - blood test", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "268474007", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4201770, + "CONCEPT_NAME" : "Downs screening test", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "315115008", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2784529, + "CONCEPT_NAME" : "Drainage of Amniotic Fluid, Diagnostic from Products of Conception, Open Approach", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10900ZU", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD10PCS", + "CONCEPT_CLASS_ID" : "ICD10PCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2784535, + "CONCEPT_NAME" : "Drainage of Amniotic Fluid, Diagnostic from Products of Conception, Percutaneous Approach", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10903ZU", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD10PCS", + "CONCEPT_CLASS_ID" : "ICD10PCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2784541, + "CONCEPT_NAME" : "Drainage of Amniotic Fluid, Diagnostic from Products of Conception, Percutaneous Endoscopic Approach", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10904ZU", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD10PCS", + "CONCEPT_CLASS_ID" : "ICD10PCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2784547, + "CONCEPT_NAME" : "Drainage of Amniotic Fluid, Diagnostic from Products of Conception, Via Natural or Artificial Opening", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10907ZU", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD10PCS", + "CONCEPT_CLASS_ID" : "ICD10PCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2784553, + "CONCEPT_NAME" : "Drainage of Amniotic Fluid, Diagnostic from Products of Conception, Via Natural or Artificial Opening Endoscopic", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10908ZU", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD10PCS", + "CONCEPT_CLASS_ID" : "ICD10PCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442915, + "CONCEPT_NAME" : "Drug dependence during pregnancy - baby delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199252002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442913, + "CONCEPT_NAME" : "Drug dependence during pregnancy - baby not yet delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199254001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440787, + "CONCEPT_NAME" : "Drug dependence in mother complicating pregnancy, childbirth AND/OR puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "34150001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4029427, + "CONCEPT_NAME" : "Drug-induced hyperinsulinemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237646004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4034969, + "CONCEPT_NAME" : "Drug-induced hypoglycemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237640005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4096804, + "CONCEPT_NAME" : "Drug-induced hypoglycemia without coma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "190448007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435359, + "CONCEPT_NAME" : "Drug reaction AND/OR intoxication specific to newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "34738001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438871, + "CONCEPT_NAME" : "Drug withdrawal syndrome in newborn", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "61628006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4139551, + "CONCEPT_NAME" : "Duffy isoimmunization of the newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "307337003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015420, + "CONCEPT_NAME" : "Duration of first stage of labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169821004", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Observable Entity" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4122728, + "CONCEPT_NAME" : "Duration of labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "289248003", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Observable Entity" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014453, + "CONCEPT_NAME" : "Duration of second stage of labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169822006", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Observable Entity" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015161, + "CONCEPT_NAME" : "Duration of third stage of labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169823001", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Observable Entity" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40259069, + "CONCEPT_NAME" : "Dye test of fallopian tube", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "177006000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443706, + "CONCEPT_NAME" : "Dyscoordinate labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "18606002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4139861, + "CONCEPT_NAME" : "Dysglycemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "426255005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4070773, + "CONCEPT_NAME" : "Dysponderal amenorrhea", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "21669001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4307303, + "CONCEPT_NAME" : "Early neonatal death", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "391181005", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Event" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36713560, + "CONCEPT_NAME" : "Early onset diffuse bleeding diathesis secondary to vitamin K deficient hemorrhagic disease of fetus and newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "717935003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 35622880, + "CONCEPT_NAME" : "Early-onset neonatal sepsis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "765106006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437614, + "CONCEPT_NAME" : "Early onset of delivery", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "270496001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 138813, + "CONCEPT_NAME" : "Early or threatened labor", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "267201003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4040834, + "CONCEPT_NAME" : "Early postpartum state", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16538005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2722250, + "CONCEPT_NAME" : "Echocardiography, fetal, cardiovascular system, real time with image documentation (2D), with or without M-mode recording", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "76825", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2211762, + "CONCEPT_NAME" : "Echocardiography, fetal, cardiovascular system, real time with image documentation (2D), with or without M-mode recording; follow-up or repeat study", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "76826", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4137949, + "CONCEPT_NAME" : "Echography, scan B-mode for fetal growth rate", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "31998007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443700, + "CONCEPT_NAME" : "Eclampsia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15938005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 133816, + "CONCEPT_NAME" : "Eclampsia - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198990007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 138811, + "CONCEPT_NAME" : "Eclampsia - delivered with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198991006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 137613, + "CONCEPT_NAME" : "Eclampsia in pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198992004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4116344, + "CONCEPT_NAME" : "Eclampsia in puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "303063000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4058536, + "CONCEPT_NAME" : "Eclampsia with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198993009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4294771, + "CONCEPT_NAME" : "Ectopic hyperinsulinism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "37703005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4129522, + "CONCEPT_NAME" : "Ectopic IGF-1 hypoglycemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237643007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4029426, + "CONCEPT_NAME" : "Ectopic IGF-2 hypoglycemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237644001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4030181, + "CONCEPT_NAME" : "Ectopic IGF hypoglycemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237642002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437611, + "CONCEPT_NAME" : "Ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "34801009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441412, + "CONCEPT_NAME" : "Edema of newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "78913002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438204, + "CONCEPT_NAME" : "Edema or excessive weight gain in pregnancy without mention of hypertension", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "267202005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443321, + "CONCEPT_NAME" : "Edema or excessive weight gain in pregnancy without mention of hypertension, delivered with mention of postpartum complication", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "199075004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37018717, + "CONCEPT_NAME" : "Education about amino acid-based infant formula", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "713407005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37017708, + "CONCEPT_NAME" : "Education about cow's milk protein free diet", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "714032007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37017183, + "CONCEPT_NAME" : "Education about extensively hydrolyzed infant formula", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "713414007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4207151, + "CONCEPT_NAME" : "Education about feeding neonate", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "438297004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37017710, + "CONCEPT_NAME" : "Education about soy-based infant formula", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "714034008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45770395, + "CONCEPT_NAME" : "Education about weaning for cow's milk protein allergy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "927701000000103", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43527945, + "CONCEPT_NAME" : "EGFR (epidermal growth factor receptor) (eg, non-small cell lung cancer) gene analysis, common variants (eg, exon 19 LREA deletion, L858R, T790M, G719A, G719S, L861Q)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "81235", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441085, + "CONCEPT_NAME" : "Elderly primigravida", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "29399001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440794, + "CONCEPT_NAME" : "Elderly primigravida - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199718001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442442, + "CONCEPT_NAME" : "Elderly primigravida with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199719009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4075182, + "CONCEPT_NAME" : "Elective cesarean section", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177141003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4075161, + "CONCEPT_NAME" : "Elective lower segment cesarean section", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177143000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42536960, + "CONCEPT_NAME" : "Elective lower segment cesarean section with bilateral tubal ligation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "736026009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4075160, + "CONCEPT_NAME" : "Elective upper segment cesarean section", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177142005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42536952, + "CONCEPT_NAME" : "Elective upper segment cesarean section with bilateral tubal ligation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "736018001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4171254, + "CONCEPT_NAME" : "Electrode injury to scalp during birth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276704001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4276942, + "CONCEPT_NAME" : "Electrolyte imbalance following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6509007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4263011, + "CONCEPT_NAME" : "Elevated serum human chorionic gonadotropin level, beta subunit", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "396700001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42539701, + "CONCEPT_NAME" : "Embolism due to and following ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "737324009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42537764, + "CONCEPT_NAME" : "Embolism due to and following molar pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "737325005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440777, + "CONCEPT_NAME" : "Embolism following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "42070007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4327048, + "CONCEPT_NAME" : "Embryo transfer", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "75456002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110275, + "CONCEPT_NAME" : "Embryo transfer, intrauterine", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "58974", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4167089, + "CONCEPT_NAME" : "Emergency cesarean section", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "274130007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4127252, + "CONCEPT_NAME" : "Emergency lower segment cesarean section", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "236985002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42537021, + "CONCEPT_NAME" : "Emergency lower segment cesarean section with bilateral tubal ligation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "736118004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 46270991, + "CONCEPT_NAME" : "Emergency lower segment cesarean section with inverted T incision", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "709004006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4032767, + "CONCEPT_NAME" : "Emergency upper segment cesarean section", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "236986001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42536954, + "CONCEPT_NAME" : "Emergency upper segment cesarean section with bilateral tubal ligation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "736020003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439924, + "CONCEPT_NAME" : "Endocrine AND/OR metabolic disorder specific to the fetus OR newborn", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "22561006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4113994, + "CONCEPT_NAME" : "Endometritis following abortive pregnancy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "198820000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4066014, + "CONCEPT_NAME" : "Endometritis following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "172001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4074443, + "CONCEPT_NAME" : "Endoscopic freeing of adhesions of fallopian tube", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "176994003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4072852, + "CONCEPT_NAME" : "Endoscopic intrafallopian transfer of gamete", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "176996001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4072863, + "CONCEPT_NAME" : "Endoscopic transurethral ultrasound directed oocyte recovery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177038005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4074569, + "CONCEPT_NAME" : "Endoscopic transvesical oocyte recovery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177039002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 80478, + "CONCEPT_NAME" : "Engorgement of breasts associated with childbirth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55613002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4055924, + "CONCEPT_NAME" : "Entire placenta", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "181455002", + "DOMAIN_ID" : "Spec Anatomic Site", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Body Structure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42573076, + "CONCEPT_NAME" : "Enzootic abortion", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "352191000009102", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED Veterinary", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4272812, + "CONCEPT_NAME" : "Episioproctotomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63407004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004766, + "CONCEPT_NAME" : "Episiotomy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "73.6", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "3-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4311671, + "CONCEPT_NAME" : "Episiotomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "85548006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4046551, + "CONCEPT_NAME" : "Episiotomy care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "133907004", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4102125, + "CONCEPT_NAME" : "Episiotomy infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "300927001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110303, + "CONCEPT_NAME" : "Episiotomy or vaginal repair, by other than attending", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59300", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44513763, + "CONCEPT_NAME" : "Episiotomy to facilitate delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "R27.1", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "OPCS4", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530969, + "CONCEPT_NAME" : "Epithelioid trophoblastic tumor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609515005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4009644, + "CONCEPT_NAME" : "Erb-Duchenne palsy as birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "111465000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37109548, + "CONCEPT_NAME" : "Erb Duchenne palsy with neuroma due to birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "722901007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37109547, + "CONCEPT_NAME" : "Erb Duchenne palsy with neuropraxis due to traction birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "722900008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4345685, + "CONCEPT_NAME" : "Erythroderma neonatorum", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "240302002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4059478, + "CONCEPT_NAME" : "Estimated date of delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "161714006", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Observable Entity" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4128833, + "CONCEPT_NAME" : "Estimated date of delivery from last period", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "289206005", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Observable Entity" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3025994, + "CONCEPT_NAME" : "Estriol (E3) [Mass/volume] in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "2251-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3025455, + "CONCEPT_NAME" : "Estriol (E3).unconjugated [Mass/volume] in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "2250-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3005625, + "CONCEPT_NAME" : "Estriol (E3).unconjugated [Multiple of the median] adjusted in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "21264-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3003262, + "CONCEPT_NAME" : "Estriol (E3).unconjugated [Multiple of the median] in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "20466-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4070303, + "CONCEPT_NAME" : "Estriol measurement, serum", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "20563000", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4032621, + "CONCEPT_NAME" : "Evacuation of retained product of conception", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "236883005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4170151, + "CONCEPT_NAME" : "Evacuation of uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "275166002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40756825, + "CONCEPT_NAME" : "Evaluation of cervicovaginal fluid for specific amniotic fluid protein(s) (eg, placental alpha microglobulin-1 [PAMG-1], placental protein 12 [PP12], alpha-fetoprotein), qualitative, each specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84112", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4216768, + "CONCEPT_NAME" : "Exaggerated placental site", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "417150000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434758, + "CONCEPT_NAME" : "Exceptionally large at birth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "38206000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 81636, + "CONCEPT_NAME" : "Excessive fetal growth affecting management of mother", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "22173004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42537763, + "CONCEPT_NAME" : "Excessive hemorrhage due to and following ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "737323003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37206231, + "CONCEPT_NAME" : "Excessive hemorrhage due to and following illegally induced termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "785872000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37206226, + "CONCEPT_NAME" : "Excessive hemorrhage due to and following induced termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "785867009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37206230, + "CONCEPT_NAME" : "Excessive hemorrhage due to and following legally induced termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "785871007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4074426, + "CONCEPT_NAME" : "Excision of ectopic ovarian pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "176928008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40493226, + "CONCEPT_NAME" : "Excision of fallopian tube and surgical removal of ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "445912000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4074427, + "CONCEPT_NAME" : "Excision of ruptured ectopic tubal pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "176929000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004345, + "CONCEPT_NAME" : "Excision or destruction of lesion of fallopian tube", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "66.61", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37396132, + "CONCEPT_NAME" : "Exercise-induced hyperinsulinism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "715830008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4034017, + "CONCEPT_NAME" : "Exercise-related amenorrhea", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237119008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4065745, + "CONCEPT_NAME" : "Exhaustion during labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200164009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40479820, + "CONCEPT_NAME" : "Exposure to rubella in pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "444517009", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Event" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4147858, + "CONCEPT_NAME" : "Expression of retained products of conception", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "310602001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2213361, + "CONCEPT_NAME" : "Extended culture of oocyte(s)/embryo(s), 4-7 days", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "89272", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44790867, + "CONCEPT_NAME" : "Extended glucose tolerance test", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "244911000000109", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4226978, + "CONCEPT_NAME" : "External fetal monitor surveillance during multiple pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87663001", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004769, + "CONCEPT_NAME" : "External version assisting delivery", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "73.91", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4075176, + "CONCEPT_NAME" : "External version of breech", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177122001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4257043, + "CONCEPT_NAME" : "Extra-amniotic termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "408840008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44513450, + "CONCEPT_NAME" : "Extraction of menses", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "Q11.4", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "OPCS4", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4211824, + "CONCEPT_NAME" : "Extraperitoneal cesarean section", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57271003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 38001501, + "CONCEPT_NAME" : "Extreme immaturity or respiratory distress syndrome, neonate", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "790", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "DRG", + "CONCEPT_CLASS_ID" : "MS-DRG" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4173323, + "CONCEPT_NAME" : "Extremely low birth weight infant", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276612004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439128, + "CONCEPT_NAME" : "Extreme prematurity of infant", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276658003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 78210, + "CONCEPT_NAME" : "Face OR brow presentation of fetus", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "37762002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4071437, + "CONCEPT_NAME" : "Face presentation of fetus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "21882006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 377680, + "CONCEPT_NAME" : "Facial nerve injury as birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55712002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060261, + "CONCEPT_NAME" : "Factitious hypoglycemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16966009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4017134, + "CONCEPT_NAME" : "Failed attempted termination of pregnancy with amniotic fluid embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "11454006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 194694, + "CONCEPT_NAME" : "Failed attempted termination of pregnancy with complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59919008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 192380, + "CONCEPT_NAME" : "Failed attempted termination of pregnancy without complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90645002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4281684, + "CONCEPT_NAME" : "Failed attempted termination of pregnancy with urinary tract infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "66892003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45757775, + "CONCEPT_NAME" : "Failed attempted vaginal birth after previous cesarean section", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "38451000119105", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004751, + "CONCEPT_NAME" : "Failed forceps", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "73.3", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "3-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442613, + "CONCEPT_NAME" : "Failed forceps delivery", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "64646001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437622, + "CONCEPT_NAME" : "Failed mechanical induction", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90188009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441924, + "CONCEPT_NAME" : "Failed mechanical induction - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199694005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437341, + "CONCEPT_NAME" : "Failed mechanical induction with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199695006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438491, + "CONCEPT_NAME" : "Failed medical induction of labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "77854008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4196129, + "CONCEPT_NAME" : "Failed minimum access approach", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "313004003", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434436, + "CONCEPT_NAME" : "Failed trial of labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "23332002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443521, + "CONCEPT_NAME" : "Failed trial of labor - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "413339006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4298980, + "CONCEPT_NAME" : "Failure of cervical dilation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7768008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45771070, + "CONCEPT_NAME" : "Failure of cervical dilation due to primary uterine inertia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "88201000119101", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 81088, + "CONCEPT_NAME" : "Failure of lactation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6995000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36715473, + "CONCEPT_NAME" : "Failure of lactation with attachment difficulty", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "721162003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 78224, + "CONCEPT_NAME" : "Failure of lactation with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200436007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4157164, + "CONCEPT_NAME" : "Failure of transfer of passive immunity in newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "370539007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4127892, + "CONCEPT_NAME" : "Fallopian replacement of egg with delayed insemination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "236913003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4001541, + "CONCEPT_NAME" : "Fallopian tube excision", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "120053002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4279380, + "CONCEPT_NAME" : "False knot of umbilical cord", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36697001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4062557, + "CONCEPT_NAME" : "False labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199047001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4089691, + "CONCEPT_NAME" : "Familial neonatal seizures", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "279953009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4156660, + "CONCEPT_NAME" : "Fasting blood glucose measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "271062006", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3035250, + "CONCEPT_NAME" : "Fasting glucose [Mass/volume] in Capillary blood by Glucometer", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "41604-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3037110, + "CONCEPT_NAME" : "Fasting glucose [Mass/volume] in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1558-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40766113, + "CONCEPT_NAME" : "Fasting glucose [Mass/volume] in Urine", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63382-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3037187, + "CONCEPT_NAME" : "Fasting glucose [Mass/volume] in Venous blood", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1557-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 46235168, + "CONCEPT_NAME" : "Fasting glucose [Moles/volume] in Blood", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "76629-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3017703, + "CONCEPT_NAME" : "Fasting glucose [Moles/volume] in Capillary blood by Glucometer", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14770-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3018251, + "CONCEPT_NAME" : "Fasting glucose [Moles/volume] in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14771-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 46236950, + "CONCEPT_NAME" : "Fasting glucose [Moles/volume] in Serum, Plasma or Blood", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "77145-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3041651, + "CONCEPT_NAME" : "Fasting glucose [Moles/volume] in Urine", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "53114-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3025791, + "CONCEPT_NAME" : "Fasting glucose [Presence] in Urine", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16913-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3002574, + "CONCEPT_NAME" : "Fasting glucose [Presence] in Urine by Test strip", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6764-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4320478, + "CONCEPT_NAME" : "Fasting hypoglycemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6974005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3655214, + "CONCEPT_NAME" : "Fat embolism due to and following ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "860687003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3655213, + "CONCEPT_NAME" : "Fat embolism due to and following molar pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "860686007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4310205, + "CONCEPT_NAME" : "Fecal clinitest", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "391330005", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4250134, + "CONCEPT_NAME" : "Fecal glucose level", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "407702002", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060255, + "CONCEPT_NAME" : "Feeding intention - breast", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169643005", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433315, + "CONCEPT_NAME" : "Feeding problems in newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72552008", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3173127, + "CONCEPT_NAME" : "Female periurethral laceration", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6950001000004109", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "Nebraska Lexicon", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530900, + "CONCEPT_NAME" : "Fetal Alcohol Spectrum Disorder", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609437000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4004785, + "CONCEPT_NAME" : "Fetal alcohol syndrome", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "205788004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4150653, + "CONCEPT_NAME" : "Fetal anatomy study", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "271442007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439923, + "CONCEPT_NAME" : "Fetal and newborn blood disorders", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206509003", + "DOMAIN_ID" : "Metadata", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Navi Concept" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 201083, + "CONCEPT_NAME" : "Fetal AND/OR placental disorder affecting management of mother", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "22753004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43022052, + "CONCEPT_NAME" : "Fetal anemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "462166006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44790240, + "CONCEPT_NAME" : "Fetal ascites scan", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "228701000000101", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3026620, + "CONCEPT_NAME" : "Fetal Biophysical profile.body movement US", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "11631-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Clinical Observation" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3028281, + "CONCEPT_NAME" : "Fetal Biophysical profile.sum Derived", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "11634-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Clinical Observation" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2211758, + "CONCEPT_NAME" : "Fetal biophysical profile; with non-stress testing", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "76818", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2211759, + "CONCEPT_NAME" : "Fetal biophysical profile; without non-stress testing", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "76819", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 79146, + "CONCEPT_NAME" : "Fetal blood loss", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206390008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4196670, + "CONCEPT_NAME" : "Fetal blood loss from vasa previa", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "50544004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37310907, + "CONCEPT_NAME" : "Fetal cleft lip", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63061000119104", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43528050, + "CONCEPT_NAME" : "Fetal congenital abnormalities, biochemical assays of five analytes (AFP, uE3, total hCG, hyperglycosylated hCG, DIA) utilizing maternal serum, algorithm reported as a risk score", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "81512", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43527962, + "CONCEPT_NAME" : "Fetal congenital abnormalities, biochemical assays of four analytes (AFP, uE3, hCG [any form], DIA) utilizing maternal serum, algorithm reported as a risk score (may include additional results from previous biochemical testing)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "81511", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43527961, + "CONCEPT_NAME" : "Fetal congenital abnormalities, biochemical assays of three analytes (AFP, uE3, hCG [any form]), utilizing maternal serum, algorithm reported as a risk score", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "81510", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43527960, + "CONCEPT_NAME" : "Fetal congenital abnormalities, biochemical assays of three proteins (PAPP-A, hCG [any form], DIA), utilizing maternal serum, algorithm reported as a risk score", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "81509", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43527959, + "CONCEPT_NAME" : "Fetal congenital abnormalities, biochemical assays of two proteins (PAPP-A, hCG [any form]), utilizing maternal serum, algorithm reported as a risk score", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "81508", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110283, + "CONCEPT_NAME" : "Fetal contraction stress test", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59020", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3001951, + "CONCEPT_NAME" : "Fetal Crown Rump length US", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "11957-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Clinical Observation" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4079844, + "CONCEPT_NAME" : "Fetal death", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276507005", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Event" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 75605, + "CONCEPT_NAME" : "Fetal death, affecting management of mother", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14022007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4071603, + "CONCEPT_NAME" : "Fetal death due to prelabor anoxia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206258000", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Event" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 436228, + "CONCEPT_NAME" : "Fetal death due to termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "67313008", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Event" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442338, + "CONCEPT_NAME" : "Fetal death from asphyxia AND/OR anoxia before onset of labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "44174001", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Event" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443695, + "CONCEPT_NAME" : "Fetal death from asphyxia AND/OR anoxia during labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1762004", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Event" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4178809, + "CONCEPT_NAME" : "Fetal disorder secondary to chemicals", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "363127005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 80165, + "CONCEPT_NAME" : "Fetal disproportion", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "31805001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 73268, + "CONCEPT_NAME" : "Fetal distress affecting management of mother", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12867002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37311827, + "CONCEPT_NAME" : "Fetal distress due to augmentation of labor with oxytocin", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "816967008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435369, + "CONCEPT_NAME" : "Fetal distress, in liveborn infant", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90562004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4216551, + "CONCEPT_NAME" : "Fetal dystocia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7245003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4334808, + "CONCEPT_NAME" : "Fetal echocardiography", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "433235006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4034866, + "CONCEPT_NAME" : "Fetal echocardiography, real time with image documentation (2D) with M-mode recording", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15282006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530902, + "CONCEPT_NAME" : "Fetal effect of maternal toxemia", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "609440000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004809, + "CONCEPT_NAME" : "Fetal EKG (scalp)", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "75.32", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45757059, + "CONCEPT_NAME" : "Fetal exposure to teratogenic substance", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "103031000119101", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4203009, + "CONCEPT_NAME" : "Fetal exsanguination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "52977000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2212334, + "CONCEPT_NAME" : "Fetal fibronectin, cervicovaginal secretions, semi-quantitative", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "82731", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37310859, + "CONCEPT_NAME" : "Fetal gastrointestinal abnormality", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "121801000119105", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4210896, + "CONCEPT_NAME" : "Fetal gestational age", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57036006", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Observable Entity" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4266763, + "CONCEPT_NAME" : "Fetal gestation at delivery - finding", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "364739001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 80204, + "CONCEPT_NAME" : "Fetal growth restriction", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "22033007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4084439, + "CONCEPT_NAME" : "Fetal heart monitoring", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "281568006", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3006722, + "CONCEPT_NAME" : "Fetal Heart Narrative Activity US", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "11616-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Clinical Observation" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437098, + "CONCEPT_NAME" : "Fetal intrauterine distress first noted during labor AND/OR delivery in liveborn infant", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7996008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433311, + "CONCEPT_NAME" : "Fetal intrauterine distress noted before labor in liveborn infant", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "74796005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36716504, + "CONCEPT_NAME" : "Fetal intrauterine intestinal perforation due to in utero intraluminal obstruction", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "722532002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36716503, + "CONCEPT_NAME" : "Fetal intrauterine intestinal perforation due to in utero volvulus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "722531009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42538545, + "CONCEPT_NAME" : "Fetal intrauterine intestinal perforation with congenital atresia of intestinal tract", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "762273001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42538544, + "CONCEPT_NAME" : "Fetal intrauterine intestinal perforation with congenital stenosis of intestinal tract", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "762272006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36715840, + "CONCEPT_NAME" : "Fetal intrauterine perforation of intestine", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "721613002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36715841, + "CONCEPT_NAME" : "Fetal intrauterine perforation of stomach", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "721614008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2212438, + "CONCEPT_NAME" : "Fetal lung maturity assessment; fluorescence polarization", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "83663", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2212439, + "CONCEPT_NAME" : "Fetal lung maturity assessment; lamellar body density", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "83664", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2212436, + "CONCEPT_NAME" : "Fetal lung maturity assessment; lecithin sphingomyelin (L/S) ratio", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "83661", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3032604, + "CONCEPT_NAME" : "Fetal lung maturity in Amniotic fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "35084-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3050978, + "CONCEPT_NAME" : "Fetal lung maturity [Interpretation] in Amniotic fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "47226-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 201366, + "CONCEPT_NAME" : "Fetal-maternal hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "71028008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 193535, + "CONCEPT_NAME" : "Fetal-maternal hemorrhage - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199577000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 196757, + "CONCEPT_NAME" : "Fetal-maternal hemorrhage with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199578005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44790237, + "CONCEPT_NAME" : "Fetal measurement scan", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "232671000000100", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110287, + "CONCEPT_NAME" : "Fetal monitoring during labor by consulting physician (ie, non-attending physician) with written report; interpretation only", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59051", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110286, + "CONCEPT_NAME" : "Fetal monitoring during labor by consulting physician (ie, non-attending physician) with written report; supervision and interpretation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59050", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4146847, + "CONCEPT_NAME" : "Fetal monitoring scalp injury", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "268822004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4145315, + "CONCEPT_NAME" : "Fetal movements felt", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "268470003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40759953, + "CONCEPT_NAME" : "Fetal Narrative Movement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "56834-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Clinical Observation" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3003857, + "CONCEPT_NAME" : "Fetal Narrative Sex US", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "11883-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Clinical Observation" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110284, + "CONCEPT_NAME" : "Fetal non-stress test", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59025", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4271327, + "CONCEPT_NAME" : "Fetal OR intrauterine acidosis first noted during labor AND/OR delivery in liveborn infant", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "63055005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061924, + "CONCEPT_NAME" : "Fetal OR intrauterine anoxia AND/OR hypoxia noted before labor in liveborn infant", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "17082004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4281385, + "CONCEPT_NAME" : "Fetal OR intrauterine asphyxia, not clear if noted before OR after onset of labor in liveborn infant", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "66231000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4142900, + "CONCEPT_NAME" : "Fetal OR intrauterine asphyxia noted before labor in liveborn infant", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "33721007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4314282, + "CONCEPT_NAME" : "Fetal OR intrauterine hypercapnia first noted during labor AND/OR delivery in liveborn infant", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "86664001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438541, + "CONCEPT_NAME" : "Fetal or neonatal effect of abnormality of chorion", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "75592000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36716530, + "CONCEPT_NAME" : "Fetal or neonatal effect of abnormal maternal chemistry", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "722564009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434483, + "CONCEPT_NAME" : "Fetal or neonatal effect of abnormal uterine contraction", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "63254003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4148097, + "CONCEPT_NAME" : "Fetal or neonatal effect of abruptio placentae", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "268803008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433309, + "CONCEPT_NAME" : "Fetal or neonatal effect of alcohol transmitted via placenta and/or breast milk", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "36558000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44784300, + "CONCEPT_NAME" : "Fetal or neonatal effect of anti-infective agent transmitted via placenta", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "698402008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432429, + "CONCEPT_NAME" : "Fetal or neonatal effect of anti-infective agent transmitted via placenta and/or breast milk", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64415008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439129, + "CONCEPT_NAME" : "Fetal or neonatal effect of breech delivery and extraction", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "4787007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439135, + "CONCEPT_NAME" : "Fetal or neonatal effect of cesarean delivery", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "50968003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4071485, + "CONCEPT_NAME" : "Fetal or neonatal effect of cesarean section", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206123007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 436518, + "CONCEPT_NAME" : "Fetal or neonatal effect of chorioamnionitis", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "55730009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36716552, + "CONCEPT_NAME" : "Fetal or neonatal effect of chorionic villous sampling", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "722592004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444464, + "CONCEPT_NAME" : "Fetal or neonatal effect of chronic maternal circulatory disease", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "9069004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 436220, + "CONCEPT_NAME" : "Fetal or neonatal effect of chronic maternal respiratory disease", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "1363007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435927, + "CONCEPT_NAME" : "Fetal or neonatal effect of complication of labor and/or delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "76012002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36717572, + "CONCEPT_NAME" : "Fetal or neonatal effect of complications of fetal surgery", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "722594003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441682, + "CONCEPT_NAME" : "Fetal or neonatal effect of compression of umbilical cord", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86629005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440203, + "CONCEPT_NAME" : "Fetal or neonatal effect of condition of umbilical cord", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "81402009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437975, + "CONCEPT_NAME" : "Fetal or neonatal effect of delivery by vacuum extractor", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "73890002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44784362, + "CONCEPT_NAME" : "Fetal or neonatal effect of disproportion during labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "698497008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435063, + "CONCEPT_NAME" : "Fetal or neonatal effect of ectopic pregnancy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "69693005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4070412, + "CONCEPT_NAME" : "Fetal or neonatal effect of entanglement of cord", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206090002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36716553, + "CONCEPT_NAME" : "Fetal or neonatal effect of fetal blood sampling", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "722593009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435918, + "CONCEPT_NAME" : "Fetal or neonatal effect of forceps delivery", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "28627008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4047718, + "CONCEPT_NAME" : "Fetal or neonatal effect of forceps delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206121009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4070425, + "CONCEPT_NAME" : "Fetal or neonatal effect of hypertonic labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206138008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4070426, + "CONCEPT_NAME" : "Fetal or neonatal effect of hypertonic uterine dysfunction", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206139000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435917, + "CONCEPT_NAME" : "Fetal or neonatal effect of incompetent cervix", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "70898005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42538699, + "CONCEPT_NAME" : "Fetal or neonatal effect of injury of umbilical cord", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "762465007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4070413, + "CONCEPT_NAME" : "Fetal or neonatal effect of knot in cord", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206091003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4048006, + "CONCEPT_NAME" : "Fetal or neonatal effect of long cord", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206100009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44784412, + "CONCEPT_NAME" : "Fetal or neonatal effect of malposition during labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "698554000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 78563, + "CONCEPT_NAME" : "Fetal or neonatal effect of malpresentation before labor", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "30409006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 76521, + "CONCEPT_NAME" : "Fetal or neonatal effect of malpresentation, malposition and/or disproportion during labor and/or delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "5984000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43531708, + "CONCEPT_NAME" : "Fetal or neonatal effect of maternal alcohol addiction", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609438005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44784346, + "CONCEPT_NAME" : "Fetal or neonatal effect of maternal analgesia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "698481003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44784342, + "CONCEPT_NAME" : "Fetal or neonatal effect of maternal anesthesia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "698480002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437976, + "CONCEPT_NAME" : "Fetal or neonatal effect of maternal anesthesia and/or analgesia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "82719008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4048130, + "CONCEPT_NAME" : "Fetal or neonatal effect of maternal exposure to environmental chemical substances", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206156008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36716526, + "CONCEPT_NAME" : "Fetal or neonatal effect of maternal gestational edema and proteinuria without hypertension", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "722559005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433027, + "CONCEPT_NAME" : "Fetal or neonatal effect of maternal hypertensive disease", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "268794002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 436219, + "CONCEPT_NAME" : "Fetal or neonatal effect of maternal infection", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "206005002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438868, + "CONCEPT_NAME" : "Fetal or neonatal effect of maternal injury", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "25932007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434744, + "CONCEPT_NAME" : "Fetal or neonatal effect of maternal medical problem", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "206002004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434745, + "CONCEPT_NAME" : "Fetal or neonatal effect of maternal nutritional disorder", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "67743008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4047585, + "CONCEPT_NAME" : "Fetal or neonatal effect of maternal nutritional disorder", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "206011004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36717570, + "CONCEPT_NAME" : "Fetal or neonatal effect of maternal obesity with adult body mass index 30 or greater but less than 40", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "722562008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36716529, + "CONCEPT_NAME" : "Fetal or neonatal effect of maternal obesity with adult body mass index equal to or greater than 40", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "722563003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36716528, + "CONCEPT_NAME" : "Fetal or neonatal effect of maternal overweight or obesity", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "722561001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36716527, + "CONCEPT_NAME" : "Fetal or neonatal effect of maternal periodontal disease", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "722560000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4118056, + "CONCEPT_NAME" : "Fetal or neonatal effect of maternal premature rupture of membrane", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206037001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435062, + "CONCEPT_NAME" : "Fetal or neonatal effect of maternal renal and/or urinary tract disease", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "81804001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44782462, + "CONCEPT_NAME" : "Fetal or neonatal effect of maternal renal disease", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "698552001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36716731, + "CONCEPT_NAME" : "Fetal or neonatal effect of maternal respiratory disease", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "722896005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4047586, + "CONCEPT_NAME" : "Fetal or neonatal effect of maternal surgical operation", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "206013001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44784411, + "CONCEPT_NAME" : "Fetal or neonatal effect of maternal urinary disease", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "698553006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440211, + "CONCEPT_NAME" : "Fetal or neonatal effect of morphologic abnormality of placenta", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87045002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441680, + "CONCEPT_NAME" : "Fetal or neonatal effect of multiple pregnancy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "18001006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44784612, + "CONCEPT_NAME" : "Fetal or neonatal effect of narcotic transmitted via breast milk", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "698787003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44784611, + "CONCEPT_NAME" : "Fetal or neonatal effect of narcotic transmitted via placenta", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "698786007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 436517, + "CONCEPT_NAME" : "Fetal or neonatal effect of narcotic transmitted via placenta and/or breast milk", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "78302009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440829, + "CONCEPT_NAME" : "Fetal or neonatal effect of noxious influences transmitted via placenta or breast milk", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206153000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437088, + "CONCEPT_NAME" : "Fetal or neonatal effect of oligohydramnios", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "65599008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4047595, + "CONCEPT_NAME" : "Fetal or neonatal effect of placental damage caused by cesarean section", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206070006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44784305, + "CONCEPT_NAME" : "Fetal or neonatal effect of placental hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "698408007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44782664, + "CONCEPT_NAME" : "Fetal or neonatal effect of placental separation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "698407002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 201681, + "CONCEPT_NAME" : "Fetal or neonatal effect of placental separation and/or hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "68961008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441122, + "CONCEPT_NAME" : "Fetal or neonatal effect of placental transfusion syndrome", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "63654005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 201410, + "CONCEPT_NAME" : "Fetal or neonatal effect of placenta previa", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "62048002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4176131, + "CONCEPT_NAME" : "Fetal or neonatal effect of placentitis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "5074003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437668, + "CONCEPT_NAME" : "Fetal or neonatal effect of polyhydramnios", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "66215008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433310, + "CONCEPT_NAME" : "Fetal or neonatal effect of precipitate delivery", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "82587000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433018, + "CONCEPT_NAME" : "Fetal or neonatal effect of prolapsed cord", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206087008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4048003, + "CONCEPT_NAME" : "Fetal or neonatal effect of short cord", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206095007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441684, + "CONCEPT_NAME" : "Fetal or neonatal effect of surgical operation on mother", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "56192002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4048004, + "CONCEPT_NAME" : "Fetal or neonatal effect of thrombosis of umbilical cord", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206096008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4047711, + "CONCEPT_NAME" : "Fetal or neonatal effect of torsion of cord", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206092005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442148, + "CONCEPT_NAME" : "Fetal or neonatal effect of toxic substance transmitted via placenta and/or breast milk", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "89873008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4077736, + "CONCEPT_NAME" : "Fetal or neonatal effect of transverse lie", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "18909006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4047719, + "CONCEPT_NAME" : "Fetal or neonatal effect of vacuum extraction delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206122002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4070414, + "CONCEPT_NAME" : "Fetal or neonatal effect of varices of cord", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206097004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4047712, + "CONCEPT_NAME" : "Fetal or neonatal effect of vasa previa of cord", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206099001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4048005, + "CONCEPT_NAME" : "Fetal or neonatal effect of velamentous insertion of cord", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206098009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433319, + "CONCEPT_NAME" : "Fetal or neonatal effects of maternal complication of pregnancy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "68983007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432734, + "CONCEPT_NAME" : "Fetal OR neonatal hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "111467008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36716545, + "CONCEPT_NAME" : "Fetal or neonatal intracerebral non-traumatic hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "722582007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36716543, + "CONCEPT_NAME" : "Fetal or neonatal intraventricular non-traumatic hemorrhage grade 4", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "722580004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4328890, + "CONCEPT_NAME" : "Fetal OR neonatal jaundice from drugs AND/OR toxins transmitted from mother", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "22067002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4230351, + "CONCEPT_NAME" : "Fetal OR neonatal jaundice from infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "89062002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4067525, + "CONCEPT_NAME" : "Fetal OR neonatal jaundice from polycythemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "21404001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4096143, + "CONCEPT_NAME" : "Fetal OR neonatal jaundice from swallowed maternal blood", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26291002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36716546, + "CONCEPT_NAME" : "Fetal or neonatal non-traumatic hemorrhage of subarachnoid space of brain", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "722583002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36716547, + "CONCEPT_NAME" : "Fetal or neonatal non-traumatic hemorrhage of subdural space of brain", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "722584008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36716544, + "CONCEPT_NAME" : "Fetal or neonatal non-traumatic intraventricular hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "722581000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36717220, + "CONCEPT_NAME" : "Fetal or neonatal vitamin B12 deficiency due to maternal vitamin B12 deficiency", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "722597005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4262288, + "CONCEPT_NAME" : "Fetal RBC determination", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "35793002", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110285, + "CONCEPT_NAME" : "Fetal scalp blood sampling", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59030", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015304, + "CONCEPT_NAME" : "Fetal size accords with dates", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169732009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4318554, + "CONCEPT_NAME" : "Fetal virilism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "95622006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4151412, + "CONCEPT_NAME" : "Fetoplacental hormone measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "269851009", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 436804, + "CONCEPT_NAME" : "Fetus OR newborn affected by premature rupture of membranes", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "38511004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 81360, + "CONCEPT_NAME" : "Fetus papyraceous", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90127001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4047725, + "CONCEPT_NAME" : "Fetus small-for-dates with signs of malnutrition", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206164002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442827, + "CONCEPT_NAME" : "Fetus with central nervous system malformation with antenatal problem", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "199520001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 72697, + "CONCEPT_NAME" : "Fetus with chromosomal abnormality - delivered", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "199526007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 80463, + "CONCEPT_NAME" : "Fetus with chromosomal abnormality with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199527003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4064277, + "CONCEPT_NAME" : "Fetus with damage due to intrauterine contraceptive device", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199558002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4063296, + "CONCEPT_NAME" : "Fetus with damage due to intrauterine contraceptive device - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199560000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4063297, + "CONCEPT_NAME" : "Fetus with damage due to intrauterine contraceptive device with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199561001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060672, + "CONCEPT_NAME" : "Fetus with drug damage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199547006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4064177, + "CONCEPT_NAME" : "Fetus with drug damage - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199549009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4064178, + "CONCEPT_NAME" : "Fetus with drug damage with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199550009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4064169, + "CONCEPT_NAME" : "Fetus with hereditary disease", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199531009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4064171, + "CONCEPT_NAME" : "Fetus with hereditary disease - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199533007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4064172, + "CONCEPT_NAME" : "Fetus with hereditary disease with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199534001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4143204, + "CONCEPT_NAME" : "Fetus with viral damage via mother", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "267254000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4064174, + "CONCEPT_NAME" : "Fetus with viral damage via mother - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199538003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4064175, + "CONCEPT_NAME" : "Fetus with viral damage via mother with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199539006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4129181, + "CONCEPT_NAME" : "Fibrinolysis - postpartum", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237336007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4171110, + "CONCEPT_NAME" : "Fifth day fits", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276597004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4306064, + "CONCEPT_NAME" : "Fimbrial extraction of tubal pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "387616000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4100257, + "CONCEPT_NAME" : "Fimbriectomy of fallopian tube", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25344002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4200202, + "CONCEPT_NAME" : "Finding of Apgar score", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "302083008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4199559, + "CONCEPT_NAME" : "Finding of appearance of umbilical stump", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "302084002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4201383, + "CONCEPT_NAME" : "Finding of birth length", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "302082003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4103472, + "CONCEPT_NAME" : "Finding of birth weight centile", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "301332001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4126735, + "CONCEPT_NAME" : "Finding of color of umbilical stump", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "289324005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4090743, + "CONCEPT_NAME" : "Finding of consistency of lochia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "249213009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 195877, + "CONCEPT_NAME" : "Finding of gravid uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "289675001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4116804, + "CONCEPT_NAME" : "Finding of head circumference", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "301338002", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4124634, + "CONCEPT_NAME" : "Finding of involution of uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "289750007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432441, + "CONCEPT_NAME" : "Finding of length of gestation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "366323009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4116805, + "CONCEPT_NAME" : "Finding of measures of head circumference", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "301339005", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4199560, + "CONCEPT_NAME" : "Finding of moistness of umbilical stump", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "302085001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439156, + "CONCEPT_NAME" : "Finding of neonate", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "118188004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4126738, + "CONCEPT_NAME" : "Finding of odor of umbilical cord stump", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "289328008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4201382, + "CONCEPT_NAME" : "Finding of state at birth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "302079008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4126409, + "CONCEPT_NAME" : "Finding of umbilical cord clamp", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "289334001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4090747, + "CONCEPT_NAME" : "Finding of umbilical stump", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "249229001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 197343, + "CONCEPT_NAME" : "First degree perineal laceration", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57759005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 192978, + "CONCEPT_NAME" : "First degree perineal tear during delivery - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199916005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 199088, + "CONCEPT_NAME" : "First degree perineal tear during delivery with postnatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199917001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3657563, + "CONCEPT_NAME" : "First trimester bleeding", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1323351000000104", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4239938, + "CONCEPT_NAME" : "First trimester pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57630001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4147431, + "CONCEPT_NAME" : "Flaccid newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "34761004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4096531, + "CONCEPT_NAME" : "Flaccid uterus after delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "249202006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4140071, + "CONCEPT_NAME" : "Floppy infant syndrome", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "33010005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42597080, + "CONCEPT_NAME" : "Foaling paralysis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "318771000009109", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED Veterinary", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37399364, + "CONCEPT_NAME" : "Folinic acid responsive seizure syndrome", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "717276003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110274, + "CONCEPT_NAME" : "Follicle puncture for oocyte retrieval, any method", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "58970", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4217642, + "CONCEPT_NAME" : "Footling breech delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72492007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4075187, + "CONCEPT_NAME" : "Forceps cephalic delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177161009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4114637, + "CONCEPT_NAME" : "Forceps delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "302383004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435022, + "CONCEPT_NAME" : "Forceps delivery - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200130005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4032761, + "CONCEPT_NAME" : "Forceps delivery, face to pubes", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "236977006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4324549, + "CONCEPT_NAME" : "Forceps delivery with rotation of fetal head", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "71166009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004711, + "CONCEPT_NAME" : "Forceps rotation of fetal head", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72.4", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "3-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004702, + "CONCEPT_NAME" : "Forceps, vacuum, and breech delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "2-dig nonbill code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 198495, + "CONCEPT_NAME" : "Fourth degree perineal laceration", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "399031001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4059969, + "CONCEPT_NAME" : "Fourth degree perineal laceration involving anal mucosa", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16950007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4143634, + "CONCEPT_NAME" : "Fourth degree perineal laceration involving rectal mucosa", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "34262005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 194429, + "CONCEPT_NAME" : "Fourth degree perineal tear during delivery - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199934009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 198496, + "CONCEPT_NAME" : "Fourth degree perineal tear during delivery with postnatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199935005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 81685, + "CONCEPT_NAME" : "Fracture of clavicle due to birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206209004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4071595, + "CONCEPT_NAME" : "Fracture of femur due to birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206213006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4070316, + "CONCEPT_NAME" : "Fracture of long bone, as birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "20596003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36716537, + "CONCEPT_NAME" : "Fracture of mandible due to birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "722573001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4048135, + "CONCEPT_NAME" : "Fracture of skull due to birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206215004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4273394, + "CONCEPT_NAME" : "Fracture of spine due to birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64728002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4244672, + "CONCEPT_NAME" : "Frank breech delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "38479009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4096237, + "CONCEPT_NAME" : "Free beta human chorionic gonadotrophin measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "250658009", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44807244, + "CONCEPT_NAME" : "Free beta human chorionic gonadotrophin multiple of median measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "816021000000107", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4034159, + "CONCEPT_NAME" : "Fresh stillbirth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237365001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4032737, + "CONCEPT_NAME" : "Frozen embryo transfer", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "236894009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2721243, + "CONCEPT_NAME" : "Frozen embryo transfer procedure cancelled before transfer, case rate", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "S4018", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2721241, + "CONCEPT_NAME" : "Frozen in vitro fertilization cycle, case rate", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "S4016", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4296686, + "CONCEPT_NAME" : "Full postnatal examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "384635005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4003230, + "CONCEPT_NAME" : "Functional hyperinsulinism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12002009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4104821, + "CONCEPT_NAME" : "Furuncle of umbilicus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "29199007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4338674, + "CONCEPT_NAME" : "Galactocele associated with childbirth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87840008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4068274, + "CONCEPT_NAME" : "Galactocele not associated with childbirth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "17413005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 74716, + "CONCEPT_NAME" : "Galactorrhea associated with childbirth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "71639005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061187, + "CONCEPT_NAME" : "Galactorrhea due to non-obstetric cause", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198115002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4066260, + "CONCEPT_NAME" : "Galactorrhea in pregnancy and the puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200444007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 74440, + "CONCEPT_NAME" : "Galactorrhea in pregnancy and the puerperium - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200446009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 74717, + "CONCEPT_NAME" : "Galactorrhea in pregnancy and the puerperium - delivered with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200447000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 76772, + "CONCEPT_NAME" : "Galactorrhea in pregnancy and the puerperium with antenatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200448005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443328, + "CONCEPT_NAME" : "Galactorrhea in pregnancy and the puerperium with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200449002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 79884, + "CONCEPT_NAME" : "Galactorrhea not associated with childbirth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "78622004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4127104, + "CONCEPT_NAME" : "Gamete intrafallopian transfer", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "236912008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4072421, + "CONCEPT_NAME" : "Gamete intrauterine transfer", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "176843009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110276, + "CONCEPT_NAME" : "Gamete, zygote, or embryo intrafallopian transfer, any method", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "58976", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4172870, + "CONCEPT_NAME" : "Gastritis of newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276527006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442777, + "CONCEPT_NAME" : "Generalized infection during labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "66844003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 77052, + "CONCEPT_NAME" : "Generally contracted pelvis - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199405005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 76750, + "CONCEPT_NAME" : "Generally contracted pelvis with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199406006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061522, + "CONCEPT_NAME" : "General practitioner unit delivery booking", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169622009", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4091200, + "CONCEPT_NAME" : "Genital tear resulting from childbirth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "249219008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 196177, + "CONCEPT_NAME" : "Genital tract AND/OR pelvic infection following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "111425004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45768620, + "CONCEPT_NAME" : "Genital tract infection in puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "707089008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 77340, + "CONCEPT_NAME" : "Genitourinary tract infection in pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "267204006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 81357, + "CONCEPT_NAME" : "Genitourinary tract infection in pregnancy - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199106001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 80778, + "CONCEPT_NAME" : "Genitourinary tract infection in pregnancy - delivered with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199107005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 74415, + "CONCEPT_NAME" : "Genitourinary tract infection in pregnancy - not delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199108000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4178165, + "CONCEPT_NAME" : "Gestation 14 - 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428567001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181468, + "CONCEPT_NAME" : "Gestation 9- 13 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428930004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4173324, + "CONCEPT_NAME" : "Gestation abnormality", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276614003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3048230, + "CONCEPT_NAME" : "Gestational age in weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "49051-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Clinical Observation" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3045991, + "CONCEPT_NAME" : "Gestational age of fetus by Amniocentesis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "33901-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40481315, + "CONCEPT_NAME" : "Gestational age unknown", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "441924001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3036844, + "CONCEPT_NAME" : "Gestational age US composite estimate", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "11888-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Clinical Observation" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4221190, + "CONCEPT_NAME" : "Gestational choriocarcinoma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "417570003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3183244, + "CONCEPT_NAME" : "Gestational diabetes during pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "5620001000004106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "Nebraska Lexicon", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4024659, + "CONCEPT_NAME" : "Gestational diabetes mellitus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "11687002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4326434, + "CONCEPT_NAME" : "Gestational diabetes mellitus class A-1", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "75022004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4263902, + "CONCEPT_NAME" : "Gestational diabetes mellitus class A-2", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46894009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37018765, + "CONCEPT_NAME" : "Gestational diabetes mellitus complicating pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40801000119106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443214, + "CONCEPT_NAME" : "Gestational edema", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237285000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442565, + "CONCEPT_NAME" : "Gestational edema without hypertension", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "77376005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4058113, + "CONCEPT_NAME" : "Gestational edema with proteinuria", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199141002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4214186, + "CONCEPT_NAME" : "Gestational trophoblastic disease", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "416402001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530970, + "CONCEPT_NAME" : "Gestational trophoblastic lesion", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609516006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530973, + "CONCEPT_NAME" : "Gestational trophoblastic neoplasia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609519004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181162, + "CONCEPT_NAME" : "Gestation greater than 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429715006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4324063, + "CONCEPT_NAME" : "Gestation less than 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428566005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438542, + "CONCEPT_NAME" : "Gestation less than 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313178001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45770261, + "CONCEPT_NAME" : "Gestation less than 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "925561000000100", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4322726, + "CONCEPT_NAME" : "Gestation less than 9 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428058009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4242241, + "CONCEPT_NAME" : "Gestation period, 10 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "38039008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4174506, + "CONCEPT_NAME" : "Gestation period, 11 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "50367001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4197245, + "CONCEPT_NAME" : "Gestation period, 12 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "79992004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4266517, + "CONCEPT_NAME" : "Gestation period, 13 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "62333002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4248725, + "CONCEPT_NAME" : "Gestation period, 14 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72846000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4283690, + "CONCEPT_NAME" : "Gestation period, 15 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6678005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4049621, + "CONCEPT_NAME" : "Gestation period, 16 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15633004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4277749, + "CONCEPT_NAME" : "Gestation period, 17 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65683006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4097608, + "CONCEPT_NAME" : "Gestation period, 18 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25026004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181751, + "CONCEPT_NAME" : "Gestation period, 19 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54318006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4337360, + "CONCEPT_NAME" : "Gestation period, 1 week", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87178007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4051642, + "CONCEPT_NAME" : "Gestation period, 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "23464008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4185780, + "CONCEPT_NAME" : "Gestation period, 21 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "41438001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4274955, + "CONCEPT_NAME" : "Gestation period, 22 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65035007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336226, + "CONCEPT_NAME" : "Gestation period, 23 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86883006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439922, + "CONCEPT_NAME" : "Gestation period, 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313179009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435640, + "CONCEPT_NAME" : "Gestation period, 25 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72544005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444023, + "CONCEPT_NAME" : "Gestation period, 26 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48688005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432430, + "CONCEPT_NAME" : "Gestation period, 27 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46906003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444461, + "CONCEPT_NAME" : "Gestation period, 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90797000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444417, + "CONCEPT_NAME" : "Gestation period, 29 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45139008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4220085, + "CONCEPT_NAME" : "Gestation period, 2 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "82118009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434484, + "CONCEPT_NAME" : "Gestation period, 30 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "71355009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433864, + "CONCEPT_NAME" : "Gestation period, 31 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64920003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442558, + "CONCEPT_NAME" : "Gestation period, 32 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7707000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441678, + "CONCEPT_NAME" : "Gestation period, 33 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "78395001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443874, + "CONCEPT_NAME" : "Gestation period, 34 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13763000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444267, + "CONCEPT_NAME" : "Gestation period, 35 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84132007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438543, + "CONCEPT_NAME" : "Gestation period, 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57907009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442355, + "CONCEPT_NAME" : "Gestation period, 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43697006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443871, + "CONCEPT_NAME" : "Gestation period, 38 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13798002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435655, + "CONCEPT_NAME" : "Gestation period, 39 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80487005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4326232, + "CONCEPT_NAME" : "Gestation period, 3 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "74952004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442769, + "CONCEPT_NAME" : "Gestation period, 41 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63503002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444067, + "CONCEPT_NAME" : "Gestation period, 42 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36428009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4195157, + "CONCEPT_NAME" : "Gestation period, 4 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "44398003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4290009, + "CONCEPT_NAME" : "Gestation period, 5 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "37005007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4313026, + "CONCEPT_NAME" : "Gestation period, 6 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86801005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4270513, + "CONCEPT_NAME" : "Gestation period, 7 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63110000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4132434, + "CONCEPT_NAME" : "Gestation period, 8 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26690008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4245908, + "CONCEPT_NAME" : "Gestation period, 9 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "931004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 762907, + "CONCEPT_NAME" : "Gestation period greater than or equal to 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "433601000124106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4169089, + "CONCEPT_NAME" : "Glucagon resistance", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48839007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4236507, + "CONCEPT_NAME" : "Glucoglycinuria", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "9111008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4042066, + "CONCEPT_NAME" : "Glucometer blood glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "166900001", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3003994, + "CONCEPT_NAME" : "Glucose-6-Phosphate dehydrogenase [Enzymatic activity/mass] in Red Blood Cells", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "32546-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3037524, + "CONCEPT_NAME" : "Glucose-6-Phosphate dehydrogenase [Enzymatic activity/volume] in Red Blood Cells", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "2357-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2212367, + "CONCEPT_NAME" : "Glucose, blood by glucose monitoring device(s) cleared by the FDA specifically for home use", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "82962", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2212360, + "CONCEPT_NAME" : "Glucose; blood, reagent strip", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "82948", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2212357, + "CONCEPT_NAME" : "Glucose, body fluid, other than blood", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "82945", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4094447, + "CONCEPT_NAME" : "Glucose concentration, test strip measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "250417005", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4017758, + "CONCEPT_NAME" : "Glucose CSF/glucose plasma ratio measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "104685000", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4077514, + "CONCEPT_NAME" : "Glucose in sample", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "275794004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3049746, + "CONCEPT_NAME" : "Glucose.IV [Mass] of Dose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "47621-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4275336, + "CONCEPT_NAME" : "Glucose level - finding", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "365811003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3025893, + "CONCEPT_NAME" : "Glucose [Mass/time] in 10 hour Urine", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "21307-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40762090, + "CONCEPT_NAME" : "Glucose [Mass/time] in 18 hour Urine", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "58997-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40758981, + "CONCEPT_NAME" : "Glucose [Mass/time] in 24 hour Stool", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55860-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3023544, + "CONCEPT_NAME" : "Glucose [Mass/time] in 6 hour Urine", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "18227-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3005943, + "CONCEPT_NAME" : "Glucose [Mass/time] in 8 hour Urine", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "21306-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3016083, + "CONCEPT_NAME" : "Glucose [Mass/volume] in 24 hour Peritoneal dialysis fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12629-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3014014, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Amniotic fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6300-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3031266, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Arterial blood", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "41651-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3048865, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Blood --2 hours post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "49134-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3034530, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Blood --2 hours post meal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6689-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3011424, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Blood by Automated test strip", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "2340-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3014053, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Blood by Test strip manual", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "2341-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36304599, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Blood --post meal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87422-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36303387, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Blood --pre-meal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "88365-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3019210, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Body fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "2344-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3004077, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Capillary blood", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "32016-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3038962, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Capillary blood --baseline", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40858-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3034962, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Capillary blood by Glucometer", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "41653-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3022548, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Cerebral spinal fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "2342-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36031895, + "CONCEPT_NAME" : "Glucose [Mass/volume] in DBS", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "96594-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3023572, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Dialysis fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "2343-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3002436, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Dialysis fluid --2 hour specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12612-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3001346, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Dialysis fluid --4 hour specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12613-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3016680, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Gastric fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14386-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3045908, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Milk --2 hours post meal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43278-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3030618, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Pericardial fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "33405-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3015544, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Peritoneal dialysis fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12628-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3020909, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Peritoneal dialysis fluid --1st specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12630-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3033618, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Peritoneal dialysis fluid --2 hour dwell specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12608-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3011789, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Peritoneal dialysis fluid --2nd specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12631-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3015046, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Peritoneal dialysis fluid --3rd specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12632-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3034466, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Peritoneal dialysis fluid --4 hour dwell specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12609-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40759281, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Peritoneal dialysis fluid --4 hours post peritoneal dialysis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "56160-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3008572, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Peritoneal dialysis fluid --4th specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12633-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3016726, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Peritoneal dialysis fluid --6th specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12635-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3017261, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Peritoneal dialysis fluid --7th specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12636-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3004251, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Peritoneal dialysis fluid --8th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12637-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40763914, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Peritoneal dialysis fluid --baseline", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "61153-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3000607, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Peritoneal dialysis fluid --pre dialysis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12607-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3002240, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Peritoneal fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "2347-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3010075, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Peritoneal fluid --12 hours post peritoneal dialysis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12220-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3049817, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Peritoneal fluid --24 hours post peritoneal dialysis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48787-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3004617, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Peritoneal fluid --2 hours post peritoneal dialysis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12218-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3003462, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Peritoneal fluid --4 hours post peritoneal dialysis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12219-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3003403, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Pleural fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "2346-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3004501, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "2345-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3041015, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --100 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40004-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3039562, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --10.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40259-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3027276, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --105 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "21308-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3043908, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --10.75 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40260-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3026728, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --10 AM specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16165-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3025211, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --10 hours fasting", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10450-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3006760, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --10 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12645-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3017592, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --10 minutes post 0.5 g/kg glucose IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1498-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37020527, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --10 minutes post dose glucagon", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "92819-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3052646, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --10 minutes post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48984-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3026020, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --10 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12654-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3006333, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --10 minutes pre XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12651-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3049496, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --10 PM specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48991-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3032780, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --10th specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "50208-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3036283, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --10th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12622-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3041875, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --110 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40005-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3041757, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --11.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40008-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3012635, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --11 AM specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16166-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3006325, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --11 hour post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26817-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3036807, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --11th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12623-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3044527, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --12.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40009-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3048585, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --12 AM specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48992-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3002009, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --12 hours fasting", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1554-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3007781, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --12 hours post 50 g lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "18354-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3024583, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --12 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12647-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3041863, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --12 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40028-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3048856, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --12 PM specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48988-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3023379, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --12th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12624-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3043648, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --13.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40011-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040375, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --13 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40010-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3039582, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --13 minutes pre XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40261-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3013802, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --13th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12625-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040872, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --14 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40012-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3044252, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --14 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40029-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3014163, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --14th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12626-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3038855, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --15.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40013-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3021232, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --1.5 hours post 0.05-0.15 U insulin/kg IV 12 hours fasting", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1493-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3033778, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --1.5 hours post 0.5 g/kg glucose IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1492-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3012415, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --1.5 hours post 100 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1494-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3008804, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --1.5 hours post 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1496-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37020666, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --1.5 hours post dose cloNIDine", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "92669-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3039397, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --1.5 hours post dose fructose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "51767-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3017053, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --1.5 hours post dose insulin IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1497-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3001975, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --1.5 hours post dose lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26779-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 21494214, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --1.5 hours post meal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80959-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3039851, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --1.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40003-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36660183, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --15 min post meal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "95078-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3029871, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --15 minutes post 0.1 U/kg insulin", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "50751-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3034771, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --15 minutes post 100 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "11142-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 21492336, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --15 minutes post dose arginine+insulin", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "79193-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3025113, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --15 minutes post dose lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12648-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3005787, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --15 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12639-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040739, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --15 minutes pre XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "39999-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3009006, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --15th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12627-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040457, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --16 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40014-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3038995, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --16 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40030-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3038543, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --17.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40015-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3041353, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --18.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40017-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3038958, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --18 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40016-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040694, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --19.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40018-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040940, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --19 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40031-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3043678, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --1 day post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40024-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3009245, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --1 hour post 0.05-0.15 U insulin/kg IV post 12H CFst", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1500-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3017892, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --1 hour post 0.5 g/kg glucose IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1499-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3014716, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --1 hour post 100 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1501-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3008191, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --1 hour post 1.2 g/kg lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "30344-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3016699, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --1 hour post 50 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1504-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3007332, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --1 hour post 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1507-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 21492339, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --1 hour post dose arginine+insulin", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "79196-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37021274, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --1 hour post dose cloNIDine", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "92668-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3050405, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --1 hour post dose fructose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48605-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3010300, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --1 hour post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "20438-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3017345, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --1 hour post dose insulin IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1510-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3002310, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --1 hour post dose lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26778-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3026071, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --1 hour post meal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10449-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3025232, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --1 hour post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12646-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3004723, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --1 minute post 0.5 g/kg glucose IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1512-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40760467, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --1 minute post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57350-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3032986, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --1st specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "50206-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3035125, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --1st specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12615-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3044574, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --20.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40020-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040904, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --20 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40019-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3007820, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --20 minutes post 0.5 g/kg glucose IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1513-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3038316, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --20 minutes post 50 g lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "53928-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37020873, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --20 minutes post dose glucagon", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "92818-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3052659, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --20 minutes post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48985-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3026550, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --20 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12655-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3048282, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --20 minutes pre XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48983-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3041620, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --21.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40021-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40759870, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --2.17 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "56751-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3041009, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --22 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40022-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3043637, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --22 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40032-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3041860, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --23.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40023-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3015930, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --2.5 hours post 100 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "9375-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3000545, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --2.5 hours post 50 g lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13865-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040983, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --2.5 hours post dose fructose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "51766-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3004428, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --2.5 hours post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26554-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36660184, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --2.5 hours post meal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "95103-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3023776, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --2.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "29332-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3043930, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --25 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40037-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3038549, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --25 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40033-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3042343, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --26 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40038-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3041056, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --27 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40039-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3041864, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --27 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40034-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3042329, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --28 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40040-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3041872, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --29 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40041-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040748, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --2 days post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40045-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3006717, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --2 hours post 100 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1514-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3007092, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --2 hours post 1.2 g/kg lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "30345-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3042637, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --2 hours post 50 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "41024-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3025673, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --2 hours post 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1518-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37021474, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --2 hours post dose cloNIDine", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "92670-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3041799, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --2 hours post dose fructose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "51769-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3026300, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --2 hours post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "20436-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3019876, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --2 hours post dose lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26780-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3021737, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --2 hours post meal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1521-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3000845, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --2 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12610-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3022079, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --2 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12652-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3032779, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --2nd specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "50212-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3035352, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --2nd specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12616-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3010044, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --2 PM specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16167-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040420, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --30 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40042-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36660135, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --30 min post meal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "95105-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3025740, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --30 minutes post 0.05-0.15 U insulin/kg IV post 12H CFst", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1523-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3026571, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --30 minutes post 0.1 U/kg insulin", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1524-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3025136, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --30 minutes post 0.5 g/kg glucose IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1522-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3030070, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --30 minutes post 1.2 g/kg lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "33024-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3013604, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --30 minutes post 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1527-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 21492337, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --30 minutes post dose arginine+insulin", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "79194-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37019755, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --30 minutes post dose cloNIDine", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "92667-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3050128, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --30 minutes post dose fructose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48607-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37020288, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --30 minutes post dose glucagon", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "92817-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3028247, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --30 minutes post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "20439-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3010722, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --30 minutes post dose insulin IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1528-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3003412, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --30 minutes post dose lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26777-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3041024, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --30 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40263-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3041720, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --30 minutes pre XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "39998-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3042058, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --31 hour post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40043-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3019013, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --3.5 hours post 100 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "9376-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3003334, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --3.5 hours post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26555-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3007427, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --3.5 hours post dose lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12650-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36659783, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --3.5 hours post meal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "95104-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3002544, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --3.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "29329-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3038570, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --36 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40044-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3053004, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --3 AM specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48993-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3027457, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --3 hours post 100 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1530-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3005996, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --3 hours post 1.2 g/kg lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "30346-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3009582, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --3 hours post 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1533-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3039937, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --3 hours post dose fructose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "51768-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3027198, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --3 hours post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "20437-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3020407, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --3 hours post dose lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26781-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36659954, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --3 hours post meal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "95106-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3014737, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --3 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "18342-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3010118, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --3 minutes post 0.5 g/kg glucose IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1534-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040476, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --3 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40025-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3042431, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --3 minutes pre XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40262-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3010030, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --3 PM specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16168-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3030416, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --3rd specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "50213-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3035858, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --3rd specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12617-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3015323, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --40 minutes post 0.5 g/kg glucose IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1535-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3039166, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --40 minutes post 50 g lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "53929-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3027980, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --40 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12657-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3022574, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --4.5 hours post 100 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "9377-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36660356, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --4.5 hours post meal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "95107-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3038965, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --4.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40035-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3020260, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --45 minutes post 100 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "11143-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 21492338, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --45 minutes post dose arginine+insulin", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "79195-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3023186, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --45 minutes post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26539-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3018998, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --45 minutes post dose insulin IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1536-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3028112, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --45 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "21309-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3003541, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --4 hour specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12611-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3024644, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --4 hours post 50 g lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13607-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3005487, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --4 hours post dose lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26782-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36660344, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --4 hours post meal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "95108-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3021924, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --4 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "29330-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3013145, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --4 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12656-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3032719, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --4th specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "50214-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40761077, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --4th specimen post lactose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57971-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3009397, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --4th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12618-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3013881, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --50 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12658-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3005850, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --5.5 hours post 100 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "9378-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3035415, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --5.5 hours post 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14137-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3039849, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --5.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40036-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3052976, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --5 hours post 50 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48810-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3033312, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --5 hours post 50 g lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13866-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3021860, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --5 hours post 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1542-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3004389, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --5 hours post dose lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26783-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36660564, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --5 hours post meal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "95109-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3023243, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "29331-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3022933, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --5 minutes post 0.5 g/kg glucose IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1543-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040592, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --5 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40001-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3041921, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --5 minutes pre XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40000-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3012792, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --5 PM specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16170-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3028944, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --5th specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "50215-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40761078, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --5th specimen post lactose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57972-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3017083, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --6.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12640-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3050134, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --6 AM specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48994-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3023466, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --6 hours post 100 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1544-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3004681, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --6 hours post 50 g lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "18353-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3022285, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --6 hours post 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6760-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3023125, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --6 hours post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26544-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3004351, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --6 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "29412-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3038687, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --6 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40026-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3050095, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --6 PM specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48989-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3032230, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --6th specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "50216-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3011296, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --70 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12659-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3018151, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --7.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12642-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3008349, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --75 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "21310-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3019431, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --7 hours post meal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12614-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3017328, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --7 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12641-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3031928, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --7th specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "50207-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3041745, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --80 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40002-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3039229, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --8.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40006-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3052381, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --8 AM specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48986-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3024762, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --8 hours fasting", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "17865-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3004766, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --8 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12643-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3025181, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --8 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12653-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3049466, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --8 PM specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48990-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3029014, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --8th specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "50217-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3000931, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --8th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "27432-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3042186, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --9.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40007-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3007864, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --9 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12644-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3038525, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --9 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40027-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3031929, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --9th specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "50218-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3035759, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --9th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12621-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3002666, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --baseline", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1547-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3025866, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --post 50 g glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "20441-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3026536, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --post meal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16915-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3025398, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16914-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3001511, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --pre 0.5 g/kg glucose IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1548-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3020058, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --pre 100 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1549-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3019474, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --pre 12 hour fast", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1550-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3005030, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --pre 50 g lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1551-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3003435, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --pre 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1552-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3049846, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --pre dose fructose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48606-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3002332, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --pre dose insulin IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1553-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3006887, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --pre dose lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12638-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040820, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --pre-meal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "53049-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44816672, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum, Plasma or Blood", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "74774-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3042201, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Specimen --1st specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40874-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3041915, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Specimen --3rd specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40875-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3051368, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Stool", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48036-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40760907, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Stool by Post hydrolysis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57797-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3041397, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Total parental nutrition", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "53050-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3020399, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Urine", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "2350-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3020632, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Urine --12 hours fasting", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1555-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3015996, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Urine --1.5 hours post 100 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1495-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3001020, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Urine --1.5 hours post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25678-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3016159, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Urine --1 hour post 100 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1503-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3017222, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Urine --1 hour post 50 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1505-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3027145, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Urine --1 hour post 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1509-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3010115, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Urine --1 hour post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25664-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3032276, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Urine --1 hour post dose lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "42611-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40759245, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Urine --1 hour post meal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "56124-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3024540, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Urine --2 hours post 100 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1516-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3006289, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Urine --2 hours post 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1520-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3022314, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Urine --2 hours post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25667-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3034003, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Urine --2 hours post dose lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "42613-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3037787, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Urine --30 minutes post 100 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1491-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3011088, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Urine --30 minutes post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25670-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3028287, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Urine --3 hours post 100 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1532-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40761076, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Urine --3 hours post 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57970-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3010956, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Urine --3 hours post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26540-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3031651, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Urine --3 hours post dose lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "42604-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3005231, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Urine --4 hours post 100 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1538-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3000272, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Urine --4 hours post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25675-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3031105, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Urine --4 hours post dose lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "42629-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3012009, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Urine --5 hours post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26542-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3032809, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Urine --5 hours post dose lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "42631-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3019571, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Urine --6 hours post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26545-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3029102, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Urine --6 hours post dose lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "42609-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3039896, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Urine by Automated test strip", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "53328-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3024629, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Urine by Test strip", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "5792-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3042145, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Urine by Test strip --1st specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40849-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3039280, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Urine by Test strip --2nd specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40850-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3043210, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Urine by Test strip --3rd specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45204-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3042982, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Urine by Test strip --4th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45205-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3043057, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Urine by Test strip --5th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45206-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3035214, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Urine collected for unspecified duration", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "35662-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3033408, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Venous blood", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "41652-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3004676, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Vitreous fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16903-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757617, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Water", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54486-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 1002230, + "CONCEPT_NAME" : "Glucose [Mass/volume] mean in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "93791-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3005131, + "CONCEPT_NAME" : "Glucose mean value [Mass/volume] in Blood Estimated from glycated hemoglobin", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "27353-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4149519, + "CONCEPT_NAME" : "Glucose measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36048009", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4229586, + "CONCEPT_NAME" : "Glucose measurement, 2 hour post prandial", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "88856000", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4144235, + "CONCEPT_NAME" : "Glucose measurement, blood", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "33747003", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4018315, + "CONCEPT_NAME" : "Glucose measurement, blood, test strip", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "104686004", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4151548, + "CONCEPT_NAME" : "Glucose measurement, body fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "269926009", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4230393, + "CONCEPT_NAME" : "Glucose measurement by monitoring device", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "359776002", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4286945, + "CONCEPT_NAME" : "Glucose measurement, CSF", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "69125006", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4036846, + "CONCEPT_NAME" : "Glucose measurement estimated from glycated hemoglobin", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "117346004", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4182052, + "CONCEPT_NAME" : "Glucose measurement, fasting", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "52302001", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4218282, + "CONCEPT_NAME" : "Glucose measurement, plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72191006", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4017078, + "CONCEPT_NAME" : "Glucose measurement, post glucose dose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "104690002", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4018317, + "CONCEPT_NAME" : "Glucose measurement, quantitative", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "104688003", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4249006, + "CONCEPT_NAME" : "Glucose measurement, random", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "73128004", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4331286, + "CONCEPT_NAME" : "Glucose measurement, serum", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "22569008", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4018316, + "CONCEPT_NAME" : "Glucose measurement, tolbutamide tolerance test", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "104687008", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4149883, + "CONCEPT_NAME" : "Glucose measurement, urine", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "30994003", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40762854, + "CONCEPT_NAME" : "Glucose [Molar concentration difference] in Serum or Plasma --1.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59793-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40762853, + "CONCEPT_NAME" : "Glucose [Molar concentration difference] in Serum or Plasma --1 hour post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59792-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40762855, + "CONCEPT_NAME" : "Glucose [Molar concentration difference] in Serum or Plasma --2 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59794-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40762852, + "CONCEPT_NAME" : "Glucose [Molar concentration difference] in Serum or Plasma --30 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59791-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40762856, + "CONCEPT_NAME" : "Glucose [Molar concentration difference] in Serum or Plasma --3 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59795-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40762857, + "CONCEPT_NAME" : "Glucose [Molar concentration difference] in Serum or Plasma --4 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59796-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40762858, + "CONCEPT_NAME" : "Glucose [Molar concentration difference] in Serum or Plasma --5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59797-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44816584, + "CONCEPT_NAME" : "Glucose [Moles/time] in 12 hour Urine", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "74686-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3042439, + "CONCEPT_NAME" : "Glucose [Moles/time] in 24 hour Body fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40366-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3000361, + "CONCEPT_NAME" : "Glucose [Moles/time] in 24 hour Urine", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15077-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44816585, + "CONCEPT_NAME" : "Glucose [Moles/volume] in 12 hour Urine", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "74687-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3046229, + "CONCEPT_NAME" : "Glucose [Moles/volume] in 24 hour Dialysis fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45297-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3035381, + "CONCEPT_NAME" : "Glucose [Moles/volume] in 24 hour Urine", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25916-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3044242, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Arterial blood", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "39481-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3020491, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Blood", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15074-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43055143, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Blood by Automated test strip", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72516-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040151, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Capillary blood", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "51596-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3021525, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Capillary blood --2 hours post meal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14760-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3001501, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Capillary blood by Glucometer", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14743-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40762874, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Capillary blood by Glucometer --7 AM specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59813-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3020044, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Cerebral spinal fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14744-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 46235203, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Cerebral spinal fluid --1st tube", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "76669-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 46235204, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Cerebral spinal fluid --2nd tube", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "76670-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 46235205, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Cerebral spinal fluid --3rd tube", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "76671-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 46235206, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Cerebral spinal fluid --4th tube", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "76672-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3051101, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Cord blood", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "47995-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3020722, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Dialysis fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15075-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3052839, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Dialysis fluid --2 hour specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46221-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3051873, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Dialysis fluid --4 hour specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46222-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3051002, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Dialysis fluid --overnight", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46223-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040806, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Nonbiological fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "53084-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3042173, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Pericardial fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "39479-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3036257, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Peritoneal dialysis fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14746-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 21491017, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Peritoneal dialysis fluid --2 hour dwell specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "78534-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 21491018, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Peritoneal dialysis fluid --4 hour dwell specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "78535-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 21492444, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Peritoneal dialysis fluid --overnight dwell", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "79264-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3023044, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Peritoneal fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14748-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3036782, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Pleural fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14747-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3013826, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14749-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3038566, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --105 minutes post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40286-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3044548, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --10.75 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40174-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040116, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --10 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40173-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757532, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --10 minutes post dose glucagon", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54401-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3001022, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --10 minutes post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "32359-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3039558, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --10 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40154-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757379, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --10 minutes pre dose glucagon", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54248-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3038565, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --10 minutes pre XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40151-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757524, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --10th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54393-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040402, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --11.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40175-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40762873, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --11 AM specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59812-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 46236371, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --11 hour post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "77681-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757525, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --11th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54394-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3038251, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --12.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40177-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3043536, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --12 AM specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45052-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3041470, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --12 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40176-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3041028, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --12 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40204-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3045291, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --12 PM specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45054-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757526, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --12th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54395-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040937, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --13.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40179-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3003912, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --1.3 hours post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "30265-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757397, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --1.3 hours post dose insulin IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54266-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3041766, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --13 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40178-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3038257, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --13 minutes pre XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40195-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3038390, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --14 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40180-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040594, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --14 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40205-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3038991, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --15.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40181-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757408, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --1.5 hour post dose ornithine alpha-ketoglutarate", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54277-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3036375, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --1.5 hours post 50 g lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14751-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40758480, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --1.5 hours post 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55351-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3039763, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --1.5 hours post dose betaxolol", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "53487-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3036895, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --1.5 hours post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14752-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757398, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --1.5 hours post dose insulin IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54267-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3042216, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --1.5 hours post dose lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40278-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 46234926, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --1.5 hours post dose triple bolus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "75405-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3042995, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --1.5 hours post meal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "44919-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3021258, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --1.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25679-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44786741, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --15 minutes post 50 g lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "74084-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757380, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --15 minutes post dose glucagon", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54249-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3009877, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --15 minutes post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25663-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757391, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --15 minutes post dose insulin IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54260-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43534070, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --15 minutes post dose lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72896-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757402, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --15 minutes post dose ornithine alpha-ketoglutarate", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54271-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3042146, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --15 minutes post dose triple bolus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40319-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3038581, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --15 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40155-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3050625, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --15 minutes pre dose betaxolol", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "53481-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757381, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --15 minutes pre dose glucagon", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54250-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3050771, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --15 minutes pre dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48109-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757392, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --15 minutes pre dose insulin IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54261-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757403, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --15 minutes pre dose ornithine alpha-ketoglutarate", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54272-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3041787, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --15 minutes pre XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40150-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3007619, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --1.6 hours post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "30266-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3044219, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --16 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40182-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040442, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --16 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40206-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3041160, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --17.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40183-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3043956, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --18.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40185-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040673, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --18 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40184-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3041760, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --19.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40186-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3042342, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --19 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40207-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040567, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --1 day post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40192-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3037432, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --1 hour post 100 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14753-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3020869, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --1 hour post 50 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14754-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3011761, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --1 hour post 50 g lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14755-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3039422, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --1 hour post 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "51597-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3051280, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --1 hour post dose betaxolol", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "53486-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3015024, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --1 hour post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14756-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757396, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --1 hour post dose insulin IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54265-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040655, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --1 hour post dose lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40277-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757407, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --1 hour post dose ornithine alpha-ketoglutarate", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54276-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3044516, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --1 hour post dose triple bolus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40322-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040659, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --1 hour post meal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40287-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3015621, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --1 hour post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25665-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757523, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --1st specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54392-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3038672, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --20.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40188-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3038264, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --20 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40187-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42868432, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --20 minutes post 50 g lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "69943-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757382, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --20 minutes post dose glucagon", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54251-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3018582, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --20 minutes post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "30263-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42868430, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --20 minutes post dose lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "69941-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3039826, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --20 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40156-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3041486, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --20 minutes pre XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40194-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3043922, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --21.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40189-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3043635, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --22 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40190-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3041604, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --22 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40208-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3039788, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --23.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40191-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3006520, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --2.3 hours post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "30267-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757401, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --2.5 hour post dose ornithine alpha-ketoglutarate", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54270-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3043514, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --2.5 hours post 50 g lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45298-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40758510, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --2.5 hours post 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55381-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040060, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --2.5 hours post dose betaxolol", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "53480-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3019047, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --2.5 hours post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25666-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757390, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --2.5 hours post dose insulin IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54259-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43534069, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --2.5 hours post dose lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72895-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3041159, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --2.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40161-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040683, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --25 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40214-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040867, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --25 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40209-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3034101, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --2.6 hours post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "30251-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3041140, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --26 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40215-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3042029, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --27 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40216-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3038395, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --27 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40210-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3044269, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --28 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40217-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040870, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --29 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40218-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040366, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --2 days post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40222-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757400, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --2 hour post dose ornithine alpha-ketoglutarate", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54269-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3009154, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --2 hours post 100 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14757-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3016160, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --2 hours post 50 g lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14758-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3017538, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --2 hours post 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14995-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3038621, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --2 hours post dose betaxolol", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "53476-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3016701, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --2 hours post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14759-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757389, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --2 hours post dose insulin IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54258-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3041638, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --2 hours post dose lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40279-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040613, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --2 hours post dose triple bolus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40323-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3012413, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --2 hours post meal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14761-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757383, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --2 minutes post dose glucagon", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54252-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040578, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --2 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40198-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757527, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --2nd specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54396-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040603, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --30 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40219-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3015980, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --30 minutes post 50 g lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14762-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3005793, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --30 minutes post 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "32319-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3039178, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --30 minutes post dose betaxolol", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "53483-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3008799, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --30 minutes post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14763-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757394, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --30 minutes post dose insulin IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54263-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040908, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --30 minutes post dose lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40276-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757405, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --30 minutes post dose ornithine alpha-ketoglutarate", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54274-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3041786, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --30 minutes post dose triple bolus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40320-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3016567, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --30 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25671-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3039739, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --30 minutes pre dose betaxolol", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "53484-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3044550, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --30 minutes pre XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40149-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3038838, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --31 hour post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40220-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3022161, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --3.3 hours post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "30252-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3000992, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --3.5 hours post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25669-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3044555, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --3.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40211-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3013026, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --3.6 hours post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "30253-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3041609, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --36 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40221-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3017048, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --3 hours post 100 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14764-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3017091, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --3 hours post 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "32320-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3038314, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --3 hours post dose betaxolol", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "53482-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3017589, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --3 hours post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14765-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3041489, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --3 hours post dose lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40280-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757404, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --3 hours post dose ornithine alpha-ketoglutarate", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54273-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3041136, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --3 hours post dose triple bolus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40324-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3042487, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --3 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40162-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757393, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --3 hours pre dose insulin IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54262-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3038420, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --3 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40199-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040892, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --3 minutes pre XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40197-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40762876, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --3 PM specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59815-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757528, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --3rd specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54397-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42868433, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --40 minutes post 50 g lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "69944-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3014194, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --40 minutes post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "30264-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42868431, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --40 minutes post dose lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "69942-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040104, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --40 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40157-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3022201, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --4.5 hours post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25672-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3043978, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --4.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40212-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 46235368, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --45 minutes post 50 g lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "75637-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40758481, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --45 minutes post 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55352-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3051231, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --45 minutes post dose betaxolol", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "53485-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3023228, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --45 minutes post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25673-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757395, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --45 minutes post dose insulin IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54264-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3047279, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --45 minutes post dose lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45299-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757406, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --45 minutes post dose ornithine alpha-ketoglutarate", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54275-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3044218, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --45 minutes post dose triple bolus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40321-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3023758, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --45 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25674-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3039997, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --4 AM specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "53474-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3017634, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --4 hours post 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "32321-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3017890, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --4 hours post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14766-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3042489, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --4 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40163-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757384, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --4 minutes post dose glucagon", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54253-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3039807, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --4 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40200-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3045318, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --4 PM specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45055-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757529, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --4th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54398-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3044562, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --50 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40158-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3003824, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --5.5 hours post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25676-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3041490, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --5.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40213-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3018175, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --5 hours post 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "32322-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3004724, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --5 hours post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14767-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040107, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40164-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3049428, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --5 minutes post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "47859-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040634, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --5 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40153-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757385, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --5 minutes pre dose glucagon", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54254-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040641, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --5 minutes pre XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40152-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757627, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --5th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54496-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3041895, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --6.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40166-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3002654, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --6 hours post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25677-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3041454, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --6 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40165-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757386, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --6 minutes post dose glucagon", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54255-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040468, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --6 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40201-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757628, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --6th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54497-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3041763, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --70 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40159-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3039297, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --7.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40168-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3038727, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --75 minutes post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40285-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040099, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --75 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40160-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40762875, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --7 AM specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59814-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3038557, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --7 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40167-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757629, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --7th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54498-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3038422, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --8.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40170-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3045067, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --8 AM specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45053-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3041615, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --8 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40169-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757387, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --8 minutes post dose glucagon", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54256-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3039224, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --8 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40202-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040896, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --8 minutes pre XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40196-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3043032, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --8 PM specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45056-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757630, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --8th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54499-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3041856, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --9.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40172-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3041903, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --9 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40171-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040710, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --9 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40203-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757530, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --9th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54399-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3007821, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --baseline", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14768-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757626, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --post dialysis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54495-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3041930, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --post meal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "53094-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3041971, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "53093-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42868682, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --pre 100 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "70208-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3006669, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --pre 12 hour fast", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14769-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3019765, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --pre 50 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25680-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3004067, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --pre 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14996-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3039439, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --pre dose betaxolol", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "53475-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757531, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --pre dose glucagon", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54400-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3048522, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --pre dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "47622-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757388, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --pre dose insulin IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54257-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40762250, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --pre dose lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59157-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757399, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --pre dose ornithine alpha-ketoglutarate", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54268-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3044522, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --pre dose triple bolus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40318-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3042469, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --pre-meal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40193-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3045105, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --pre or post dose arginine", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "34056-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3045131, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --pre or post dose cloNIDine", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "34057-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3045158, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --pre or post dose glucagon", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "34058-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3045700, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --pre or post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "34059-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3029462, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --pre or post dose insulin", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "34060-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3030745, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --pre or post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "51426-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3038434, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --pre XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40148-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 46236948, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum, Plasma or Blood", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "77135-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 46236367, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum, Plasma or Blood --2 hours post meal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "77677-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3006893, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "32318-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3051044, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Stool", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "47620-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3020618, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Synovial fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14750-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3005570, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Urine", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15076-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40762249, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Urine by Automated test strip", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59156-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3008770, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Urine by Test strip", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "22705-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44786994, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Urine collected for unspecified duration", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "74351-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3038515, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Venous blood", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "39480-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040563, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Vitreous fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "39478-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757618, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Water", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54487-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44806589, + "CONCEPT_NAME" : "Glucose output measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "792621000000101", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3018056, + "CONCEPT_NAME" : "Glucose.PO [Mass] of Dose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "4269-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2212361, + "CONCEPT_NAME" : "Glucose; post glucose dose (includes glucose)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "82950", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3007308, + "CONCEPT_NAME" : "Glucose [Presence] in 24 hour Urine", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "32174-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040980, + "CONCEPT_NAME" : "Glucose [Presence] in Stool", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "51595-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3020650, + "CONCEPT_NAME" : "Glucose [Presence] in Urine", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "2349-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3007777, + "CONCEPT_NAME" : "Glucose [Presence] in Urine --1st specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16904-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3006684, + "CONCEPT_NAME" : "Glucose [Presence] in Urine --2nd specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16905-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3028014, + "CONCEPT_NAME" : "Glucose [Presence] in Urine --3rd specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16906-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3023961, + "CONCEPT_NAME" : "Glucose [Presence] in Urine --4th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16907-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3024785, + "CONCEPT_NAME" : "Glucose [Presence] in Urine --5th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16908-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3025622, + "CONCEPT_NAME" : "Glucose [Presence] in Urine --6th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16909-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3007971, + "CONCEPT_NAME" : "Glucose [Presence] in Urine --7th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16910-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3006258, + "CONCEPT_NAME" : "Glucose [Presence] in Urine --8th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16911-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3021752, + "CONCEPT_NAME" : "Glucose [Presence] in Urine --9th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16912-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3009261, + "CONCEPT_NAME" : "Glucose [Presence] in Urine by Test strip", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25428-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3005875, + "CONCEPT_NAME" : "Glucose [Presence] in Urine by Test strip --1.5 hours post 50 g lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6761-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3005589, + "CONCEPT_NAME" : "Glucose [Presence] in Urine by Test strip --1.5 hours post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26553-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3020820, + "CONCEPT_NAME" : "Glucose [Presence] in Urine by Test strip --1 hour post 50 g lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6747-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3021033, + "CONCEPT_NAME" : "Glucose [Presence] in Urine by Test strip --1 hour post 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6748-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3019493, + "CONCEPT_NAME" : "Glucose [Presence] in Urine by Test strip --1 hour post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26546-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3007031, + "CONCEPT_NAME" : "Glucose [Presence] in Urine by Test strip --2.5 hours post 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10966-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3018958, + "CONCEPT_NAME" : "Glucose [Presence] in Urine by Test strip --2.5 hours post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26537-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3009251, + "CONCEPT_NAME" : "Glucose [Presence] in Urine by Test strip --2 hours post 50 g lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6750-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3011355, + "CONCEPT_NAME" : "Glucose [Presence] in Urine by Test strip --2 hours post 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6751-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3004629, + "CONCEPT_NAME" : "Glucose [Presence] in Urine by Test strip --2 hours post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26547-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3023638, + "CONCEPT_NAME" : "Glucose [Presence] in Urine by Test strip --30 minutes post 50 g lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6753-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3021635, + "CONCEPT_NAME" : "Glucose [Presence] in Urine by Test strip --30 minutes post 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6754-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3003453, + "CONCEPT_NAME" : "Glucose [Presence] in Urine by Test strip --30 minutes post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26548-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3005851, + "CONCEPT_NAME" : "Glucose [Presence] in Urine by Test strip --3.5 hours post 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10967-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3022233, + "CONCEPT_NAME" : "Glucose [Presence] in Urine by Test strip --3.5 hours post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26538-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3005370, + "CONCEPT_NAME" : "Glucose [Presence] in Urine by Test strip --3 hours post 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6755-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3003201, + "CONCEPT_NAME" : "Glucose [Presence] in Urine by Test strip --3 hours post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26549-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3025876, + "CONCEPT_NAME" : "Glucose [Presence] in Urine by Test strip --4.5 hours post 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10968-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3010617, + "CONCEPT_NAME" : "Glucose [Presence] in Urine by Test strip --4 hours post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26550-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3020455, + "CONCEPT_NAME" : "Glucose [Presence] in Urine by Test strip --5 hours post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26551-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3001283, + "CONCEPT_NAME" : "Glucose [Presence] in Urine by Test strip --6 hours post 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6759-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3020450, + "CONCEPT_NAME" : "Glucose [Presence] in Urine by Test strip --6 hours post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26552-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2212359, + "CONCEPT_NAME" : "Glucose; quantitative, blood (except reagent strip)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "82947", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2212364, + "CONCEPT_NAME" : "Glucose; tolbutamide tolerance test", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "82953", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3003169, + "CONCEPT_NAME" : "Glucose tolerance 2 hours gestational panel - Urine and Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "24353-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3030177, + "CONCEPT_NAME" : "Glucose tolerance [Interpretation] in Serum or Plasma Narrative", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "50667-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4012477, + "CONCEPT_NAME" : "Glucose tolerance test", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "113076002", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44783612, + "CONCEPT_NAME" : "Glucose tolerance test, antenatal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "699731004", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2212363, + "CONCEPT_NAME" : "Glucose; tolerance test, each additional beyond 3 specimens (List separately in addition to code for primary procedure)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "82952", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2212362, + "CONCEPT_NAME" : "Glucose; tolerance test (GTT), 3 specimens (includes glucose)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "82951", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4055679, + "CONCEPT_NAME" : "Glucose tolerance test indicates diabetes mellitus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "166928007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4055678, + "CONCEPT_NAME" : "Glucose tolerance test normal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "166926006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434164, + "CONCEPT_NAME" : "Glycosuria", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45154002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2212633, + "CONCEPT_NAME" : "Gonadotropin, chorionic (hCG); free beta chain", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84704", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2212632, + "CONCEPT_NAME" : "Gonadotropin, chorionic (hCG); qualitative", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84703", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2212631, + "CONCEPT_NAME" : "Gonadotropin, chorionic (hCG); quantitative", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84702", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 372842, + "CONCEPT_NAME" : "Gonococcal conjunctivitis neonatorum", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "28438004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4009879, + "CONCEPT_NAME" : "Good neonatal condition at birth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "102500002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014452, + "CONCEPT_NAME" : "GP unit birth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169814004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437937, + "CONCEPT_NAME" : "Grand multipara", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "18656007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434110, + "CONCEPT_NAME" : "Grand multiparity - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199714004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442441, + "CONCEPT_NAME" : "Grand multiparity with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199715003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4032764, + "CONCEPT_NAME" : "Groin traction at breech delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "236980007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4042068, + "CONCEPT_NAME" : "GTT = renal glycosuria", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "166929004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4084217, + "CONCEPT_NAME" : "Gynecological emergency hospital admission", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "183459001", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4149401, + "CONCEPT_NAME" : "Had umbilical cord around neck", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "268863005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42742312, + "CONCEPT_NAME" : "HBA1/HBA2 (alpha globin 1 and alpha globin 2) (eg, alpha thalassemia, Hb Bart hydrops fetalis syndrome, HbH disease), gene analysis; common deletions or variant (eg, Southeast Asian, Thai, Filipino, Mediterranean, alpha3.7, alpha4.2, alpha20.5, Constant S", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "81257", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 316478, + "CONCEPT_NAME" : "Heart disease in mother complicating pregnancy, childbirth AND/OR puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "78381004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440532, + "CONCEPT_NAME" : "Heavy-for-dates at birth regardless of gestation period", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7293009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 201129, + "CONCEPT_NAME" : "Hematemesis AND/OR melena due to swallowed maternal blood", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "23688003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4085415, + "CONCEPT_NAME" : "Hematoma of anus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "282074002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4155624, + "CONCEPT_NAME" : "Hematoma of female perineum", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "283969002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4152629, + "CONCEPT_NAME" : "Hematoma of male perineum", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "283974005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4161205, + "CONCEPT_NAME" : "Hematoma of obstetric wound", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "371614003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42709943, + "CONCEPT_NAME" : "Hematoma of perianal region", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "449815008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37312073, + "CONCEPT_NAME" : "Hematoma of surgical wound following cesarean section", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "788728009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437922, + "CONCEPT_NAME" : "Hematoma of vulva", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "69385001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4177184, + "CONCEPT_NAME" : "Hematoma of vulva of fetus or newborn as birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "50263004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3004410, + "CONCEPT_NAME" : "Hemoglobin A1c/Hemoglobin.total in Blood", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "4548-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2212391, + "CONCEPT_NAME" : "Hemoglobin; F (fetal), qualitative", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "83033", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2212713, + "CONCEPT_NAME" : "Hemoglobin or RBCs, fetal, for fetomaternal hemorrhage; differential lysis (Kleihauer-Betke)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "85460", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2212714, + "CONCEPT_NAME" : "Hemoglobin or RBCs, fetal, for fetomaternal hemorrhage; rosette", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "85461", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437090, + "CONCEPT_NAME" : "Hemolytic disease of fetus OR newborn due to ABO immunization", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "32858009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440218, + "CONCEPT_NAME" : "Hemolytic disease of fetus OR newborn due to isoimmunization", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "387705004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433603, + "CONCEPT_NAME" : "Hemolytic disease of fetus OR newborn due to RhD isoimmunization", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86986002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36713168, + "CONCEPT_NAME" : "Hemolytic disease of newborn co-occurrent and due to ABO immunization", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "350601000119109", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4009645, + "CONCEPT_NAME" : "Hemolytic disease of the newborn due to non-ABO, non-Rh isoimmunization", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "111469006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438478, + "CONCEPT_NAME" : "Hemorrhage in early pregnancy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "25825004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437935, + "CONCEPT_NAME" : "Hemorrhage in early pregnancy, antepartum", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "30850008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435323, + "CONCEPT_NAME" : "Hemorrhage in early pregnancy, delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "81448000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36716542, + "CONCEPT_NAME" : "Hemorrhage of adrenal gland due to birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "722578005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 436529, + "CONCEPT_NAME" : "Hemorrhage of newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "85539001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4329097, + "CONCEPT_NAME" : "Hemorrhage of skin in neonate", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "431268006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4083118, + "CONCEPT_NAME" : "Hemorrhagic disease of the newborn due to factor II deficiency", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "24149006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435358, + "CONCEPT_NAME" : "Hemorrhagic disease of the newborn due to vitamin K deficiency", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12546009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061471, + "CONCEPT_NAME" : "Hemorrhoids in pregnancy and puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200249004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4066134, + "CONCEPT_NAME" : "Hemorrhoids in pregnancy and the puerperium with antenatal complication", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "200253002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4066135, + "CONCEPT_NAME" : "Hemorrhoids in pregnancy and the puerperium with postnatal complication", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "200254008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4065761, + "CONCEPT_NAME" : "Hemorrhoids in puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200255009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37396771, + "CONCEPT_NAME" : "Hereditary persistence of alpha-fetoprotein", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "716697002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4311256, + "CONCEPT_NAME" : "Herpes gestationis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86081009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4033068, + "CONCEPT_NAME" : "Hexosaminidase A and total hexosaminidase measurement, amniotic fluid cells", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14577005", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4079859, + "CONCEPT_NAME" : "High birth weight", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276613009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44513743, + "CONCEPT_NAME" : "High forceps cephalic delivery NEC", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "R21.2", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "OPCS4", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4075188, + "CONCEPT_NAME" : "High forceps cephalic delivery with rotation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177162002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4231702, + "CONCEPT_NAME" : "High forceps delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "89849000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4035778, + "CONCEPT_NAME" : "High forceps delivery with episiotomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15413009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40480725, + "CONCEPT_NAME" : "High glucose level in blood", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "444780001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442088, + "CONCEPT_NAME" : "High head at term", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199373000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 77615, + "CONCEPT_NAME" : "High head at term - delivered", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "199375007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 72696, + "CONCEPT_NAME" : "High head at term with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199376008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4302252, + "CONCEPT_NAME" : "High risk pregnancy care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "386322007", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37392366, + "CONCEPT_NAME" : "High sensitivity urine pregnancy test", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1003171000000104", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Observable Entity" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4055287, + "CONCEPT_NAME" : "High sensitivity urine pregnancy test", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "167257008", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4075170, + "CONCEPT_NAME" : "High vacuum delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177173009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42739014, + "CONCEPT_NAME" : "History and examination of the normal newborn infant, including the preparation of medical records. (This code should only be used for newborns assessed and discharged from the hospital or birthing room on the same date.)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "99435", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42739011, + "CONCEPT_NAME" : "History and examination of the normal newborn infant, initiation of diagnostic and treatment programs and preparation of hospital records. (This code should also be used for birthing room deliveries.)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "99431", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441630, + "CONCEPT_NAME" : "History of recurrent miscarriage - delivered", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199087006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4062565, + "CONCEPT_NAME" : "History of recurrent miscarriage - not delivered", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199088001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014451, + "CONCEPT_NAME" : "Home birth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169813005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060104, + "CONCEPT_NAME" : "Home delivery booked", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169621002", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4151190, + "CONCEPT_NAME" : "Home delivery planned", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "310586008", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2514576, + "CONCEPT_NAME" : "Home visit for newborn care and assessment", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "99502", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2514575, + "CONCEPT_NAME" : "Home visit for postnatal assessment and follow-up care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "99501", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2514574, + "CONCEPT_NAME" : "Home visit for prenatal monitoring and assessment to include fetal heart rate, non-stress test, uterine monitoring, and gestational diabetes monitoring", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "99500", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44807240, + "CONCEPT_NAME" : "Human chorionic gonadotrophin multiple of median measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "815981000000104", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4285271, + "CONCEPT_NAME" : "Human chorionic gonadotropin measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "67900009", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44806337, + "CONCEPT_NAME" : "Human chorionic gonadotropin output measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "800821000000104", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439083, + "CONCEPT_NAME" : "Hydatidiform mole, benign", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "417044008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44500814, + "CONCEPT_NAME" : "Hydatidiform mole, NOS, of placenta", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "9100/0-C58.9", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "ICDO3", + "CONCEPT_CLASS_ID" : "ICDO Condition" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 73538, + "CONCEPT_NAME" : "Hydrocephalic disproportion - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199427001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 81923, + "CONCEPT_NAME" : "Hydrocephalic disproportion with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199428006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444245, + "CONCEPT_NAME" : "Hydrocephalic fetus causing disproportion", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "111439004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 77662, + "CONCEPT_NAME" : "Hydrops fetalis due to isoimmunization", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15539009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4030872, + "CONCEPT_NAME" : "Hyperemesis gravidarum", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14094001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4098582, + "CONCEPT_NAME" : "Hyperemesis gravidarum before end of 22 week gestation with carbohydrate depletion", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "27152008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4227141, + "CONCEPT_NAME" : "Hyperemesis gravidarum before end of 22 week gestation with dehydration", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87621000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4142340, + "CONCEPT_NAME" : "Hyperemesis gravidarum before end of 22 week gestation with electrolyte imbalance", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "33370009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 436485, + "CONCEPT_NAME" : "Hyperemesis gravidarum with metabolic disturbance", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199025001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 436173, + "CONCEPT_NAME" : "Hyperemesis gravidarum with metabolic disturbance - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199027009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440788, + "CONCEPT_NAME" : "Hyperemesis gravidarum with metabolic disturbance - not delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199028004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37311673, + "CONCEPT_NAME" : "Hyperglycemia due to diabetes mellitus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "822995009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37016348, + "CONCEPT_NAME" : "Hyperglycemia due to type 1 diabetes mellitus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "367991000119101", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37016349, + "CONCEPT_NAME" : "Hyperglycemia due to type 2 diabetes mellitus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "368051000119109", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40480031, + "CONCEPT_NAME" : "Hyperglycemic crisis due to diabetes mellitus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "441656006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4034959, + "CONCEPT_NAME" : "Hyperglycemic disorder", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237598005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4034966, + "CONCEPT_NAME" : "Hyperglycemic disorder in pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237625008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37312344, + "CONCEPT_NAME" : "Hyperinsulinemia due to benign insulinoma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "788492001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37312345, + "CONCEPT_NAME" : "Hyperinsulinemia due to malignant insulinoma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "788491008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4307509, + "CONCEPT_NAME" : "Hyperinsulinism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "83469008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37397460, + "CONCEPT_NAME" : "Hyperinsulinism and hyperammonemia syndrome", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "718106009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37397139, + "CONCEPT_NAME" : "Hyperinsulinism due to deficiency of glucokinase", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "717182006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36713524, + "CONCEPT_NAME" : "Hyperinsulinism due to focal adenomatous hyperplasia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "717888008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36715528, + "CONCEPT_NAME" : "Hyperinsulinism due to HNF1A deficiency", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "721234004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37397034, + "CONCEPT_NAME" : "Hyperinsulinism due to HNF4A deficiency", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "717048002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36715529, + "CONCEPT_NAME" : "Hyperinsulinism due to insulin receptor deficiency", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "721235003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36715530, + "CONCEPT_NAME" : "Hyperinsulinism due to short chain 3-hydroxyacyl-coenzyme A dehydrogenase deficiency", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "721236002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36716024, + "CONCEPT_NAME" : "Hyperinsulinism due to uncoupling protein 2 deficiency", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "721834007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42536603, + "CONCEPT_NAME" : "Hyperosmolar hyperglycemic coma due to diabetes mellitus without ketoacidosis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "735537007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4147719, + "CONCEPT_NAME" : "Hyperosmolar non-ketotic state due to diabetes mellitus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "310505005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4215719, + "CONCEPT_NAME" : "Hyperosmolar non-ketotic state due to type 2 diabetes mellitus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "395204000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 321080, + "CONCEPT_NAME" : "Hypertension complicating pregnancy, childbirth and the puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198941007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 192698, + "CONCEPT_NAME" : "Hypertonic uterine dysfunction", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "34981006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443244, + "CONCEPT_NAME" : "Hypertonic uterine inertia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "267265005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4064834, + "CONCEPT_NAME" : "Hypertonic uterine inertia - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199838008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4064835, + "CONCEPT_NAME" : "Hypertonic uterine inertia with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199839000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433873, + "CONCEPT_NAME" : "Hypocalcemia AND/OR hypomagnesemia of newborn", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "77604004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4267556, + "CONCEPT_NAME" : "Hypocalcemia of puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "400170001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42572837, + "CONCEPT_NAME" : "Hypoglycaemia of piglets", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "342901000009107", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED Veterinary", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44809809, + "CONCEPT_NAME" : "Hypoglycaemic warning absent", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "894741000000107", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44789319, + "CONCEPT_NAME" : "Hypoglycaemic warning good", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198131000000101", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44789318, + "CONCEPT_NAME" : "Hypoglycaemic warning impaired", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198121000000103", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42600315, + "CONCEPT_NAME" : "Hypoglycemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "44621000009101", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED Veterinary", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 24609, + "CONCEPT_NAME" : "Hypoglycemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "302866003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4029423, + "CONCEPT_NAME" : "Hypoglycemia due to diabetes mellitus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237633009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45769876, + "CONCEPT_NAME" : "Hypoglycemia due to type 1 diabetes mellitus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84371000119108", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45757363, + "CONCEPT_NAME" : "Hypoglycemia due to type 2 diabetes mellitus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "120731000119103", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4287549, + "CONCEPT_NAME" : "Hypoglycemia of childhood", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "68581004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3185010, + "CONCEPT_NAME" : "Hypoglycemia secondary to sulfonylurea", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "24370001000004105", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "Nebraska Lexicon", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45772060, + "CONCEPT_NAME" : "Hypoglycemia unawareness due to type 2 diabetes mellitus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "119831000119106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4226798, + "CONCEPT_NAME" : "Hypoglycemic coma due to diabetes mellitus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "421725003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4228112, + "CONCEPT_NAME" : "Hypoglycemic coma due to type 1 diabetes mellitus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "421437000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36714116, + "CONCEPT_NAME" : "Hypoglycemic coma due to type 2 diabetes mellitus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "719216001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 30361, + "CONCEPT_NAME" : "Hypoglycemic disorder", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237630007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4029422, + "CONCEPT_NAME" : "Hypoglycemic event due to diabetes", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237632004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4232212, + "CONCEPT_NAME" : "Hypoglycemic shock", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "360546002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45757362, + "CONCEPT_NAME" : "Hypoglycemic unawareness due to type 1 diabetes mellitus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "120711000119108", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36676692, + "CONCEPT_NAME" : "Hypoinsulinemic hypoglycemia and body hemihypertrophy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "773666007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 436534, + "CONCEPT_NAME" : "Hypothermia of newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13629008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45772056, + "CONCEPT_NAME" : "Hypothyroxinemia of prematurity", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "119181000119104", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4308657, + "CONCEPT_NAME" : "Hypotonic uterine inertia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "387692004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4318803, + "CONCEPT_NAME" : "Hypoxia, in liveborn infant", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "22137006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4153365, + "CONCEPT_NAME" : "Hypoxia with feeding in newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "371105007", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4082045, + "CONCEPT_NAME" : "Hysterectomy for removal of hydatidiform mole", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "24068006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110292, + "CONCEPT_NAME" : "Hysterotomy, abdominal (eg, for hydatidiform mole, abortion)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59100", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4082412, + "CONCEPT_NAME" : "Hysterotomy and termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "18302006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4132295, + "CONCEPT_NAME" : "Hysterotomy with removal of hydatidiform mole", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26578004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4234390, + "CONCEPT_NAME" : "Iatrogenic hyperinsulinism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90054000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37395921, + "CONCEPT_NAME" : "ICCA syndrome", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "715534008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4173187, + "CONCEPT_NAME" : "Idiopathic transient neonatal hyperinsulinemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276563006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444048, + "CONCEPT_NAME" : "Illegal termination of pregnancy complicated by damage to pelvic organs and/or tissues", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "38784004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 193821, + "CONCEPT_NAME" : "Illegal termination of pregnancy complicated by embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26743002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439400, + "CONCEPT_NAME" : "Illegal termination of pregnancy complicated by genital-pelvic infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "373902000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443705, + "CONCEPT_NAME" : "Illegal termination of pregnancy complicated by metabolic disorder", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "18684002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 195600, + "CONCEPT_NAME" : "Illegal termination of pregnancy complicated by renal failure", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "8996006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442596, + "CONCEPT_NAME" : "Illegal termination of pregnancy complicated by shock", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "61752008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439325, + "CONCEPT_NAME" : "Illegal termination of pregnancy, incomplete", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198743003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4143190, + "CONCEPT_NAME" : "Illegal termination of pregnancy with acute renal failure", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "33561005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4138267, + "CONCEPT_NAME" : "Illegal termination of pregnancy with afibrinogenemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "3230006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4185440, + "CONCEPT_NAME" : "Illegal termination of pregnancy with air embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "44101005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4303980, + "CONCEPT_NAME" : "Illegal termination of pregnancy with amniotic fluid embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "38905006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4066227, + "CONCEPT_NAME" : "Illegal termination of pregnancy with blood-clot embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "21604008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4182549, + "CONCEPT_NAME" : "Illegal termination of pregnancy with cardiac arrest AND/OR failure", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "54529009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4223627, + "CONCEPT_NAME" : "Illegal termination of pregnancy with cerebral anoxia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40405003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 436169, + "CONCEPT_NAME" : "Illegal termination of pregnancy with complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "74978008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4264914, + "CONCEPT_NAME" : "Illegal termination of pregnancy with defibrination syndrome", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "61810006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4101477, + "CONCEPT_NAME" : "Illegal termination of pregnancy with electrolyte imbalance", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25404008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4023781, + "CONCEPT_NAME" : "Illegal termination of pregnancy with endometritis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "195005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4107907, + "CONCEPT_NAME" : "Illegal termination of pregnancy with fat embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "29995000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4323434, + "CONCEPT_NAME" : "Illegal termination of pregnancy with intravascular hemolysis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "70823006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4180859, + "CONCEPT_NAME" : "Illegal termination of pregnancy with laceration of bladder", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "53247006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4066994, + "CONCEPT_NAME" : "Illegal termination of pregnancy with laceration of bowel", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "17335003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4105762, + "CONCEPT_NAME" : "Illegal termination of pregnancy with laceration of broad ligament", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "29583006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4077275, + "CONCEPT_NAME" : "Illegal termination of pregnancy with laceration of cervix", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "18872002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4025828, + "CONCEPT_NAME" : "Illegal termination of pregnancy with laceration of periurethral tissue", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "19564003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4229716, + "CONCEPT_NAME" : "Illegal termination of pregnancy with laceration of uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40500006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4249728, + "CONCEPT_NAME" : "Illegal termination of pregnancy with laceration of vagina", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "73280003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4266243, + "CONCEPT_NAME" : "Illegal termination of pregnancy with oliguria", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6134000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4305348, + "CONCEPT_NAME" : "Illegal termination of pregnancy with parametritis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "82204006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4234979, + "CONCEPT_NAME" : "Illegal termination of pregnancy with pelvic peritonitis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90450000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4197900, + "CONCEPT_NAME" : "Illegal termination of pregnancy with perforation of bladder", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80438008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4051784, + "CONCEPT_NAME" : "Illegal termination of pregnancy with perforation of bowel", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "23401002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4195243, + "CONCEPT_NAME" : "Illegal termination of pregnancy with perforation of broad ligament", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6802007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4224143, + "CONCEPT_NAME" : "Illegal termination of pregnancy with perforation of cervix", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84143004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4239192, + "CONCEPT_NAME" : "Illegal termination of pregnancy with perforation of periurethral tissue", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "68189005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4296872, + "CONCEPT_NAME" : "Illegal termination of pregnancy with perforation of uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "77099001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4103148, + "CONCEPT_NAME" : "Illegal termination of pregnancy with perforation of vagina", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25519006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4143018, + "CONCEPT_NAME" : "Illegal termination of pregnancy with postoperative shock", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "34701001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4206453, + "CONCEPT_NAME" : "Illegal termination of pregnancy with pulmonary embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55589000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4195297, + "CONCEPT_NAME" : "Illegal termination of pregnancy with renal tubular necrosis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "4451004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4318662, + "CONCEPT_NAME" : "Illegal termination of pregnancy with salpingitis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "22046002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4313005, + "CONCEPT_NAME" : "Illegal termination of pregnancy with salpingo-oophoritis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "8670007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4034753, + "CONCEPT_NAME" : "Illegal termination of pregnancy with sepsis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "11373009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4324965, + "CONCEPT_NAME" : "Illegal termination of pregnancy with septic embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "71362000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4219608, + "CONCEPT_NAME" : "Illegal termination of pregnancy with septic shock", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "82338001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4183557, + "CONCEPT_NAME" : "Illegal termination of pregnancy with uremia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54155004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4140509, + "CONCEPT_NAME" : "Illegal termination of pregnancy with urinary tract infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "33046001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4030415, + "CONCEPT_NAME" : "Illegitimate pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14080002", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36713470, + "CONCEPT_NAME" : "Immediate postpartum care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "717809003", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4071514, + "CONCEPT_NAME" : "Immediate repair of minor obstetric laceration", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177221004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4069972, + "CONCEPT_NAME" : "Immediate repair of obstetric laceration", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177217006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4071513, + "CONCEPT_NAME" : "Immediate repair of obstetric laceration of perineum and sphincter of anus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177219009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4071641, + "CONCEPT_NAME" : "Immediate repair of obstetric laceration of uterus or cervix uteri", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177218001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4070223, + "CONCEPT_NAME" : "Immediate repair of obstetric laceration of vagina and floor of pelvis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177220003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4247275, + "CONCEPT_NAME" : "Immunoreactive insulin measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "60284007", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4308509, + "CONCEPT_NAME" : "Impaired fasting glycemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "390951007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808373, + "CONCEPT_NAME" : "Impaired glucose regulation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "849171000000106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4311629, + "CONCEPT_NAME" : "Impaired glucose tolerance", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "9414007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4263688, + "CONCEPT_NAME" : "Impaired glucose tolerance associated with drugs", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "60634005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4047260, + "CONCEPT_NAME" : "Impaired glucose tolerance associated with genetic syndrome", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1310004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4251180, + "CONCEPT_NAME" : "Impaired glucose tolerance associated with hormonal etiology", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "73480000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4229140, + "CONCEPT_NAME" : "Impaired glucose tolerance associated with insulin receptor abnormality", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "88512005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4111906, + "CONCEPT_NAME" : "Impaired glucose tolerance associated with pancreatic disease", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1822007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4029951, + "CONCEPT_NAME" : "Impaired glucose tolerance in MODY", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14052004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4136531, + "CONCEPT_NAME" : "Impaired glucose tolerance in nonobese", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "32284009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4045297, + "CONCEPT_NAME" : "Impaired glucose tolerance in obese", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "22910008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4030067, + "CONCEPT_NAME" : "Impaired glucose tolerance in pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237628005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4042067, + "CONCEPT_NAME" : "Impaired glucose tolerance test", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "166927002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4027550, + "CONCEPT_NAME" : "Impaired glucose tolerance with hyperinsulism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "128264007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 133284, + "CONCEPT_NAME" : "Impetigo herpetiformis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65539006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110084, + "CONCEPT_NAME" : "Incision and drainage of vaginal hematoma; obstetrical/postpartum", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57022", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004771, + "CONCEPT_NAME" : "Incision of cervix to assist delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "73.93", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439323, + "CONCEPT_NAME" : "Incomplete illegal termination of pregnancy with damage to pelvic organs or tissues", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198746006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437929, + "CONCEPT_NAME" : "Incomplete illegal termination of pregnancy with delayed or excessive hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198745005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438487, + "CONCEPT_NAME" : "Incomplete illegal termination of pregnancy with embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198750004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439324, + "CONCEPT_NAME" : "Incomplete illegal termination of pregnancy with genital tract or pelvic infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198744009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439321, + "CONCEPT_NAME" : "Incomplete illegal termination of pregnancy with metabolic disorder", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198748007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439322, + "CONCEPT_NAME" : "Incomplete illegal termination of pregnancy with renal failure", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198747002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439320, + "CONCEPT_NAME" : "Incomplete illegal termination of pregnancy with shock", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198749004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45768717, + "CONCEPT_NAME" : "Incomplete induced termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "707207004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45771353, + "CONCEPT_NAME" : "Incomplete induced termination of pregnancy with complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16101000119107", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438211, + "CONCEPT_NAME" : "Incomplete inevitable miscarriage complicated by delayed or excessive hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "307752007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 436748, + "CONCEPT_NAME" : "Incomplete inevitable miscarriage complicated by embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "307746006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437618, + "CONCEPT_NAME" : "Incomplete inevitable miscarriage complicated by genital tract and pelvic infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "307749004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4146775, + "CONCEPT_NAME" : "Incomplete inevitable miscarriage without complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "307748007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439328, + "CONCEPT_NAME" : "Incomplete legal abortion with no mention of complication", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "198715007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37110280, + "CONCEPT_NAME" : "Incomplete legal abortion without complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "724484007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435868, + "CONCEPT_NAME" : "Incomplete legal termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "267193004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434705, + "CONCEPT_NAME" : "Incomplete legal termination of pregnancy with damage to pelvic organs or tissues", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198707009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440453, + "CONCEPT_NAME" : "Incomplete legal termination of pregnancy with delayed or excessive hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198706000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439329, + "CONCEPT_NAME" : "Incomplete legal termination of pregnancy with embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198711003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 193532, + "CONCEPT_NAME" : "Incomplete legal termination of pregnancy with genital tract or pelvic infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198705001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434095, + "CONCEPT_NAME" : "Incomplete legal termination of pregnancy with metabolic disorder", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198709007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439331, + "CONCEPT_NAME" : "Incomplete legal termination of pregnancy with renal failure", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198708004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439330, + "CONCEPT_NAME" : "Incomplete legal termination of pregnancy with shock", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198710002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434689, + "CONCEPT_NAME" : "Incomplete miscarriage", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "16863000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40318617, + "CONCEPT_NAME" : "Incomplete miscarriage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "156072005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434413, + "CONCEPT_NAME" : "Incomplete miscarriage with complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "413338003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437933, + "CONCEPT_NAME" : "Incomplete miscarriage with damage to pelvic organs or tissues", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198646004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440460, + "CONCEPT_NAME" : "Incomplete miscarriage with delayed or excessive hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198645000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437045, + "CONCEPT_NAME" : "Incomplete miscarriage with embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198650006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 195317, + "CONCEPT_NAME" : "Incomplete miscarriage with genital tract or pelvic infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198644001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432689, + "CONCEPT_NAME" : "Incomplete miscarriage with metabolic disorder", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198648003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439688, + "CONCEPT_NAME" : "Incomplete miscarriage with renal failure", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198647008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441631, + "CONCEPT_NAME" : "Incomplete miscarriage with shock", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198649006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42535215, + "CONCEPT_NAME" : "Incomplete spontaneous abortion due to hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16111000119105", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44805020, + "CONCEPT_NAME" : "Incomplete termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "749781000000109", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4171255, + "CONCEPT_NAME" : "Incoordinate swallowing in newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276714005", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4239206, + "CONCEPT_NAME" : "Increased glucose level", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "68256003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038817, + "CONCEPT_NAME" : "Increased human chorionic gonadotropin level", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "131102000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4289543, + "CONCEPT_NAME" : "Increased lactation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "37110009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3198709, + "CONCEPT_NAME" : "Increasing head circumference", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "5340001000004102", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "Nebraska Lexicon", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440161, + "CONCEPT_NAME" : "Indication for care AND/OR intervention in labor AND/OR delivery", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "67480003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2721146, + "CONCEPT_NAME" : "Induced abortion, 17 to 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "S2260", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2721148, + "CONCEPT_NAME" : "Induced abortion, 25 to 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "S2265", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2721149, + "CONCEPT_NAME" : "Induced abortion, 29 to 31 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "S2266", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2721150, + "CONCEPT_NAME" : "Induced abortion, 32 weeks or greater", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "S2267", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110331, + "CONCEPT_NAME" : "Induced abortion, by 1 or more intra-amniotic injections (amniocentesis-injections), including hospital admission and visits, delivery of fetus and secundines", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59850", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110332, + "CONCEPT_NAME" : "Induced abortion, by 1 or more intra-amniotic injections (amniocentesis-injections), including hospital admission and visits, delivery of fetus and secundines; with dilation and curettage and/or evacuation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59851", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110333, + "CONCEPT_NAME" : "Induced abortion, by 1 or more intra-amniotic injections (amniocentesis-injections), including hospital admission and visits, delivery of fetus and secundines; with hysterotomy (failed intra-amniotic injection)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59852", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110334, + "CONCEPT_NAME" : "Induced abortion, by 1 or more vaginal suppositories (eg, prostaglandin) with or without cervical dilation (eg, laminaria), including hospital admission and visits, delivery of fetus and secundines", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59855", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110335, + "CONCEPT_NAME" : "Induced abortion, by 1 or more vaginal suppositories (eg, prostaglandin) with or without cervical dilation (eg, laminaria), including hospital admission and visits, delivery of fetus and secundines; with dilation and curettage and/or evacuation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59856", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110336, + "CONCEPT_NAME" : "Induced abortion, by 1 or more vaginal suppositories (eg, prostaglandin) with or without cervical dilation (eg, laminaria), including hospital admission and visits, delivery of fetus and secundines; with hysterotomy (failed medical evacuation)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59857", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110329, + "CONCEPT_NAME" : "Induced abortion, by dilation and curettage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59840", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110330, + "CONCEPT_NAME" : "Induced abortion, by dilation and evacuation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59841", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37018340, + "CONCEPT_NAME" : "Induced termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "714812005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530913, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by acute necrosis of liver", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609454008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530914, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by acute renal failure", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609455009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530928, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by acute renal failure with oliguria", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609472002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530915, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by afibrinogenemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609456005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530916, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by air embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609457001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43531712, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by amniotic fluid embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609458006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530957, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by bladder damage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609503006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530917, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by blood-clot embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609459003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530958, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by bowel damage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609504000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530959, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by broad ligament damage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609505004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530960, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by cardiac arrest", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609506003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530918, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by cardiac arrest and/or failure", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "609460008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530961, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by cardiac failure", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609507007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530919, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by cerebral anoxia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609461007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530962, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by cervix damage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609508002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530908, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by damage to pelvic organs and/or tissues", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609447002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530920, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by defibrination syndrome", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609462000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43531713, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by electrolyte imbalance", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609463005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43531710, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609449004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530921, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by endometritis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609464004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530922, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by fat embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609465003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530910, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by genital-pelvic infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609450004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530964, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by infectious disease", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609510000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530923, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by intravascular hemolysis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609466002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530952, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by laceration of bladder", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609498008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530924, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by laceration of bowel", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609467006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530925, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by laceration of broad ligament", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609468001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43531714, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by laceration of cervix", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609469009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530953, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by laceration of periurethral tissue", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609499000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530926, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by laceration of uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609470005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530927, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by laceration of vagina", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609471009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530911, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by metabolic disorder", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609451000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530966, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by oliguria", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609512008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530929, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by parametritis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609473007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530948, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by pelvic disorder", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609494005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43531715, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by pelvic peritonitis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609474001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530954, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by perforation of bladder", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609500009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530930, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by perforation of bowel", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609475000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530955, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by perforation of broad ligament", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609501008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530931, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by perforation of cervix", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609476004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530956, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by perforation of periurethral tissue", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609502001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530932, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by perforation of uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609477008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530933, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by perforation of vagina", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609478003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530965, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by periurethral tissue damage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609511001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43531716, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by postoperative shock", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609479006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530934, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by pulmonary embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609480009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530912, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by renal failure", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609452007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530935, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by renal tubular necrosis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609482001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530936, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by salpingitis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609483006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530937, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by salpingo-oophoritis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609484000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530939, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by sepsis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609485004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530940, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by septic embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609486003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530941, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by septic shock", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609487007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43531711, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by shock", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609453002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530943, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by soap embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609489005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530947, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by tetanus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609493004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530944, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by uremia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609490001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530945, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by urinary tract infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609491002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530967, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by uterus damage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609513003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530968, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by vaginal damage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609514009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4200986, + "CONCEPT_NAME" : "Induced termination of pregnancy following intra-amniotic injection with hysterotomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "52660002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44784128, + "CONCEPT_NAME" : "Induced termination of pregnancy under unsafe conditions", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "700041001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4075159, + "CONCEPT_NAME" : "Induction and delivery procedures", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177128002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4032756, + "CONCEPT_NAME" : "Induction of labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "236958009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004745, + "CONCEPT_NAME" : "Induction of labor by artificial rupture of membranes", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "73.01", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37311825, + "CONCEPT_NAME" : "Inefficient uterine activity with oxytocin augmentation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "816969006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4244408, + "CONCEPT_NAME" : "Inevitable miscarriage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59363009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4146772, + "CONCEPT_NAME" : "Inevitable miscarriage complete", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "307733001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4062356, + "CONCEPT_NAME" : "Infant feeding education", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "171053005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014439, + "CONCEPT_NAME" : "Infant feeding method", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169740003", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Observable Entity" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4016479, + "CONCEPT_NAME" : "Infant feeding method at 1 year", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169997008", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Observable Entity" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4231742, + "CONCEPT_NAME" : "Infantile posthemorrhagic hydrocephalus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "359634001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4174423, + "CONCEPT_NAME" : "Infant in poor condition at birth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276707008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37018973, + "CONCEPT_NAME" : "Infant of diabetic mother", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "18311000119109", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4173344, + "CONCEPT_NAME" : "Infant slow to establish respiration", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276708003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4208967, + "CONCEPT_NAME" : "Infant weaning education", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313209004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4152958, + "CONCEPT_NAME" : "Infected insect bite of genitalia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "283352008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4153568, + "CONCEPT_NAME" : "Infected umbilical granuloma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "268837000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4309019, + "CONCEPT_NAME" : "Infection associated with artificial insemination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "213200001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 436180, + "CONCEPT_NAME" : "Infection of amniotic cavity", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10573002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3655611, + "CONCEPT_NAME" : "Infection of breast in neonate caused by Streptococcus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "866076001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444244, + "CONCEPT_NAME" : "Infection of nipple, associated with childbirth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "111459000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36713475, + "CONCEPT_NAME" : "Infection of nipple associated with childbirth with attachment difficulty", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "717816002", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45757187, + "CONCEPT_NAME" : "Infection of nipple associated with lactation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10806041000119104", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4062133, + "CONCEPT_NAME" : "Infection of obstetric surgical wound", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200125006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 74434, + "CONCEPT_NAME" : "Infection of the breast AND/OR nipple associated with childbirth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "19773009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4028781, + "CONCEPT_NAME" : "Infection - perineal wound", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237339000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439139, + "CONCEPT_NAME" : "Infections specific to perinatal period", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206331005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433823, + "CONCEPT_NAME" : "Infectious disease in mother complicating pregnancy, childbirth AND/OR puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40609001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4008083, + "CONCEPT_NAME" : "Infectious neonatal hepatitis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "111892001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433266, + "CONCEPT_NAME" : "Infective/parasitic disease in preg/childbirth/puerperium", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "199153003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42600083, + "CONCEPT_NAME" : "Inflammation of urachus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "41211000009105", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED Veterinary", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4085257, + "CONCEPT_NAME" : "Inhalation anesthesia, machine system, closed, circulation of primary agent", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "24277005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2514556, + "CONCEPT_NAME" : "Initial care, per day, for evaluation and management of normal newborn infant seen in other than hospital or birthing center", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "99461", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2514569, + "CONCEPT_NAME" : "Initial hospital care, per day, for the evaluation and management of the neonate, 28 days of age or younger, who requires intensive observation, frequent interventions, and other intensive care services", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "99477", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2514555, + "CONCEPT_NAME" : "Initial hospital or birthing center care, per day, for evaluation and management of normal newborn infant", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "99460", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2514558, + "CONCEPT_NAME" : "Initial hospital or birthing center care, per day, for evaluation and management of normal newborn infant admitted and discharged on the same date", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "99463", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42739633, + "CONCEPT_NAME" : "Initial inpatient neonatal critical care, per day, for the evaluation and management of a critically ill neonate, 28 days of age or less", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "99295", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2514563, + "CONCEPT_NAME" : "Initial inpatient neonatal critical care, per day, for the evaluation and management of a critically ill neonate, 28 days of age or younger", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "99468", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4161783, + "CONCEPT_NAME" : "Initiation of breastfeeding", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "431868002", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4121775, + "CONCEPT_NAME" : "Injection of amnion for termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "288045002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36716540, + "CONCEPT_NAME" : "Injury of brain stem due to birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "722576009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36716538, + "CONCEPT_NAME" : "Injury of central nervous system due to birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "722574007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36717351, + "CONCEPT_NAME" : "Injury of facial bone due to birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "722572006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36716541, + "CONCEPT_NAME" : "Injury of liver due to birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "722577000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36716740, + "CONCEPT_NAME" : "Injury to abdominal organ due to birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "722910004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 381952, + "CONCEPT_NAME" : "Injury to brachial plexus as birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "53785005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36716733, + "CONCEPT_NAME" : "Injury to external genitalia due to birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "722903005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 77621, + "CONCEPT_NAME" : "Inlet pelvic contraction - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199409004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 79896, + "CONCEPT_NAME" : "Inlet pelvic contraction with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199410009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2213360, + "CONCEPT_NAME" : "Insemination of oocytes", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "89268", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4112315, + "CONCEPT_NAME" : "Insertion of abortifacient suppository", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "285434006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4074301, + "CONCEPT_NAME" : "Insertion of prostaglandin abortifacient suppository", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "176854004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4128031, + "CONCEPT_NAME" : "Instrumental delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "236974004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4071638, + "CONCEPT_NAME" : "Instrumental removal of products of conception from delivered uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177200004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4018336, + "CONCEPT_NAME" : "Insulin challenge tests", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "104754003", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4229110, + "CONCEPT_NAME" : "Insulin C-peptide measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "88705004", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2212419, + "CONCEPT_NAME" : "Insulin; free", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "83527", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3049230, + "CONCEPT_NAME" : "Insulin.free and Insulin.total panel [Units/volume] - Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48615-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4020992, + "CONCEPT_NAME" : "Insulin, free measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "104753009", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3010771, + "CONCEPT_NAME" : "Insulin Free [Units/volume] in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6901-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2212155, + "CONCEPT_NAME" : "Insulin-induced C-peptide suppression panel This panel must include the following: Insulin (83525) C-peptide (84681 x 5) Glucose (82947 x 5)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80432", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3022466, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "3695-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3004648, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --10 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12754-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3004163, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --10 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "17017-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3004325, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --11 hour post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12755-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3011670, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --12 hours fasting", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1573-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3003227, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --12 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12756-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3011496, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --1.5 hours post 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13608-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3020877, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --1.5 hours post dose TOLBUTamide IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1559-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3002800, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --15 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12762-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3035571, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --15 minutes pre XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12758-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40759809, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --16 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "56690-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3001627, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --19 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12763-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40759811, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --1 day post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "56692-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3001583, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --1 hour post dose TOLBUTamide IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1560-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40759810, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --20 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "56691-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3007346, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --20 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "17018-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3000664, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --22 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12764-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3011411, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --2.5 hours post 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13609-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3037545, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --2.5 hours post dose TOLBUTamide IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1562-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3033461, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --2 hours post 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1564-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3038084, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --2 hours post dose TOLBUTamide IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1563-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3037230, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --2 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12759-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3021586, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --2nd specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12739-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3021537, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --30 minutes post dose TOLBUTamide IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1565-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3002053, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --30 minutes pre XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12757-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3019151, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --3.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12747-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3015988, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --3 hours post 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1567-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3012706, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --3 hours post dose TOLBUTamide IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1566-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3024084, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --3rd specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12740-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3037897, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --40 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12765-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3000331, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --4.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12748-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3033587, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --45 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12766-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3008406, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --4 hours post 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1568-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3005615, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --4 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12760-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3024615, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --4th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12741-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3034123, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --50 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12767-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3003339, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --5.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12749-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3017118, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --5 hours post 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1569-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3011462, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --5th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12742-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3011381, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --6th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12743-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3022404, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --70 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12768-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3023151, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --7.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12751-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3013134, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --7 hours post 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10833-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3009446, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --7 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12750-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3018974, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --7th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12744-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3019590, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --8 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12752-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3000005, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --8 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12761-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3022492, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --8th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12745-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3019824, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --9 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12753-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3023517, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --9th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12746-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3034439, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --baseline", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1570-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3029133, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --pre 100 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "42919-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3013373, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --pre 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1572-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3022423, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --pre dose TOLBUTamide IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1571-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3016203, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --pre XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12738-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060873, + "CONCEPT_NAME" : "Insulin measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16890009", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3030272, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Body fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "50867-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3016523, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14796-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40758613, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --10 minutes post dose glucose IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55484-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40758512, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --10 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55383-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40758610, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --10 minutes pre dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55481-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3020977, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --10th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25685-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3036942, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --11th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25686-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3037468, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --12th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25687-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3037714, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --13th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25688-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3021224, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --14th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25689-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40758618, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --1.5 hours post dose glucagon", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55489-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40758612, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --1.5 hours post dose glucose IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55483-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3038241, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --1.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40290-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40758628, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --15 minutes post dose glucose IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55499-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40758514, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --15 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55385-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3001558, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --15th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25690-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43534076, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --1 hour post 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72902-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40758617, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --1 hour post dose glucagon", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55488-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40758614, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --1 hour post dose glucose IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55485-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3038723, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --1 hour post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40289-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40758615, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --1 minute post dose glucose IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55486-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40758521, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --1 minute post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55392-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3019094, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --1st specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25691-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40758563, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --20 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55434-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40758616, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --2.5 hours post dose glucose IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55487-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3039233, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --2.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40292-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43534075, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --2 hours post 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72901-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40758620, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --2 hours post dose glucagon", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55491-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40758625, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --2 hours post dose glucose IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55496-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3038693, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --2 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40291-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40758515, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --2 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55386-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3037840, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --2nd specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25692-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40758629, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --30 minutes post dose glucagon", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55500-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40758621, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --30 minutes post dose glucose IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55492-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3041156, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --30 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40288-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43534074, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --3 hours post 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72900-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40758622, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --3 hours post dose glucose IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55493-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3042046, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --3 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40293-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40758626, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --3 minutes post dose glucose IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55497-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40758513, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --3 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55384-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3038142, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --3rd specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25693-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40758619, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --45 minutes post dose glucagon", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55490-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40758624, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --45 minutes post dose glucose IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55495-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40758516, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --45 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55387-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40758611, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --4 hours post dose glucose IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55482-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40758517, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --4 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55388-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40758520, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --4 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55391-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3033522, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --4th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25694-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40758518, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55389-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40758623, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --5 minutes post dose glucose IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55494-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40758511, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --5 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55382-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40758609, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --5 minutes pre dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55480-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3022114, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --5th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25695-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40758519, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --6 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55390-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3012701, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --7.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25696-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40758608, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --7 minutes post dose glucose IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55479-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40758627, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --7 minutes pre dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55498-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3015720, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --7th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25697-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3008465, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --8th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25698-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3017410, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --9th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25699-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3033929, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --baseline", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14293-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40762271, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --fasting", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59179-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 1001918, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --post meal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "93727-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040755, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --pre or post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40294-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3029373, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --pre or post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "51427-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3046092, + "CONCEPT_NAME" : "Insulin [Presence] in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "44396-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3019840, + "CONCEPT_NAME" : "Insulin [Presence] in Unknown substance", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "18234-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45769875, + "CONCEPT_NAME" : "Insulin reactive hypoglycemia due to type 2 diabetes mellitus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84361000119102", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 35622016, + "CONCEPT_NAME" : "Insulin resistance", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "763325000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4129524, + "CONCEPT_NAME" : "Insulin resistance - type A", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237651005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4129525, + "CONCEPT_NAME" : "Insulin resistance - type B", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237652003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2212418, + "CONCEPT_NAME" : "Insulin; total", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "83525", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4017196, + "CONCEPT_NAME" : "Insulin, total measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "104752004", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3010058, + "CONCEPT_NAME" : "Insulin [Units/volume] in Body fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "29238-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3016244, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "20448-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3049445, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --10 minutes post dose glucagon", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "47653-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3048476, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --10 minutes post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "47654-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3019544, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --10 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "32360-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3049768, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --10 minutes pre dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48116-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3043439, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --10th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "33809-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3045444, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --11th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "33810-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40771051, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --1.25 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "68464-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3011873, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --12 hours fasting", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "30363-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40759701, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --12 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "56581-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3046035, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --12th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "33811-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3017375, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --1.3 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "30256-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3046568, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --13th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "33812-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3046591, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --14th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "33813-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3008358, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --1.5 hours post 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "27834-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3052952, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --1.5 hours post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "47658-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36659792, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --1.5 hours post meal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "95111-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3027077, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --1.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "27330-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36660450, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --15 min post meal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "95079-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3049491, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --15 minutes post dose glucagon", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "47655-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3011621, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --15 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "30254-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3046621, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --15th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "33814-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3017922, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --1.6 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "30257-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40771052, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --1.75 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "68465-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3033462, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --1 hour post 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "27830-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3051708, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --1 hour post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "47657-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36660139, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --1 hour post meal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "95112-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3016036, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --1 hour post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "27379-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3052582, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --1 minute post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "47656-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3029720, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --1st specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "50501-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3046287, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --1st specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "33815-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3048483, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --20 minutes post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "47661-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3036251, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --20 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "27372-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3018509, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --2.3 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "30258-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3049493, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --2.5 hours post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "47660-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36660352, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --2.5 hours post meal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "95113-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3024067, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --2.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "27863-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3004884, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --2.6 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "30259-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40759907, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --28 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "56788-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40760065, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --2 days post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "56946-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3026145, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --2 hours post 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "27860-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3049164, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --2 hours post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "47659-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36660132, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --2 hours post meal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "95114-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3012064, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --2 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "27826-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3029908, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --2nd specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "50502-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3046308, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --2nd specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "33816-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36659993, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --30 min post meal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "95116-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3052011, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --30 minutes post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "47663-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3015089, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --30 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "27827-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40759908, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --32 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "56789-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3012529, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --3.3 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "30260-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36660726, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --3.5 hours post meal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "95115-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3017496, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --3.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "30261-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3018344, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --3.6 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "30262-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40759909, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --36 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "56790-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40760063, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --3 days post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "56944-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3051067, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --3 hours post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "47662-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36659716, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --3 hours post meal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "95117-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3009167, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --3 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "27828-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3053266, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --3 minutes post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "47664-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3030827, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --3rd specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "50503-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3045998, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --3rd specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "33817-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40760068, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --40 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "56949-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3036529, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --40 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "27444-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40760067, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --44 hour post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "56948-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43055438, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --4.5 hours post 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72604-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36660594, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --4.5 hours post meal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "95118-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3016818, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --45 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "30255-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36660526, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --4 hours post meal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "95119-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3027834, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --4 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "29378-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3029056, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --4th specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "50504-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3012719, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --4th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "27832-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40760126, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --52 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57007-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40760064, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --56 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "56945-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36660177, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --5 hours post meal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "95120-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3006570, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "27852-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3052901, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --5 minutes post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "47665-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40760468, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --5 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57353-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3049177, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --5 minutes pre dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "47666-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3030826, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --5th specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "50505-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3023123, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --5th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "27874-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40760066, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --60 hour post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "56947-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40760061, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --64 hour post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "56942-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40760062, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --68 hour post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "56943-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3012007, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --6 hours post 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "27872-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3028357, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --6 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "29379-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3051418, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --6 minutes post dose glucagon", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "47667-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40759613, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --6 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "56492-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3030984, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --6th specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "50506-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3019569, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --6th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "27875-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3015678, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --7 hours post 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "27833-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3029665, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --7th specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "50507-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3018957, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --7th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "27867-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40760060, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --8 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "56941-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3031012, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --8th specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "50508-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3028877, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --8th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "33818-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3028902, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --9th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "33819-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40759603, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --baseline", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "56482-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3009413, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --fasting", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "27873-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3048519, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --post meal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "47862-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3049462, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --pre dose glucagon", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "47669-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3050108, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --pre dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "47668-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3052941, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --pre-meal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "47670-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3029043, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --pre XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "49897-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 1002121, + "CONCEPT_NAME" : "Insulin [Units/volume] mean in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "93793-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4254200, + "CONCEPT_NAME" : "Intermittent fetal heart monitoring during labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "408805007", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004750, + "CONCEPT_NAME" : "Internal and combined version with extraction", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "73.22", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004749, + "CONCEPT_NAME" : "Internal and combined version without extraction", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "73.21", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4217602, + "CONCEPT_NAME" : "Internal fetal monitoring during labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "81855008", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4197403, + "CONCEPT_NAME" : "Intervillous thrombosis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80256005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37117767, + "CONCEPT_NAME" : "Intestinal obstruction in newborn due to guanylate cyclase 2C deficiency", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "733447005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4023420, + "CONCEPT_NAME" : "Intra-amniotic infection of fetus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "11618000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4072715, + "CONCEPT_NAME" : "Intracervical artificial insemination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "176844003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36716736, + "CONCEPT_NAME" : "Intracranial hemorrhage due to birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "722906002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36716735, + "CONCEPT_NAME" : "Intracranial laceration due to birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "722905003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4149029, + "CONCEPT_NAME" : "Intraligamentous pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "35656003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4303420, + "CONCEPT_NAME" : "Intrapartal care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "386337006", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4298274, + "CONCEPT_NAME" : "Intrapartal care: high-risk delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "386338001", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4149939, + "CONCEPT_NAME" : "Intrapartum cardiotochogram monitoring", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "309877008", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4242238, + "CONCEPT_NAME" : "Intrapartum hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "38010008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37110285, + "CONCEPT_NAME" : "Intrapartum hemorrhage co-occurrent and due to obstructed labor with uterine rupture", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "724490006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37205799, + "CONCEPT_NAME" : "Intrapartum hemorrhage due to leiomyoma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "785341006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4065747, + "CONCEPT_NAME" : "Intrapartum hemorrhage with coagulation defect", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200173001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45773593, + "CONCEPT_NAME" : "Intrapartum stillbirth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "921611000000101", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4030829, + "CONCEPT_NAME" : "Intraperitoneal insemination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "238312005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4066151, + "CONCEPT_NAME" : "Intraperitoneal pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "17285009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4138741, + "CONCEPT_NAME" : "Intrauterine artificial insemination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "265064001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 74162, + "CONCEPT_NAME" : "Intrauterine asphyxia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276641008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060687, + "CONCEPT_NAME" : "Intrauterine death - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199607009", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Event" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4063309, + "CONCEPT_NAME" : "Intrauterine death with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199608004", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Event" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4139858, + "CONCEPT_NAME" : "Intrauterine insemination using donor sperm", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "426250000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4139060, + "CONCEPT_NAME" : "Intrauterine insemination using partner sperm", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "426389008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4137390, + "CONCEPT_NAME" : "Intrauterine insemination with controlled ovarian hyperstimulation using donor sperm", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "425644009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4145843, + "CONCEPT_NAME" : "Intrauterine insemination with controlled ovarian hyperstimulation using partner sperm", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "426968007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 197031, + "CONCEPT_NAME" : "Intrauterine pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65727000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4020898, + "CONCEPT_NAME" : "Intravaginal artificial insemination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "225250007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2721255, + "CONCEPT_NAME" : "INTRAVAGINAL CULTURE (IVC)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "S4036", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4063939, + "CONCEPT_NAME" : "Intravascular hemolysis following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "20084001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4107728, + "CONCEPT_NAME" : "Intravenous induction of labor", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "180221005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4180743, + "CONCEPT_NAME" : "Intraventricular hemorrhage of fetus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428241007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4079972, + "CONCEPT_NAME" : "Intraventricular hemorrhage of prematurity", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276648002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434155, + "CONCEPT_NAME" : "Intraventricular (nontraumatic) hemorrhage, grade 3, of fetus and newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206397006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4215504, + "CONCEPT_NAME" : "Invasive hydatidiform mole", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "416669000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44500947, + "CONCEPT_NAME" : "Invasive hydatidiform mole of placenta", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "9100/1-C58.9", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "ICDO3", + "CONCEPT_CLASS_ID" : "ICDO Condition" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 195329, + "CONCEPT_NAME" : "Inversion of uterus during delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "23885003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4199599, + "CONCEPT_NAME" : "In vitro fertilization", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "52637005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2788842, + "CONCEPT_NAME" : "In Vitro Fertilization", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "8E0ZXY1", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD10PCS", + "CONCEPT_CLASS_ID" : "ICD10PCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2721237, + "CONCEPT_NAME" : "In vitro fertilization; including but not limited to identification and incubation of mature oocytes, fertilization with sperm, incubation of embryo(s), and subsequent visualization for determination of development", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "S4011", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3049700, + "CONCEPT_NAME" : "In vitro fertilization pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "47224-1", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Clinical Observation" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2721245, + "CONCEPT_NAME" : "In vitro fertilization procedure cancelled after aspiration, case rate", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "S4021", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2721244, + "CONCEPT_NAME" : "In vitro fertilization procedure cancelled before aspiration, case rate", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "S4020", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4138627, + "CONCEPT_NAME" : "In vitro fertilization using donor eggs", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "425866000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 46273065, + "CONCEPT_NAME" : "In vitro fertilization with surrogacy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "711544002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4058246, + "CONCEPT_NAME" : "Iron deficiency anemia of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199248002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4079751, + "CONCEPT_NAME" : "Iron supplement in pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "182947002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4184274, + "CONCEPT_NAME" : "Irregular uterine contractions", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54212005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3655631, + "CONCEPT_NAME" : "Ischemic alopecia due to birth injury", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "866100005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442772, + "CONCEPT_NAME" : "Isoimmunization from non-ABO, non-Rh blood-group incompatibility affecting pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "66958002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061672, + "CONCEPT_NAME" : "IUD failure - pregnant", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169488004", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4145664, + "CONCEPT_NAME" : "IVF - In vitro fertilization using donor sperm", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "427664000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4138633, + "CONCEPT_NAME" : "IVF - In vitro fertilization with intracytoplasmic sperm injection (ICSI)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "425901007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4141534, + "CONCEPT_NAME" : "IVF - In vitro fertilization with intracytoplasmic sperm injection (ICSI) and donor egg", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "426914002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4142402, + "CONCEPT_NAME" : "IVF - In vitro fertilization with pre-implantation genetic diagnosis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "426417003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4198705, + "CONCEPT_NAME" : "Jittery newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "51402000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3030662, + "CONCEPT_NAME" : "Karyotype [Identifier] in Amniotic fluid Nominal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "33773-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3044819, + "CONCEPT_NAME" : "Karyotype [Identifier] in Chorionic villus sample Nominal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "33774-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4122929, + "CONCEPT_NAME" : "Kell isoimmunization of the newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "234380002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437681, + "CONCEPT_NAME" : "Kernicterus due to isoimmunization", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "359007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442216, + "CONCEPT_NAME" : "Kernicterus not due to isoimmunization", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "206478005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439770, + "CONCEPT_NAME" : "Ketoacidosis due to type 1 diabetes mellitus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "420270002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443734, + "CONCEPT_NAME" : "Ketoacidosis due to type 2 diabetes mellitus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "421750000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4095288, + "CONCEPT_NAME" : "Ketoacidotic coma due to diabetes mellitus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26298008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4224254, + "CONCEPT_NAME" : "Ketoacidotic coma due to type 1 diabetes mellitus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "421075007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4228443, + "CONCEPT_NAME" : "Ketoacidotic coma due to type 2 diabetes mellitus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "421847006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3035350, + "CONCEPT_NAME" : "Ketones [Presence] in Urine by Test strip", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "2514-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4049629, + "CONCEPT_NAME" : "Ketotic hypoglycemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "20825002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4139552, + "CONCEPT_NAME" : "Kidd isoimmunization of the newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "307338008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4305334, + "CONCEPT_NAME" : "Klumpke-Dejerine paralysis as birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "81774005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4129837, + "CONCEPT_NAME" : "Knot in umbilical cord", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237309005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530880, + "CONCEPT_NAME" : "Known or suspected fetal abnormality", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "609414006", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 77335, + "CONCEPT_NAME" : "Known OR suspected fetal abnormality affecting management of mother", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "66064007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42742323, + "CONCEPT_NAME" : "KRAS (Kirsten rat sarcoma viral oncogene homolog) (eg, carcinoma) gene analysis; variants in exon 2 (eg, codons 12 and 13)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "81275", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4091790, + "CONCEPT_NAME" : "Labial tear", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "249221003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3195953, + "CONCEPT_NAME" : "labile blood sugars", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14340001000004105", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "Nebraska Lexicon", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37311826, + "CONCEPT_NAME" : "Labor and birth support", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "816968003", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40760193, + "CONCEPT_NAME" : "Labor and delivery process Narrative", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57074-7", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Clinical Observation" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4041698, + "CONCEPT_NAME" : "Laboratory blood glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "166896004", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4250609, + "CONCEPT_NAME" : "Labor care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "409005001", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014719, + "CONCEPT_NAME" : "Labor details", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169960003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4106999, + "CONCEPT_NAME" : "Laceration of anus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "282077009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 199089, + "CONCEPT_NAME" : "Laceration of cervix - obstetric", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199972004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 194709, + "CONCEPT_NAME" : "Laceration of female perineum", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "283970001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4154571, + "CONCEPT_NAME" : "Laceration of male perineum", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "283975006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4152967, + "CONCEPT_NAME" : "Laceration of perineum", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "283380005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4112304, + "CONCEPT_NAME" : "Laceration of skin of penis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "285398006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4034018, + "CONCEPT_NAME" : "Lactational amenorrhea", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237122005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4218738, + "CONCEPT_NAME" : "Lactation tetany", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "81677009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 436167, + "CONCEPT_NAME" : "Lactocele", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "42385006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40347147, + "CONCEPT_NAME" : "Laparoscopic", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "260508005", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Qualifier Value" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40378260, + "CONCEPT_NAME" : "Laparoscopic approach", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "180627003", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Qualifier Value" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42872572, + "CONCEPT_NAME" : "Laparoscopic excision of ectopic ovarian pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "450563004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42872571, + "CONCEPT_NAME" : "Laparoscopic excision of ruptured ectopic tubal pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "450562009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4319321, + "CONCEPT_NAME" : "Laparoscopic lysis of adhesions", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "9540004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40490893, + "CONCEPT_NAME" : "Laparoscopic lysis of adhesions of ovary and fallopian tube", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "447077004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4144415, + "CONCEPT_NAME" : "Laparoscopic oocyte recovery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "265082003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40259107, + "CONCEPT_NAME" : "Laparoscopic oocyte recovery (& NEC)", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "177040000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4190526, + "CONCEPT_NAME" : "Laparoscopic total abdominal hysterectomy and bilateral salpingo-oophorectomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "414575003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110299, + "CONCEPT_NAME" : "Laparoscopic treatment of ectopic pregnancy; without salpingectomy and/or oophorectomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59150", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110300, + "CONCEPT_NAME" : "Laparoscopic treatment of ectopic pregnancy; with salpingectomy and/or oophorectomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59151", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4251314, + "CONCEPT_NAME" : "Laparoscopy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "73632009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40480864, + "CONCEPT_NAME" : "Laparoscopy assisted vaginal hysterectomy with bilateral salpingo-oophorectomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "441820006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4032749, + "CONCEPT_NAME" : "Laparoscopy of fallopian tube", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "236938008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110240, + "CONCEPT_NAME" : "Laparoscopy, surgical; with removal of adnexal structures (partial or total oophorectomy and/or salpingectomy)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "58661", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2722205, + "CONCEPT_NAME" : "Laparoscopy, surgical; with removal of adnexal structures (partial or total oophorectomy and/or salpingectomy). (Deprecated)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "56307", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110245, + "CONCEPT_NAME" : "Laparoscopy, surgical; with salpingostomy (salpingoneostomy)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "58673", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2722217, + "CONCEPT_NAME" : "Laparoscopy, surgical; with salpingostomy (salpingoneostomy). (Deprecated)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "56343", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4030430, + "CONCEPT_NAME" : "Large baby of diabetic mother", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "129599004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 80782, + "CONCEPT_NAME" : "Large fetus causing disproportion - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199422007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 78818, + "CONCEPT_NAME" : "Large fetus causing disproportion with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199423002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36712932, + "CONCEPT_NAME" : "Large for gestational age newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15635491000119102", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4344633, + "CONCEPT_NAME" : "Laryngeal injury due to birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "240316007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2106488, + "CONCEPT_NAME" : "Laryngoscopy direct, with or without tracheoscopy; diagnostic, newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "31520", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4058439, + "CONCEPT_NAME" : "Last menstrual period -1st day", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "161713000", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Observable Entity" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4340777, + "CONCEPT_NAME" : "Late dumping syndrome", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "235667000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4163996, + "CONCEPT_NAME" : "Late fetal death affecting management of mother", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "399363000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434474, + "CONCEPT_NAME" : "Late metabolic acidosis of newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "9635004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061791, + "CONCEPT_NAME" : "Late onset antenatal care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169594005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36713562, + "CONCEPT_NAME" : "Late onset diffuse bleeding diathesis secondary to vitamin K deficient hemorrhagic disease of fetus and newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "717937006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 35622881, + "CONCEPT_NAME" : "Late-onset neonatal sepsis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "765107002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4206624, + "CONCEPT_NAME" : "Late postpartum state", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "56026007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441082, + "CONCEPT_NAME" : "Late pregnancy vomiting - delivered", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "199032005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443325, + "CONCEPT_NAME" : "Late pregnancy vomiting - not delivered", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "199033000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439880, + "CONCEPT_NAME" : "Late vomiting of pregnancy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "38331001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3035904, + "CONCEPT_NAME" : "Lecithin/Sphingomyelin [Ratio] in Amniotic fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14976-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4074877, + "CONCEPT_NAME" : "Left salpingectomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "176917009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4074876, + "CONCEPT_NAME" : "Left salpingo-oophorectomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "176915001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4113976, + "CONCEPT_NAME" : "Legally induced abortion NOS", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "198729008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444077, + "CONCEPT_NAME" : "Legal termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "39406005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 192379, + "CONCEPT_NAME" : "Legal termination of pregnancy complicated by damage to pelvic organ and/or tissues", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "111431001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 197617, + "CONCEPT_NAME" : "Legal termination of pregnancy complicated by delayed and/or excessive hemorrhage", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "58071009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442346, + "CONCEPT_NAME" : "Legal termination of pregnancy complicated by embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57734001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439883, + "CONCEPT_NAME" : "Legal termination of pregnancy complicated by genital-pelvic infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "373901007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 436474, + "CONCEPT_NAME" : "Legal termination of pregnancy complicated by metabolic disorder", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "3634007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 195595, + "CONCEPT_NAME" : "Legal termination of pregnancy complicated by renal failure", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "4576001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 197333, + "CONCEPT_NAME" : "Legal termination of pregnancy complicated by shock", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "27169005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181114, + "CONCEPT_NAME" : "Legal termination of pregnancy with acute renal failure", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "52342006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4147533, + "CONCEPT_NAME" : "Legal termination of pregnancy with afibrinogenemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "30479005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4009642, + "CONCEPT_NAME" : "Legal termination of pregnancy with air embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "111432008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4098441, + "CONCEPT_NAME" : "Legal termination of pregnancy with amniotic fluid embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "27015006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4292089, + "CONCEPT_NAME" : "Legal termination of pregnancy with blood-clot embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "37787009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4025639, + "CONCEPT_NAME" : "Legal termination of pregnancy with cardiac arrest and/or failure", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "12095001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4077454, + "CONCEPT_NAME" : "Legal termination of pregnancy with cerebral anoxia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "18894005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441349, + "CONCEPT_NAME" : "Legal termination of pregnancy with complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48433002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4280224, + "CONCEPT_NAME" : "Legal termination of pregnancy with defibrination syndrome", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6647006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4214233, + "CONCEPT_NAME" : "Legal termination of pregnancy with electrolyte imbalance", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "39239006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4294829, + "CONCEPT_NAME" : "Legal termination of pregnancy with endometritis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "75947000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4328084, + "CONCEPT_NAME" : "Legal termination of pregnancy with fat embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "75825001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4046510, + "CONCEPT_NAME" : "Legal termination of pregnancy with intravascular hemolysis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12296009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4243658, + "CONCEPT_NAME" : "Legal termination of pregnancy with laceration of bladder", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59859005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4183680, + "CONCEPT_NAME" : "Legal termination of pregnancy with laceration of bowel", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "5577003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4216436, + "CONCEPT_NAME" : "Legal termination of pregnancy with laceration of broad ligament", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "41806003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4324695, + "CONCEPT_NAME" : "Legal termination of pregnancy with laceration of cervix", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7166002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4324672, + "CONCEPT_NAME" : "Legal termination of pregnancy with laceration of periurethral tissue", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "71216006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4045581, + "CONCEPT_NAME" : "Legal termination of pregnancy with laceration of uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13100007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4204231, + "CONCEPT_NAME" : "Legal termination of pregnancy with laceration of vagina", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54044001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4269450, + "CONCEPT_NAME" : "Legal termination of pregnancy with oliguria", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36473002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 436747, + "CONCEPT_NAME" : "Legal termination of pregnancy without complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "34500003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4049453, + "CONCEPT_NAME" : "Legal termination of pregnancy with parametritis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15511008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4094081, + "CONCEPT_NAME" : "Legal termination of pregnancy with pelvic peritonitis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26010008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4271203, + "CONCEPT_NAME" : "Legal termination of pregnancy with perforation of bladder", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "62888008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4184150, + "CONCEPT_NAME" : "Legal termination of pregnancy with perforation of bowel", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55933000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4198404, + "CONCEPT_NAME" : "Legal termination of pregnancy with perforation of broad ligament", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "51953009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4312358, + "CONCEPT_NAME" : "Legal termination of pregnancy with perforation of cervix", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "85652000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4296459, + "CONCEPT_NAME" : "Legal termination of pregnancy with perforation of periurethral tissue", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "76472002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4068253, + "CONCEPT_NAME" : "Legal termination of pregnancy with perforation of uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "20216003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4327321, + "CONCEPT_NAME" : "Legal termination of pregnancy with perforation of vagina", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "75013000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4058932, + "CONCEPT_NAME" : "Legal termination of pregnancy with postoperative shock", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "21280005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4178578, + "CONCEPT_NAME" : "Legal termination of pregnancy with pulmonary embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "51096002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4070939, + "CONCEPT_NAME" : "Legal termination of pregnancy with renal tubular necrosis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "20483002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4204206, + "CONCEPT_NAME" : "Legal termination of pregnancy with salpingitis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "53098006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4197681, + "CONCEPT_NAME" : "Legal termination of pregnancy with salpingo-oophoritis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "51707007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4188764, + "CONCEPT_NAME" : "Legal termination of pregnancy with sepsis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "39246002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4106892, + "CONCEPT_NAME" : "Legal termination of pregnancy with septic embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "29950007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4105063, + "CONCEPT_NAME" : "Legal termination of pregnancy with septic shock", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25691001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4225572, + "CONCEPT_NAME" : "Legal termination of pregnancy with uremia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "8468007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4245041, + "CONCEPT_NAME" : "Legal termination of pregnancy with urinary tract infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "5945005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4006979, + "CONCEPT_NAME" : "Leprechaunism syndrome", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "111307005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4128988, + "CONCEPT_NAME" : "Lesion of umbilical stump", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "289330005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4268175, + "CONCEPT_NAME" : "Leucine-induced hypoglycemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "62151007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110236, + "CONCEPT_NAME" : "Ligation or transection of fallopian tube(s), abdominal or vaginal approach, postpartum, unilateral or bilateral, during same hospitalization (separate procedure)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "58605", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 74469, + "CONCEPT_NAME" : "Light-for-dates without fetal malnutrition", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "189445003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 72726, + "CONCEPT_NAME" : "Light-for-dates with signs of fetal malnutrition", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64177003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36716536, + "CONCEPT_NAME" : "Linear fracture of skull due to birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "722571004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4238207, + "CONCEPT_NAME" : "Listeria miscarriage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57420002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4092289, + "CONCEPT_NAME" : "Livebirth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "281050002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4307044, + "CONCEPT_NAME" : "Live birth surviving more than one year", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "390959009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40482735, + "CONCEPT_NAME" : "Liveborn born in hospital", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "442311008", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40483126, + "CONCEPT_NAME" : "Liveborn born in hospital by cesarean section", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "442365008", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 194699, + "CONCEPT_NAME" : "Liver disorder in pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15230009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 196170, + "CONCEPT_NAME" : "Liver disorder in pregnancy - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199117000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443292, + "CONCEPT_NAME" : "Liver disorder in pregnancy - not delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199118005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4047865, + "CONCEPT_NAME" : "Liver rupture due to birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206245001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4047863, + "CONCEPT_NAME" : "Liver subcapsular hematoma due to birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206242003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4127042, + "CONCEPT_NAME" : "Lochia abnormal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "289586006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4129167, + "CONCEPT_NAME" : "Lochia absent", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "289578006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42709955, + "CONCEPT_NAME" : "Lochia alba", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "449827006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4127039, + "CONCEPT_NAME" : "Lochia ceased", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "289579003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4096534, + "CONCEPT_NAME" : "Lochia finding", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "249211006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4127040, + "CONCEPT_NAME" : "Lochia heavy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "289580000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4127041, + "CONCEPT_NAME" : "Lochia minimal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "289582008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4124480, + "CONCEPT_NAME" : "Lochia normal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "289585005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4129166, + "CONCEPT_NAME" : "Lochia present", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "289576005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4127038, + "CONCEPT_NAME" : "Lochia reducing", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "289577001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4175536, + "CONCEPT_NAME" : "Lochia rubra", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "278072004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4129168, + "CONCEPT_NAME" : "Lochia scanty", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "289581001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42709956, + "CONCEPT_NAME" : "Lochia serosa", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "449828001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4126720, + "CONCEPT_NAME" : "Lochia thick", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "289584009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4126719, + "CONCEPT_NAME" : "Lochia watery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "289583003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4171116, + "CONCEPT_NAME" : "Long fetal gestation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276616001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4091785, + "CONCEPT_NAME" : "Loss of fundal mass after delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "249203001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4016047, + "CONCEPT_NAME" : "Loss of hypoglycemic warning due to diabetes mellitus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "170766006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4171115, + "CONCEPT_NAME" : "Low birth weight infant", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276610007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004786, + "CONCEPT_NAME" : "Low cervical cesarean section", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "74.1", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "3-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4161944, + "CONCEPT_NAME" : "Low cervical cesarean section", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "398307005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37312440, + "CONCEPT_NAME" : "Lower uterine segment cesarean section", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "788180009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44513746, + "CONCEPT_NAME" : "Low forceps cephalic delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "R21.5", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "OPCS4", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4088084, + "CONCEPT_NAME" : "Low forceps delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "18625004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4075735, + "CONCEPT_NAME" : "Low forceps delivery with episiotomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "17860005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004703, + "CONCEPT_NAME" : "Low forceps operation", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72.0", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "3-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004704, + "CONCEPT_NAME" : "Low forceps operation with episiotomy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72.1", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "3-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4075191, + "CONCEPT_NAME" : "Low vacuum delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177174003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4165508, + "CONCEPT_NAME" : "Lucey-Driscoll syndrome", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "47444008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4153112, + "CONCEPT_NAME" : "Lunch time blood glucose measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "271063001", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4239200, + "CONCEPT_NAME" : "Lymphangitis of breast associated with childbirth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "68214002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4214980, + "CONCEPT_NAME" : "Lysis of adhesions", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "39270003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4130310, + "CONCEPT_NAME" : "Macdonald's cervical cerclage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "236946009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4028787, + "CONCEPT_NAME" : "Macerated stillbirth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237366000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4093584, + "CONCEPT_NAME" : "Major depressive disorder, single episode with postpartum onset", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25922000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37394500, + "CONCEPT_NAME" : "Major postpartum haemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1033591000000101", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440473, + "CONCEPT_NAME" : "Major puerperal infection", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "40125005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36403113, + "CONCEPT_NAME" : "Malignant placental site trophoblastic tumor of placenta", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "9104/3-C58.9", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "ICDO3", + "CONCEPT_CLASS_ID" : "ICDO Condition" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4096041, + "CONCEPT_NAME" : "Malnutrition-related diabetes mellitus with ketoacidosis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "190406000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 77338, + "CONCEPT_NAME" : "Malposition and malpresentation of fetus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "270498000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4071505, + "CONCEPT_NAME" : "Manipulative cephalic vaginal delivery with abnormal presentation of head at delivery without instrument", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177180006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004845, + "CONCEPT_NAME" : "Manual exploration of uterine cavity, postpartum", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "75.7", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "3-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4170533, + "CONCEPT_NAME" : "Manual postpartum exploration of uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "49149002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4069969, + "CONCEPT_NAME" : "Manual removal of placenta from delivered uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177204008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4069968, + "CONCEPT_NAME" : "Manual removal of products of conception from delivered uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177203002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4151385, + "CONCEPT_NAME" : "Manual removal of retained placenta", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "28233006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004826, + "CONCEPT_NAME" : "Manual removal of retained placenta", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "75.4", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "3-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004764, + "CONCEPT_NAME" : "Manual rotation of fetal head", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "73.51", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4338977, + "CONCEPT_NAME" : "Marginal placenta previa with intrapartum hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87814002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37205103, + "CONCEPT_NAME" : "Massive epicranial subaponeurotic hematoma due to birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "784407005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4070523, + "CONCEPT_NAME" : "Massive subgaleal hemorrhage due to birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206202008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4048281, + "CONCEPT_NAME" : "Massive umbilical hemorrhage of newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206403000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44784126, + "CONCEPT_NAME" : "Mastitis associated with lactation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "700038005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4016059, + "CONCEPT_NAME" : "Maternal alcohol abuse", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "169942003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443295, + "CONCEPT_NAME" : "Maternal care for diminished fetal movements", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "200473005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4066354, + "CONCEPT_NAME" : "Maternal care for poor fetal growth", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "200474004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4091196, + "CONCEPT_NAME" : "Maternal condition during puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "249197004", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Observable Entity" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432977, + "CONCEPT_NAME" : "Maternal distress with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200101003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4062131, + "CONCEPT_NAME" : "Maternal distress with postnatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200102005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4197085, + "CONCEPT_NAME" : "Maternal dystocia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "79748007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441081, + "CONCEPT_NAME" : "Maternal gonorrhea during pregnancy - baby not yet delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199165004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443054, + "CONCEPT_NAME" : "Maternal gonorrhea during pregnancy, childbirth and the puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199161008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 314432, + "CONCEPT_NAME" : "Maternal hypotension syndrome", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "88887003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 313829, + "CONCEPT_NAME" : "Maternal hypotension syndrome - delivered with postnatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200112003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 315327, + "CONCEPT_NAME" : "Maternal hypotension syndrome with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200113008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4066002, + "CONCEPT_NAME" : "Maternal hypotension syndrome with postnatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200114002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443016, + "CONCEPT_NAME" : "Maternal malaria during pregnancy, childbirth and the puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199183007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443015, + "CONCEPT_NAME" : "Maternal malaria in the puerperium - baby delivered during current episode of care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199186004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443014, + "CONCEPT_NAME" : "Maternal malaria in the puerperium - baby delivered during previous episode of care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199188003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42872398, + "CONCEPT_NAME" : "Maternal obesity complicating pregnancy, childbirth and the puerperium, antepartum", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "171000119107", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439893, + "CONCEPT_NAME" : "Maternal obesity syndrome", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "44772007", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4297233, + "CONCEPT_NAME" : "Maternal postnatal 6 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "384636006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40485049, + "CONCEPT_NAME" : "Maternal postnatal examination done", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "444136005", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40483251, + "CONCEPT_NAME" : "Maternal postnatal examination not attended", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "443788002", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40485007, + "CONCEPT_NAME" : "Maternal postnatal examination offered", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "444099004", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40484589, + "CONCEPT_NAME" : "Maternal postnatal examination refused", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "444020006", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434105, + "CONCEPT_NAME" : "Maternal pyrexia during labor", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "37141005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4143214, + "CONCEPT_NAME" : "Maternal pyrexia in labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "267340006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438206, + "CONCEPT_NAME" : "Maternal rubella during pregnancy - baby delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199192005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435606, + "CONCEPT_NAME" : "Maternal syphilis during pregnancy - baby delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199156006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438205, + "CONCEPT_NAME" : "Maternal syphilis during pregnancy - baby not yet delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199158007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443020, + "CONCEPT_NAME" : "Maternal syphilis in the puerperium - baby delivered during previous episode of care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199159004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434697, + "CONCEPT_NAME" : "Maternal tobacco abuse", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169940006", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4197402, + "CONCEPT_NAME" : "Maternal transfer neutropenia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80255009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443018, + "CONCEPT_NAME" : "Maternal tuberculosis in the puerperium - baby delivered during current episode of care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199179007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40478936, + "CONCEPT_NAME" : "Measurement of alpha fetoprotein and analysis of chromosomes in amniotic fluid specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "444311009", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40483704, + "CONCEPT_NAME" : "Measurement of alpha fetoprotein and human chorionic gonadotropin and unconjugated estriol in serum or plasma specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "443883001", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40480870, + "CONCEPT_NAME" : "Measurement of alpha fetoprotein as marker for malignant neoplasm", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "441825001", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40483600, + "CONCEPT_NAME" : "Measurement of alpha fetoprotein in second trimester", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "442495004", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40481772, + "CONCEPT_NAME" : "Measurement of fasting glucose in urine specimen using dipstick", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "442033004", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40482677, + "CONCEPT_NAME" : "Measurement of glucose 1 hour after glucose challenge for glucose tolerance test", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "442260000", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4176733, + "CONCEPT_NAME" : "Measurement of glucose 2 hours after glucose challenge for glucose tolerance test", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "49167009", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4027514, + "CONCEPT_NAME" : "Measurement of glucose 3 hours after glucose challenge for glucose tolerance test", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13165004", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40482666, + "CONCEPT_NAME" : "Measurement of glucose 4 hours after glucose challenge for glucose tolerance test", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "442250009", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4143633, + "CONCEPT_NAME" : "Measurement of glucose 5 hours after glucose challenge for glucose tolerance test", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "34259007", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4232703, + "CONCEPT_NAME" : "Measurement of pregnancy associated plasma protein A concentration", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "440090009", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439934, + "CONCEPT_NAME" : "Meconium aspiration syndrome", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206292002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 193591, + "CONCEPT_NAME" : "Meconium ileus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206523001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4241979, + "CONCEPT_NAME" : "Meconium in amniotic fluid, not clear if noted before OR after onset of labor in liveborn infant", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59534005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4058519, + "CONCEPT_NAME" : "Meconium in amniotic fluid noted before labor in liveborn infant", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "2132004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4238980, + "CONCEPT_NAME" : "Meconium peritonitis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57341009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4315046, + "CONCEPT_NAME" : "Meconium pneumonitis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86649001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44807900, + "CONCEPT_NAME" : "Medical evacuation of retained products of conception using prostaglandin", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "854611000000109", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004762, + "CONCEPT_NAME" : "Medical induction of labor", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "73.4", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "3-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2721012, + "CONCEPT_NAME" : "Medically induced abortion by oral ingestion of medication including all associated services and supplies (e.g., patient counseling, office visits, confirmation of pregnancy by hcg, ultrasound to confirm duration of pregnancy, ultrasound to confirm com...", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "S0199", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4115153, + "CONCEPT_NAME" : "Medical termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "285409006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40487510, + "CONCEPT_NAME" : "Medical termination of pregnancy using prostaglandin", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "447972007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44784273, + "CONCEPT_NAME" : "Melena of newborn due to swallowed maternal blood", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "698318003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4112952, + "CONCEPT_NAME" : "Membranous pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198624007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442920, + "CONCEPT_NAME" : "Mental disorder during pregnancy - baby delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199259006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442918, + "CONCEPT_NAME" : "Mental disorder during pregnancy - baby not yet delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199261002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442919, + "CONCEPT_NAME" : "Mental disorder in the puerperium - baby delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199260001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442917, + "CONCEPT_NAME" : "Mental disorder in the puerperium - baby delivered during previous episode of care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199262009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060424, + "CONCEPT_NAME" : "Mental disorders during pregnancy, childbirth and the puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199257008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4113218, + "CONCEPT_NAME" : "Mesenteric pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198626009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432371, + "CONCEPT_NAME" : "Metabolic disorder following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "35208003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4029421, + "CONCEPT_NAME" : "Metabolic stress hyperglycemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237624007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3000034, + "CONCEPT_NAME" : "Microalbumin [Mass/volume] in Urine", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14957-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44513745, + "CONCEPT_NAME" : "Mid forceps cephalic delivery NEC", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "R21.4", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "OPCS4", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4075189, + "CONCEPT_NAME" : "Midforceps cephalic delivery with rotation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177164001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4266683, + "CONCEPT_NAME" : "Mid forceps delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "62508004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4093774, + "CONCEPT_NAME" : "Mid forceps delivery with episiotomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25828002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4143647, + "CONCEPT_NAME" : "Midforceps delivery without rotation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "265639000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004706, + "CONCEPT_NAME" : "Mid forceps operation with episiotomy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72.21", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4179832, + "CONCEPT_NAME" : "Mid postpartum state", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "42814007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44790206, + "CONCEPT_NAME" : "Mid trimester scan", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "228551000000105", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42535817, + "CONCEPT_NAME" : "Mid vacuum delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "734276001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4305717, + "CONCEPT_NAME" : "Midwife unit delivery booking", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "390782000", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4079970, + "CONCEPT_NAME" : "Mild birth asphyxia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276643006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4121760, + "CONCEPT_NAME" : "Mild birth asphyxia, APGAR 4-7", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "287986009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 436166, + "CONCEPT_NAME" : "Mild hyperemesis gravidarum", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "19569008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435023, + "CONCEPT_NAME" : "Mild hyperemesis-not delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199023008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4129842, + "CONCEPT_NAME" : "Mild postnatal depression", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237349002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4028783, + "CONCEPT_NAME" : "Mild postnatal psychosis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237351003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 314090, + "CONCEPT_NAME" : "Mild pre-eclampsia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "41114007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434759, + "CONCEPT_NAME" : "Mild to moderate birth asphyxia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "77362009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4173176, + "CONCEPT_NAME" : "Mild transient tachypnea of newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276531000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37394499, + "CONCEPT_NAME" : "Minor postpartum haemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1033571000000100", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4067106, + "CONCEPT_NAME" : "Miscarriage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "17369002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4087102, + "CONCEPT_NAME" : "Miscarriage at 8 to 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "184339009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 192678, + "CONCEPT_NAME" : "Miscarriage complicated by damage to pelvic organs and/or tissues", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "58990004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 195594, + "CONCEPT_NAME" : "Miscarriage complicated by delayed and/or excessive hemorrhage", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "2781009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 194704, + "CONCEPT_NAME" : "Miscarriage complicated by embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43306002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437920, + "CONCEPT_NAME" : "Miscarriage complicated by genital-pelvic infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "373896005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441348, + "CONCEPT_NAME" : "Miscarriage complicated by metabolic disorder", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13384007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 193820, + "CONCEPT_NAME" : "Miscarriage complicated by renal failure", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10697004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 196746, + "CONCEPT_NAME" : "Miscarriage complicated by shock", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "34270000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4323612, + "CONCEPT_NAME" : "Miscarriage due to Brucella abortus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428508008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4051244, + "CONCEPT_NAME" : "Miscarriage due to Leptospira", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16038004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4078393, + "CONCEPT_NAME" : "Miscarriage in first trimester", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "19169002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4224646, + "CONCEPT_NAME" : "Miscarriage in second trimester", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "85116003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4167685, + "CONCEPT_NAME" : "Miscarriage in third trimester", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48485000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530979, + "CONCEPT_NAME" : "Miscarriage of tubal ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609525000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4224597, + "CONCEPT_NAME" : "Miscarriage with acute necrosis of liver", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40444006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4211863, + "CONCEPT_NAME" : "Miscarriage with acute renal failure", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57469000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4064536, + "CONCEPT_NAME" : "Miscarriage with afibrinogenemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "21360006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4247270, + "CONCEPT_NAME" : "Miscarriage with air embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "60265009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4003276, + "CONCEPT_NAME" : "Miscarriage with amniotic fluid embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10058006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4209126, + "CONCEPT_NAME" : "Miscarriage with blood-clot embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55976003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4175137, + "CONCEPT_NAME" : "Miscarriage with cardiac arrest and/or cardiac failure", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48739004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4047775, + "CONCEPT_NAME" : "Miscarriage with cerebral anoxia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12394009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434094, + "CONCEPT_NAME" : "Miscarriage with complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "34614007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4179796, + "CONCEPT_NAME" : "Miscarriage with defibrination syndrome", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "50770000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4274315, + "CONCEPT_NAME" : "Miscarriage with electrolyte imbalance", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64814003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4149423, + "CONCEPT_NAME" : "Miscarriage with endometritis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "30806007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4278107, + "CONCEPT_NAME" : "Miscarriage with fat embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "66131005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4170457, + "CONCEPT_NAME" : "Miscarriage with heavy bleeding", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "275421004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4180568, + "CONCEPT_NAME" : "Miscarriage with intravascular hemolysis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "53183006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4194113, + "CONCEPT_NAME" : "Miscarriage with laceration of bladder", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "39199000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4041728, + "CONCEPT_NAME" : "Miscarriage with laceration of bowel", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16714009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4309780, + "CONCEPT_NAME" : "Miscarriage with laceration of broad ligament", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "85331004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4130670, + "CONCEPT_NAME" : "Miscarriage with laceration of cervix", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "127009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4261327, + "CONCEPT_NAME" : "Miscarriage with laceration of periurethral tissue", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "44814008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4302162, + "CONCEPT_NAME" : "Miscarriage with laceration of uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7809009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4311698, + "CONCEPT_NAME" : "Miscarriage with laceration of vagina", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "85632001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4217670, + "CONCEPT_NAME" : "Miscarriage with oliguria", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72613009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 436176, + "CONCEPT_NAME" : "Miscarriage without complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "23793007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4221853, + "CONCEPT_NAME" : "Miscarriage with parametritis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "83922009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4313166, + "CONCEPT_NAME" : "Miscarriage with pelvic peritonitis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "85991008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4310654, + "CONCEPT_NAME" : "Miscarriage with perforation of bladder", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "85467007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4216342, + "CONCEPT_NAME" : "Miscarriage with perforation of bowel", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "8071005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4031837, + "CONCEPT_NAME" : "Miscarriage with perforation of broad ligament", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14136000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4253804, + "CONCEPT_NAME" : "Miscarriage with perforation of cervix", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "74369005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4200070, + "CONCEPT_NAME" : "Miscarriage with perforation of periurethral tissue", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "51954003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4049891, + "CONCEPT_NAME" : "Miscarriage with perforation of uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15809008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4339107, + "CONCEPT_NAME" : "Miscarriage with perforation of vagina", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87967003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4168445, + "CONCEPT_NAME" : "Miscarriage with postoperative shock", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "47537002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4219469, + "CONCEPT_NAME" : "Miscarriage with pulmonary embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "82153002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4001856, + "CONCEPT_NAME" : "Miscarriage with renal tubular necrosis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "11026009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4195406, + "CONCEPT_NAME" : "Miscarriage with salpingitis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7910003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4189350, + "CONCEPT_NAME" : "Miscarriage with salpingo-oophoritis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "61568004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4285746, + "CONCEPT_NAME" : "Miscarriage with sepsis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "67465009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4244261, + "CONCEPT_NAME" : "Miscarriage with septic embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59204004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4085627, + "CONCEPT_NAME" : "Miscarriage with septic shock", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "18613002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4006806, + "CONCEPT_NAME" : "Miscarriage with uremia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "11109001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4033096, + "CONCEPT_NAME" : "Miscarriage with urinary tract infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1469007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 76482, + "CONCEPT_NAME" : "Missed miscarriage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16607004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4063183, + "CONCEPT_NAME" : "Mixed feto-pelvic disproportion", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199416003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 72970, + "CONCEPT_NAME" : "Mixed feto-pelvic disproportion - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199418002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 78817, + "CONCEPT_NAME" : "Mixed feto-pelvic disproportion with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199419005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4278101, + "CONCEPT_NAME" : "Mixed hypoglycemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "66095000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42539560, + "CONCEPT_NAME" : "Mixed neonatal apnea", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "762287001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4030429, + "CONCEPT_NAME" : "Moderate hyperemesis gravidarum", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "129597002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4034094, + "CONCEPT_NAME" : "Moderate proteinuric hypertension of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237281009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36675173, + "CONCEPT_NAME" : "Moderate to late prematurity of infant", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "771507004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37016955, + "CONCEPT_NAME" : "Monitoring fetal development", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "713117007", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4146288, + "CONCEPT_NAME" : "Monitoring of lochia by sanitary pad count", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "427406007", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43021951, + "CONCEPT_NAME" : "Monochorionic diamniotic twin pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "459168005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43021952, + "CONCEPT_NAME" : "Monochorionic monoamniotic twin pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "459171002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4199931, + "CONCEPT_NAME" : "Morning sickness", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "51885006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433260, + "CONCEPT_NAME" : "Mother delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "289256000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437041, + "CONCEPT_NAME" : "Mother not delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "289257009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4310471, + "CONCEPT_NAME" : "MS alpha-fetoprotein level", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "391516001", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110337, + "CONCEPT_NAME" : "Multifetal pregnancy reduction(s) (MPR)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59866", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4163851, + "CONCEPT_NAME" : "Multiple birth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45384004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4063163, + "CONCEPT_NAME" : "Multiple delivery, all by cesarean section", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199331008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4063162, + "CONCEPT_NAME" : "Multiple delivery, all by forceps and vacuum extractor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199330009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4059751, + "CONCEPT_NAME" : "Multiple delivery, all spontaneous", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199329004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 75015, + "CONCEPT_NAME" : "Multiple gestation with one OR more fetal malpresentations", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80224003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42539267, + "CONCEPT_NAME" : "Multiple liveborn in hospital by vaginal delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16089691000119102", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36713468, + "CONCEPT_NAME" : "Multiple liveborn other than twins born in hospital", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "717807001", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3045823, + "CONCEPT_NAME" : "Multiple pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45371-2", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Clinical Observation" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432969, + "CONCEPT_NAME" : "Multiple pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16356006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442082, + "CONCEPT_NAME" : "Multiple pregnancy with malpresentation - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199380003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4063175, + "CONCEPT_NAME" : "Multiple pregnancy with malpresentation with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199381004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4178154, + "CONCEPT_NAME" : "Multiple pregnancy with one fetal loss", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428511009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42599849, + "CONCEPT_NAME" : "Mycotic abortion", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "360061000009103", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED Veterinary", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3000119, + "CONCEPT_NAME" : "Narrative Fetal presentation US", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "18850-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Clinical Observation" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 201957, + "CONCEPT_NAME" : "Necrotizing enterocolitis in fetus OR newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "2707005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37311912, + "CONCEPT_NAME" : "Necrotizing enterocolitis of newborn, stage 1A", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "788986004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37311911, + "CONCEPT_NAME" : "Necrotizing enterocolitis of newborn, stage 1B", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "788987008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37311910, + "CONCEPT_NAME" : "Necrotizing enterocolitis of newborn, stage 2A", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "788988003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37311909, + "CONCEPT_NAME" : "Necrotizing enterocolitis of newborn, stage 2B", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "788989006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37311908, + "CONCEPT_NAME" : "Necrotizing enterocolitis of newborn, stage 3A", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "788990002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37311907, + "CONCEPT_NAME" : "Necrotizing enterocolitis of newborn, Stage 3B", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "788991003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4172307, + "CONCEPT_NAME" : "Neonatal acne", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "49706007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 765023, + "CONCEPT_NAME" : "Neonatal adrenal hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16060511000119104", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4319457, + "CONCEPT_NAME" : "Neonatal apneic attack", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "95616002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433589, + "CONCEPT_NAME" : "Neonatal aspiration of amniotic fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276540001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 252442, + "CONCEPT_NAME" : "Neonatal aspiration of blood", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206294001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437374, + "CONCEPT_NAME" : "Neonatal aspiration of meconium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "278927005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4172995, + "CONCEPT_NAME" : "Neonatal aspiration of milk", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276542009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434154, + "CONCEPT_NAME" : "Neonatal aspiration syndromes", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276533002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4171248, + "CONCEPT_NAME" : "Neonatal bacterial conjunctivitis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276680000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443522, + "CONCEPT_NAME" : "Neonatal bradycardia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "413341007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440840, + "CONCEPT_NAME" : "Neonatal candidiasis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "414821002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4070650, + "CONCEPT_NAME" : "Neonatal candidiasis of intestine", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206358003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4070651, + "CONCEPT_NAME" : "Neonatal candidiasis of lung", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206359006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4070648, + "CONCEPT_NAME" : "Neonatal candidiasis of perineum", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206356004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4106274, + "CONCEPT_NAME" : "Neonatal cardiac arrest", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "180906006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4110550, + "CONCEPT_NAME" : "Neonatal cardiorespiratory arrest", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "181869007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 761919, + "CONCEPT_NAME" : "Neonatal cerebral hematoma due to birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "194091000119102", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4129290, + "CONCEPT_NAME" : "Neonatal cerebral hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "261808007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4173173, + "CONCEPT_NAME" : "Neonatal chloridorrhea", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "276524004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36674511, + "CONCEPT_NAME" : "Neonatal clicking hip", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "778014002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4269452, + "CONCEPT_NAME" : "Neonatal condition - finding", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "364737004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36717459, + "CONCEPT_NAME" : "Neonatal conjunctivitis and dacrocystitis caused by Neisseria gonorrhoeae", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "721281003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4173019, + "CONCEPT_NAME" : "Neonatal cord dry", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276401008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4170953, + "CONCEPT_NAME" : "Neonatal cord moist", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276402001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4173020, + "CONCEPT_NAME" : "Neonatal cord sticky", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276403006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 373870, + "CONCEPT_NAME" : "Neonatal dacryocystitis and conjunctivitis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206345004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4210315, + "CONCEPT_NAME" : "Neonatal death of female (within 4 weeks, USA)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "56102008", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Event" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4206035, + "CONCEPT_NAME" : "Neonatal death of female (within 7 days, WHO)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55225009", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Event" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4239540, + "CONCEPT_NAME" : "Neonatal death of male (within 4 weeks, USA)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "91519006", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Event" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4244718, + "CONCEPT_NAME" : "Neonatal death of male (within 7 days, WHO)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "60257006", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Event" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4291447, + "CONCEPT_NAME" : "Neonatal dermatosis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "402795001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 193323, + "CONCEPT_NAME" : "Neonatal diabetes mellitus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "49817004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36716761, + "CONCEPT_NAME" : "Neonatal difficulty in feeding at breast", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "722934009", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42537680, + "CONCEPT_NAME" : "Neonatal disorder of oral mucosa", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "737211006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44784276, + "CONCEPT_NAME" : "Neonatal effect of alcohol transmitted via breast milk", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "698321001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44784301, + "CONCEPT_NAME" : "Neonatal effect of anti-infective agent transmitted via breast milk", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "698403003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44784360, + "CONCEPT_NAME" : "Neonatal effect of maternal intrauterine infection", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "698495000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36717269, + "CONCEPT_NAME" : "Neonatal effect of maternal postpartum depression", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "11047971000119109", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4050236, + "CONCEPT_NAME" : "Neonatal effect of noxious substance transmitted via breast milk", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "20952006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4025181, + "CONCEPT_NAME" : "Neonatal enamel hypoplasia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "196279002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36715839, + "CONCEPT_NAME" : "Neonatal eosinophilic esophagitis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "721612007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36716750, + "CONCEPT_NAME" : "Neonatal epistaxis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "722922001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36717488, + "CONCEPT_NAME" : "Neonatal esophagitis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "721611000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3188843, + "CONCEPT_NAME" : "Neonatal exposure to Hepatitis B in mother", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "9300001000004101", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "Nebraska Lexicon", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3175980, + "CONCEPT_NAME" : "Neonatal exposure to HIV in mother", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "9330001000004109", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "Nebraska Lexicon", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3173911, + "CONCEPT_NAME" : "Neonatal exposure to syphilis in mother", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "9310001000004104", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "Nebraska Lexicon", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4173004, + "CONCEPT_NAME" : "Neonatal facial petechiae", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276619008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44792481, + "CONCEPT_NAME" : "Neonatal feeding education", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "352641000000101", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36712969, + "CONCEPT_NAME" : "Neonatal gastroesophageal reflux", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15749591000119107", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4180181, + "CONCEPT_NAME" : "Neonatal gastrointestinal disorder", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "363219007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37109016, + "CONCEPT_NAME" : "Neonatal gastrointestinal hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16055151000119105", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4243042, + "CONCEPT_NAME" : "Neonatal Graves' disease", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59957008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42538558, + "CONCEPT_NAME" : "Neonatal hemorrhage of bladder", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "762289003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42538557, + "CONCEPT_NAME" : "Neonatal hemorrhage of kidney", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "762288006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42536722, + "CONCEPT_NAME" : "Neonatal hemorrhage of liver", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "735677007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36717593, + "CONCEPT_NAME" : "Neonatal hemorrhage of spleen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "722921008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42538559, + "CONCEPT_NAME" : "Neonatal hemorrhage of uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "762290007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4320490, + "CONCEPT_NAME" : "Neonatal hepatitis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "69800000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4318835, + "CONCEPT_NAME" : "Neonatal hepatocellular damage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "95555006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4214373, + "CONCEPT_NAME" : "Neonatal hepatosplenomegaly", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80378000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4132505, + "CONCEPT_NAME" : "Neonatal herpes simplex virus conjunctivitis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "410507001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 23034, + "CONCEPT_NAME" : "Neonatal hypoglycemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "52767006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36716745, + "CONCEPT_NAME" : "Neonatal hypotonia of hypopharynx", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "722916005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443618, + "CONCEPT_NAME" : "Neonatal hypoxemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "431335002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4174302, + "CONCEPT_NAME" : "Neonatal infection of the eye", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276675009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 76221, + "CONCEPT_NAME" : "Neonatal infective mastitis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "3468005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36676688, + "CONCEPT_NAME" : "Neonatal inflammatory skin and bowel disease", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "773662009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42536730, + "CONCEPT_NAME" : "Neonatal intestinal perforation co-occurrent and due to intestinal atresia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "735719008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42536732, + "CONCEPT_NAME" : "Neonatal intestinal perforation due to in utero intestinal volvulus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "735721003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42536731, + "CONCEPT_NAME" : "Neonatal intestinal perforation with congenital intestinal stenosis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "735720002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42539039, + "CONCEPT_NAME" : "Neonatal intestinal perforation with in utero intraluminal obstruction", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "735722005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37399026, + "CONCEPT_NAME" : "Neonatal intrahepatic cholestasis due to citrin deficiency", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "717155003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42536733, + "CONCEPT_NAME" : "Neonatal isolated ileal perforation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "735723000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435656, + "CONCEPT_NAME" : "Neonatal jaundice", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "387712008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440847, + "CONCEPT_NAME" : "Neonatal jaundice associated with preterm delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "73749009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4170445, + "CONCEPT_NAME" : "Neonatal jaundice due to deficiency of enzyme system for bilirubin conjugation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "275360003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439137, + "CONCEPT_NAME" : "Neonatal jaundice due to delayed conjugation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "17140000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4221399, + "CONCEPT_NAME" : "Neonatal jaundice due to delayed conjugation from breast milk inhibitor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "82696006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4239658, + "CONCEPT_NAME" : "Neonatal jaundice due to delayed conjugation from delayed development of conjugating system", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "69347004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4071740, + "CONCEPT_NAME" : "Neonatal jaundice with Crigler-Najjar syndrome", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206454000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4048614, + "CONCEPT_NAME" : "Neonatal jaundice with Gilbert's syndrome", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206456003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4071080, + "CONCEPT_NAME" : "Neonatal jaundice with porphyria", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206458002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4048294, + "CONCEPT_NAME" : "Neonatal jaundice with Rotor's syndrome", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206459005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42536729, + "CONCEPT_NAME" : "Neonatal malabsorption with gastrointestinal hormone-secreting endocrine tumor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "735718000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36716886, + "CONCEPT_NAME" : "Neonatal mass of hypopharynx", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "723111007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4048608, + "CONCEPT_NAME" : "Neonatal melena", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206424005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36717505, + "CONCEPT_NAME" : "Neonatal mucocutaneous infection caused by Candida", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "721795001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4308227, + "CONCEPT_NAME" : "Neonatal necrotizing enterocolitis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206525008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42535103, + "CONCEPT_NAME" : "Neonatal non-traumatic intraventricular hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15985031000119102", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 761782, + "CONCEPT_NAME" : "Neonatal nontraumatic subarachnoid hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15985111000119106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37116437, + "CONCEPT_NAME" : "Neonatal obstruction of intestine", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "733145007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42538263, + "CONCEPT_NAME" : "Neonatal oral candidiasis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "746223006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42536564, + "CONCEPT_NAME" : "Neonatal perforation of intestine caused by drug", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "735493006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439140, + "CONCEPT_NAME" : "Neonatal polycythemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "32984002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42537679, + "CONCEPT_NAME" : "Neonatal polycythemia due to intra-uterine growth retardation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "737210007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42537678, + "CONCEPT_NAME" : "Neonatal polycythemia due to placental insufficiency", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "737209002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3182078, + "CONCEPT_NAME" : "Neonatal potential for methadone withdrawal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "20290001000004109", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "Nebraska Lexicon", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 257375, + "CONCEPT_NAME" : "Neonatal pulmonary hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "414822009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4048286, + "CONCEPT_NAME" : "Neonatal rectal hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206425006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4316374, + "CONCEPT_NAME" : "Neonatal respiratory acidosis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "95612000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4316375, + "CONCEPT_NAME" : "Neonatal respiratory alkalosis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "95613005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 318856, + "CONCEPT_NAME" : "Neonatal respiratory arrest", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "95634003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36715567, + "CONCEPT_NAME" : "Neonatal sepsis caused by Malassezia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "721278008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 761851, + "CONCEPT_NAME" : "Neonatal sepsis caused by Staphylococcus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16060271000119109", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 761852, + "CONCEPT_NAME" : "Neonatal sepsis caused by Streptococcus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16060311000119109", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4298866, + "CONCEPT_NAME" : "Neonatal staphylococcal scalded skin syndrome", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "402967005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4300236, + "CONCEPT_NAME" : "Neonatal systemic candidiasis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "403000003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443523, + "CONCEPT_NAME" : "Neonatal tachycardia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "413342000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4264166, + "CONCEPT_NAME" : "Neonatal thrombocytopenia due to idiopathic maternal thrombocytopenia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "61744005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 137099, + "CONCEPT_NAME" : "Neonatal thyrotoxicosis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13795004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4243198, + "CONCEPT_NAME" : "Neonatal tooth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "58748004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4210115, + "CONCEPT_NAME" : "Neonatal tracheobronchial hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "312858004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36717571, + "CONCEPT_NAME" : "Neonatal traumatic hemorrhage of trachea following procedure on lower respiratory tract", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "722579002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4047937, + "CONCEPT_NAME" : "Neonatal urinary tract infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12301009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 194598, + "CONCEPT_NAME" : "Neoplasm of uncertain behavior of placenta", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "95005005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2101016, + "CONCEPT_NAME" : "Neuraxial analgesia/anesthesia for labor ending in a cesarean delivery (includes any repeat subarachnoid needle placement and drug injection and/or any necessary replacement of an epidural catheter during labor) (Deprecated)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "00857", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2101813, + "CONCEPT_NAME" : "Neuraxial labor analgesia/anesthesia for planned vaginal delivery (this includes any repeat subarachnoid needle placement and drug injection and/or any necessary replacement of an epidural catheter during labor)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "01967", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4034967, + "CONCEPT_NAME" : "Neuroglycopenia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237631006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4171104, + "CONCEPT_NAME" : "Neutropenia of the small for gestational age baby", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276576000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4173513, + "CONCEPT_NAME" : "Neville-Barnes forceps delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "275168001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 46284810, + "CONCEPT_NAME" : "New birth examination completed by other healthcare provider", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "955251000000102", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4079843, + "CONCEPT_NAME" : "Newborn death", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276506001", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Event" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4173194, + "CONCEPT_NAME" : "Newborn drug intoxication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276582002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4173193, + "CONCEPT_NAME" : "Newborn drug reaction", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276581009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4171092, + "CONCEPT_NAME" : "Newborn environmental hypothermia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276529009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4079846, + "CONCEPT_NAME" : "Newborn ingestion of maternal blood", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276539003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3200880, + "CONCEPT_NAME" : "Newborn metabolic screen finding abnormal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "9100001000004106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "Nebraska Lexicon", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2721181, + "CONCEPT_NAME" : "Newborn metabolic screening panel, includes test kit, postage and the laboratory tests specified by the state for inclusion in this panel (e.g., galactose; hemoglobin, electrophoresis; hydroxyprogesterone, 17-d; phenylalanine (pku); and thyroxine, total)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "S3620", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4173180, + "CONCEPT_NAME" : "Newborn physiological jaundice", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276549000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4207827, + "CONCEPT_NAME" : "Newborn regurgitation of food", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55331005", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42739015, + "CONCEPT_NAME" : "Newborn resuscitation: provision of positive pressure ventilation and/or chest compressions in the presence of acute inadequate ventilation and/or cardiac output", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "99440", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4129520, + "CONCEPT_NAME" : "Nocturnal hypoglycemia due to diabetes mellitus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237635002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4127831, + "CONCEPT_NAME" : "No further involution of the uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "289753009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3655876, + "CONCEPT_NAME" : "Noma neonatorum", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "870353004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4029424, + "CONCEPT_NAME" : "Non-diabetic hypoglycemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237637005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 76533, + "CONCEPT_NAME" : "Non-immune hydrops fetalis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276509008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37017029, + "CONCEPT_NAME" : "Non immune hydrops in newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "713204000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36715842, + "CONCEPT_NAME" : "Non-infective neonatal diarrhea", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "721615009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4176715, + "CONCEPT_NAME" : "Non-involution of uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "4907004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4071630, + "CONCEPT_NAME" : "Non-manipulative cephalic vaginal delivery with abnormal presentation of head at delivery without instrument", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177181005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4275443, + "CONCEPT_NAME" : "Non-pregnancy related A-G syndrome", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64678009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442573, + "CONCEPT_NAME" : "Nonpurulent mastitis associated with childbirth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "78697003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36713477, + "CONCEPT_NAME" : "Nonpurulent mastitis associated with childbirth with attachment difficulty", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "717818001", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45757111, + "CONCEPT_NAME" : "Nonpurulent mastitis associated with lactation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10750411000119102", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4127248, + "CONCEPT_NAME" : "Nonrotational forceps delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "236975003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44790222, + "CONCEPT_NAME" : "Non routine obstetric scan for fetal observations", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "228691000000101", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4080067, + "CONCEPT_NAME" : "Non-urgent obstetric admission", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "183494008", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4171058, + "CONCEPT_NAME" : "Nonvenomous insect bite of anus with infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "42089007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4148533, + "CONCEPT_NAME" : "Nonvenomous insect bite of penis with infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "35057008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4149402, + "CONCEPT_NAME" : "Nonvenomous insect bite of perineum with infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "30818003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4187237, + "CONCEPT_NAME" : "Nonvenomous insect bite of scrotum with infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "47027001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4201764, + "CONCEPT_NAME" : "Nonvenomous insect bite of vulva with infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "53706009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014720, + "CONCEPT_NAME" : "Normal birth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169961004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4080889, + "CONCEPT_NAME" : "Normal birth weight", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276712009", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4063160, + "CONCEPT_NAME" : "Normal delivery but ante- or post- natal conditions present", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199314001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4070222, + "CONCEPT_NAME" : "Normal delivery of placenta", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "177212000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4071507, + "CONCEPT_NAME" : "Normal delivery procedure", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177184002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4009404, + "CONCEPT_NAME" : "Normal glucose level", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "102659003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42739012, + "CONCEPT_NAME" : "Normal newborn care in other than hospital or birthing room setting, including physical examination of baby and conference(s) with parent(s)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "99432", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4217975, + "CONCEPT_NAME" : "Normal pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72892002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45765512, + "CONCEPT_NAME" : "Normogonadotropic amenorrhea", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "702466002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4028938, + "CONCEPT_NAME" : "Normoprolactinemic galactorrhea", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237801002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4186424, + "CONCEPT_NAME" : "Nuchal ultrasound scan", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "414880004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3002549, + "CONCEPT_NAME" : "Number of fetuses by US", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "11878-6", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Clinical Observation" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442051, + "CONCEPT_NAME" : "Obstetric air pulmonary embolism with antenatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200290001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442050, + "CONCEPT_NAME" : "Obstetric air pulmonary embolism with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200291002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 314107, + "CONCEPT_NAME" : "Obstetrical cardiac complication of anesthesia AND/OR sedation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64171002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432976, + "CONCEPT_NAME" : "Obstetrical complication of anesthesia AND/OR sedation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "29847008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442294, + "CONCEPT_NAME" : "Obstetrical pulmonary complication of anesthesia AND/OR sedation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "51154004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45757105, + "CONCEPT_NAME" : "Obstetric anesthesia with cardiac complication in childbirth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10749691000119103", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4064980, + "CONCEPT_NAME" : "Obstetric anesthesia with cardiac complications with postnatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200059007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45757106, + "CONCEPT_NAME" : "Obstetric anesthesia with central nervous system complication in childbirth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10749811000119108", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4065091, + "CONCEPT_NAME" : "Obstetric anesthesia with central nervous system complication with postnatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200066008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4064979, + "CONCEPT_NAME" : "Obstetric anesthesia with pulmonary complications with postnatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200052003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442053, + "CONCEPT_NAME" : "Obstetric blood-clot pulmonary embolism - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200301007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433545, + "CONCEPT_NAME" : "Obstetric blood-clot pulmonary embolism with antenatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200303005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437060, + "CONCEPT_NAME" : "Obstetric blood-clot pulmonary embolism with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200304004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443263, + "CONCEPT_NAME" : "Obstetric breast abscess", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "270502007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 74433, + "CONCEPT_NAME" : "Obstetric breast abscess - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200374003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 78494, + "CONCEPT_NAME" : "Obstetric breast abscess - delivered with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200375002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 78218, + "CONCEPT_NAME" : "Obstetric breast abscess with antenatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200376001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443293, + "CONCEPT_NAME" : "Obstetric breast abscess with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200377005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4063697, + "CONCEPT_NAME" : "Obstetric breast infections", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200364001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 75326, + "CONCEPT_NAME" : "Obstetric damage to pelvic joints and ligaments - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199990003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442079, + "CONCEPT_NAME" : "Obstetric damage to pelvic joints and ligaments with postnatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199991004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4084521, + "CONCEPT_NAME" : "Obstetric D.V. done", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "183760007", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4080059, + "CONCEPT_NAME" : "Obstetric emergency hospital admission", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "183460006", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038747, + "CONCEPT_NAME" : "Obstetric examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "163497009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 192979, + "CONCEPT_NAME" : "Obstetric high vaginal laceration", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199977005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 193269, + "CONCEPT_NAME" : "Obstetric high vaginal laceration - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199979008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 200472, + "CONCEPT_NAME" : "Obstetric high vaginal laceration with postnatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199980006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 197048, + "CONCEPT_NAME" : "Obstetric inversion of uterus - delivered with postnatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199969006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442080, + "CONCEPT_NAME" : "Obstetric laceration of cervix - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199974003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442083, + "CONCEPT_NAME" : "Obstetric laceration of cervix with postnatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199975002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4140250, + "CONCEPT_NAME" : "Obstetric monitoring", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "265642006", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441925, + "CONCEPT_NAME" : "Obstetric nipple infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "267289003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441926, + "CONCEPT_NAME" : "Obstetric nipple infection with antenatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200369006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433837, + "CONCEPT_NAME" : "Obstetric nipple infection with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200370007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 79897, + "CONCEPT_NAME" : "Obstetric non-purulent mastitis - delivered with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200382003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 76491, + "CONCEPT_NAME" : "Obstetric non-purulent mastitis with antenatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200383008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 76771, + "CONCEPT_NAME" : "Obstetric non-purulent mastitis with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200385001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2212094, + "CONCEPT_NAME" : "Obstetric panel This panel must include the following: Blood count, complete (CBC), automated and automated differential WBC count (85025 or 85027 and 85004) OR Blood count, complete (CBC), automated (85027) and appropriate manual differential WBC count (", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80055", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 201368, + "CONCEPT_NAME" : "Obstetric pelvic hematoma - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199995008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 193271, + "CONCEPT_NAME" : "Obstetric pelvic hematoma - delivered with postnatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199996009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060178, + "CONCEPT_NAME" : "Obstetric pelvic hematoma with postnatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199997000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4129839, + "CONCEPT_NAME" : "Obstetric pelvic joint damage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237328003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4034149, + "CONCEPT_NAME" : "Obstetric pelvic ligament damage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237327008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 194439, + "CONCEPT_NAME" : "Obstetric perineal wound disruption", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "397752008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 192387, + "CONCEPT_NAME" : "Obstetric perineal wound disruption - delivered with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200342005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442417, + "CONCEPT_NAME" : "Obstetric perineal wound disruption with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200343000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435026, + "CONCEPT_NAME" : "Obstetric pulmonary embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200284000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433832, + "CONCEPT_NAME" : "Obstetric pulmonary thromboembolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200299000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439380, + "CONCEPT_NAME" : "Obstetric pyemic and septic pulmonary embolism with antenatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200310004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439379, + "CONCEPT_NAME" : "Obstetric pyemic and septic pulmonary embolism with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200311000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4081774, + "CONCEPT_NAME" : "Obstetric self-referral", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "183695003", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 195025, + "CONCEPT_NAME" : "Obstetric shock - delivered with postnatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200106008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442071, + "CONCEPT_NAME" : "Obstetric shock with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200107004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4065635, + "CONCEPT_NAME" : "Obstetric shock with postnatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200108009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004846, + "CONCEPT_NAME" : "Obstetric tamponade of uterus or vagina", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "75.8", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "3-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 76763, + "CONCEPT_NAME" : "Obstetric trauma damaging pelvic joints and ligaments", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "267271004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44790279, + "CONCEPT_NAME" : "Obstetric ultrasound monitoring", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "228921000000108", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4059051, + "CONCEPT_NAME" : "Obstetric X-ray - fetus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "168760000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4085285, + "CONCEPT_NAME" : "Obstetric X-ray - placenta", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "241059000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 193827, + "CONCEPT_NAME" : "Obstructed labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199746004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 197051, + "CONCEPT_NAME" : "Obstructed labor caused by bony pelvis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199757009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 199087, + "CONCEPT_NAME" : "Obstructed labor caused by bony pelvis - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199759007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 193273, + "CONCEPT_NAME" : "Obstructed labor caused by bony pelvis with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199760002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 192694, + "CONCEPT_NAME" : "Obstructed labor caused by pelvic soft tissues", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199767004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 196182, + "CONCEPT_NAME" : "Obstructed labor caused by pelvic soft tissues - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199769001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442440, + "CONCEPT_NAME" : "Obstructed labor caused by pelvic soft tissues with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199770000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061852, + "CONCEPT_NAME" : "Obstructed labor due to abnormality of maternal pelvic organs", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199765007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 46269810, + "CONCEPT_NAME" : "Obstructed labor due to abnormality of maternal pelvis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10751631000119101", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060036, + "CONCEPT_NAME" : "Obstructed labor due to breech presentation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199751005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060037, + "CONCEPT_NAME" : "Obstructed labor due to brow presentation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199753008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4064819, + "CONCEPT_NAME" : "Obstructed labor due to compound presentation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199755001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37310898, + "CONCEPT_NAME" : "Obstructed labor due to deep transverse arrest and persistent occipitoposterior position", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "31041000119106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4064821, + "CONCEPT_NAME" : "Obstructed labor due to deformed pelvis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199761003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45757117, + "CONCEPT_NAME" : "Obstructed labor due to disproportion between fetus and pelvis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10751581000119104", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061850, + "CONCEPT_NAME" : "Obstructed labor due to face presentation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199752003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37396169, + "CONCEPT_NAME" : "Obstructed labor due to fetal abnormality", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "715880002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 194100, + "CONCEPT_NAME" : "Obstructed labor due to fetal malposition", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199747008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 194711, + "CONCEPT_NAME" : "Obstructed labor due to fetal malposition - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199749006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 193831, + "CONCEPT_NAME" : "Obstructed labor due to fetal malposition with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199750006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060039, + "CONCEPT_NAME" : "Obstructed labor due to generally contracted pelvis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199762005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45772074, + "CONCEPT_NAME" : "Obstructed labor due to incomplete rotation of fetal head", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10751511000119105", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4064423, + "CONCEPT_NAME" : "Obstructed labor due to pelvic inlet contraction", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199763000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4064424, + "CONCEPT_NAME" : "Obstructed labor due to pelvic outlet and mid-cavity contraction", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199764006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42536563, + "CONCEPT_NAME" : "Obstructed labor due to shoulder dystocia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "735492001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060038, + "CONCEPT_NAME" : "Obstructed labor due to shoulder presentation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199754002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4064437, + "CONCEPT_NAME" : "Obstructed labor due to unusually large fetus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199806003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4300773, + "CONCEPT_NAME" : "Obstruction by bony pelvis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "77563000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444404, + "CONCEPT_NAME" : "Obstruction caused by position of fetus at onset of labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "20625004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 252305, + "CONCEPT_NAME" : "Obstructive apnea of newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276545006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3655849, + "CONCEPT_NAME" : "Ocular hypertension due to birth injury", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "870324000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4091789, + "CONCEPT_NAME" : "Odor of lochia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "249215002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038420, + "CONCEPT_NAME" : "O/E - breech presentation", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163514003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038571, + "CONCEPT_NAME" : "O/E - fetal heart 120-160", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163548002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038945, + "CONCEPT_NAME" : "O/E - fetal heart heard", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163542001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4039088, + "CONCEPT_NAME" : "O/E - fetal heart not heard", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163543006", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038943, + "CONCEPT_NAME" : "O/E - fetal movement diminished", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163540009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038942, + "CONCEPT_NAME" : "O/E - fetal movements", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163535001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038426, + "CONCEPT_NAME" : "O/E - fetal movements felt", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163538004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4039610, + "CONCEPT_NAME" : "O/E - fetal movements seen", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163537009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4150948, + "CONCEPT_NAME" : "O/E - fetal presentation", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "268952006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038938, + "CONCEPT_NAME" : "O/E -fetal presentation unsure", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163518000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038760, + "CONCEPT_NAME" : "O/E - fetus very active", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163539007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038418, + "CONCEPT_NAME" : "O/E - fundal size = dates", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163510007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038749, + "CONCEPT_NAME" : "O/E - fundus 12-16 week size", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163499007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038751, + "CONCEPT_NAME" : "O/E - fundus 16-20 week size", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163500003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038932, + "CONCEPT_NAME" : "O/E - fundus 20-24 week size", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163501004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4039602, + "CONCEPT_NAME" : "O/E - fundus 24-28 week size", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163502006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038753, + "CONCEPT_NAME" : "O/E - fundus 28-32 week size", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163504007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038754, + "CONCEPT_NAME" : "O/E - fundus 32-34 week size", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163505008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038755, + "CONCEPT_NAME" : "O/E - fundus 34-36 week size", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163506009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038934, + "CONCEPT_NAME" : "O/E - fundus 36-38 week size", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163507000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038756, + "CONCEPT_NAME" : "O/E -fundus 38 weeks-term size", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163508005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4255282, + "CONCEPT_NAME" : "O/E - fundus not adequately seen", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "408314005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038935, + "CONCEPT_NAME" : "O/E - fundus = term size", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163509002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038748, + "CONCEPT_NAME" : "O/E - gravid uterus size", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163498004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4039609, + "CONCEPT_NAME" : "O/E - no fetal movements", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163536000", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038759, + "CONCEPT_NAME" : "O/E - partial engagement - 3/5", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163531005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4175225, + "CONCEPT_NAME" : "O/E - PP free - not engaged", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "275968002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038424, + "CONCEPT_NAME" : "O/E - presentation engaged-1/5", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163533008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4171428, + "CONCEPT_NAME" : "O/E - presenting part engaged", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "275969005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4039608, + "CONCEPT_NAME" : "O/E - presenting part free-4/5", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163530006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038941, + "CONCEPT_NAME" : "O/E - presenting part free-5/5", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163529001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038939, + "CONCEPT_NAME" : "O/E - presenting part position", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163520002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038937, + "CONCEPT_NAME" : "O/E - transverse lie", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163516001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038573, + "CONCEPT_NAME" : "O/E - VE for pelvic assessment", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163555000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4039603, + "CONCEPT_NAME" : "O/E - vertex presentation", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163513009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4194143, + "CONCEPT_NAME" : "O/E - viable fetus", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "312354009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4173013, + "CONCEPT_NAME" : "Offensive lochia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276375002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 196159, + "CONCEPT_NAME" : "Old laceration of muscles of pelvic floor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "467003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434111, + "CONCEPT_NAME" : "Oligohydramnios", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59566000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433274, + "CONCEPT_NAME" : "Oligohydramnios - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199653002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432386, + "CONCEPT_NAME" : "Oligohydramnios with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199654008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4107071, + "CONCEPT_NAME" : "Oliguria following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "29908007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4034650, + "CONCEPT_NAME" : "Omphalitis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "239095007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 201136, + "CONCEPT_NAME" : "Omphalitis of newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "42052009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4073719, + "CONCEPT_NAME" : "On maternity leave", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "224457004", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2213351, + "CONCEPT_NAME" : "Oocyte identification from follicular fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "89254", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4072862, + "CONCEPT_NAME" : "Oocyte recovery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177037000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004767, + "CONCEPT_NAME" : "Operations on fetus to facilitate delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "73.8", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "3-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4119975, + "CONCEPT_NAME" : "Operative termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "302375005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004746, + "CONCEPT_NAME" : "Other artificial rupture of membranes", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "73.09", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004802, + "CONCEPT_NAME" : "Other cesarean section of unspecified type", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "74.99", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004822, + "CONCEPT_NAME" : "Other diagnostic procedures on fetus and amnion", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "75.35", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004811, + "CONCEPT_NAME" : "Other fetal monitoring", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "75.34", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 46232934, + "CONCEPT_NAME" : "Other introduction of gametes into uterine cavity", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "Q21", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "OPCS4", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004765, + "CONCEPT_NAME" : "Other manually assisted delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "73.59", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004707, + "CONCEPT_NAME" : "Other mid forceps operation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72.29", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004862, + "CONCEPT_NAME" : "Other obstetric operations", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "75.99", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004783, + "CONCEPT_NAME" : "Other operations assisting delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "73.99", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004768, + "CONCEPT_NAME" : "Other operations assisting delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "73.9", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "3-dig nonbill code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004724, + "CONCEPT_NAME" : "Other partial breech extraction", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72.52", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004348, + "CONCEPT_NAME" : "Other partial salpingectomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "66.69", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4191809, + "CONCEPT_NAME" : "Other procedures inducing or assisting delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "73", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "2-dig nonbill code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44513736, + "CONCEPT_NAME" : "Other specified breech extraction delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "R19.8", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "OPCS4", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44513756, + "CONCEPT_NAME" : "Other specified cephalic vaginal delivery with abnormal presentation of head at delivery without instrument", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "R23.8", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "OPCS4", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44513729, + "CONCEPT_NAME" : "Other specified elective caesarean delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "R17.8", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "OPCS4", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44513747, + "CONCEPT_NAME" : "Other specified forceps cephalic delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "R21.8", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "OPCS4", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004731, + "CONCEPT_NAME" : "Other specified instrumental delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72.8", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "3-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44513476, + "CONCEPT_NAME" : "Other specified introduction of abortifacient into uterine cavity", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "Q14.8", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "OPCS4", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44513468, + "CONCEPT_NAME" : "Other specified introduction of gametes into uterine cavity", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "Q13.8", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "OPCS4", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44517168, + "CONCEPT_NAME" : "Other specified in vitro fertilisation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "Y96.8", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "OPCS4", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44513799, + "CONCEPT_NAME" : "Other specified non-routine obstetric scan for fetal observations", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "R37.8", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "OPCS4", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44513812, + "CONCEPT_NAME" : "Other specified obstetric Doppler ultrasound", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "R42.8", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "OPCS4", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4075024, + "CONCEPT_NAME" : "Other specified oocyte recovery", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "177043003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44513634, + "CONCEPT_NAME" : "Other specified oocyte recovery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "Q48.8", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "OPCS4", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44513740, + "CONCEPT_NAME" : "Other specified other breech delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "R20.8", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "OPCS4", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44513733, + "CONCEPT_NAME" : "Other specified other caesarean delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "R18.8", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "OPCS4", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44513516, + "CONCEPT_NAME" : "Other specified other introduction of gametes into uterine cavity", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "Q21.8", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "OPCS4", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44513803, + "CONCEPT_NAME" : "Other specified other non-routine obstetric scan", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "R38.8", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "OPCS4", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44513791, + "CONCEPT_NAME" : "Other specified routine obstetric scan", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "R36.8", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "OPCS4", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44513816, + "CONCEPT_NAME" : "Other specified ultrasound monitoring", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "R43.8", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "OPCS4", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44513752, + "CONCEPT_NAME" : "Other specified vacuum delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "R22.8", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "OPCS4", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004747, + "CONCEPT_NAME" : "Other surgical induction of labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "73.1", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "3-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004726, + "CONCEPT_NAME" : "Other total breech extraction", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72.54", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004730, + "CONCEPT_NAME" : "Other vacuum extraction", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72.79", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4145318, + "CONCEPT_NAME" : "Outcome of delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "268475008", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Observable Entity" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4127249, + "CONCEPT_NAME" : "Outlet forceps delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "236976002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 73824, + "CONCEPT_NAME" : "Outlet pelvic contraction - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199413006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 72378, + "CONCEPT_NAME" : "Outlet pelvic contraction with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199414000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42535816, + "CONCEPT_NAME" : "Outlet vacuum delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "734275002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 200153, + "CONCEPT_NAME" : "Ovarian pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "9899009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4049041, + "CONCEPT_NAME" : "Overfeeding in newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206567004", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443323, + "CONCEPT_NAME" : "Papyraceous fetus - not delivered", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "199070009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4159154, + "CONCEPT_NAME" : "Paralysis from birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "371129000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4319461, + "CONCEPT_NAME" : "Paralytic ileus of the newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "95625008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336392, + "CONCEPT_NAME" : "Parametritis following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87169001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4079236, + "CONCEPT_NAME" : "Parenchymatous mastitis associated with childbirth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "18237006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4234421, + "CONCEPT_NAME" : "Partial breech delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "359943008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4023797, + "CONCEPT_NAME" : "Partial breech delivery with forceps to aftercoming head", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "19390001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4267567, + "CONCEPT_NAME" : "Partial salpingectomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "62692004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4248080, + "CONCEPT_NAME" : "Parturient hemorrhage associated with afibrinogenemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "9442009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4145439, + "CONCEPT_NAME" : "Parturient hemorrhage associated with hyperfibrinolysis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "34327003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4296604, + "CONCEPT_NAME" : "Parturient hemorrhage associated with hypofibrinogenemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "76771005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4231407, + "CONCEPT_NAME" : "Parturient paresis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "405256006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 195075, + "CONCEPT_NAME" : "Passage of meconium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "249529000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4211227, + "CONCEPT_NAME" : "Pathologic amenorrhea", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "56561006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4025199, + "CONCEPT_NAME" : "Pelvic dystocia AND/OR uterine disorder", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "106010004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 198221, + "CONCEPT_NAME" : "Pelvic hematoma during delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "5740008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4314877, + "CONCEPT_NAME" : "Pelvic peritonitis following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86709000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442829, + "CONCEPT_NAME" : "Pelvic soft tissue abnormality in pregnancy, childbirth and the puerperium - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199511005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 195019, + "CONCEPT_NAME" : "Pelvic soft tissue abnormality in pregnancy, childbirth and the puerperium with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199513008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4285751, + "CONCEPT_NAME" : "Pelvic thrombophlebitis in puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "67486009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4172869, + "CONCEPT_NAME" : "Peptic ulcer of newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276525003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4073428, + "CONCEPT_NAME" : "Percutaneous sampling of chorionic villus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177107006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36716687, + "CONCEPT_NAME" : "Perforation of intestine co-occurrent and due to meconium ileus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "722841004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37204732, + "CONCEPT_NAME" : "Perilipin 1 related familial partial lipodystrophy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "783616005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4306199, + "CONCEPT_NAME" : "Perinatal anemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "387702001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 374748, + "CONCEPT_NAME" : "Perinatal anoxic-ischemic brain injury", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "126945001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4321550, + "CONCEPT_NAME" : "Perinatal apneic spells", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "70073005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36716757, + "CONCEPT_NAME" : "Perinatal arterial ischemic stroke", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "722929005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4084442, + "CONCEPT_NAME" : "Perinatal asphyxia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "281578009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 260212, + "CONCEPT_NAME" : "Perinatal atelectasis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54959009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4080888, + "CONCEPT_NAME" : "Perinatal cerebral ischemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276706004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 135370, + "CONCEPT_NAME" : "Perinatal cutaneous hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "18503002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 134760, + "CONCEPT_NAME" : "Perinatal cyanotic attacks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "38593000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4187201, + "CONCEPT_NAME" : "Perinatal disorder", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "415073005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4079851, + "CONCEPT_NAME" : "Perinatal disorder of electrolytes", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276569005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4173002, + "CONCEPT_NAME" : "Perinatal disorder of growth and/or development", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276603001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4171097, + "CONCEPT_NAME" : "Perinatal disorders of glucose regulation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276555005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4173179, + "CONCEPT_NAME" : "Perinatal disorders of liver and/or biliary system", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276548008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4173198, + "CONCEPT_NAME" : "Perinatal falx laceration", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276593000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4300467, + "CONCEPT_NAME" : "Perinatal forceps injury", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "403848003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 194158, + "CONCEPT_NAME" : "Perinatal gastrointestinal hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48729005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439931, + "CONCEPT_NAME" : "Perinatal hemolytic jaundice", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "288279008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42872438, + "CONCEPT_NAME" : "Perinatal hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "450429004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42536566, + "CONCEPT_NAME" : "Perinatal hemorrhage of lung due to traumatic injury", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "735495004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4171096, + "CONCEPT_NAME" : "Perinatal hepatitis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276551001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4173181, + "CONCEPT_NAME" : "Perinatal hepatocellular damage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276552008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4105262, + "CONCEPT_NAME" : "Perinatal hypoxia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "281579001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4171102, + "CONCEPT_NAME" : "Perinatal hypoxia and asphyxia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276570006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42536745, + "CONCEPT_NAME" : "Perinatal infection caused by Human herpes simplex virus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "735737009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 258564, + "CONCEPT_NAME" : "Perinatal interstitial emphysema", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "60125001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4171091, + "CONCEPT_NAME" : "Perinatal intestinal obstruction", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276521007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 199925, + "CONCEPT_NAME" : "Perinatal intestinal perforation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65390006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4174299, + "CONCEPT_NAME" : "Perinatal intracranial hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276647007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4173000, + "CONCEPT_NAME" : "Perinatal intracranial laceration", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276588003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 436519, + "CONCEPT_NAME" : "Perinatal intraventricular hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "70611002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4071743, + "CONCEPT_NAME" : "Perinatal jaundice due to cystic fibrosis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206471004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 195064, + "CONCEPT_NAME" : "Perinatal jaundice due to hepatocellular damage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10877007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438869, + "CONCEPT_NAME" : "Perinatal jaundice due to hereditary hemolytic anemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "56921004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4071737, + "CONCEPT_NAME" : "Perinatal jaundice from bleeding", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206448001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4071735, + "CONCEPT_NAME" : "Perinatal jaundice from bruising", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206442000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433029, + "CONCEPT_NAME" : "Perinatal jaundice from excessive hemolysis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "24911006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4048292, + "CONCEPT_NAME" : "Perinatal jaundice from infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206444004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4071076, + "CONCEPT_NAME" : "Perinatal jaundice from maternal transmission of drug or toxin", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206443005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4071736, + "CONCEPT_NAME" : "Perinatal jaundice from polycythemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206446002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4048610, + "CONCEPT_NAME" : "Perinatal jaundice from swallowed maternal blood", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206447006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3663236, + "CONCEPT_NAME" : "Perinatal lethal Gaucher disease", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "870313002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4071717, + "CONCEPT_NAME" : "Perinatal lung intra-alveolar hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206303001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4048282, + "CONCEPT_NAME" : "Perinatal melena", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206407004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3655840, + "CONCEPT_NAME" : "Perinatal mucocutaneous infection caused by Human herpesvirus 3", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "870310004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4287783, + "CONCEPT_NAME" : "Perinatal necrotizing enterocolitis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "397729009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4079855, + "CONCEPT_NAME" : "Perinatal nonspecific brain dysfunction", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276595007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4173197, + "CONCEPT_NAME" : "Perinatal occipital diastasis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276592005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4006329, + "CONCEPT_NAME" : "Perinatal partial atelectasis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "111466004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4278842, + "CONCEPT_NAME" : "Perinatal pulmonary collapse", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "66151009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4263343, + "CONCEPT_NAME" : "Perinatal pulmonary fibroplasia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "361194002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43021073, + "CONCEPT_NAME" : "Perinatal pulmonary hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "472857006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 313590, + "CONCEPT_NAME" : "Perinatal respiratory failure", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "91581004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4171108, + "CONCEPT_NAME" : "Perinatal rupture of superficial cerebral vein", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276594006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4243494, + "CONCEPT_NAME" : "Perinatal secondary atelectasis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59113005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4048166, + "CONCEPT_NAME" : "Perinatal sensorineural hearing loss", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "232331006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37017557, + "CONCEPT_NAME" : "Perinatal sepsis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "713854001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37017566, + "CONCEPT_NAME" : "Perinatal sepsis caused by Escherichia coli", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "713866007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37019087, + "CONCEPT_NAME" : "Perinatal sepsis caused by Streptococcus agalactiae", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "713865006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4071198, + "CONCEPT_NAME" : "Perinatal skin and temperature regulation disorders", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206537005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4301414, + "CONCEPT_NAME" : "Perinatal skin trauma due to obstetric injury", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "403847008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4080885, + "CONCEPT_NAME" : "Perinatal skull defect", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276698001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 260841, + "CONCEPT_NAME" : "Perinatal subarachnoid hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "21202004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4079973, + "CONCEPT_NAME" : "Perinatal subependymal hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276650005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4171123, + "CONCEPT_NAME" : "Perinatal subependymal hemorrhage with intraventricular and intracerebral extension", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276652002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4173332, + "CONCEPT_NAME" : "Perinatal subependymal hemorrhage with intraventricular extension", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276651009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4173001, + "CONCEPT_NAME" : "Perinatal tentorial laceration", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276589006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4166754, + "CONCEPT_NAME" : "Perinatal thrombocytopenia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "273986001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4171100, + "CONCEPT_NAME" : "Perinatal thyroid disorder", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276564000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4048607, + "CONCEPT_NAME" : "Perinatal transient vaginal bleeding", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206422009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 197349, + "CONCEPT_NAME" : "Perineal hematoma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237331002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4307825, + "CONCEPT_NAME" : "Perineal hematoma during delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "83094001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439390, + "CONCEPT_NAME" : "Perineal laceration during delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "398019008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4187920, + "CONCEPT_NAME" : "Perineal laceration involving fourchette", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46311005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4272706, + "CONCEPT_NAME" : "Perineal laceration involving hymen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36796001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4296470, + "CONCEPT_NAME" : "Perineal laceration involving labia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "76658000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4002900, + "CONCEPT_NAME" : "Perineal laceration involving pelvic floor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "11942004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4239205, + "CONCEPT_NAME" : "Perineal laceration involving rectovaginal septum", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6825008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4311670, + "CONCEPT_NAME" : "Perineal laceration involving skin", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "85542007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4032920, + "CONCEPT_NAME" : "Perineal laceration involving vagina", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14825005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4242693, + "CONCEPT_NAME" : "Perineal laceration involving vaginal muscles", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "38450002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4197221, + "CONCEPT_NAME" : "Perineal laceration involving vulva", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "79839005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 197608, + "CONCEPT_NAME" : "Peripheral neuritis in pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "17787002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 199086, + "CONCEPT_NAME" : "Peripheral neuritis in pregnancy - not delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199095005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4062566, + "CONCEPT_NAME" : "Peripheral neuritis in pregnancy with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199096006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 372435, + "CONCEPT_NAME" : "Periventricular leukomalacia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "230769007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43531641, + "CONCEPT_NAME" : "Permanent neonatal diabetes mellitus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609565001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37110041, + "CONCEPT_NAME" : "Permanent neonatal diabetes mellitus with cerebellar agenesis syndrome", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "724067006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 197970, + "CONCEPT_NAME" : "Persistent fetal circulation", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "206597007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444374, + "CONCEPT_NAME" : "Persistent occipitoposterior position", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "70068004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 317941, + "CONCEPT_NAME" : "Phlebitis AND/OR thrombosis complicating pregnancy AND/OR puerperium", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "26850007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4129183, + "CONCEPT_NAME" : "Phlebitis in puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237343001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4269051, + "CONCEPT_NAME" : "Phlegmasia alba dolens in puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "62583006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3013297, + "CONCEPT_NAME" : "Phosphatidylglycerol [Presence] in Amniotic fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "2785-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4103235, + "CONCEPT_NAME" : "Phrenic nerve paralysis as birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "28778005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42537765, + "CONCEPT_NAME" : "Physiological shock due to and following molar pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "737326006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4261326, + "CONCEPT_NAME" : "Physiologic amenorrhea", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "44811000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4073438, + "CONCEPT_NAME" : "Piper forceps delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177170007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4016476, + "CONCEPT_NAME" : "Placenta incomplete", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "169958000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014718, + "CONCEPT_NAME" : "Placental abnormality", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169957005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 198488, + "CONCEPT_NAME" : "Placental abruption", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "415105001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 193539, + "CONCEPT_NAME" : "Placental abruption - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198910006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 201350, + "CONCEPT_NAME" : "Placental abruption - not delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198911005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2721184, + "CONCEPT_NAME" : "Placental alpha microglobulin-1 rapid immunoassay for detection of rupture of fetal membranes", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "S3628", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 200784, + "CONCEPT_NAME" : "Placental condition affecting management of mother", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "111447004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014716, + "CONCEPT_NAME" : "Placental finding", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169952004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4034100, + "CONCEPT_NAME" : "Placental insufficiency", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237292005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4064854, + "CONCEPT_NAME" : "Placental localization", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "164817009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4217071, + "CONCEPT_NAME" : "Placental site nodule", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "417364008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4028645, + "CONCEPT_NAME" : "Placental site trophoblastic tumor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237252008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44502733, + "CONCEPT_NAME" : "Placental site trophoblastic tumor of placenta", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "9104/1-C58.9", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "ICDO3", + "CONCEPT_CLASS_ID" : "ICDO Condition" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42600135, + "CONCEPT_NAME" : "Placental subinvolution", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "42211000009104", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED Veterinary", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4016475, + "CONCEPT_NAME" : "Placenta normal O/E", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "169954003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4284028, + "CONCEPT_NAME" : "Placenta previa", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36813001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4172142, + "CONCEPT_NAME" : "Placenta previa found before labor AND delivery by cesarean section without hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48888007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 196751, + "CONCEPT_NAME" : "Placenta previa with hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198903000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 193264, + "CONCEPT_NAME" : "Placenta previa with hemorrhage - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198905007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 200149, + "CONCEPT_NAME" : "Placenta previa with hemorrhage - not delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198906008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 194710, + "CONCEPT_NAME" : "Placenta previa without hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7792000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 201359, + "CONCEPT_NAME" : "Placenta previa without hemorrhage - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198899007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 192372, + "CONCEPT_NAME" : "Placenta previa without hemorrhage - not delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198900002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014292, + "CONCEPT_NAME" : "Place of birth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169812000", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Observable Entity" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4041726, + "CONCEPT_NAME" : "Plasma 2-hr post-prandial glucose measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "167097002", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4210719, + "CONCEPT_NAME" : "Plasma alpha-fetoprotein multiple of median measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313867006", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4041725, + "CONCEPT_NAME" : "Plasma fasting glucose measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "167096006", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4210721, + "CONCEPT_NAME" : "Plasma free beta human chorionic gonadotrophin measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313871009", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44812174, + "CONCEPT_NAME" : "Plasma human chorionic gonadotrophin concentration measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "911491000000101", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4210718, + "CONCEPT_NAME" : "Plasma human chorionic gonadotropin multiple of median measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313865003", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4269036, + "CONCEPT_NAME" : "Plasma insulin C-peptide level", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "401124003", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4268422, + "CONCEPT_NAME" : "Plasma insulin measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "401151000", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4041724, + "CONCEPT_NAME" : "Plasma random glucose measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "167095005", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4305235, + "CONCEPT_NAME" : "Polycythemia due to donor twin transfusion", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "38697006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4297988, + "CONCEPT_NAME" : "Polycythemia due to maternal-fetal transfusion", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "76873001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36716548, + "CONCEPT_NAME" : "Polycythemia neonatorum due to inherited disorder of erythropoietin production", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "722585009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36716549, + "CONCEPT_NAME" : "Polycythemia neonatorum following blood transfusion", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "722586005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4278356, + "CONCEPT_NAME" : "Polygalactia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65377004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437623, + "CONCEPT_NAME" : "Polyhydramnios", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86203003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434427, + "CONCEPT_NAME" : "Polyhydramnios - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199646006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433540, + "CONCEPT_NAME" : "Polyhydramnios with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199647002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4173347, + "CONCEPT_NAME" : "Poor feeding of newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276717003", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 72693, + "CONCEPT_NAME" : "Poor fetal growth affecting management", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "397949005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 75639, + "CONCEPT_NAME" : "Poor fetal nutrition", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276608005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 196764, + "CONCEPT_NAME" : "Post-delivery acute renal failure - delivered with postnatal problem", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "200117009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4056338, + "CONCEPT_NAME" : "Post gastrointestinal tract surgery hypoglycemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "197483008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437369, + "CONCEPT_NAME" : "Postmature infancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16207008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4245166, + "CONCEPT_NAME" : "Postmaturity", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59634004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440833, + "CONCEPT_NAME" : "Postmaturity of fetus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "433145001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014156, + "CONCEPT_NAME" : "Postnatal care from general practitioner", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169756008", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015415, + "CONCEPT_NAME" : "Postnatal care greater than 48 hours after birth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169775003", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015152, + "CONCEPT_NAME" : "Postnatal care less than 48 hours after birth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169774004", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015410, + "CONCEPT_NAME" : "Postnatal care provider", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169754006", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014446, + "CONCEPT_NAME" : "Postnatal data", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169786001", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Observable Entity" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435031, + "CONCEPT_NAME" : "Postnatal deep vein thrombosis - delivered with postnatal complication", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "200237000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4062264, + "CONCEPT_NAME" : "Postnatal deep vein thrombosis with postnatal complication", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "200238005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4215564, + "CONCEPT_NAME" : "Postnatal depression counseling", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "395072006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015413, + "CONCEPT_NAME" : "Postnatal - eighth day visit", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169770008", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4055488, + "CONCEPT_NAME" : "Postnatal enamel hypoplasia", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "196280004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014445, + "CONCEPT_NAME" : "Postnatal examination minor problem found", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169783009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015154, + "CONCEPT_NAME" : "Postnatal examination normal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169784003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014281, + "CONCEPT_NAME" : "Postnatal - fifth day visit", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169767009", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014280, + "CONCEPT_NAME" : "Postnatal - first day visit", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169763008", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014443, + "CONCEPT_NAME" : "Postnatal - fourth day visit", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169766000", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4075295, + "CONCEPT_NAME" : "Postnatal infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "178280004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44811076, + "CONCEPT_NAME" : "Postnatal listening visits offered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "882371000000109", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4297232, + "CONCEPT_NAME" : "Postnatal maternal examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "384634009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015414, + "CONCEPT_NAME" : "Postnatal - ninth day visit", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169771007", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014442, + "CONCEPT_NAME" : "Postnatal - second day visit", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169764002", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015412, + "CONCEPT_NAME" : "Postnatal - seventh day visit", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169769007", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014282, + "CONCEPT_NAME" : "Postnatal - sixth day visit", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169768004", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4062362, + "CONCEPT_NAME" : "Postnatal support group", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "171067001", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015151, + "CONCEPT_NAME" : "Postnatal - tenth day visit", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169772000", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015150, + "CONCEPT_NAME" : "Postnatal - third day visit", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169765001", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4034146, + "CONCEPT_NAME" : "Postnatal vaginal discomfort", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237315005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015149, + "CONCEPT_NAME" : "Postnatal visit", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169762003", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4151029, + "CONCEPT_NAME" : "Postnatal visit status", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "310370000", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4182691, + "CONCEPT_NAME" : "Postobstetric urethral stricture", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "53212003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4023382, + "CONCEPT_NAME" : "Postoperative shock following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "11669000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4295363, + "CONCEPT_NAME" : "Postpancreatectomy hyperglycemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "37814003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37116834, + "CONCEPT_NAME" : "Postpartum acute renal failure", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "733839001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4006327, + "CONCEPT_NAME" : "Postpartum afibrinogenemia with hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "111452009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336810, + "CONCEPT_NAME" : "Postpartum alopecia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87038002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4225411, + "CONCEPT_NAME" : "Postpartum amenorrhea-galactorrhea syndrome", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "85039006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 312383, + "CONCEPT_NAME" : "Postpartum cardiomyopathy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "62377009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4047392, + "CONCEPT_NAME" : "Postpartum care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "133906008", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110314, + "CONCEPT_NAME" : "Postpartum care only (separate procedure)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59430", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4113199, + "CONCEPT_NAME" : "Postpartum cicatrix of cervix", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198347000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 436483, + "CONCEPT_NAME" : "Postpartum coagulation defects", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "267272006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441363, + "CONCEPT_NAME" : "Postpartum coagulation defects - delivered with postnatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200030007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061341, + "CONCEPT_NAME" : "Postpartum coagulation defects with postnatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200031006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4169890, + "CONCEPT_NAME" : "Postpartum coagulation defect with hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "49177006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4239471, + "CONCEPT_NAME" : "Postpartum depression", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "58703003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4203918, + "CONCEPT_NAME" : "Postpartum education", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54070000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45773073, + "CONCEPT_NAME" : "Postpartum episiotomy pain", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72771000119107", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4266066, + "CONCEPT_NAME" : "Postpartum fibrinolysis with hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "62410004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4041280, + "CONCEPT_NAME" : "Postpartum finding", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "118213005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45757789, + "CONCEPT_NAME" : "Postpartum gestational diabetes mellitus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40791000119105", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4012240, + "CONCEPT_NAME" : "Postpartum headache", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "103008008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443929, + "CONCEPT_NAME" : "Postpartum hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "47821001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37110289, + "CONCEPT_NAME" : "Postpartum hemorrhage co-occurrent and due to uterine rupture following obstructed labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "724496000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37108740, + "CONCEPT_NAME" : "Postpartum hemorrhage due to total placenta previa", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "119891000119105", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4158274, + "CONCEPT_NAME" : "Postpartum hypopituitarism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "290653008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4162754, + "CONCEPT_NAME" : "Postpartum intrapituitary hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "291665000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42534817, + "CONCEPT_NAME" : "Postpartum major depression in remission", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "104851000119103", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4253057, + "CONCEPT_NAME" : "Postpartum neurosis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "73972002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4146731, + "CONCEPT_NAME" : "Postpartum period, 1 day", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "30118000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4169742, + "CONCEPT_NAME" : "Postpartum period, 2 days", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "49071005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4273241, + "CONCEPT_NAME" : "Postpartum period, 3 days", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64541000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4028024, + "CONCEPT_NAME" : "Postpartum period, 4 days", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13273002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4185531, + "CONCEPT_NAME" : "Postpartum period, 5 days", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55861007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4011238, + "CONCEPT_NAME" : "Postpartum period, 6 days", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1124005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4228830, + "CONCEPT_NAME" : "Postpartum period, 7 days", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "88387008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 35622939, + "CONCEPT_NAME" : "Postpartum pre-eclampsia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "765182005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45757788, + "CONCEPT_NAME" : "Postpartum pregnancy-induced hypertension", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40521000119100", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4057246, + "CONCEPT_NAME" : "Postpartum psychosis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "18260003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42535649, + "CONCEPT_NAME" : "Postpartum psychosis in remission", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "60401000119104", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440465, + "CONCEPT_NAME" : "Postpartum state", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86569001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4035468, + "CONCEPT_NAME" : "Postpartum state, 2 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15100005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4104354, + "CONCEPT_NAME" : "Postpartum state, 3 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "29123003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4007389, + "CONCEPT_NAME" : "Postpartum state, 4 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10152009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4300708, + "CONCEPT_NAME" : "Postpartum state, 5 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "38802008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4278355, + "CONCEPT_NAME" : "Postpartum state, 6 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65375007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4222573, + "CONCEPT_NAME" : "Postpartum state, 7 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40156002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4318816, + "CONCEPT_NAME" : "Postpartum state, 8 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "22178008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4174510, + "CONCEPT_NAME" : "Postpartum state, 9 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "50404009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4199437, + "CONCEPT_NAME" : "Postpartum thyroiditis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "52772002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4325457, + "CONCEPT_NAME" : "Postpartum uterine hypertrophy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "71612002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4091199, + "CONCEPT_NAME" : "Postpartum vulval hematoma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "249218000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4321231, + "CONCEPT_NAME" : "Postparturient hemoglobinuria", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "70964000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4219015, + "CONCEPT_NAME" : "Postpill amenorrhea", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "39931000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4116187, + "CONCEPT_NAME" : "Post-prandial blood glucose measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "302788006", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4126074, + "CONCEPT_NAME" : "Post-term infant - 42 weeks plus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "288270007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441128, + "CONCEPT_NAME" : "Post-term infant, not heavy-for-dates", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "79995002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432695, + "CONCEPT_NAME" : "Post-term pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90968009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439894, + "CONCEPT_NAME" : "Post-term pregnancy - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199063009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434695, + "CONCEPT_NAME" : "Post-term pregnancy - not delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199064003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45773507, + "CONCEPT_NAME" : "Post-term pregnancy of 40 to 42 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "22281000119101", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4096468, + "CONCEPT_NAME" : "Potential abnormality of glucose tolerance", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26254008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433542, + "CONCEPT_NAME" : "Precipitate labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "51920004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438220, + "CONCEPT_NAME" : "Precipitate labor - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199833004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435024, + "CONCEPT_NAME" : "Precipitate labor with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199834005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439393, + "CONCEPT_NAME" : "Pre-eclampsia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "398254007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 141084, + "CONCEPT_NAME" : "Pre-eclampsia or eclampsia with pre-existing hypertension", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198997005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 135601, + "CONCEPT_NAME" : "Pre-eclampsia or eclampsia with pre-existing hypertension - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198999008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 134414, + "CONCEPT_NAME" : "Pre-eclampsia or eclampsia with pre-existing hypertension - delivered with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199000005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 136743, + "CONCEPT_NAME" : "Pre-eclampsia or eclampsia with pre-existing hypertension - not delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199002002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4146816, + "CONCEPT_NAME" : "Pre-existing hypertension complicating AND/OR reason for care during childbirth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "34694006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4277110, + "CONCEPT_NAME" : "Pre-existing hypertension complicating AND/OR reason for care during pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65402008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4151903, + "CONCEPT_NAME" : "Pre-existing hypertension complicating AND/OR reason for care during puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "31407004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 321074, + "CONCEPT_NAME" : "Pre-existing hypertension complicating pregnancy, childbirth and puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199005000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4219466, + "CONCEPT_NAME" : "Pregestational diabetes mellitus AND/OR impaired glucose tolerance, modified White class A", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "82141001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4146514, + "CONCEPT_NAME" : "Pregestational diabetes mellitus AND/OR impaired glucose tolerance, modified White class B", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "34818008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4242853, + "CONCEPT_NAME" : "Pregestational diabetes mellitus AND/OR impaired glucose tolerance, modified White class C", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "38063000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4144221, + "CONCEPT_NAME" : "Pregestational diabetes mellitus AND/OR impaired glucose tolerance, modified White class D", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "33669002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4182243, + "CONCEPT_NAME" : "Pregestational diabetes mellitus AND/OR impaired glucose tolerance, modified White class F", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "4307007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4220981, + "CONCEPT_NAME" : "Pregestational diabetes mellitus AND/OR impaired glucose tolerance, modified White class FR", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "82701004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4305491, + "CONCEPT_NAME" : "Pregestational diabetes mellitus AND/OR impaired glucose tolerance, modified White class R", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "82260000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 762490, + "CONCEPT_NAME" : "Pregnancy and lactation education", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "423011000124102", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4129519, + "CONCEPT_NAME" : "Pregnancy and type 2 diabetes mellitus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237627000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3051741, + "CONCEPT_NAME" : "Pregnancy associated plasma protein A [Mass/volume] in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48407-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3014064, + "CONCEPT_NAME" : "Pregnancy associated plasma protein A [Multiple of the median] in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "32123-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2212548, + "CONCEPT_NAME" : "Pregnancy-associated plasma protein-A (PAPP-A)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84163", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3021584, + "CONCEPT_NAME" : "Pregnancy associated plasma protein A [Units/volume] in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "32046-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4148890, + "CONCEPT_NAME" : "Pregnancy benefits", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "270471004", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Qualifier Value" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438209, + "CONCEPT_NAME" : "Pregnancy care of habitual aborter", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "199089009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4062674, + "CONCEPT_NAME" : "Pregnancy complication NOS", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "199152008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439348, + "CONCEPT_NAME" : "Pregnancy complications", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "198881004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4250175, + "CONCEPT_NAME" : "Pregnancy detection examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "74036000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4167493, + "CONCEPT_NAME" : "Pregnancy-induced hypertension", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48194001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4062574, + "CONCEPT_NAME" : "Pregnancy-related glycosuria", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199132007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4094910, + "CONCEPT_NAME" : "Pregnancy test positive", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "250423000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061785, + "CONCEPT_NAME" : "Pregnancy unplanned and unwanted", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169567006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060237, + "CONCEPT_NAME" : "Pregnancy unplanned but wanted", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169566002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4157329, + "CONCEPT_NAME" : "Pregnancy with abnormal glucose tolerance test", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "372048000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4299535, + "CONCEPT_NAME" : "Pregnant", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "77386006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4059982, + "CONCEPT_NAME" : "Pregnant - blood test confirms", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169561007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061686, + "CONCEPT_NAME" : "Pregnant - on history", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169563005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4059984, + "CONCEPT_NAME" : "Pregnant - planned", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169565003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061411, + "CONCEPT_NAME" : "Pregnant, sheath failure", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169508004", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4059981, + "CONCEPT_NAME" : "Pregnant - urine test confirms", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169560008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3174212, + "CONCEPT_NAME" : "Premature 28 week quadruplet", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7550001000004101", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "Nebraska Lexicon", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4097427, + "CONCEPT_NAME" : "Premature birth of fraternal twins, both living", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25192009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4222915, + "CONCEPT_NAME" : "Premature birth of fraternal twins, both stillborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84382006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4147043, + "CONCEPT_NAME" : "Premature birth of fraternal twins, one living, one stillborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "30165006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4142021, + "CONCEPT_NAME" : "Premature birth of identical twins, both living", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "34100008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4242724, + "CONCEPT_NAME" : "Premature birth of identical twins, both stillborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "3798002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4310910, + "CONCEPT_NAME" : "Premature birth of identical twins, one living, one stillborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "39213008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4069200, + "CONCEPT_NAME" : "Premature birth of multiple newborns", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "20272009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4145125, + "CONCEPT_NAME" : "Premature birth of newborn quadruplets", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "34089005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4082863, + "CONCEPT_NAME" : "Premature birth of newborn quintuplets", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "24146004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4008884, + "CONCEPT_NAME" : "Premature birth of newborn sextuplets", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "112075006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4107401, + "CONCEPT_NAME" : "Premature birth of newborn triplets", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "29997008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4029786, + "CONCEPT_NAME" : "Premature birth of newborn twins", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13859001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4184594, + "CONCEPT_NAME" : "Premature birth of stillborn twins", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54650005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4086393, + "CONCEPT_NAME" : "Premature delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "282020008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4125778, + "CONCEPT_NAME" : "Premature/false labor", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "287979001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4217564, + "CONCEPT_NAME" : "Premature infant", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "395507008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4147874, + "CONCEPT_NAME" : "Premature infant 28-37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "310661005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4273560, + "CONCEPT_NAME" : "Premature labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6383007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4175637, + "CONCEPT_NAME" : "Premature pregnancy delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "49550006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 194702, + "CONCEPT_NAME" : "Premature rupture of membranes", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "44223004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 200160, + "CONCEPT_NAME" : "Premature rupture of membranes - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199658006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4064709, + "CONCEPT_NAME" : "Premature rupture of membranes, labor delayed by therapy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199661007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 200468, + "CONCEPT_NAME" : "Premature rupture of membranes with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199659003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4058403, + "CONCEPT_NAME" : "Premature separation of placenta with coagulation defect", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198912003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440519, + "CONCEPT_NAME" : "Premature - weight 1000g-2499g or gestation of 28-37weeks", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "206169007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440525, + "CONCEPT_NAME" : "Prematurity of fetus", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "44247006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36675035, + "CONCEPT_NAME" : "Prematurity of infant", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "771299009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4138554, + "CONCEPT_NAME" : "Premenopausal amenorrhea", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "32590007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2618150, + "CONCEPT_NAME" : "Prenatal care, at-risk assessment", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "H1000", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2618151, + "CONCEPT_NAME" : "Prenatal care, at-risk enhanced service; antepartum management", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "H1001", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2618152, + "CONCEPT_NAME" : "Prenatal care, at risk enhanced service; care coordination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "H1002", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2618154, + "CONCEPT_NAME" : "Prenatal care, at-risk enhanced service; follow-up home visit", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "H1004", + "DOMAIN_ID" : "Visit", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2618155, + "CONCEPT_NAME" : "Prenatal care, at-risk enhanced service package (includes h1001-h1004)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "H1005", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4176966, + "CONCEPT_NAME" : "Prenatal education", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "363266006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4112701, + "CONCEPT_NAME" : "Prenatal examination and care of mother", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "18114009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4311447, + "CONCEPT_NAME" : "Prenatal initial visit", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "424441002", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4172038, + "CONCEPT_NAME" : "Prenatal supplemental visit", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "422808006", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4313474, + "CONCEPT_NAME" : "Prenatal visit", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "424619006", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2213352, + "CONCEPT_NAME" : "Preparation of embryo for transfer (any method)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "89255", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4129040, + "CONCEPT_NAME" : "Presentation of cord", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237305004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37110284, + "CONCEPT_NAME" : "Preterm delivery following Cesarean section", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "724489002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37110283, + "CONCEPT_NAME" : "Preterm delivery following induction of labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "724488005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45757175, + "CONCEPT_NAME" : "Preterm labor in second trimester with preterm delivery in second trimester", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10761141000119107", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45757176, + "CONCEPT_NAME" : "Preterm labor in third trimester with preterm delivery in third trimester", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10761191000119104", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36712702, + "CONCEPT_NAME" : "Preterm labor with preterm delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10761241000119104", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44784550, + "CONCEPT_NAME" : "Preterm spontaneous labor with preterm delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "698716002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44784551, + "CONCEPT_NAME" : "Preterm spontaneous labor with term delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "698717006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4098718, + "CONCEPT_NAME" : "Previous abnormality of glucose tolerance", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "2725003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40318194, + "CONCEPT_NAME" : "Primary amenorrhea", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "156035004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 314479, + "CONCEPT_NAME" : "Primary apnea in the newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "430335007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 258554, + "CONCEPT_NAME" : "Primary atelectasis, in perinatal period", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "42908004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37311892, + "CONCEPT_NAME" : "Primary central sleep apnea of prematurity", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "789009003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4300387, + "CONCEPT_NAME" : "Primary hypotonic uterine dysfunction", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "387696001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 201516, + "CONCEPT_NAME" : "Primary malignant neoplasm of placenta", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "93965008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37204277, + "CONCEPT_NAME" : "Primary microcephaly, epilepsy, permanent neonatal diabetes syndrome", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "782825008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4230947, + "CONCEPT_NAME" : "Primary physiologic amenorrhea", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "8913004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4262580, + "CONCEPT_NAME" : "Primary sleep apnea of newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "361208003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443435, + "CONCEPT_NAME" : "Primary uterine inertia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "387699008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 196762, + "CONCEPT_NAME" : "Primary uterine inertia - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199819004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 196759, + "CONCEPT_NAME" : "Primary uterine inertia with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199821009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4133029, + "CONCEPT_NAME" : "Primigravida", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "127364007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060105, + "CONCEPT_NAME" : "Private home delivery booking", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169624005", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4120303, + "CONCEPT_NAME" : "Progressive congenital rubella encephalomyelitis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "302811004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4230252, + "CONCEPT_NAME" : "Progressive post hemorrhagic ventricular dilatation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "359629000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 72692, + "CONCEPT_NAME" : "Prolapsed arm - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199384007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4058679, + "CONCEPT_NAME" : "Prolapse of anterior lip of cervix obstructing labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "19729005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440476, + "CONCEPT_NAME" : "Prolapse of cord", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "270500004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441645, + "CONCEPT_NAME" : "Prolapse of cord - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199869007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435883, + "CONCEPT_NAME" : "Prolapse of cord with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199870008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4171094, + "CONCEPT_NAME" : "Prolonged apnea of newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276546007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440475, + "CONCEPT_NAME" : "Prolonged first stage - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199847000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441362, + "CONCEPT_NAME" : "Prolonged first stage of labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "33627001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434435, + "CONCEPT_NAME" : "Prolonged first stage with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199848005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440167, + "CONCEPT_NAME" : "Prolonged labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "53443007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4308660, + "CONCEPT_NAME" : "Prolonged latent phase of labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "387700009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3189930, + "CONCEPT_NAME" : "Prolonged neonatal intensive care history", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "9320001000004107", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "Nebraska Lexicon", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4171095, + "CONCEPT_NAME" : "Prolonged newborn physiological jaundice", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276550000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 192972, + "CONCEPT_NAME" : "Prolonged rupture of membranes", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12729009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434431, + "CONCEPT_NAME" : "Prolonged second stage - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199857004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434714, + "CONCEPT_NAME" : "Prolonged second stage of labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "77259008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37017049, + "CONCEPT_NAME" : "Prolonged second stage of labor due to poor maternal effort", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "713232009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437620, + "CONCEPT_NAME" : "Prolonged second stage with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199858009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757377, + "CONCEPT_NAME" : "Protein and Glucose panel [Mass/volume] - Body fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54246-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3043821, + "CONCEPT_NAME" : "Protein and Glucose panel - Urine by Test strip", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45060-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45770185, + "CONCEPT_NAME" : "Provision of information about extensively hydrolysed infant formula", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "924431000000105", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4082504, + "CONCEPT_NAME" : "Pruritus of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "239102001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4150734, + "CONCEPT_NAME" : "Pseudomonas ophthalmia neonatorum", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "278930003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442419, + "CONCEPT_NAME" : "Puerperal cerebrovascular disorder - delivered", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "200330000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442418, + "CONCEPT_NAME" : "Puerperal cerebrovascular disorder - delivered with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200331001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 313272, + "CONCEPT_NAME" : "Puerperal cerebrovascular disorder with antenatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200332008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 313833, + "CONCEPT_NAME" : "Puerperal cerebrovascular disorder with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200333003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4328870, + "CONCEPT_NAME" : "Puerperal endometritis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "22399000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4065749, + "CONCEPT_NAME" : "Puerperal endometritis - delivered with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200181000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061463, + "CONCEPT_NAME" : "Puerperal endometritis with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200182007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4024972, + "CONCEPT_NAME" : "Puerperal pelvic cellulitis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12062007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4297611, + "CONCEPT_NAME" : "Puerperal pelvic sepsis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "77206006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4339312, + "CONCEPT_NAME" : "Puerperal peritonitis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "88178009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4062259, + "CONCEPT_NAME" : "Puerperal peritonitis with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200191006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4034154, + "CONCEPT_NAME" : "Puerperal pyrexia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237348005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435028, + "CONCEPT_NAME" : "Puerperal pyrexia of unknown origin", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200277008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434713, + "CONCEPT_NAME" : "Puerperal pyrexia of unknown origin - delivered with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200280009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432389, + "CONCEPT_NAME" : "Puerperal pyrexia of unknown origin with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200281008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4050255, + "CONCEPT_NAME" : "Puerperal salpingitis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "20932005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4062257, + "CONCEPT_NAME" : "Puerperal salpingitis with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200187001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4102318, + "CONCEPT_NAME" : "Puerperal sepsis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "2858002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4065753, + "CONCEPT_NAME" : "Puerperal sepsis with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200196001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3655209, + "CONCEPT_NAME" : "Pulmonary embolism due to and following ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "860680001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3655210, + "CONCEPT_NAME" : "Pulmonary embolism due to and following molar pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "860681002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4263344, + "CONCEPT_NAME" : "Pulmonary fibroplasia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "361195001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42600161, + "CONCEPT_NAME" : "Pulmonary nodular fibroplasia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "42661000009100", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED Veterinary", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4272315, + "CONCEPT_NAME" : "Purulent mastitis associated with childbirth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63662002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45765500, + "CONCEPT_NAME" : "Quadruplet birth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "702452007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442594, + "CONCEPT_NAME" : "Quadruplet pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "60810003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438481, + "CONCEPT_NAME" : "Quadruplet pregnancy - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199325005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440466, + "CONCEPT_NAME" : "Quadruplet pregnancy with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199326006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45757166, + "CONCEPT_NAME" : "Quadruplets, all live born", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10760701000119102", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45773428, + "CONCEPT_NAME" : "Quadruplets, some live born", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10760741000119100", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42539377, + "CONCEPT_NAME" : "Quadruplets with all four stillborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "762612009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40479425, + "CONCEPT_NAME" : "Quantitative measurement of concentration of glucose in peritoneal dialysis fluid at 4 hours postperitoneal dialysis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "444450007", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40484115, + "CONCEPT_NAME" : "Quantitative measurement of glucose in 1 hour postprandial urine specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "443924005", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40485034, + "CONCEPT_NAME" : "Quantitative measurement of glucose in 24 hour urine specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "444122000", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40479799, + "CONCEPT_NAME" : "Quantitative measurement of glucose in first peritoneal dialysis fluid specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "444499006", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40484114, + "CONCEPT_NAME" : "Quantitative measurement of glucose in pericardial fluid specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "443923004", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40484139, + "CONCEPT_NAME" : "Quantitative measurement of glucose in peritoneal dialysis fluid specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "443946002", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40485040, + "CONCEPT_NAME" : "Quantitative measurement of glucose in pleural fluid specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "444128001", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40479401, + "CONCEPT_NAME" : "Quantitative measurement of glucose in predialysis peritoneal dialysis fluid specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "444423002", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40483242, + "CONCEPT_NAME" : "Quantitative measurement of glucose in serum or plasma specimen 120 minutes after 75 gram oral glucose challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "443780009", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40484576, + "CONCEPT_NAME" : "Quantitative measurement of glucose in serum or plasma specimen 6 hours after glucose challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "444008003", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40484575, + "CONCEPT_NAME" : "Quantitative measurement of glucose in synovial fluid specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "444007008", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40485039, + "CONCEPT_NAME" : "Quantitative measurement of mass concentration of glucose in postcalorie fasting serum or plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "444127006", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40483659, + "CONCEPT_NAME" : "Quantitative measurement of substance rate of glucose excretion in urine", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "443842004", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4182146, + "CONCEPT_NAME" : "Quantity of lochia - finding", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "366299003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061423, + "CONCEPT_NAME" : "Questionable if pregnancy was planned", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169569009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45765501, + "CONCEPT_NAME" : "Quintuplet birth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "702453002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45757167, + "CONCEPT_NAME" : "Quintuplets, all live born", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10760781000119105", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45757168, + "CONCEPT_NAME" : "Quintuplets, some live born", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10760821000119100", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42538805, + "CONCEPT_NAME" : "Quintuplets with all five stillborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "762613004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3046853, + "CONCEPT_NAME" : "Race", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "32624-9", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Clinical Observation" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40484021, + "CONCEPT_NAME" : "Random blood glucose abnormal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "442545002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4153111, + "CONCEPT_NAME" : "Random blood glucose measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "271061004", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4042065, + "CONCEPT_NAME" : "Random blood sugar low", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "166891009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4042725, + "CONCEPT_NAME" : "Random blood sugar normal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "166890005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4055671, + "CONCEPT_NAME" : "Random blood sugar raised", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "166892002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40481539, + "CONCEPT_NAME" : "Random glucose level abnormal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "444925004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4149994, + "CONCEPT_NAME" : "Readmission for abortive pregnancy (NHS codes)", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "267195006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4113503, + "CONCEPT_NAME" : "Readmission for retained products of conception, legal termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198862007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4114280, + "CONCEPT_NAME" : "Readmission for retained products of conception, spontaneous abortion", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198861000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4150401, + "CONCEPT_NAME" : "Reason for termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "310506006", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Observable Entity" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4173350, + "CONCEPT_NAME" : "Recurrent apnea of newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276725001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 764688, + "CONCEPT_NAME" : "Red-green tinged lochia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "5361000124103", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 764646, + "CONCEPT_NAME" : "Red or brown-green tinged lochia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "4971000124107", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 77619, + "CONCEPT_NAME" : "Reduced fetal movement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276369006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4190767, + "CONCEPT_NAME" : "Referral for termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "415262008", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4081292, + "CONCEPT_NAME" : "Referral to antenatal clinic", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "183860003", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 46272536, + "CONCEPT_NAME" : "Referral to breastfeeding education class during prenatal period", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "710916001", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4084693, + "CONCEPT_NAME" : "Referral to obstetrics service", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "183548008", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4214930, + "CONCEPT_NAME" : "Refer to early pregnancy unit", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "417577000", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040000, + "CONCEPT_NAME" : "Reliability of last menstrual period observation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "53661-5", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Clinical Observation" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004342, + "CONCEPT_NAME" : "Removal of both fallopian tubes at same operative episode", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "66.51", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004546, + "CONCEPT_NAME" : "Removal of cerclage material from cervix", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "69.96", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110339, + "CONCEPT_NAME" : "Removal of cerclage suture under anesthesia (other than local)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59871", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4308664, + "CONCEPT_NAME" : "Removal of ectopic fetus from abdominal cavity", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "387709005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4227423, + "CONCEPT_NAME" : "Removal of ectopic fetus from fallopian tube without salpingectomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "88362001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4247895, + "CONCEPT_NAME" : "Removal of ectopic fetus from ovary without oophorectomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "73341009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004788, + "CONCEPT_NAME" : "Removal of extratubal ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "74.3", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "3-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4300391, + "CONCEPT_NAME" : "Removal of extrauterine ectopic fetus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "387710000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4309622, + "CONCEPT_NAME" : "Removal of hydatidiform mole", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "216209009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4153287, + "CONCEPT_NAME" : "Removal of products of conception from fallopian tube", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "271415006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004343, + "CONCEPT_NAME" : "Removal of remaining fallopian tube", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "66.52", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 192679, + "CONCEPT_NAME" : "Renal disease in pregnancy AND/OR puerperium without hypertension", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "75150001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45757120, + "CONCEPT_NAME" : "Renal failure after ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10752771000119100", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 195014, + "CONCEPT_NAME" : "Renal failure following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43629001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42537766, + "CONCEPT_NAME" : "Renal failure following molar pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "737327002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 197930, + "CONCEPT_NAME" : "Renal hypertension complicating pregnancy, childbirth and the puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198949009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 200157, + "CONCEPT_NAME" : "Renal hypertension complicating pregnancy, childbirth and the puerperium - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198951008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 192684, + "CONCEPT_NAME" : "Renal hypertension complicating pregnancy, childbirth and the puerperium - not delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198953006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4095115, + "CONCEPT_NAME" : "Renal tubular necrosis following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26235008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2109484, + "CONCEPT_NAME" : "Repair, initial inguinal hernia, preterm infant (younger than 37 weeks gestation at birth), performed from birth up to 50 weeks postconception age, with or without hydrocelectomy; incarcerated or strangulated", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "49492", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2109483, + "CONCEPT_NAME" : "Repair, initial inguinal hernia, preterm infant (younger than 37 weeks gestation at birth), performed from birth up to 50 weeks postconception age, with or without hydrocelectomy; reducible", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "49491", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004842, + "CONCEPT_NAME" : "Repair of current obstetric laceration of bladder and urethra", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "75.61", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004829, + "CONCEPT_NAME" : "Repair of current obstetric laceration of cervix", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "75.51", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004830, + "CONCEPT_NAME" : "Repair of current obstetric laceration of corpus uteri", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "75.52", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4230535, + "CONCEPT_NAME" : "Repair of current obstetric laceration of rectum and sphincter ani", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "359946000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004843, + "CONCEPT_NAME" : "Repair of current obstetric laceration of rectum and sphincter ani", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "75.62", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4319897, + "CONCEPT_NAME" : "Repair of current obstetric laceration of uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "9724000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004828, + "CONCEPT_NAME" : "Repair of current obstetric laceration of uterus, not otherwise specified", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "75.50", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4071642, + "CONCEPT_NAME" : "Repair of episiotomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177222006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4172666, + "CONCEPT_NAME" : "Repair of obstetric laceration of bladder and urethra", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "42390009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4135477, + "CONCEPT_NAME" : "Repair of obstetric laceration of cervix", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "31939001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004844, + "CONCEPT_NAME" : "Repair of other current obstetric laceration", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "75.69", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004831, + "CONCEPT_NAME" : "Repair of other current obstetric laceration", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "75.6", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "3-dig nonbill code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4033994, + "CONCEPT_NAME" : "Repair of right mediolateral episiotomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237025009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4086797, + "CONCEPT_NAME" : "Requests pregnancy termination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "184005004", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40482435, + "CONCEPT_NAME" : "Residual trophoblastic disease", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "445149007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 319138, + "CONCEPT_NAME" : "Respiratory condition of fetus OR newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "17849001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 258866, + "CONCEPT_NAME" : "Respiratory distress syndrome in the newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46775006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4173177, + "CONCEPT_NAME" : "Respiratory insufficiency syndrome of newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276536005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4318553, + "CONCEPT_NAME" : "Respiratory tract hemorrhage of the newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "95621004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4109090, + "CONCEPT_NAME" : "Resuture of episiotomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "285416007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4115155, + "CONCEPT_NAME" : "Resuture of episiotomy dehiscence", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "285417003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4003030, + "CONCEPT_NAME" : "Retained placenta", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "109894007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4129038, + "CONCEPT_NAME" : "Retained placenta and membranes", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "237294006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44782606, + "CONCEPT_NAME" : "Retained placenta due to morbidly adherent placenta", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "699949009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4003031, + "CONCEPT_NAME" : "Retained placental fragment", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "109895008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4150001, + "CONCEPT_NAME" : "Retained placenta or membranes with no hemorrhage", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "267273001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442078, + "CONCEPT_NAME" : "Retained placenta with no hemorrhage - delivered with postnatal problem", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "200037005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 200792, + "CONCEPT_NAME" : "Retained placenta with no hemorrhage with postnatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200038000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 200789, + "CONCEPT_NAME" : "Retained placenta, without hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "111453004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4064977, + "CONCEPT_NAME" : "Retained portion of placenta or membranes with no hemorrhage", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "200040005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 201642, + "CONCEPT_NAME" : "Retained portions of placenta AND/OR membranes without hemorrhage", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "111454005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4170121, + "CONCEPT_NAME" : "Retained products after miscarriage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "275425008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4062112, + "CONCEPT_NAME" : "Retained products with no hemorrhage with postnatal problem", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "200043007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 373766, + "CONCEPT_NAME" : "Retinopathy of prematurity", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "415297005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36684687, + "CONCEPT_NAME" : "Retinopathy of prematurity of left eye", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "338021000119106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36684686, + "CONCEPT_NAME" : "Retinopathy of prematurity of left eye stage 1 - demarcation line", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "338001000119102", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36684685, + "CONCEPT_NAME" : "Retinopathy of prematurity of left eye stage 2 - intraretinal ridge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "337991000119106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36684684, + "CONCEPT_NAME" : "Retinopathy of prematurity of left eye stage 3 - ridge with extraretinal fibrovascular proliferation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "337981000119108", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36684624, + "CONCEPT_NAME" : "Retinopathy of prematurity of right eye", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "332411000119108", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36684623, + "CONCEPT_NAME" : "Retinopathy of prematurity of right eye stage 1 - demarcation line", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "332391000119108", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36684622, + "CONCEPT_NAME" : "Retinopathy of prematurity of right eye stage 2 - intraretinal ridge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "332381000119105", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36684621, + "CONCEPT_NAME" : "Retinopathy of prematurity of right eye stage 3 - ridge with extraretinal fibrovascular proliferation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "332371000119107", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45772079, + "CONCEPT_NAME" : "Retinopathy of prematurity stage 0", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "124111000119102", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 375250, + "CONCEPT_NAME" : "Retinopathy of prematurity stage 1 - demarcation line", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "408847006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 375251, + "CONCEPT_NAME" : "Retinopathy of prematurity stage 2 - intraretinal ridge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "408848001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 379009, + "CONCEPT_NAME" : "Retinopathy of prematurity stage 3 - ridge with extraretinal fibrovascular proliferation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "408849009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443519, + "CONCEPT_NAME" : "Retinopathy of prematurity stage 4 - subtotal retinal detachment", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "408850009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443520, + "CONCEPT_NAME" : "Retinopathy of prematurity stage 5 - total retinal detachment", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "408851008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442549, + "CONCEPT_NAME" : "Retracted nipple associated with childbirth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "74955002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36713478, + "CONCEPT_NAME" : "Retracted nipple associated with childbirth with attachment difficulty", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "717819009", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437061, + "CONCEPT_NAME" : "Retracted nipple in pregnancy, the puerperium or lactation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200402001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435612, + "CONCEPT_NAME" : "Retracted nipple in pregnancy, the puerperium or lactation - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200404000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438823, + "CONCEPT_NAME" : "Retracted nipple in pregnancy, the puerperium or lactation with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200407007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45757159, + "CONCEPT_NAME" : "Retraction of nipple associated with lactation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10760301000119103", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45757160, + "CONCEPT_NAME" : "Retraction of nipple in pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10760341000119101", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4194811, + "CONCEPT_NAME" : "Retraction ring dystocia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "79414005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40490338, + "CONCEPT_NAME" : "Retrieval of oocyte by transabdominal approach", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "446934006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4035336, + "CONCEPT_NAME" : "Retromammary abscess associated with childbirth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15406009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4232323, + "CONCEPT_NAME" : "Retromammary mastitis associated with childbirth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "89672000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 196484, + "CONCEPT_NAME" : "Retroverted incarcerated gravid uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199466009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 198216, + "CONCEPT_NAME" : "Retroverted incarcerated gravid uterus - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199468005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 196486, + "CONCEPT_NAME" : "Retroverted incarcerated gravid uterus with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199470001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060560, + "CONCEPT_NAME" : "Retroverted incarcerated gravid uterus with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199471002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44790242, + "CONCEPT_NAME" : "Rhesus detailed scan", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "228711000000104", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 199891, + "CONCEPT_NAME" : "Rhesus isoimmunization affecting pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "44795003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 195878, + "CONCEPT_NAME" : "Rhesus isoimmunization - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199582007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 192376, + "CONCEPT_NAME" : "Rhesus isoimmunization with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199583002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061158, + "CONCEPT_NAME" : "Rhesus screening - 1st pregnancy sample", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169676009", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061159, + "CONCEPT_NAME" : "Rhesus screening - 2nd pregnancy sample", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169677000", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061806, + "CONCEPT_NAME" : "Rhesus screening - 3rd pregnancy sample", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169678005", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3023524, + "CONCEPT_NAME" : "Rh immune globulin screen [interpretation]", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1314-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4127253, + "CONCEPT_NAME" : "Right mediolateral episiotomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "236992007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4074424, + "CONCEPT_NAME" : "Right salpingectomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "176916000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4072837, + "CONCEPT_NAME" : "Right salpingo-oophorectomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "176914002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4047564, + "CONCEPT_NAME" : "Routine antenatal care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "134435003", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4121924, + "CONCEPT_NAME" : "Routine episiotomy and repair", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "288194000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110315, + "CONCEPT_NAME" : "Routine obstetric care including antepartum care, cesarean delivery, and postpartum care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59510", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110322, + "CONCEPT_NAME" : "Routine obstetric care including antepartum care, cesarean delivery, and postpartum care, following attempted vaginal delivery after previous cesarean delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59618", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110307, + "CONCEPT_NAME" : "Routine obstetric care including antepartum care, vaginal delivery (with or without episiotomy, and/or forceps) and postpartum care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59400", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110319, + "CONCEPT_NAME" : "Routine obstetric care including antepartum care, vaginal delivery (with or without episiotomy, and/or forceps) and postpartum care, after previous cesarean delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59610", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44790189, + "CONCEPT_NAME" : "Routine obstetric scan", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "228471000000102", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36713471, + "CONCEPT_NAME" : "Routine postpartum follow-up", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "717810008", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4102697, + "CONCEPT_NAME" : "Rubella cataract", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "253227001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4275129, + "CONCEPT_NAME" : "Rubella myocarditis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64190005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4338888, + "CONCEPT_NAME" : "Rubella retinopathy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "231985001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4049040, + "CONCEPT_NAME" : "Rumination in newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206565007", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4304587, + "CONCEPT_NAME" : "Ruptured Descemet membrane due to birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "419743001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4323287, + "CONCEPT_NAME" : "Rupture of cord", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "70603007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 198816, + "CONCEPT_NAME" : "Rupture of uterus before labor - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199960005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 192699, + "CONCEPT_NAME" : "Rupture of uterus during and after labor - delivered", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "199964001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4064960, + "CONCEPT_NAME" : "Rupture of uterus during and after labor - delivered with postnatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199965000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 194106, + "CONCEPT_NAME" : "Rupture of uterus during AND/OR after labor", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "69270005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45757588, + "CONCEPT_NAME" : "Rupture of uterus during labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "23431000119106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110247, + "CONCEPT_NAME" : "Salpingectomy, complete or partial, unilateral or bilateral (separate procedure)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "58700", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4032000, + "CONCEPT_NAME" : "Salpingectomy of remaining fallopian tube", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "14353000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004346, + "CONCEPT_NAME" : "Salpingectomy with removal of tubal pregnancy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "66.62", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4316051, + "CONCEPT_NAME" : "Salpingitis following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "9516007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4021363, + "CONCEPT_NAME" : "Salpingo-oophorectomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "116028008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4073272, + "CONCEPT_NAME" : "Salpingo-oophorectomy of remaining solitary fallopian tube and ovary", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "176909001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4239009, + "CONCEPT_NAME" : "Salpingo-oophoritis following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57468008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004351, + "CONCEPT_NAME" : "Salpingo-oophorostomy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "66.72", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004362, + "CONCEPT_NAME" : "Salpingo-salpingostomy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "66.73", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004308, + "CONCEPT_NAME" : "Salpingostomy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "66.02", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4263669, + "CONCEPT_NAME" : "Salpingostomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "60463004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110253, + "CONCEPT_NAME" : "Salpingostomy (salpingoneostomy)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "58770", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004307, + "CONCEPT_NAME" : "Salpingotomy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "66.01", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004306, + "CONCEPT_NAME" : "Salpingotomy and salpingostomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "66.0", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "3-dig nonbill code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4174422, + "CONCEPT_NAME" : "Sampling injury to scalp during birth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276705000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4120817, + "CONCEPT_NAME" : "Sampling of chorionic villus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "303720006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4071592, + "CONCEPT_NAME" : "Scalp abrasions due to birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206203003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4047853, + "CONCEPT_NAME" : "Scalp bruising due to birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206204009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 133028, + "CONCEPT_NAME" : "Scalp injuries due to birth trauma", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "206199003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4301415, + "CONCEPT_NAME" : "Scalp injury due to vacuum extraction", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "403849006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 136530, + "CONCEPT_NAME" : "Sclerema neonatorum", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206539008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4174577, + "CONCEPT_NAME" : "Secondary abdominal pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276881003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40318195, + "CONCEPT_NAME" : "Secondary amenorrhea", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "156036003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37206228, + "CONCEPT_NAME" : "Secondary hemorrhage due to and following illegally induced termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "785869007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37206227, + "CONCEPT_NAME" : "Secondary hemorrhage due to and following induced termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "785868004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37206229, + "CONCEPT_NAME" : "Secondary hemorrhage due to and following legally induced termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "785870008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4173636, + "CONCEPT_NAME" : "Secondary perineal tear in the puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "42537006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4312727, + "CONCEPT_NAME" : "Secondary physiologic amenorrhea", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86030004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4065618, + "CONCEPT_NAME" : "Secondary postpartum hemorrhage - delivered with postnatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200025008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 192974, + "CONCEPT_NAME" : "Secondary uterine inertia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43715006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 192384, + "CONCEPT_NAME" : "Secondary uterine inertia - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199824001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 197346, + "CONCEPT_NAME" : "Secondary uterine inertia with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199825000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 198492, + "CONCEPT_NAME" : "Second degree perineal laceration", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6234006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 198499, + "CONCEPT_NAME" : "Second degree perineal tear during delivery - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199925004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 197337, + "CONCEPT_NAME" : "Second degree perineal tear during delivery with postnatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199926003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4327745, + "CONCEPT_NAME" : "Second trimester bleeding", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "430881000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4244438, + "CONCEPT_NAME" : "Second trimester pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59466002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3049229, + "CONCEPT_NAME" : "Second trimester quad maternal screen [Interpretation] in Serum or Plasma Narrative", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "49092-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4083415, + "CONCEPT_NAME" : "Seen in antenatal clinic", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "185226003", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4260976, + "CONCEPT_NAME" : "Seen in fetal medicine clinic", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "440580005", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4089029, + "CONCEPT_NAME" : "Seen in postnatal clinic", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "185266004", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4186827, + "CONCEPT_NAME" : "Seizures complicating infection in the newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "372441001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4159149, + "CONCEPT_NAME" : "Seizures complicating intracranial hemorrhage in the newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "371107004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 762709, + "CONCEPT_NAME" : "Seizures in the newborn, non-refractory", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "430871000124109", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 762579, + "CONCEPT_NAME" : "Seizures in the newborn, refractory", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429171000124105", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4096674, + "CONCEPT_NAME" : "Self-induced hyperinsulinemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "190429008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4147409, + "CONCEPT_NAME" : "Self-monitoring of blood and urine glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "308115004", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4146454, + "CONCEPT_NAME" : "Self-monitoring of blood glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "308113006", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4147408, + "CONCEPT_NAME" : "Self-monitoring of urine glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "308114000", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4091293, + "CONCEPT_NAME" : "Sensitive pregnancy test", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "252161000", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4264738, + "CONCEPT_NAME" : "Separation of symphysis pubis during delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "61007003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4009954, + "CONCEPT_NAME" : "Sepsis during labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1125006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060807, + "CONCEPT_NAME" : "Sepsis during labor with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199711007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4187090, + "CONCEPT_NAME" : "Sepsis following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46848006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37116435, + "CONCEPT_NAME" : "Sepsis following obstructed labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "733142005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42536689, + "CONCEPT_NAME" : "Sepsis of neonate caused by Streptococcus pyogenes", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "735637004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4048275, + "CONCEPT_NAME" : "Sepsis of newborn due to anaerobes", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206380000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 46270041, + "CONCEPT_NAME" : "Sepsis of newborn due to group B Streptococcus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "127091000119100", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 763027, + "CONCEPT_NAME" : "Sepsis of newborn due to Streptococcus agalactiae", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "435181000124108", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4071063, + "CONCEPT_NAME" : "Sepsis of the newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206376005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3655212, + "CONCEPT_NAME" : "Septic embolism due to and following ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "860683004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3655211, + "CONCEPT_NAME" : "Septic embolism due to and following molar pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "860682009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 137371, + "CONCEPT_NAME" : "Septicemia of newborn", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "41229001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4080587, + "CONCEPT_NAME" : "Septic shock following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "24051007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4042760, + "CONCEPT_NAME" : "Serum 2-hr post-prandial glucose measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "167088001", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4161969, + "CONCEPT_NAME" : "Serum alpha-fetoprotein level elevated", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "399643001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4275335, + "CONCEPT_NAME" : "Serum alpha-fetoprotein level - finding", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "365804002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4195345, + "CONCEPT_NAME" : "Serum alpha-fetoprotein multiple of median measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313868001", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4041723, + "CONCEPT_NAME" : "Serum fasting glucose measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "167087006", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4210722, + "CONCEPT_NAME" : "Serum free beta human chorionic gonadotrophin measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313872002", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4195509, + "CONCEPT_NAME" : "Serum free beta human chorionic gonadotropin multiple of median measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "314070003", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4198892, + "CONCEPT_NAME" : "Serum human chorionic gonadotropin multiple of median measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313866002", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4156811, + "CONCEPT_NAME" : "Serum insulin - C-polypeptide measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "271227006", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4150492, + "CONCEPT_NAME" : "Serum insulin measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "271226002", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4041161, + "CONCEPT_NAME" : "Serum pregnancy test (B-HCG)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "166434005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4042412, + "CONCEPT_NAME" : "Serum pregnancy test positive", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "166437003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4042759, + "CONCEPT_NAME" : "Serum random glucose measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "167086002", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4042751, + "CONCEPT_NAME" : "Serum total HCG measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "167037004", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432427, + "CONCEPT_NAME" : "Severe birth asphyxia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57284007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4121417, + "CONCEPT_NAME" : "Severe birth asphyxia, APGAR 0-3", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "287985008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4153452, + "CONCEPT_NAME" : "Severe birth asphyxia - apgar score less than 4 at 1 minute", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "268829008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4032345, + "CONCEPT_NAME" : "Severe hyperemesis gravidarum", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "129598007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4029420, + "CONCEPT_NAME" : "Severe hyperglycemia due to diabetes mellitus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237621004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36675039, + "CONCEPT_NAME" : "Severe neonatal onset encephalopathy with microcephaly", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "771303004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4129184, + "CONCEPT_NAME" : "Severe postnatal depression", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237350002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4129843, + "CONCEPT_NAME" : "Severe postnatal psychosis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237352005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433536, + "CONCEPT_NAME" : "Severe pre-eclampsia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46764007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438490, + "CONCEPT_NAME" : "Severe pre-eclampsia - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198983002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439077, + "CONCEPT_NAME" : "Severe pre-eclampsia - delivered with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198984008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 132685, + "CONCEPT_NAME" : "Severe pre-eclampsia - not delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198985009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4057976, + "CONCEPT_NAME" : "Severe pre-eclampsia with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198986005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4172871, + "CONCEPT_NAME" : "Severe transient tachypnea of newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276532007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4092760, + "CONCEPT_NAME" : "Sex of baby at delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "281053000", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Observable Entity" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45765502, + "CONCEPT_NAME" : "Sextuplet birth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "702454008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45772082, + "CONCEPT_NAME" : "Sextuplets, all live born", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10760861000119105", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45757169, + "CONCEPT_NAME" : "Sextuplets, some live born", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10760901000119104", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42538806, + "CONCEPT_NAME" : "Sextuplets with all six stillborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "762614005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4127241, + "CONCEPT_NAME" : "Shirodkar's cervical cerclage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "236947000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442271, + "CONCEPT_NAME" : "Shock following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "69344006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438226, + "CONCEPT_NAME" : "Short cord", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59795007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435020, + "CONCEPT_NAME" : "Short cord - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199889008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437946, + "CONCEPT_NAME" : "Short cord with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199890004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 80474, + "CONCEPT_NAME" : "Shoulder dystocia - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199783004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 75608, + "CONCEPT_NAME" : "Shoulder dystocia with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199784005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 72377, + "CONCEPT_NAME" : "Shoulder girdle dystocia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "89700002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4170152, + "CONCEPT_NAME" : "Simpson's forceps delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "275169009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014295, + "CONCEPT_NAME" : "Single live birth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169826009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40483521, + "CONCEPT_NAME" : "Single liveborn born in hospital by cesarean section", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "442423001", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36713074, + "CONCEPT_NAME" : "Single liveborn born in hospital by vaginal delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "17561000119102", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014454, + "CONCEPT_NAME" : "Single stillbirth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169827000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36713465, + "CONCEPT_NAME" : "Singleton liveborn born in hospital", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "717803002", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 257370, + "CONCEPT_NAME" : "Skeletal injury due to birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "240314005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4122747, + "CONCEPT_NAME" : "Skin surrounding umbilical cord stump pink", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "289326007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4126736, + "CONCEPT_NAME" : "Skin surrounding umbilical cord stump red", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "289325006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 46284319, + "CONCEPT_NAME" : "Skull injury due to birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "944051000000105", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4166847, + "CONCEPT_NAME" : "Slipped umbilical ligature with hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45549002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4087113, + "CONCEPT_NAME" : "Slow fetal growth AND/OR fetal malnutrition", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "18471004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4174056, + "CONCEPT_NAME" : "Slow slope active phase of labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "49279000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3174052, + "CONCEPT_NAME" : "Slow transition to extrauterine life", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "9270001000004104", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "Nebraska Lexicon", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4064286, + "CONCEPT_NAME" : "Small-for-dates baby", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199612005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4150640, + "CONCEPT_NAME" : "Snuffles in newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "271375003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4162239, + "CONCEPT_NAME" : "Somogyi phenomenon", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "398140007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3050414, + "CONCEPT_NAME" : "Sonographer name", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "49088-8", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Clinical Observation" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4318858, + "CONCEPT_NAME" : "Spastic ileus of the newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "95626009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4165092, + "CONCEPT_NAME" : "Spastic paralysis due to birth injury", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40980002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4102446, + "CONCEPT_NAME" : "Spastic paralysis due to intracranial birth injury", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "28534004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4194977, + "CONCEPT_NAME" : "Spastic paralysis due to spinal birth injury", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "79591004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2213358, + "CONCEPT_NAME" : "Sperm isolation; complex prep (eg, Percoll gradient, albumin gradient) for insemination or diagnosis with semen analysis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "89261", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2213357, + "CONCEPT_NAME" : "Sperm isolation; simple prep (eg, sperm wash and swim-up) for insemination or diagnosis with semen analysis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "89260", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110198, + "CONCEPT_NAME" : "Sperm washing for artificial insemination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "58323", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44784365, + "CONCEPT_NAME" : "Spinal cord injury due to birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "698500002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4047857, + "CONCEPT_NAME" : "Spinal cord laceration due to birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206223002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4070526, + "CONCEPT_NAME" : "Spinal cord rupture due to birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206224008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44784364, + "CONCEPT_NAME" : "Spine injury due to birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "698499006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 77679, + "CONCEPT_NAME" : "Spine or spinal cord injury due to birth trauma", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "206220004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4169992, + "CONCEPT_NAME" : "Spleen injury due to birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "275364007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4150803, + "CONCEPT_NAME" : "Spleen rupture due to birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "268826001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4073422, + "CONCEPT_NAME" : "Spontaneous breech delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177157003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4008578, + "CONCEPT_NAME" : "Spontaneous hypoglycemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "111559003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 761781, + "CONCEPT_NAME" : "Spontaneous intracerebral hemorrhage in neonate", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15984991000119103", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4309364, + "CONCEPT_NAME" : "Spontaneous onset of labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84457005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015143, + "CONCEPT_NAME" : "Spontaneous rupture of fetal membranes", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169734005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4167497, + "CONCEPT_NAME" : "Spontaneous unassisted delivery, medical personnel present", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48204000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4205240, + "CONCEPT_NAME" : "Spontaneous vertex delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "309469004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 198212, + "CONCEPT_NAME" : "Spotting per vagina in pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "284075002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4091461, + "CONCEPT_NAME" : "Standard pregnancy test", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "252160004", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4298015, + "CONCEPT_NAME" : "Staphylococcal omphalitis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "403841009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40406337, + "CONCEPT_NAME" : "Stillbirth", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "206581002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443213, + "CONCEPT_NAME" : "Stillbirth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237364002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4287409, + "CONCEPT_NAME" : "Stillbirth of immature female (500-999 gms.)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "68509000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4217655, + "CONCEPT_NAME" : "Stillbirth of immature fetus, sex undetermined (500-999 gms.)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72543004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4261819, + "CONCEPT_NAME" : "Stillbirth of immature male (500-999 gms.)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "35608009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4321563, + "CONCEPT_NAME" : "Stillbirth of mature female (2500 gms. or more)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "70112005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4301269, + "CONCEPT_NAME" : "Stillbirth of mature male (2500 gms. or more)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7860005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4103876, + "CONCEPT_NAME" : "Stillbirth of premature female (1000-2499 gms.)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "28996007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4300979, + "CONCEPT_NAME" : "Stillbirth of premature male (1000-2499 gms.)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "77814006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443463, + "CONCEPT_NAME" : "Stillbirth - unknown if fetal death intrapartum or prior to labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "408796008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2721254, + "CONCEPT_NAME" : "Stimulated intrauterine insemination (iui), case rate", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "S4035", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4301412, + "CONCEPT_NAME" : "Streptococcal omphalitis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "403843007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4168056, + "CONCEPT_NAME" : "Stroke in the puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "275434003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4174198, + "CONCEPT_NAME" : "Subareolar abscess associated with childbirth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "49364005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4047868, + "CONCEPT_NAME" : "Subcutaneous fat necrosis due to birth injury", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206254003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 378544, + "CONCEPT_NAME" : "Subdural and cerebral hemorrhage due to birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206188000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4130539, + "CONCEPT_NAME" : "Subdural hemorrhage due to birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "126941005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4095178, + "CONCEPT_NAME" : "Subdural hemorrhage due to intrapartum anoxia AND/OR hypoxia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25004000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4183593, + "CONCEPT_NAME" : "Subdural hemorrhage in fetus or newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43602006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42538556, + "CONCEPT_NAME" : "Subgaleal epicranial subaponeurotic hemorrhage due to birth injury", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "762286005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4030259, + "CONCEPT_NAME" : "Sub-involution of uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13842006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4063159, + "CONCEPT_NAME" : "Subluxation of symphysis pubis in pregnancy, childbirth and the puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199308008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4205437, + "CONCEPT_NAME" : "Submammary abscess associated with childbirth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55472006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4300419, + "CONCEPT_NAME" : "Submammary mastitis associated with childbirth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "77913004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42739013, + "CONCEPT_NAME" : "Subsequent hospital care, for the evaluation and management of a normal newborn, per day", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "99433", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2514557, + "CONCEPT_NAME" : "Subsequent hospital care, per day, for evaluation and management of normal newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "99462", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42739550, + "CONCEPT_NAME" : "Subsequent inpatient neonatal critical care, per day, for the evaluation and management of a critically ill neonate, 28 days of age or less", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "99296", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2514564, + "CONCEPT_NAME" : "Subsequent inpatient neonatal critical care, per day, for the evaluation and management of a critically ill neonate, 28 days of age or younger", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "99469", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2514572, + "CONCEPT_NAME" : "Subsequent intensive care, per day, for the evaluation and management of the recovering infant (present body weight of 2501-5000 grams)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "99480", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42740403, + "CONCEPT_NAME" : "Subsequent intensive care, per day, for the evaluation and management of the recovering low birth weight infant (present body weight of 1500-2500 g)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "99299", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2514571, + "CONCEPT_NAME" : "Subsequent intensive care, per day, for the evaluation and management of the recovering low birth weight infant (present body weight of 1500-2500 grams)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "99479", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42739401, + "CONCEPT_NAME" : "Subsequent intensive care, per day, for the evaluation and management of the recovering very low birth weight infant (present body weight less than 1500 g)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "99298", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2514570, + "CONCEPT_NAME" : "Subsequent intensive care, per day, for the evaluation and management of the recovering very low birth weight infant (present body weight less than 1500 grams)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "99478", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2101831, + "CONCEPT_NAME" : "Subsequent prenatal care visit (Prenatal) [Excludes: patients who are seen for a condition unrelated to pregnancy or prenatal care (eg, an upper respiratory infection; patients seen for consultation only, not for continuing care)]", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "0502F", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110318, + "CONCEPT_NAME" : "Subtotal or total hysterectomy after cesarean delivery (List separately in addition to code for primary procedure)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59525", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4022098, + "CONCEPT_NAME" : "Subzonal insemination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "225249007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4150538, + "CONCEPT_NAME" : "Suction evacuation of retained products of conception", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "310604000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4027161, + "CONCEPT_NAME" : "Superficial hematoma in fetus OR newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10742003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442058, + "CONCEPT_NAME" : "Superficial thrombophlebitis in pregnancy and the puerperium", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "200222004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439094, + "CONCEPT_NAME" : "Superficial thrombophlebitis in pregnancy and the puerperium - delivered", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "200224003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439095, + "CONCEPT_NAME" : "Superficial thrombophlebitis in pregnancy and the puerperium - delivered with postnatal complication", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "267283002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435331, + "CONCEPT_NAME" : "Superficial thrombophlebitis in pregnancy and the puerperium with antenatal complication", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "200226001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435332, + "CONCEPT_NAME" : "Superficial thrombophlebitis in pregnancy and the puerperium with postnatal complication", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "200227005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4143293, + "CONCEPT_NAME" : "Superficial thrombophlebitis in puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "308137006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4150337, + "CONCEPT_NAME" : "Supper time blood glucose measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "271064007", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 79098, + "CONCEPT_NAME" : "Suppressed lactation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "30506002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 76770, + "CONCEPT_NAME" : "Suppressed lactation with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200442006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3017439, + "CONCEPT_NAME" : "Surfactant/Albumin [Mass Ratio] in Amniotic fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "30562-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4073432, + "CONCEPT_NAME" : "Surgical induction of labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177129005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110295, + "CONCEPT_NAME" : "Surgical treatment of ectopic pregnancy; abdominal pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59130", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110298, + "CONCEPT_NAME" : "Surgical treatment of ectopic pregnancy; cervical, with evacuation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59140", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110296, + "CONCEPT_NAME" : "Surgical treatment of ectopic pregnancy; interstitial, uterine pregnancy requiring total hysterectomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59135", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110297, + "CONCEPT_NAME" : "Surgical treatment of ectopic pregnancy; interstitial, uterine pregnancy with partial resection of uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59136", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110293, + "CONCEPT_NAME" : "Surgical treatment of ectopic pregnancy; tubal or ovarian, requiring salpingectomy and/or oophorectomy, abdominal or vaginal approach", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59120", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110294, + "CONCEPT_NAME" : "Surgical treatment of ectopic pregnancy; tubal or ovarian, without salpingectomy and/or oophorectomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59121", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530886, + "CONCEPT_NAME" : "Suspected fetal damage from disease in the mother", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609420007", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530888, + "CONCEPT_NAME" : "Suspected fetal damage from radiation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609422004", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434480, + "CONCEPT_NAME" : "Syndrome of infant of diabetic mother", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "21584002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42538560, + "CONCEPT_NAME" : "Syndrome of infant of mother with gestational diabetes", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "762291006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 436171, + "CONCEPT_NAME" : "Syphilis in mother complicating pregnancy, childbirth AND/OR puerperium", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "34242002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4129023, + "CONCEPT_NAME" : "Teenage pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237240001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4079854, + "CONCEPT_NAME" : "Tentorial laceration - acute syndrome", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276590002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4171107, + "CONCEPT_NAME" : "Tentorial laceration - subacute syndrome", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276591003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4227728, + "CONCEPT_NAME" : "Term birth of fraternal twins, both living", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87662006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4306288, + "CONCEPT_NAME" : "Term birth of fraternal twins, both stillborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "83121003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4330570, + "CONCEPT_NAME" : "Term birth of fraternal twins, one living, one stillborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "22514005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4049333, + "CONCEPT_NAME" : "Term birth of identical twins, both living", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15467003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4192641, + "CONCEPT_NAME" : "Term birth of identical twins, both stillborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "75697004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4243026, + "CONCEPT_NAME" : "Term birth of identical twins, one living, one stillborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "38257001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4066292, + "CONCEPT_NAME" : "Term birth of multiple newborns", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "17333005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4193224, + "CONCEPT_NAME" : "Term birth of newborn quadruplets", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7888004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336090, + "CONCEPT_NAME" : "Term birth of newborn quintuplets", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86803008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4199146, + "CONCEPT_NAME" : "Term birth of newborn sextuplets", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "52483005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4307237, + "CONCEPT_NAME" : "Term birth of newborn triplets", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "8333008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4178275, + "CONCEPT_NAME" : "Term birth of newborn twins", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "50758004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4203001, + "CONCEPT_NAME" : "Term birth of stillborn twins", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "52942000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4297250, + "CONCEPT_NAME" : "Termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "386639001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4240605, + "CONCEPT_NAME" : "Termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57797005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43020954, + "CONCEPT_NAME" : "Termination of pregnancy after first trimester", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "472839005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40258875, + "CONCEPT_NAME" : "Termination of pregnancy NEC", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "176831008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530907, + "CONCEPT_NAME" : "Termination of pregnancy with complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609446006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4212260, + "CONCEPT_NAME" : "Term infant", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57891003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336958, + "CONCEPT_NAME" : "Term pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87527008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4296038, + "CONCEPT_NAME" : "Tetanus complicating ectopic AND/OR molar pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "76843005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 133024, + "CONCEPT_NAME" : "Tetanus neonatorum", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43424001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4189561, + "CONCEPT_NAME" : "Therapeutic termination of pregnancy by aspiration curettage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "391896006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4030009, + "CONCEPT_NAME" : "Therapeutic termination of pregnancy by insertion of laminaria", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10763001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4299609, + "CONCEPT_NAME" : "Therapeutic termination of pregnancy procedure", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "386641000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 193830, + "CONCEPT_NAME" : "Third degree perineal laceration", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10217006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 193275, + "CONCEPT_NAME" : "Third degree perineal tear during delivery - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199930000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 199097, + "CONCEPT_NAME" : "Third degree perineal tear during delivery with postnatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199931001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 197625, + "CONCEPT_NAME" : "Third stage hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "47236005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37311704, + "CONCEPT_NAME" : "Third stage hemorrhage due to retention of placenta", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "820947007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 200469, + "CONCEPT_NAME" : "Third-stage postpartum hemorrhage - delivered with postnatal problem", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "200015003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060183, + "CONCEPT_NAME" : "Third-stage postpartum hemorrhage with postnatal problem", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "200016002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4142581, + "CONCEPT_NAME" : "Third trimester bleeding", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "427139004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4218813, + "CONCEPT_NAME" : "Third trimester pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "41587001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4180111, + "CONCEPT_NAME" : "Third trimester pregnancy less than 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429240000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444082, + "CONCEPT_NAME" : "Threatened labor, without delivery", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "37486004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440457, + "CONCEPT_NAME" : "Threatened miscarriage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54048003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4252252, + "CONCEPT_NAME" : "Threatened miscarriage in first trimester", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "73790007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4294259, + "CONCEPT_NAME" : "Threatened miscarriage in second trimester", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "75933004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4032055, + "CONCEPT_NAME" : "Threatened miscarriage in third trimester", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10884004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3186670, + "CONCEPT_NAME" : "Threatened premature labor - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "480001000004104", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "Nebraska Lexicon", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 139888, + "CONCEPT_NAME" : "Threatened premature labor - not delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199049003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36713271, + "CONCEPT_NAME" : "Three dimensional obstetric ultrasonography", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "5231000179108", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36713272, + "CONCEPT_NAME" : "Three dimensional obstetric ultrasonography in third trimester", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "5241000179100", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4222152, + "CONCEPT_NAME" : "Thrombophlebitis in puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "83916000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442300, + "CONCEPT_NAME" : "Thyroid disease in mother complicating pregnancy, childbirth AND/OR puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59136001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 136755, + "CONCEPT_NAME" : "Thyroid dysfunction during pregnancy - baby delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199237009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 138479, + "CONCEPT_NAME" : "Thyroid dysfunction during pregnancy - baby not yet delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199239007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 139895, + "CONCEPT_NAME" : "Thyroid dysfunction during pregnancy, childbirth and the puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199235001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 138207, + "CONCEPT_NAME" : "Thyroid dysfunction in the puerperium - baby delivered during current episode of care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199238004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 138484, + "CONCEPT_NAME" : "Thyroid dysfunction in the puerperium - baby delivered during previous episode of care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199240009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2213255, + "CONCEPT_NAME" : "Tissue culture for non-neoplastic disorders; amniotic fluid or chorionic villus cells", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "88235", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4019096, + "CONCEPT_NAME" : "Total abdominal hysterectomy with bilateral salpingo-oophorectomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "116144002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4214677, + "CONCEPT_NAME" : "Total beta human chorionic gonadotrophin level", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "394721004", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004331, + "CONCEPT_NAME" : "Total bilateral salpingectomy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "66.5", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "3-dig nonbill code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4204679, + "CONCEPT_NAME" : "Total breech delivery with forceps to aftercoming head", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54973000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44789306, + "CONCEPT_NAME" : "Total human chorionic gonadotropin measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "195261000000107", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004330, + "CONCEPT_NAME" : "Total unilateral salpingectomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "66.4", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "3-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 141370, + "CONCEPT_NAME" : "Toxic erythema", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "58767000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061350, + "CONCEPT_NAME" : "Toxic reaction to local anesthesia during the puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200070000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110288, + "CONCEPT_NAME" : "Transabdominal amnioinfusion, including ultrasound guidance", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59070", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4169966, + "CONCEPT_NAME" : "Transabdominal chorionic villus biopsy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "275223004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4169965, + "CONCEPT_NAME" : "Transcervical sampling of chorionic villus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "275222009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44790511, + "CONCEPT_NAME" : "Transfer of embryo to uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "233111000000108", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441922, + "CONCEPT_NAME" : "Transient hypertension of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237279007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 137940, + "CONCEPT_NAME" : "Transient hypertension of pregnancy - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198965005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 141639, + "CONCEPT_NAME" : "Transient hypertension of pregnancy - delivered with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198966006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 136760, + "CONCEPT_NAME" : "Transient hypertension of pregnancy - not delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198967002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4173327, + "CONCEPT_NAME" : "Transient hypothyroxinemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276629001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4079845, + "CONCEPT_NAME" : "Transient neonatal colitis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276523005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4129378, + "CONCEPT_NAME" : "Transient neonatal diabetes mellitus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237603002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433604, + "CONCEPT_NAME" : "Transient neonatal disorder of coagulation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "32605001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42536567, + "CONCEPT_NAME" : "Transient neonatal hypoglycemia due to hyperinsulinemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "735496003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439149, + "CONCEPT_NAME" : "Transient neonatal neutropenia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55444004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36716753, + "CONCEPT_NAME" : "Transient neonatal neutropenia due to congenital viral infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "722925004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36716754, + "CONCEPT_NAME" : "Transient neonatal neutropenia due to neonatal bacterial sepsis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "722926003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4033200, + "CONCEPT_NAME" : "Transient neonatal pustulosis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "239092005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435076, + "CONCEPT_NAME" : "Transient neonatal thrombocytopenia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "23205009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4048930, + "CONCEPT_NAME" : "Transient neonatal thrombocytopenia due to exchange transfusion", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206510008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4049028, + "CONCEPT_NAME" : "Transient neonatal thrombocytopenia due to idiopathic maternal thrombocytopenia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206511007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4048742, + "CONCEPT_NAME" : "Transient neonatal thrombocytopenia due to isoimmunization", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206512000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42536568, + "CONCEPT_NAME" : "Transitory iatrogenic neonatal hypoglycemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "735497007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 198870, + "CONCEPT_NAME" : "Transitory ileus of newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "82368005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4173172, + "CONCEPT_NAME" : "Transitory ileus of prematurity", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276520008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 436234, + "CONCEPT_NAME" : "Transitory neonatal electrolyte disturbance", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12901004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433314, + "CONCEPT_NAME" : "Transitory neonatal endocrine AND/OR metabolic disorder", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "111472004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4071744, + "CONCEPT_NAME" : "Transitory neonatal hyperkalemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206491006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4048620, + "CONCEPT_NAME" : "Transitory neonatal hypernatremia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206489003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4171099, + "CONCEPT_NAME" : "Transitory neonatal hypoglycemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276561008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 321683, + "CONCEPT_NAME" : "Transitory tachypnea of newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7550008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40490447, + "CONCEPT_NAME" : "Transmyometrial transfer of embryo to uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "448543003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4324606, + "CONCEPT_NAME" : "Transvaginal nuchal ultrasonography", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "430063002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4335250, + "CONCEPT_NAME" : "Transvaginal obstetric doppler ultrasonography", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "432246004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4324607, + "CONCEPT_NAME" : "Transvaginal obstetric ultrasonography", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "430064008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4073406, + "CONCEPT_NAME" : "Transvaginal oocyte recovery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177042008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40490322, + "CONCEPT_NAME" : "Transvaginal ultrasonography to determine the estimated date of confinement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "446920006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4063171, + "CONCEPT_NAME" : "Transverse lie - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199362007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 81358, + "CONCEPT_NAME" : "Transverse OR oblique presentation of fetus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "11914001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4104199, + "CONCEPT_NAME" : "Trapped placenta", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "29171003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4174854, + "CONCEPT_NAME" : "Trauma from instrument during delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "42599006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4267072, + "CONCEPT_NAME" : "Traumatic extension of episiotomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36497006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4071600, + "CONCEPT_NAME" : "Traumatic glaucoma due to birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206248004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36716539, + "CONCEPT_NAME" : "Traumatic hemorrhage of cerebellum due to birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "722575008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36716739, + "CONCEPT_NAME" : "Traumatic hemorrhage of intracranial epidural space due to birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "722909009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439093, + "CONCEPT_NAME" : "Traumatic lesion during delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64229006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42536749, + "CONCEPT_NAME" : "Traumatic subluxation of spine due to birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "735743006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432975, + "CONCEPT_NAME" : "Trauma to perineum and/or vulva during delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "267268007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4161678, + "CONCEPT_NAME" : "Trauma to perineum during delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "397952002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3655718, + "CONCEPT_NAME" : "Trauma to urethra and bladder during delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "866229004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4134431, + "CONCEPT_NAME" : "Trauma to vagina during delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "128077009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4326563, + "CONCEPT_NAME" : "Trauma to vulva during delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7504005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2111055, + "CONCEPT_NAME" : "Treatment of extensive or progressive retinopathy, 1 or more sessions, preterm infant (less than 37 weeks gestation at birth), performed from birth up to 1 year of age (eg, retinopathy of prematurity), photocoagulation or cryotherapy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "67229", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110325, + "CONCEPT_NAME" : "Treatment of incomplete abortion, any trimester, completed surgically", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59812", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110326, + "CONCEPT_NAME" : "Treatment of missed abortion, completed surgically; first trimester", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59820", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110327, + "CONCEPT_NAME" : "Treatment of missed abortion, completed surgically; second trimester", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59821", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110328, + "CONCEPT_NAME" : "Treatment of septic abortion, completed surgically", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59830", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4290245, + "CONCEPT_NAME" : "Trial forceps delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "69422002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4073424, + "CONCEPT_NAME" : "Trial of vacuum delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177176001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4094046, + "CONCEPT_NAME" : "Triplet birth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "281052005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4078287, + "CONCEPT_NAME" : "Triple test", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "275835005", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014290, + "CONCEPT_NAME" : "Triple test not wanted", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169795009", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42539210, + "CONCEPT_NAME" : "Triplet liveborn in hospital by cesarean section", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16089571000119102", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432375, + "CONCEPT_NAME" : "Triplet pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64254006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440462, + "CONCEPT_NAME" : "Triplet pregnancy - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199321001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437931, + "CONCEPT_NAME" : "Triplet pregnancy with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199322008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014456, + "CONCEPT_NAME" : "Triplets - all live born", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169831006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015422, + "CONCEPT_NAME" : "Triplets - one live and two stillborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169833009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45757165, + "CONCEPT_NAME" : "Triplets, some live born", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10760661000119109", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015163, + "CONCEPT_NAME" : "Triplets - three stillborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169834003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015421, + "CONCEPT_NAME" : "Triplets - two live and one stillborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169832004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3051868, + "CONCEPT_NAME" : "Trisomy 21 risk based on maternal age+Alpha-1-Fetoprotein+Choriogonadotropin+Estriol.unconjugated [Likelihood] in Fetus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "47222-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44499531, + "CONCEPT_NAME" : "Trophoblastic tumor, epithelioid of placenta", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "9105/3-C58.9", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "ICDO3", + "CONCEPT_CLASS_ID" : "ICDO Condition" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4101082, + "CONCEPT_NAME" : "True knot of umbilical cord", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "27696007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4127106, + "CONCEPT_NAME" : "Tubal embryo transfer", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "236915005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 199076, + "CONCEPT_NAME" : "Tubal pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "79586000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4030182, + "CONCEPT_NAME" : "Tumor-induced hypoglycemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237645000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 196758, + "CONCEPT_NAME" : "Tumor of body of uterus affecting pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "223003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 196181, + "CONCEPT_NAME" : "Tumor of uterine body - baby delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "267221002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 197049, + "CONCEPT_NAME" : "Tumor of uterine body - baby delivered with postpartum complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "267222009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 192385, + "CONCEPT_NAME" : "Tumor of uterine body complicating antenatal care, baby not yet delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "267223004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4101844, + "CONCEPT_NAME" : "Twin birth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "28030000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40483084, + "CONCEPT_NAME" : "Twin liveborn born in hospital", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "442327001", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40483101, + "CONCEPT_NAME" : "Twin liveborn born in hospital by cesarean section", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "442342003", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42535052, + "CONCEPT_NAME" : "Twin live born in hospital by vaginal delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "151441000119105", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441919, + "CONCEPT_NAME" : "Twin pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65147003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435018, + "CONCEPT_NAME" : "Twin pregnancy - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199317008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434097, + "CONCEPT_NAME" : "Twin pregnancy with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199318003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014296, + "CONCEPT_NAME" : "Twins - both live born", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169828005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015162, + "CONCEPT_NAME" : "Twins - both stillborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169830007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014455, + "CONCEPT_NAME" : "Twins - one still and one live born", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169829002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42709935, + "CONCEPT_NAME" : "Type 3a third degree laceration of perineum", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "449807005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42709936, + "CONCEPT_NAME" : "Type 3b third degree laceration of perineum", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "449808000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42709937, + "CONCEPT_NAME" : "Type 3c third degree laceration of perineum", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "449809008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4279146, + "CONCEPT_NAME" : "Ultrasonic guidance for amniocentesis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65388005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2211785, + "CONCEPT_NAME" : "Ultrasonic guidance for amniocentesis, imaging supervision and interpretation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "76946", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2211784, + "CONCEPT_NAME" : "Ultrasonic guidance for chorionic villus sampling, imaging supervision and interpretation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "76945", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2211782, + "CONCEPT_NAME" : "Ultrasonic guidance for intrauterine fetal transfusion or cordocentesis, imaging supervision and interpretation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "76941", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37397735, + "CONCEPT_NAME" : "Ultrasonography for amniotic fluid index", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "718475004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4082534, + "CONCEPT_NAME" : "Ultrasonography for antepartum monitoring of fetus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "241491007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42535558, + "CONCEPT_NAME" : "Ultrasonography for fetal biophysical profile with non-stress testing", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "394211000119109", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42535559, + "CONCEPT_NAME" : "Ultrasonography for fetal biophysical profile without non-stress testing", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "394221000119102", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42535553, + "CONCEPT_NAME" : "Ultrasonography for qualitative amniotic fluid volume", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "391131000119106", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42535246, + "CONCEPT_NAME" : "Ultrasonography for qualitative deepest pocket amniotic fluid volume", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16437531000119105", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40488298, + "CONCEPT_NAME" : "Ultrasonography in first trimester", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "446522006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40486918, + "CONCEPT_NAME" : "Ultrasonography in second trimester", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "446208007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40487413, + "CONCEPT_NAME" : "Ultrasonography in third trimester", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "446353007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45773218, + "CONCEPT_NAME" : "Ultrasonography of fetal ductus venosus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "700442004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 46271899, + "CONCEPT_NAME" : "Ultrasonography of fetal head", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "710165007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45765925, + "CONCEPT_NAME" : "Ultrasonography of fetal shunt", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "702985005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44807918, + "CONCEPT_NAME" : "Ultrasonography of multiple pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "855021000000107", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40492794, + "CONCEPT_NAME" : "Ultrasonography of multiple pregnancy for fetal anomaly", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "445866007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40489798, + "CONCEPT_NAME" : "Ultrasonography of multiple pregnancy for fetal nuchal translucency", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "446810002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42690777, + "CONCEPT_NAME" : "Ultrasonography of retained products of conception", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1076861000000103", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3031159, + "CONCEPT_NAME" : "Ultrasound date", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "34970-4", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Clinical Observation" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40756968, + "CONCEPT_NAME" : "Ultrasound, limited, joint or other nonvascular extremity structure(s) (eg, joint space, peri-articular tendon[s], muscle[s], nerve[s], other soft-tissue structure[s], or soft-tissue mass[es]), real-time with image documentation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "76882", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44790261, + "CONCEPT_NAME" : "Ultrasound monitoring of early pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "228881000000102", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2211750, + "CONCEPT_NAME" : "Ultrasound, pregnant uterus, real time with image documentation, fetal and maternal evaluation, after first trimester (> or = 14 weeks 0 days), transabdominal approach; each additional gestation (List separately in addition to code for primary procedure)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "76810", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2211749, + "CONCEPT_NAME" : "Ultrasound, pregnant uterus, real time with image documentation, fetal and maternal evaluation, after first trimester (> or = 14 weeks 0 days), transabdominal approach; single or first gestation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "76805", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2211748, + "CONCEPT_NAME" : "Ultrasound, pregnant uterus, real time with image documentation, fetal and maternal evaluation, first trimester (< 14 weeks 0 days), transabdominal approach; each additional gestation (List separately in addition to code for primary procedure)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "76802", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2211747, + "CONCEPT_NAME" : "Ultrasound, pregnant uterus, real time with image documentation, fetal and maternal evaluation, first trimester (< 14 weeks 0 days), transabdominal approach; single or first gestation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "76801", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2211752, + "CONCEPT_NAME" : "Ultrasound, pregnant uterus, real time with image documentation, fetal and maternal evaluation plus detailed fetal anatomic examination, transabdominal approach; each additional gestation (List separately in addition to code for primary procedure)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "76812", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2211751, + "CONCEPT_NAME" : "Ultrasound, pregnant uterus, real time with image documentation, fetal and maternal evaluation plus detailed fetal anatomic examination, transabdominal approach; single or first gestation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "76811", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2211754, + "CONCEPT_NAME" : "Ultrasound, pregnant uterus, real time with image documentation, first trimester fetal nuchal translucency measurement, transabdominal or transvaginal approach; each additional gestation (List separately in addition to code for primary procedure)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "76814", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2211753, + "CONCEPT_NAME" : "Ultrasound, pregnant uterus, real time with image documentation, first trimester fetal nuchal translucency measurement, transabdominal or transvaginal approach; single or first gestation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "76813", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2211756, + "CONCEPT_NAME" : "Ultrasound, pregnant uterus, real time with image documentation, follow-up (eg, re-evaluation of fetal size by measuring standard growth parameters and amniotic fluid volume, re-evaluation of organ system(s) suspected or confirmed to be abnormal on a prev", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "76816", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2211755, + "CONCEPT_NAME" : "Ultrasound, pregnant uterus, real time with image documentation, limited (eg, fetal heart beat, placental location, fetal position and/or qualitative amniotic fluid volume), 1 or more fetuses", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "76815", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2211757, + "CONCEPT_NAME" : "Ultrasound, pregnant uterus, real time with image documentation, transvaginal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "76817", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3657421, + "CONCEPT_NAME" : "Ultrasound scan for chorionicity", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1167981000000101", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4237338, + "CONCEPT_NAME" : "Ultrasound scan for fetal anomaly", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "408814002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4082672, + "CONCEPT_NAME" : "Ultrasound scan for fetal growth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "241493005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4237339, + "CONCEPT_NAME" : "Ultrasound scan for fetal nuchal translucency", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "408815001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060624, + "CONCEPT_NAME" : "Ultrasound scan for fetal presentation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169228004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060626, + "CONCEPT_NAME" : "Ultrasound scan for fetal viability", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169230002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4152021, + "CONCEPT_NAME" : "Ultrasound scan - obstetric", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "268445003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4028775, + "CONCEPT_NAME" : "Umbilical cord around body", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237307007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441646, + "CONCEPT_NAME" : "Umbilical cord around neck", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "302929008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4126410, + "CONCEPT_NAME" : "Umbilical cord clamp left on", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "289337008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4126742, + "CONCEPT_NAME" : "Umbilical cord clamp needs removing", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "289336004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4122872, + "CONCEPT_NAME" : "Umbilical cord clamp off", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "289338003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4126741, + "CONCEPT_NAME" : "Umbilical cord clamp secure", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "289335000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435325, + "CONCEPT_NAME" : "Umbilical cord complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48287005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4122742, + "CONCEPT_NAME" : "Umbilical cord entangled around baby's limbs", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "289312003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4126740, + "CONCEPT_NAME" : "Umbilical cord stump base inflamed", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "289332002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4126737, + "CONCEPT_NAME" : "Umbilical cord stump black", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "289327003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4122745, + "CONCEPT_NAME" : "Umbilical cord stump clean", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "289319007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4126408, + "CONCEPT_NAME" : "Umbilical cord stump not healing", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "289318004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4126734, + "CONCEPT_NAME" : "Umbilical cord stump oozing", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "289323004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36675671, + "CONCEPT_NAME" : "Umbilical cord stump separated", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "772131003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4126739, + "CONCEPT_NAME" : "Umbilical cord stump smells offensive", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "289329000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45769826, + "CONCEPT_NAME" : "Umbilical cord three times around neck", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "71151000119105", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060157, + "CONCEPT_NAME" : "Umbilical cord tight around neck - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199874004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061971, + "CONCEPT_NAME" : "Umbilical cord tight around neck with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199875003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438259, + "CONCEPT_NAME" : "Umbilical hemorrhage after birth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "82986004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4079860, + "CONCEPT_NAME" : "Umbilical polyp of newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276618000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4098631, + "CONCEPT_NAME" : "Unconjugated estriol measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "250663008", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336229, + "CONCEPT_NAME" : "Unilateral salpingectomy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "86894005", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4301905, + "CONCEPT_NAME" : "Unilateral salpingo-oophorectomy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "78698008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110340, + "CONCEPT_NAME" : "Unlisted fetal invasive procedure, including ultrasound guidance, when performed", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59897", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110342, + "CONCEPT_NAME" : "Unlisted procedure, maternity care and delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59899", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4307820, + "CONCEPT_NAME" : "Unplanned pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "83074005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4059985, + "CONCEPT_NAME" : "Unplanned pregnancy unknown if child is wanted", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169568001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4113986, + "CONCEPT_NAME" : "Unspecified abortion complete", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "198793004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4113983, + "CONCEPT_NAME" : "Unspecified abortion incomplete", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "198781008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004742, + "CONCEPT_NAME" : "Unspecified instrumental delivery", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72.9", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "3-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4113036, + "CONCEPT_NAME" : "Unspecified legal abortion with no mention of complication", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "198702003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4112954, + "CONCEPT_NAME" : "Unspecified spontaneous abortion without mention of complication", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "198642002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 79091, + "CONCEPT_NAME" : "Unstable lie", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86356004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 79889, + "CONCEPT_NAME" : "Unstable lie - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199344003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 72374, + "CONCEPT_NAME" : "Unstable lie with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199345002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4239301, + "CONCEPT_NAME" : "Unwanted pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "58532003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40483205, + "CONCEPT_NAME" : "Urea, electrolytes and glucose measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "443746006", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4151214, + "CONCEPT_NAME" : "Uremia following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "28196006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4129178, + "CONCEPT_NAME" : "Urethra injury - obstetric", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237329006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4289453, + "CONCEPT_NAME" : "Urinalysis, glucose, qualitative", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "69376001", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2212169, + "CONCEPT_NAME" : "Urinalysis; qualitative or semiquantitative, except immunoassays", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "81005", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 46269813, + "CONCEPT_NAME" : "Urinary tract infection due to incomplete miscarriage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10812041000119103", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4062569, + "CONCEPT_NAME" : "Urinary tract infection following delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199111004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4242401, + "CONCEPT_NAME" : "Urinary tract infection following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "38176009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4146482, + "CONCEPT_NAME" : "Urinary tract infection in pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "307534009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4055426, + "CONCEPT_NAME" : "Urine chorionic gonadotrophin measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "167376008", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4192542, + "CONCEPT_NAME" : "Urine clinitest", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "391480003", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4151414, + "CONCEPT_NAME" : "Urine dipstick for glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "269879003", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4055970, + "CONCEPT_NAME" : "Urine glucose chemical titer measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "167523004", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4055823, + "CONCEPT_NAME" : "Urine glucose test = +", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "167264005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4042238, + "CONCEPT_NAME" : "Urine glucose test = ++", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "167265006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4042239, + "CONCEPT_NAME" : "Urine glucose test = +++", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "167266007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4055289, + "CONCEPT_NAME" : "Urine glucose test = ++++", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "167267003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4055822, + "CONCEPT_NAME" : "Urine glucose test negative", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "167261002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4055288, + "CONCEPT_NAME" : "Urine glucose test = trace", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "167262009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4055954, + "CONCEPT_NAME" : "Urine HCG 24 hour assay", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "167391005", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37392365, + "CONCEPT_NAME" : "Urine pregnancy test", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1003161000000106", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Observable Entity" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4055285, + "CONCEPT_NAME" : "Urine pregnancy test", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "167252002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2212173, + "CONCEPT_NAME" : "Urine pregnancy test, by visual color comparison methods", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "81025", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014769, + "CONCEPT_NAME" : "Urine pregnancy test, by visual color comparison methods", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "104405006", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4041878, + "CONCEPT_NAME" : "Urine pregnancy test positive", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "167256004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4149386, + "CONCEPT_NAME" : "Urine screening for glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "268556000", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4174400, + "CONCEPT_NAME" : "Urticaria neonatorum", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "4244005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4170107, + "CONCEPT_NAME" : "US obstetric doppler", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "418090003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060623, + "CONCEPT_NAME" : "US obstetric scan abnormal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169222003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060622, + "CONCEPT_NAME" : "US obstetric scan normal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169221005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061129, + "CONCEPT_NAME" : "US obstetric scan requested", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169220006", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061130, + "CONCEPT_NAME" : "US scan - fetal cephalometry", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169224002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4059697, + "CONCEPT_NAME" : "US scan - fetal maturity", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169225001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4254201, + "CONCEPT_NAME" : "Uterine contraction monitoring using intrauterine pressure catheter", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "408810006", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110338, + "CONCEPT_NAME" : "Uterine evacuation and curettage for hydatidiform mole", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59870", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4064145, + "CONCEPT_NAME" : "Uterine evacuation and curettage of hydatidiform mole", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "215192006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4053158, + "CONCEPT_NAME" : "Uterine incoordination, first degree", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "23508005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4286205, + "CONCEPT_NAME" : "Uterine incoordination, second degree", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6891008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 197938, + "CONCEPT_NAME" : "Uterine inertia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26158002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45757158, + "CONCEPT_NAME" : "Uterine laceration during delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10760261000119106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 194101, + "CONCEPT_NAME" : "Uterine size for dates discrepancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "430933008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3023791, + "CONCEPT_NAME" : "Uterus Fundal height Tape measure", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "11881-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Clinical Observation" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4128172, + "CONCEPT_NAME" : "Uterus involuted", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "289752004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4127208, + "CONCEPT_NAME" : "Uterus involuting", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "289751006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44790180, + "CONCEPT_NAME" : "Vacuum aspiration of products of conception from uterus using flexible cannula", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "229761000000107", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44790181, + "CONCEPT_NAME" : "Vacuum aspiration of products of conception from uterus using rigid cannula", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "229801000000102", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4075171, + "CONCEPT_NAME" : "Vacuum delivery before full dilation of cervix", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177175002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004729, + "CONCEPT_NAME" : "Vacuum extraction with episiotomy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72.71", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442069, + "CONCEPT_NAME" : "Vacuum extractor delivery - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200138003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 193544, + "CONCEPT_NAME" : "Vaginal abnormality - baby delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "267240008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37109810, + "CONCEPT_NAME" : "Vaginal bleeding complicating early pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "723665008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4228344, + "CONCEPT_NAME" : "Vaginal cesarean section", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "89053004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4331179, + "CONCEPT_NAME" : "Vaginal delivery, medical personnel present", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "22633006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44784097, + "CONCEPT_NAME" : "Vaginal delivery of fetus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "700000006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110320, + "CONCEPT_NAME" : "Vaginal delivery only, after previous cesarean delivery (with or without episiotomy and/or forceps)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59612", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110321, + "CONCEPT_NAME" : "Vaginal delivery only, after previous cesarean delivery (with or without episiotomy and/or forceps); including postpartum care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59614", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110308, + "CONCEPT_NAME" : "Vaginal delivery only (with or without episiotomy and/or forceps)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59409", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110309, + "CONCEPT_NAME" : "Vaginal delivery only (with or without episiotomy and/or forceps); including postpartum care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59410", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4167018, + "CONCEPT_NAME" : "Vaginal delivery with forceps including postpartum care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45718005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4145316, + "CONCEPT_NAME" : "Vaginal show", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "268471004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4096535, + "CONCEPT_NAME" : "Vaginal tear resulting from childbirth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "249220002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4147415, + "CONCEPT_NAME" : "Varicose veins of genitalia in puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "308135003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442290, + "CONCEPT_NAME" : "Varicose veins of legs complicating pregnancy AND/OR puerperium", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "5626004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441644, + "CONCEPT_NAME" : "Varicose veins of legs in pregnancy and the puerperium", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "200204002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442059, + "CONCEPT_NAME" : "Varicose veins of legs in pregnancy and the puerperium - delivered", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "200206000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434712, + "CONCEPT_NAME" : "Varicose veins of legs in pregnancy and the puerperium with antenatal complication", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "200208004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4143292, + "CONCEPT_NAME" : "Varicose veins of legs in the puerperium", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "308134004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443242, + "CONCEPT_NAME" : "Varicose veins of perineum and vulva in pregnancy and the puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "267282007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435610, + "CONCEPT_NAME" : "Varicose veins of perineum and vulva in pregnancy and the puerperium - delivered", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "200215007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441929, + "CONCEPT_NAME" : "Varicose veins of perineum and vulva in pregnancy and the puerperium with antenatal complication", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "200217004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432701, + "CONCEPT_NAME" : "Varicose veins of perineum and vulva in pregnancy and the puerperium with postnatal complication", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "200218009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4147395, + "CONCEPT_NAME" : "Varicose veins of vagina in puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "308187004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435609, + "CONCEPT_NAME" : "Vasa previa - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199895009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435021, + "CONCEPT_NAME" : "Vasa previa with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199896005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 321367, + "CONCEPT_NAME" : "Vascular lesions of cord - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199900008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 315884, + "CONCEPT_NAME" : "Vascular lesions of cord with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199901007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4300078, + "CONCEPT_NAME" : "Velamentous insertion of umbilical cord", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "77278008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440158, + "CONCEPT_NAME" : "Venereal disease in mother complicating pregnancy, childbirth AND/OR puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "27075004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 313543, + "CONCEPT_NAME" : "Venous complication of pregnancy and/or puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "267280004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530951, + "CONCEPT_NAME" : "Venous complication of puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609497003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4009180, + "CONCEPT_NAME" : "Venous thrombosis in puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "111458008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4079858, + "CONCEPT_NAME" : "Very low birth weight infant", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276611006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435925, + "CONCEPT_NAME" : "Very premature - less than 1000g or less than 28 weeks", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "268817004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4149523, + "CONCEPT_NAME" : "Very preterm maturity of infant", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "268868001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4129027, + "CONCEPT_NAME" : "Viable fetus in abdominal pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237253003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435604, + "CONCEPT_NAME" : "Viral disease in mother complicating pregnancy, childbirth AND/OR puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "31516002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42742355, + "CONCEPT_NAME" : "VKORC1 (vitamin K epoxide reductase complex, subunit 1) (eg, warfarin metabolism), gene analysis, common variant(s) (eg, -1639G>A, c.173+1000C>T)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "81355", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 35625971, + "CONCEPT_NAME" : "Vomiting during third trimester of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "769087009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4169915, + "CONCEPT_NAME" : "Vomiting in newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48000002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440785, + "CONCEPT_NAME" : "Vomiting of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90325002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40525252, + "CONCEPT_NAME" : "[V]Other specified antenatal screening", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "315975002", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40519557, + "CONCEPT_NAME" : "[V]Other unwanted pregnancy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "316385002", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40524819, + "CONCEPT_NAME" : "[V]Postpartum care and examination", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "315919003", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40517216, + "CONCEPT_NAME" : "[V]Pregnancy examination and test", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "308165008", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40524802, + "CONCEPT_NAME" : "[V]Pregnant state, incidental", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "315903005", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443246, + "CONCEPT_NAME" : "Vulval abnormality - baby delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "267247006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441087, + "CONCEPT_NAME" : "Vulval and/or perineal hematoma during delivery - delivered", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "199944006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438214, + "CONCEPT_NAME" : "Vulval and/or perineal hematoma during delivery with postnatal problem", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "199945007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4071599, + "CONCEPT_NAME" : "Vulval hematoma due to birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206244002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4031282, + "CONCEPT_NAME" : "Vulval hematoma during delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10950002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4091198, + "CONCEPT_NAME" : "Vulval hematoma in labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "249217005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4034153, + "CONCEPT_NAME" : "Vulval obstetric varicose veins", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "237346009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40525253, + "CONCEPT_NAME" : "[V]Unspecified antenatal screening", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "315976001", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40524805, + "CONCEPT_NAME" : "[V]Unspecified pregnant state", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "315906002", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4131031, + "CONCEPT_NAME" : "Ward urine dip stick testing for sugar", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26542009", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4071632, + "CONCEPT_NAME" : "Water birth delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177185001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4132649, + "CONCEPT_NAME" : "Well child visit", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "410620009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4259640, + "CONCEPT_NAME" : "Well child visit, 10 years", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "410642005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4132657, + "CONCEPT_NAME" : "Well child visit, 11 years", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "410643000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4256500, + "CONCEPT_NAME" : "Well child visit, 12 month", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "410629005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4132658, + "CONCEPT_NAME" : "Well child visit, 12 years", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "410644006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4132659, + "CONCEPT_NAME" : "Well child visit, 13 years", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "410645007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4259641, + "CONCEPT_NAME" : "Well child visit, 14 years", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "410646008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4259638, + "CONCEPT_NAME" : "Well child visit, 15 month", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "410631001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4256502, + "CONCEPT_NAME" : "Well child visit, 15 years", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "410647004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4253755, + "CONCEPT_NAME" : "Well child visit, 16 years", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "410648009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4259642, + "CONCEPT_NAME" : "Well child visit, 17 years", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "410649001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4256501, + "CONCEPT_NAME" : "Well child visit, 18 month", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "410632008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4253756, + "CONCEPT_NAME" : "Well child visit, 18 years", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "410650001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4256497, + "CONCEPT_NAME" : "Well child visit, 2 month", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "410624000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4256496, + "CONCEPT_NAME" : "Well child visit, 2 week", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "410623006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4259639, + "CONCEPT_NAME" : "Well child visit, 2 years", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "410633003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4253753, + "CONCEPT_NAME" : "Well child visit, 3 years", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "410634009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4256498, + "CONCEPT_NAME" : "Well child visit, 4 month", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "410626003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4132652, + "CONCEPT_NAME" : "Well child visit, 4 years", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "410636006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4132653, + "CONCEPT_NAME" : "Well child visit, 5 years", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "410637002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4253752, + "CONCEPT_NAME" : "Well child visit, 6 month", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "410627007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4132654, + "CONCEPT_NAME" : "Well child visit, 6 years", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "410638007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4253754, + "CONCEPT_NAME" : "Well child visit, 7 years", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "410639004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4132655, + "CONCEPT_NAME" : "Well child visit, 8 years", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "410640002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4256499, + "CONCEPT_NAME" : "Well child visit, 9 month", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "410628002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4132656, + "CONCEPT_NAME" : "Well child visit, 9 years", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "410641003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4259636, + "CONCEPT_NAME" : "Well child visit, newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "410621008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 765764, + "CONCEPT_NAME" : "Well child visit, newborn 8 to 28 days old", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "446381000124104", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 763782, + "CONCEPT_NAME" : "Well child visit, newborn less than 8 days old", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "446301000124108", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4010343, + "CONCEPT_NAME" : "Well female newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "102502005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4010841, + "CONCEPT_NAME" : "Well male newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "102501003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4010843, + "CONCEPT_NAME" : "Well premature female newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "102505007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4010842, + "CONCEPT_NAME" : "Well premature male newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "102504006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4010344, + "CONCEPT_NAME" : "Well premature newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "102503000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 765794, + "CONCEPT_NAME" : "White or yellow-green tinged lochia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "4961000124100", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40394878, + "CONCEPT_NAME" : "[X]Delivery", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "200548008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40514773, + "CONCEPT_NAME" : "[X]Infection of cesarian section wound following delivery", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "309743009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40388780, + "CONCEPT_NAME" : "[X]Mental and behavioral disorders associated with the puerperium, not elsewhere classified", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "192474006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40356741, + "CONCEPT_NAME" : "[X]Mild mental and behavioral disorders associated with the puerperium, not elsewhere classified", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "268725005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40394902, + "CONCEPT_NAME" : "[X]Vaginitis following delivery", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "200570006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4020897, + "CONCEPT_NAME" : "Zona drilling", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "225248004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4127105, + "CONCEPT_NAME" : "Zygote intrafallopian transfer", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "236914009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444098, + "CONCEPT_NAME" : "Gestation period, 40 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46230007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 62, + "name" : "Spontaneous abortion (SA)", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 436477, + "CONCEPT_NAME" : "Abnormal products of conception", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "39804004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444365, + "CONCEPT_NAME" : "Abortion", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "70317007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42597053, + "CONCEPT_NAME" : "Abortion associated with Equine arteritis virus infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "318481000009103", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED Veterinary", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42597052, + "CONCEPT_NAME" : "Abortion associated with Equine herpesvirus infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "318471000009100", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED Veterinary", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42597051, + "CONCEPT_NAME" : "Abortion associated with umbilical torsion", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "318461000009109", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED Veterinary", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 201076, + "CONCEPT_NAME" : "Abortion complicated by damage to pelvic organs AND/OR tissues", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "373908001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 197612, + "CONCEPT_NAME" : "Abortion complicated by delayed AND/OR excessive hemorrhage", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "111426003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438812, + "CONCEPT_NAME" : "Abortion complicated by genital-pelvic infection", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "373891000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 195319, + "CONCEPT_NAME" : "Abortion complicated by renal failure", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "10123006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42599848, + "CONCEPT_NAME" : "Abortion due to Brucella canis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "360051000009101", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED Veterinary", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2721147, + "CONCEPT_NAME" : "ABORTION FOR MATERNAL INDICATION", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "S2262", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2784560, + "CONCEPT_NAME" : "Abortion of Products of Conception, Abortifacient, Via Natural or Artificial Opening", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10A07ZX", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD10PCS", + "CONCEPT_CLASS_ID" : "ICD10PCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2784559, + "CONCEPT_NAME" : "Abortion of Products of Conception, Laminaria, Via Natural or Artificial Opening", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10A07ZW", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD10PCS", + "CONCEPT_CLASS_ID" : "ICD10PCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2784555, + "CONCEPT_NAME" : "Abortion of Products of Conception, Open Approach", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10A00ZZ", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD10PCS", + "CONCEPT_CLASS_ID" : "ICD10PCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2784556, + "CONCEPT_NAME" : "Abortion of Products of Conception, Percutaneous Approach", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10A03ZZ", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD10PCS", + "CONCEPT_CLASS_ID" : "ICD10PCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2784557, + "CONCEPT_NAME" : "Abortion of Products of Conception, Percutaneous Endoscopic Approach", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10A04ZZ", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD10PCS", + "CONCEPT_CLASS_ID" : "ICD10PCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2784558, + "CONCEPT_NAME" : "Abortion of Products of Conception, Vacuum, Via Natural or Artificial Opening", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10A07Z6", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD10PCS", + "CONCEPT_CLASS_ID" : "ICD10PCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2784561, + "CONCEPT_NAME" : "Abortion of Products of Conception, Via Natural or Artificial Opening", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10A07ZZ", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD10PCS", + "CONCEPT_CLASS_ID" : "ICD10PCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2784562, + "CONCEPT_NAME" : "Abortion of Products of Conception, Via Natural or Artificial Opening Endoscopic", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10A08ZZ", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD10PCS", + "CONCEPT_CLASS_ID" : "ICD10PCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440776, + "CONCEPT_NAME" : "Abortion with complication", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "371332008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440454, + "CONCEPT_NAME" : "Abortion without complication", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "51830007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42739743, + "CONCEPT_NAME" : "Anesthesia for abortion procedures (Deprecated)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "01964", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2101811, + "CONCEPT_NAME" : "Anesthesia for incomplete or missed abortion procedures", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "01965", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2101812, + "CONCEPT_NAME" : "Anesthesia for induced abortion procedures", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "01966", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004526, + "CONCEPT_NAME" : "Aspiration curettage following delivery or abortion", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "69.52", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4212941, + "CONCEPT_NAME" : "Aspiration curettage of uterus for termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "391897002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004525, + "CONCEPT_NAME" : "Aspiration curettage of uterus for termination of pregnancy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "69.51", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4028644, + "CONCEPT_NAME" : "Biochemical pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237243004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4262136, + "CONCEPT_NAME" : "Blighted ovum", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "35999006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4261479, + "CONCEPT_NAME" : "Carneous mole", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "44979007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40482050, + "CONCEPT_NAME" : "Chemical pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "445086005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437046, + "CONCEPT_NAME" : "Complete abortion", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "69124005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439085, + "CONCEPT_NAME" : "Complete inevitable miscarriage complicated by delayed or excessive hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "307735008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441629, + "CONCEPT_NAME" : "Complete inevitable miscarriage complicated by embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "307750004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441921, + "CONCEPT_NAME" : "Complete inevitable miscarriage complicated by genital tract and pelvic infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "307734007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4146774, + "CONCEPT_NAME" : "Complete inevitable miscarriage without complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "307738005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441073, + "CONCEPT_NAME" : "Complete legal termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "267194005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438196, + "CONCEPT_NAME" : "Complete legal termination of pregnancy with delayed or excessive hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198719001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40318618, + "CONCEPT_NAME" : "Complete miscarriage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "156073000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441910, + "CONCEPT_NAME" : "Complete miscarriage with damage to pelvic organs or tissues", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198657009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432682, + "CONCEPT_NAME" : "Complete miscarriage with delayed or excessive hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198656000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441632, + "CONCEPT_NAME" : "Complete miscarriage with embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198663000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435318, + "CONCEPT_NAME" : "Complete miscarriage with genital tract or pelvic infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198655001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435000, + "CONCEPT_NAME" : "Complete miscarriage with metabolic disorder", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198660002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 436742, + "CONCEPT_NAME" : "Complete miscarriage with renal failure", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198659007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438805, + "CONCEPT_NAME" : "Complete miscarriage with shock", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198661003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4113352, + "CONCEPT_NAME" : "Complete spontaneous abortion NOS", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "198667004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45757769, + "CONCEPT_NAME" : "Continuing triplet pregnancy after spontaneous abortion of one or more fetuses", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36801000119105", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42537759, + "CONCEPT_NAME" : "Delayed hemorrhage due to and following miscarriage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "737318003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4114265, + "CONCEPT_NAME" : "Delayed or excessive hemorrhage following abortive pregnancy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "198827002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4149472, + "CONCEPT_NAME" : "Digital evacuation of retained products of conception", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "310603006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4106559, + "CONCEPT_NAME" : "Dilation and curettage for termination of pregnancy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "29682007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004489, + "CONCEPT_NAME" : "Dilation and curettage for termination of pregnancy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "69.01", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4168396, + "CONCEPT_NAME" : "Dilation of cervix uteri and curettage for termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "274973002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4138740, + "CONCEPT_NAME" : "Dilation of cervix uteri and curettage of products of conception from uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "265062002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4074867, + "CONCEPT_NAME" : "Dilation of cervix uteri and curettage of uterus for removal of missed miscarriage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "176833006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4074297, + "CONCEPT_NAME" : "Dilation of cervix uteri and vacuum aspiration of products of conception from uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "176827002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42537769, + "CONCEPT_NAME" : "Disorder of vein following miscarriage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "737331008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4113994, + "CONCEPT_NAME" : "Endometritis following abortive pregnancy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "198820000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42573076, + "CONCEPT_NAME" : "Enzootic abortion", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "352191000009102", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED Veterinary", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4032621, + "CONCEPT_NAME" : "Evacuation of retained product of conception", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "236883005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4170151, + "CONCEPT_NAME" : "Evacuation of uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "275166002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37206231, + "CONCEPT_NAME" : "Excessive hemorrhage due to and following illegally induced termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "785872000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37206226, + "CONCEPT_NAME" : "Excessive hemorrhage due to and following induced termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "785867009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37206230, + "CONCEPT_NAME" : "Excessive hemorrhage due to and following legally induced termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "785871007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4147858, + "CONCEPT_NAME" : "Expression of retained products of conception", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "310602001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4257043, + "CONCEPT_NAME" : "Extra-amniotic termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "408840008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44513450, + "CONCEPT_NAME" : "Extraction of menses", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "Q11.4", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "OPCS4", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4017134, + "CONCEPT_NAME" : "Failed attempted termination of pregnancy with amniotic fluid embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "11454006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 194694, + "CONCEPT_NAME" : "Failed attempted termination of pregnancy with complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59919008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4281684, + "CONCEPT_NAME" : "Failed attempted termination of pregnancy with urinary tract infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "66892003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 75605, + "CONCEPT_NAME" : "Fetal death, affecting management of mother", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14022007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 436228, + "CONCEPT_NAME" : "Fetal death due to termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "67313008", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Event" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110292, + "CONCEPT_NAME" : "Hysterotomy, abdominal (eg, for hydatidiform mole, abortion)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59100", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4082412, + "CONCEPT_NAME" : "Hysterotomy and termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "18302006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444048, + "CONCEPT_NAME" : "Illegal termination of pregnancy complicated by damage to pelvic organs and/or tissues", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "38784004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 193821, + "CONCEPT_NAME" : "Illegal termination of pregnancy complicated by embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26743002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439400, + "CONCEPT_NAME" : "Illegal termination of pregnancy complicated by genital-pelvic infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "373902000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443705, + "CONCEPT_NAME" : "Illegal termination of pregnancy complicated by metabolic disorder", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "18684002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 195600, + "CONCEPT_NAME" : "Illegal termination of pregnancy complicated by renal failure", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "8996006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442596, + "CONCEPT_NAME" : "Illegal termination of pregnancy complicated by shock", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "61752008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439325, + "CONCEPT_NAME" : "Illegal termination of pregnancy, incomplete", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198743003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4143190, + "CONCEPT_NAME" : "Illegal termination of pregnancy with acute renal failure", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "33561005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4138267, + "CONCEPT_NAME" : "Illegal termination of pregnancy with afibrinogenemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "3230006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4185440, + "CONCEPT_NAME" : "Illegal termination of pregnancy with air embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "44101005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4303980, + "CONCEPT_NAME" : "Illegal termination of pregnancy with amniotic fluid embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "38905006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4066227, + "CONCEPT_NAME" : "Illegal termination of pregnancy with blood-clot embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "21604008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4182549, + "CONCEPT_NAME" : "Illegal termination of pregnancy with cardiac arrest AND/OR failure", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "54529009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4223627, + "CONCEPT_NAME" : "Illegal termination of pregnancy with cerebral anoxia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40405003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 436169, + "CONCEPT_NAME" : "Illegal termination of pregnancy with complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "74978008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4264914, + "CONCEPT_NAME" : "Illegal termination of pregnancy with defibrination syndrome", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "61810006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4101477, + "CONCEPT_NAME" : "Illegal termination of pregnancy with electrolyte imbalance", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25404008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4023781, + "CONCEPT_NAME" : "Illegal termination of pregnancy with endometritis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "195005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4107907, + "CONCEPT_NAME" : "Illegal termination of pregnancy with fat embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "29995000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4323434, + "CONCEPT_NAME" : "Illegal termination of pregnancy with intravascular hemolysis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "70823006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4180859, + "CONCEPT_NAME" : "Illegal termination of pregnancy with laceration of bladder", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "53247006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4066994, + "CONCEPT_NAME" : "Illegal termination of pregnancy with laceration of bowel", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "17335003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4105762, + "CONCEPT_NAME" : "Illegal termination of pregnancy with laceration of broad ligament", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "29583006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4077275, + "CONCEPT_NAME" : "Illegal termination of pregnancy with laceration of cervix", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "18872002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4025828, + "CONCEPT_NAME" : "Illegal termination of pregnancy with laceration of periurethral tissue", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "19564003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4229716, + "CONCEPT_NAME" : "Illegal termination of pregnancy with laceration of uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40500006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4249728, + "CONCEPT_NAME" : "Illegal termination of pregnancy with laceration of vagina", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "73280003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4266243, + "CONCEPT_NAME" : "Illegal termination of pregnancy with oliguria", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6134000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4305348, + "CONCEPT_NAME" : "Illegal termination of pregnancy with parametritis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "82204006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4234979, + "CONCEPT_NAME" : "Illegal termination of pregnancy with pelvic peritonitis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90450000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4197900, + "CONCEPT_NAME" : "Illegal termination of pregnancy with perforation of bladder", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80438008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4051784, + "CONCEPT_NAME" : "Illegal termination of pregnancy with perforation of bowel", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "23401002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4195243, + "CONCEPT_NAME" : "Illegal termination of pregnancy with perforation of broad ligament", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6802007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4224143, + "CONCEPT_NAME" : "Illegal termination of pregnancy with perforation of cervix", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84143004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4239192, + "CONCEPT_NAME" : "Illegal termination of pregnancy with perforation of periurethral tissue", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "68189005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4296872, + "CONCEPT_NAME" : "Illegal termination of pregnancy with perforation of uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "77099001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4103148, + "CONCEPT_NAME" : "Illegal termination of pregnancy with perforation of vagina", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25519006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4143018, + "CONCEPT_NAME" : "Illegal termination of pregnancy with postoperative shock", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "34701001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4206453, + "CONCEPT_NAME" : "Illegal termination of pregnancy with pulmonary embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55589000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4195297, + "CONCEPT_NAME" : "Illegal termination of pregnancy with renal tubular necrosis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "4451004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4318662, + "CONCEPT_NAME" : "Illegal termination of pregnancy with salpingitis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "22046002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4313005, + "CONCEPT_NAME" : "Illegal termination of pregnancy with salpingo-oophoritis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "8670007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4034753, + "CONCEPT_NAME" : "Illegal termination of pregnancy with sepsis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "11373009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4324965, + "CONCEPT_NAME" : "Illegal termination of pregnancy with septic embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "71362000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4219608, + "CONCEPT_NAME" : "Illegal termination of pregnancy with septic shock", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "82338001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4183557, + "CONCEPT_NAME" : "Illegal termination of pregnancy with uremia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54155004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4140509, + "CONCEPT_NAME" : "Illegal termination of pregnancy with urinary tract infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "33046001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439323, + "CONCEPT_NAME" : "Incomplete illegal termination of pregnancy with damage to pelvic organs or tissues", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198746006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437929, + "CONCEPT_NAME" : "Incomplete illegal termination of pregnancy with delayed or excessive hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198745005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438487, + "CONCEPT_NAME" : "Incomplete illegal termination of pregnancy with embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198750004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439324, + "CONCEPT_NAME" : "Incomplete illegal termination of pregnancy with genital tract or pelvic infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198744009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439321, + "CONCEPT_NAME" : "Incomplete illegal termination of pregnancy with metabolic disorder", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198748007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439322, + "CONCEPT_NAME" : "Incomplete illegal termination of pregnancy with renal failure", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198747002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439320, + "CONCEPT_NAME" : "Incomplete illegal termination of pregnancy with shock", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198749004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45768717, + "CONCEPT_NAME" : "Incomplete induced termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "707207004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45771353, + "CONCEPT_NAME" : "Incomplete induced termination of pregnancy with complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16101000119107", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438211, + "CONCEPT_NAME" : "Incomplete inevitable miscarriage complicated by delayed or excessive hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "307752007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 436748, + "CONCEPT_NAME" : "Incomplete inevitable miscarriage complicated by embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "307746006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437618, + "CONCEPT_NAME" : "Incomplete inevitable miscarriage complicated by genital tract and pelvic infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "307749004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4146775, + "CONCEPT_NAME" : "Incomplete inevitable miscarriage without complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "307748007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439328, + "CONCEPT_NAME" : "Incomplete legal abortion with no mention of complication", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "198715007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37110280, + "CONCEPT_NAME" : "Incomplete legal abortion without complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "724484007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435868, + "CONCEPT_NAME" : "Incomplete legal termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "267193004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434705, + "CONCEPT_NAME" : "Incomplete legal termination of pregnancy with damage to pelvic organs or tissues", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198707009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440453, + "CONCEPT_NAME" : "Incomplete legal termination of pregnancy with delayed or excessive hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198706000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439329, + "CONCEPT_NAME" : "Incomplete legal termination of pregnancy with embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198711003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 193532, + "CONCEPT_NAME" : "Incomplete legal termination of pregnancy with genital tract or pelvic infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198705001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434095, + "CONCEPT_NAME" : "Incomplete legal termination of pregnancy with metabolic disorder", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198709007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439331, + "CONCEPT_NAME" : "Incomplete legal termination of pregnancy with renal failure", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198708004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439330, + "CONCEPT_NAME" : "Incomplete legal termination of pregnancy with shock", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198710002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40318617, + "CONCEPT_NAME" : "Incomplete miscarriage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "156072005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434689, + "CONCEPT_NAME" : "Incomplete miscarriage", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "16863000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434413, + "CONCEPT_NAME" : "Incomplete miscarriage with complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "413338003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437933, + "CONCEPT_NAME" : "Incomplete miscarriage with damage to pelvic organs or tissues", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198646004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440460, + "CONCEPT_NAME" : "Incomplete miscarriage with delayed or excessive hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198645000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437045, + "CONCEPT_NAME" : "Incomplete miscarriage with embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198650006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 195317, + "CONCEPT_NAME" : "Incomplete miscarriage with genital tract or pelvic infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198644001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432689, + "CONCEPT_NAME" : "Incomplete miscarriage with metabolic disorder", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198648003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439688, + "CONCEPT_NAME" : "Incomplete miscarriage with renal failure", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198647008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441631, + "CONCEPT_NAME" : "Incomplete miscarriage with shock", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198649006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42535215, + "CONCEPT_NAME" : "Incomplete spontaneous abortion due to hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16111000119105", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44805020, + "CONCEPT_NAME" : "Incomplete termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "749781000000109", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2721146, + "CONCEPT_NAME" : "Induced abortion, 17 to 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "S2260", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2721148, + "CONCEPT_NAME" : "Induced abortion, 25 to 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "S2265", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2721149, + "CONCEPT_NAME" : "Induced abortion, 29 to 31 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "S2266", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2721150, + "CONCEPT_NAME" : "Induced abortion, 32 weeks or greater", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "S2267", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110331, + "CONCEPT_NAME" : "Induced abortion, by 1 or more intra-amniotic injections (amniocentesis-injections), including hospital admission and visits, delivery of fetus and secundines", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59850", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110332, + "CONCEPT_NAME" : "Induced abortion, by 1 or more intra-amniotic injections (amniocentesis-injections), including hospital admission and visits, delivery of fetus and secundines; with dilation and curettage and/or evacuation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59851", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110333, + "CONCEPT_NAME" : "Induced abortion, by 1 or more intra-amniotic injections (amniocentesis-injections), including hospital admission and visits, delivery of fetus and secundines; with hysterotomy (failed intra-amniotic injection)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59852", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110334, + "CONCEPT_NAME" : "Induced abortion, by 1 or more vaginal suppositories (eg, prostaglandin) with or without cervical dilation (eg, laminaria), including hospital admission and visits, delivery of fetus and secundines", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59855", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110335, + "CONCEPT_NAME" : "Induced abortion, by 1 or more vaginal suppositories (eg, prostaglandin) with or without cervical dilation (eg, laminaria), including hospital admission and visits, delivery of fetus and secundines; with dilation and curettage and/or evacuation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59856", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110336, + "CONCEPT_NAME" : "Induced abortion, by 1 or more vaginal suppositories (eg, prostaglandin) with or without cervical dilation (eg, laminaria), including hospital admission and visits, delivery of fetus and secundines; with hysterotomy (failed medical evacuation)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59857", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110329, + "CONCEPT_NAME" : "Induced abortion, by dilation and curettage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59840", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110330, + "CONCEPT_NAME" : "Induced abortion, by dilation and evacuation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59841", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37018340, + "CONCEPT_NAME" : "Induced termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "714812005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530913, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by acute necrosis of liver", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609454008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530914, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by acute renal failure", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609455009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530928, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by acute renal failure with oliguria", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609472002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530915, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by afibrinogenemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609456005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530916, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by air embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609457001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43531712, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by amniotic fluid embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609458006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530957, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by bladder damage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609503006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530917, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by blood-clot embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609459003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530958, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by bowel damage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609504000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530959, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by broad ligament damage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609505004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530960, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by cardiac arrest", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609506003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530918, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by cardiac arrest and/or failure", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "609460008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530961, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by cardiac failure", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609507007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530919, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by cerebral anoxia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609461007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530962, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by cervix damage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609508002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530908, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by damage to pelvic organs and/or tissues", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609447002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530920, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by defibrination syndrome", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609462000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43531713, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by electrolyte imbalance", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609463005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43531710, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609449004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530921, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by endometritis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609464004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530922, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by fat embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609465003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530910, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by genital-pelvic infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609450004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530964, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by infectious disease", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609510000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530923, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by intravascular hemolysis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609466002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530952, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by laceration of bladder", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609498008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530924, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by laceration of bowel", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609467006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530925, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by laceration of broad ligament", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609468001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43531714, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by laceration of cervix", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609469009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530953, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by laceration of periurethral tissue", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609499000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530926, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by laceration of uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609470005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530927, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by laceration of vagina", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609471009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530911, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by metabolic disorder", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609451000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530966, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by oliguria", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609512008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530929, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by parametritis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609473007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530948, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by pelvic disorder", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609494005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43531715, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by pelvic peritonitis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609474001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530954, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by perforation of bladder", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609500009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530930, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by perforation of bowel", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609475000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530955, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by perforation of broad ligament", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609501008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530931, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by perforation of cervix", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609476004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530956, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by perforation of periurethral tissue", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609502001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530932, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by perforation of uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609477008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530933, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by perforation of vagina", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609478003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530965, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by periurethral tissue damage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609511001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43531716, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by postoperative shock", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609479006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530934, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by pulmonary embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609480009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530912, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by renal failure", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609452007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530935, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by renal tubular necrosis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609482001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530936, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by salpingitis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609483006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530937, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by salpingo-oophoritis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609484000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530939, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by sepsis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609485004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530940, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by septic embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609486003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530941, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by septic shock", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609487007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43531711, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by shock", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609453002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530943, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by soap embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609489005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530947, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by tetanus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609493004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530944, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by uremia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609490001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530945, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by urinary tract infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609491002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530967, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by uterus damage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609513003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530968, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by vaginal damage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609514009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4200986, + "CONCEPT_NAME" : "Induced termination of pregnancy following intra-amniotic injection with hysterotomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "52660002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44784128, + "CONCEPT_NAME" : "Induced termination of pregnancy under unsafe conditions", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "700041001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4244408, + "CONCEPT_NAME" : "Inevitable miscarriage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59363009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4146772, + "CONCEPT_NAME" : "Inevitable miscarriage complete", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "307733001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4121775, + "CONCEPT_NAME" : "Injection of amnion for termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "288045002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4112315, + "CONCEPT_NAME" : "Insertion of abortifacient suppository", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "285434006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4074301, + "CONCEPT_NAME" : "Insertion of prostaglandin abortifacient suppository", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "176854004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4071638, + "CONCEPT_NAME" : "Instrumental removal of products of conception from delivered uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177200004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4063309, + "CONCEPT_NAME" : "Intrauterine death with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199608004", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Event" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4163996, + "CONCEPT_NAME" : "Late fetal death affecting management of mother", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "399363000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4113976, + "CONCEPT_NAME" : "Legally induced abortion NOS", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "198729008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444077, + "CONCEPT_NAME" : "Legal termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "39406005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 192379, + "CONCEPT_NAME" : "Legal termination of pregnancy complicated by damage to pelvic organ and/or tissues", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "111431001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 197617, + "CONCEPT_NAME" : "Legal termination of pregnancy complicated by delayed and/or excessive hemorrhage", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "58071009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442346, + "CONCEPT_NAME" : "Legal termination of pregnancy complicated by embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57734001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439883, + "CONCEPT_NAME" : "Legal termination of pregnancy complicated by genital-pelvic infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "373901007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 436474, + "CONCEPT_NAME" : "Legal termination of pregnancy complicated by metabolic disorder", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "3634007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 195595, + "CONCEPT_NAME" : "Legal termination of pregnancy complicated by renal failure", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "4576001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 197333, + "CONCEPT_NAME" : "Legal termination of pregnancy complicated by shock", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "27169005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181114, + "CONCEPT_NAME" : "Legal termination of pregnancy with acute renal failure", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "52342006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4147533, + "CONCEPT_NAME" : "Legal termination of pregnancy with afibrinogenemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "30479005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4009642, + "CONCEPT_NAME" : "Legal termination of pregnancy with air embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "111432008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4098441, + "CONCEPT_NAME" : "Legal termination of pregnancy with amniotic fluid embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "27015006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4292089, + "CONCEPT_NAME" : "Legal termination of pregnancy with blood-clot embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "37787009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4025639, + "CONCEPT_NAME" : "Legal termination of pregnancy with cardiac arrest and/or failure", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "12095001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4077454, + "CONCEPT_NAME" : "Legal termination of pregnancy with cerebral anoxia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "18894005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441349, + "CONCEPT_NAME" : "Legal termination of pregnancy with complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48433002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4280224, + "CONCEPT_NAME" : "Legal termination of pregnancy with defibrination syndrome", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6647006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4214233, + "CONCEPT_NAME" : "Legal termination of pregnancy with electrolyte imbalance", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "39239006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4294829, + "CONCEPT_NAME" : "Legal termination of pregnancy with endometritis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "75947000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4328084, + "CONCEPT_NAME" : "Legal termination of pregnancy with fat embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "75825001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4046510, + "CONCEPT_NAME" : "Legal termination of pregnancy with intravascular hemolysis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12296009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4243658, + "CONCEPT_NAME" : "Legal termination of pregnancy with laceration of bladder", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59859005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4183680, + "CONCEPT_NAME" : "Legal termination of pregnancy with laceration of bowel", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "5577003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4216436, + "CONCEPT_NAME" : "Legal termination of pregnancy with laceration of broad ligament", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "41806003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4324695, + "CONCEPT_NAME" : "Legal termination of pregnancy with laceration of cervix", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7166002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4324672, + "CONCEPT_NAME" : "Legal termination of pregnancy with laceration of periurethral tissue", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "71216006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4045581, + "CONCEPT_NAME" : "Legal termination of pregnancy with laceration of uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13100007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4204231, + "CONCEPT_NAME" : "Legal termination of pregnancy with laceration of vagina", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54044001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4269450, + "CONCEPT_NAME" : "Legal termination of pregnancy with oliguria", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36473002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 436747, + "CONCEPT_NAME" : "Legal termination of pregnancy without complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "34500003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4049453, + "CONCEPT_NAME" : "Legal termination of pregnancy with parametritis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15511008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4094081, + "CONCEPT_NAME" : "Legal termination of pregnancy with pelvic peritonitis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26010008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4271203, + "CONCEPT_NAME" : "Legal termination of pregnancy with perforation of bladder", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "62888008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4184150, + "CONCEPT_NAME" : "Legal termination of pregnancy with perforation of bowel", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55933000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4198404, + "CONCEPT_NAME" : "Legal termination of pregnancy with perforation of broad ligament", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "51953009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4312358, + "CONCEPT_NAME" : "Legal termination of pregnancy with perforation of cervix", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "85652000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4296459, + "CONCEPT_NAME" : "Legal termination of pregnancy with perforation of periurethral tissue", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "76472002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4068253, + "CONCEPT_NAME" : "Legal termination of pregnancy with perforation of uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "20216003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4327321, + "CONCEPT_NAME" : "Legal termination of pregnancy with perforation of vagina", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "75013000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4058932, + "CONCEPT_NAME" : "Legal termination of pregnancy with postoperative shock", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "21280005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4178578, + "CONCEPT_NAME" : "Legal termination of pregnancy with pulmonary embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "51096002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4070939, + "CONCEPT_NAME" : "Legal termination of pregnancy with renal tubular necrosis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "20483002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4204206, + "CONCEPT_NAME" : "Legal termination of pregnancy with salpingitis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "53098006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4197681, + "CONCEPT_NAME" : "Legal termination of pregnancy with salpingo-oophoritis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "51707007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4188764, + "CONCEPT_NAME" : "Legal termination of pregnancy with sepsis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "39246002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4106892, + "CONCEPT_NAME" : "Legal termination of pregnancy with septic embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "29950007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4105063, + "CONCEPT_NAME" : "Legal termination of pregnancy with septic shock", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25691001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4225572, + "CONCEPT_NAME" : "Legal termination of pregnancy with uremia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "8468007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4245041, + "CONCEPT_NAME" : "Legal termination of pregnancy with urinary tract infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "5945005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4238207, + "CONCEPT_NAME" : "Listeria miscarriage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57420002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44807900, + "CONCEPT_NAME" : "Medical evacuation of retained products of conception using prostaglandin", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "854611000000109", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2721012, + "CONCEPT_NAME" : "Medically induced abortion by oral ingestion of medication including all associated services and supplies (e.g., patient counseling, office visits, confirmation of pregnancy by hcg, ultrasound to confirm duration of pregnancy, ultrasound to confirm com...", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "S0199", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4115153, + "CONCEPT_NAME" : "Medical termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "285409006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40487510, + "CONCEPT_NAME" : "Medical termination of pregnancy using prostaglandin", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "447972007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4067106, + "CONCEPT_NAME" : "Miscarriage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "17369002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4087102, + "CONCEPT_NAME" : "Miscarriage at 8 to 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "184339009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 192678, + "CONCEPT_NAME" : "Miscarriage complicated by damage to pelvic organs and/or tissues", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "58990004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 195594, + "CONCEPT_NAME" : "Miscarriage complicated by delayed and/or excessive hemorrhage", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "2781009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 194704, + "CONCEPT_NAME" : "Miscarriage complicated by embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43306002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437920, + "CONCEPT_NAME" : "Miscarriage complicated by genital-pelvic infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "373896005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441348, + "CONCEPT_NAME" : "Miscarriage complicated by metabolic disorder", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13384007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 193820, + "CONCEPT_NAME" : "Miscarriage complicated by renal failure", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10697004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 196746, + "CONCEPT_NAME" : "Miscarriage complicated by shock", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "34270000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4323612, + "CONCEPT_NAME" : "Miscarriage due to Brucella abortus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428508008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4051244, + "CONCEPT_NAME" : "Miscarriage due to Leptospira", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16038004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4078393, + "CONCEPT_NAME" : "Miscarriage in first trimester", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "19169002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4224646, + "CONCEPT_NAME" : "Miscarriage in second trimester", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "85116003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4167685, + "CONCEPT_NAME" : "Miscarriage in third trimester", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48485000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4224597, + "CONCEPT_NAME" : "Miscarriage with acute necrosis of liver", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40444006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4211863, + "CONCEPT_NAME" : "Miscarriage with acute renal failure", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57469000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4064536, + "CONCEPT_NAME" : "Miscarriage with afibrinogenemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "21360006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4247270, + "CONCEPT_NAME" : "Miscarriage with air embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "60265009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4003276, + "CONCEPT_NAME" : "Miscarriage with amniotic fluid embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10058006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4209126, + "CONCEPT_NAME" : "Miscarriage with blood-clot embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55976003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4175137, + "CONCEPT_NAME" : "Miscarriage with cardiac arrest and/or cardiac failure", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48739004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4047775, + "CONCEPT_NAME" : "Miscarriage with cerebral anoxia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12394009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434094, + "CONCEPT_NAME" : "Miscarriage with complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "34614007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4179796, + "CONCEPT_NAME" : "Miscarriage with defibrination syndrome", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "50770000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4274315, + "CONCEPT_NAME" : "Miscarriage with electrolyte imbalance", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64814003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4149423, + "CONCEPT_NAME" : "Miscarriage with endometritis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "30806007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4278107, + "CONCEPT_NAME" : "Miscarriage with fat embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "66131005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4170457, + "CONCEPT_NAME" : "Miscarriage with heavy bleeding", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "275421004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4180568, + "CONCEPT_NAME" : "Miscarriage with intravascular hemolysis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "53183006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4194113, + "CONCEPT_NAME" : "Miscarriage with laceration of bladder", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "39199000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4041728, + "CONCEPT_NAME" : "Miscarriage with laceration of bowel", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16714009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4309780, + "CONCEPT_NAME" : "Miscarriage with laceration of broad ligament", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "85331004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4130670, + "CONCEPT_NAME" : "Miscarriage with laceration of cervix", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "127009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4261327, + "CONCEPT_NAME" : "Miscarriage with laceration of periurethral tissue", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "44814008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4302162, + "CONCEPT_NAME" : "Miscarriage with laceration of uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7809009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4311698, + "CONCEPT_NAME" : "Miscarriage with laceration of vagina", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "85632001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4217670, + "CONCEPT_NAME" : "Miscarriage with oliguria", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72613009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 436176, + "CONCEPT_NAME" : "Miscarriage without complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "23793007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4221853, + "CONCEPT_NAME" : "Miscarriage with parametritis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "83922009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4313166, + "CONCEPT_NAME" : "Miscarriage with pelvic peritonitis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "85991008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4310654, + "CONCEPT_NAME" : "Miscarriage with perforation of bladder", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "85467007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4216342, + "CONCEPT_NAME" : "Miscarriage with perforation of bowel", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "8071005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4031837, + "CONCEPT_NAME" : "Miscarriage with perforation of broad ligament", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14136000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4253804, + "CONCEPT_NAME" : "Miscarriage with perforation of cervix", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "74369005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4200070, + "CONCEPT_NAME" : "Miscarriage with perforation of periurethral tissue", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "51954003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4049891, + "CONCEPT_NAME" : "Miscarriage with perforation of uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15809008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4339107, + "CONCEPT_NAME" : "Miscarriage with perforation of vagina", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87967003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4168445, + "CONCEPT_NAME" : "Miscarriage with postoperative shock", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "47537002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4219469, + "CONCEPT_NAME" : "Miscarriage with pulmonary embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "82153002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4001856, + "CONCEPT_NAME" : "Miscarriage with renal tubular necrosis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "11026009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4195406, + "CONCEPT_NAME" : "Miscarriage with salpingitis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7910003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4189350, + "CONCEPT_NAME" : "Miscarriage with salpingo-oophoritis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "61568004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4285746, + "CONCEPT_NAME" : "Miscarriage with sepsis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "67465009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4244261, + "CONCEPT_NAME" : "Miscarriage with septic embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59204004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4085627, + "CONCEPT_NAME" : "Miscarriage with septic shock", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "18613002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4006806, + "CONCEPT_NAME" : "Miscarriage with uremia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "11109001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4033096, + "CONCEPT_NAME" : "Miscarriage with urinary tract infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1469007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 76482, + "CONCEPT_NAME" : "Missed miscarriage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16607004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42599849, + "CONCEPT_NAME" : "Mycotic abortion", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "360061000009103", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED Veterinary", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4119975, + "CONCEPT_NAME" : "Operative termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "302375005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44513476, + "CONCEPT_NAME" : "Other specified introduction of abortifacient into uterine cavity", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "Q14.8", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "OPCS4", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4149994, + "CONCEPT_NAME" : "Readmission for abortive pregnancy (NHS codes)", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "267195006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4113503, + "CONCEPT_NAME" : "Readmission for retained products of conception, legal termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198862007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4114280, + "CONCEPT_NAME" : "Readmission for retained products of conception, spontaneous abortion", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198861000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4150401, + "CONCEPT_NAME" : "Reason for termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "310506006", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Observable Entity" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4190767, + "CONCEPT_NAME" : "Referral for termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "415262008", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4153287, + "CONCEPT_NAME" : "Removal of products of conception from fallopian tube", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "271415006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4086797, + "CONCEPT_NAME" : "Requests pregnancy termination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "184005004", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4170121, + "CONCEPT_NAME" : "Retained products after miscarriage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "275425008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37206228, + "CONCEPT_NAME" : "Secondary hemorrhage due to and following illegally induced termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "785869007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37206227, + "CONCEPT_NAME" : "Secondary hemorrhage due to and following induced termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "785868004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37206229, + "CONCEPT_NAME" : "Secondary hemorrhage due to and following legally induced termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "785870008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4150538, + "CONCEPT_NAME" : "Suction evacuation of retained products of conception", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "310604000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4297250, + "CONCEPT_NAME" : "Termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "386639001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4240605, + "CONCEPT_NAME" : "Termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57797005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43020954, + "CONCEPT_NAME" : "Termination of pregnancy after first trimester", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "472839005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530907, + "CONCEPT_NAME" : "Termination of pregnancy with complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609446006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4189561, + "CONCEPT_NAME" : "Therapeutic termination of pregnancy by aspiration curettage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "391896006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4030009, + "CONCEPT_NAME" : "Therapeutic termination of pregnancy by insertion of laminaria", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10763001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4299609, + "CONCEPT_NAME" : "Therapeutic termination of pregnancy procedure", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "386641000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110325, + "CONCEPT_NAME" : "Treatment of incomplete abortion, any trimester, completed surgically", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59812", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110326, + "CONCEPT_NAME" : "Treatment of missed abortion, completed surgically; first trimester", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59820", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110327, + "CONCEPT_NAME" : "Treatment of missed abortion, completed surgically; second trimester", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59821", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110328, + "CONCEPT_NAME" : "Treatment of septic abortion, completed surgically", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59830", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4113986, + "CONCEPT_NAME" : "Unspecified abortion complete", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "198793004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4113983, + "CONCEPT_NAME" : "Unspecified abortion incomplete", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "198781008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4113036, + "CONCEPT_NAME" : "Unspecified legal abortion with no mention of complication", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "198702003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4112954, + "CONCEPT_NAME" : "Unspecified spontaneous abortion without mention of complication", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "198642002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 46269813, + "CONCEPT_NAME" : "Urinary tract infection due to incomplete miscarriage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10812041000119103", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44790180, + "CONCEPT_NAME" : "Vacuum aspiration of products of conception from uterus using flexible cannula", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "229761000000107", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44790181, + "CONCEPT_NAME" : "Vacuum aspiration of products of conception from uterus using rigid cannula", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "229801000000102", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 63, + "name" : "Gestational age (GEST) gt than 1 week", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4015296, + "CONCEPT_NAME" : "Antenatal 12 weeks examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169712008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014149, + "CONCEPT_NAME" : "Antenatal 16 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169713003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014150, + "CONCEPT_NAME" : "Antenatal 20 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169714009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808979, + "CONCEPT_NAME" : "Antenatal 22 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861281000000109", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015141, + "CONCEPT_NAME" : "Antenatal 24 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169715005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808980, + "CONCEPT_NAME" : "Antenatal 25 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861301000000105", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014151, + "CONCEPT_NAME" : "Antenatal 30 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169717002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808981, + "CONCEPT_NAME" : "Antenatal 31 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861321000000101", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015297, + "CONCEPT_NAME" : "Antenatal 32 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169718007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015298, + "CONCEPT_NAME" : "Antenatal 34 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169719004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014434, + "CONCEPT_NAME" : "Antenatal 35 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169720005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015299, + "CONCEPT_NAME" : "Antenatal 36 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169721009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015142, + "CONCEPT_NAME" : "Antenatal 37 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169722002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014152, + "CONCEPT_NAME" : "Antenatal 38 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169723007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015300, + "CONCEPT_NAME" : "Antenatal 39 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169724001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015301, + "CONCEPT_NAME" : "Antenatal 40 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169725000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015302, + "CONCEPT_NAME" : "Antenatal 41 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169726004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014435, + "CONCEPT_NAME" : "Antenatal 42 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169727008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4178165, + "CONCEPT_NAME" : "Gestation 14 - 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428567001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181468, + "CONCEPT_NAME" : "Gestation 9- 13 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428930004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181162, + "CONCEPT_NAME" : "Gestation greater than 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429715006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4324063, + "CONCEPT_NAME" : "Gestation less than 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428566005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438542, + "CONCEPT_NAME" : "Gestation less than 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313178001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45770261, + "CONCEPT_NAME" : "Gestation less than 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "925561000000100", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4322726, + "CONCEPT_NAME" : "Gestation less than 9 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428058009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4242241, + "CONCEPT_NAME" : "Gestation period, 10 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "38039008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4174506, + "CONCEPT_NAME" : "Gestation period, 11 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "50367001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4197245, + "CONCEPT_NAME" : "Gestation period, 12 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "79992004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4266517, + "CONCEPT_NAME" : "Gestation period, 13 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "62333002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4248725, + "CONCEPT_NAME" : "Gestation period, 14 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72846000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4283690, + "CONCEPT_NAME" : "Gestation period, 15 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6678005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4049621, + "CONCEPT_NAME" : "Gestation period, 16 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15633004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4277749, + "CONCEPT_NAME" : "Gestation period, 17 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65683006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4097608, + "CONCEPT_NAME" : "Gestation period, 18 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25026004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181751, + "CONCEPT_NAME" : "Gestation period, 19 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54318006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4051642, + "CONCEPT_NAME" : "Gestation period, 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "23464008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4185780, + "CONCEPT_NAME" : "Gestation period, 21 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "41438001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4274955, + "CONCEPT_NAME" : "Gestation period, 22 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65035007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336226, + "CONCEPT_NAME" : "Gestation period, 23 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86883006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439922, + "CONCEPT_NAME" : "Gestation period, 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313179009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435640, + "CONCEPT_NAME" : "Gestation period, 25 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72544005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444023, + "CONCEPT_NAME" : "Gestation period, 26 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48688005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432430, + "CONCEPT_NAME" : "Gestation period, 27 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46906003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444461, + "CONCEPT_NAME" : "Gestation period, 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90797000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444417, + "CONCEPT_NAME" : "Gestation period, 29 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45139008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4220085, + "CONCEPT_NAME" : "Gestation period, 2 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "82118009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434484, + "CONCEPT_NAME" : "Gestation period, 30 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "71355009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433864, + "CONCEPT_NAME" : "Gestation period, 31 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64920003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442558, + "CONCEPT_NAME" : "Gestation period, 32 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7707000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441678, + "CONCEPT_NAME" : "Gestation period, 33 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "78395001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443874, + "CONCEPT_NAME" : "Gestation period, 34 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13763000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444267, + "CONCEPT_NAME" : "Gestation period, 35 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84132007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438543, + "CONCEPT_NAME" : "Gestation period, 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57907009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442355, + "CONCEPT_NAME" : "Gestation period, 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43697006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443871, + "CONCEPT_NAME" : "Gestation period, 38 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13798002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435655, + "CONCEPT_NAME" : "Gestation period, 39 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80487005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4326232, + "CONCEPT_NAME" : "Gestation period, 3 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "74952004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442769, + "CONCEPT_NAME" : "Gestation period, 41 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63503002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444067, + "CONCEPT_NAME" : "Gestation period, 42 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36428009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4195157, + "CONCEPT_NAME" : "Gestation period, 4 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "44398003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4290009, + "CONCEPT_NAME" : "Gestation period, 5 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "37005007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4313026, + "CONCEPT_NAME" : "Gestation period, 6 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86801005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4270513, + "CONCEPT_NAME" : "Gestation period, 7 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63110000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4132434, + "CONCEPT_NAME" : "Gestation period, 8 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26690008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4245908, + "CONCEPT_NAME" : "Gestation period, 9 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "931004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 762907, + "CONCEPT_NAME" : "Gestation period greater than or equal to 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "433601000124106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336958, + "CONCEPT_NAME" : "Term pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87527008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4180111, + "CONCEPT_NAME" : "Third trimester pregnancy less than 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429240000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444098, + "CONCEPT_NAME" : "Gestation period, 40 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46230007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 64, + "name" : "Gestational age (GEST) gt than 2 week", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4015296, + "CONCEPT_NAME" : "Antenatal 12 weeks examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169712008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014149, + "CONCEPT_NAME" : "Antenatal 16 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169713003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014150, + "CONCEPT_NAME" : "Antenatal 20 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169714009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808979, + "CONCEPT_NAME" : "Antenatal 22 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861281000000109", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015141, + "CONCEPT_NAME" : "Antenatal 24 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169715005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808980, + "CONCEPT_NAME" : "Antenatal 25 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861301000000105", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014151, + "CONCEPT_NAME" : "Antenatal 30 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169717002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808981, + "CONCEPT_NAME" : "Antenatal 31 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861321000000101", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015297, + "CONCEPT_NAME" : "Antenatal 32 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169718007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015298, + "CONCEPT_NAME" : "Antenatal 34 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169719004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014434, + "CONCEPT_NAME" : "Antenatal 35 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169720005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015299, + "CONCEPT_NAME" : "Antenatal 36 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169721009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015142, + "CONCEPT_NAME" : "Antenatal 37 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169722002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014152, + "CONCEPT_NAME" : "Antenatal 38 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169723007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015300, + "CONCEPT_NAME" : "Antenatal 39 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169724001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015301, + "CONCEPT_NAME" : "Antenatal 40 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169725000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015302, + "CONCEPT_NAME" : "Antenatal 41 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169726004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014435, + "CONCEPT_NAME" : "Antenatal 42 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169727008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4178165, + "CONCEPT_NAME" : "Gestation 14 - 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428567001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181468, + "CONCEPT_NAME" : "Gestation 9- 13 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428930004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181162, + "CONCEPT_NAME" : "Gestation greater than 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429715006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4324063, + "CONCEPT_NAME" : "Gestation less than 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428566005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438542, + "CONCEPT_NAME" : "Gestation less than 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313178001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45770261, + "CONCEPT_NAME" : "Gestation less than 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "925561000000100", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4322726, + "CONCEPT_NAME" : "Gestation less than 9 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428058009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4242241, + "CONCEPT_NAME" : "Gestation period, 10 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "38039008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4174506, + "CONCEPT_NAME" : "Gestation period, 11 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "50367001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4197245, + "CONCEPT_NAME" : "Gestation period, 12 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "79992004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4266517, + "CONCEPT_NAME" : "Gestation period, 13 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "62333002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4248725, + "CONCEPT_NAME" : "Gestation period, 14 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72846000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4283690, + "CONCEPT_NAME" : "Gestation period, 15 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6678005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4049621, + "CONCEPT_NAME" : "Gestation period, 16 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15633004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4277749, + "CONCEPT_NAME" : "Gestation period, 17 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65683006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4097608, + "CONCEPT_NAME" : "Gestation period, 18 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25026004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181751, + "CONCEPT_NAME" : "Gestation period, 19 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54318006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4051642, + "CONCEPT_NAME" : "Gestation period, 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "23464008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4185780, + "CONCEPT_NAME" : "Gestation period, 21 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "41438001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4274955, + "CONCEPT_NAME" : "Gestation period, 22 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65035007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336226, + "CONCEPT_NAME" : "Gestation period, 23 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86883006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439922, + "CONCEPT_NAME" : "Gestation period, 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313179009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435640, + "CONCEPT_NAME" : "Gestation period, 25 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72544005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444023, + "CONCEPT_NAME" : "Gestation period, 26 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48688005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432430, + "CONCEPT_NAME" : "Gestation period, 27 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46906003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444461, + "CONCEPT_NAME" : "Gestation period, 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90797000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444417, + "CONCEPT_NAME" : "Gestation period, 29 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45139008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434484, + "CONCEPT_NAME" : "Gestation period, 30 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "71355009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433864, + "CONCEPT_NAME" : "Gestation period, 31 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64920003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442558, + "CONCEPT_NAME" : "Gestation period, 32 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7707000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441678, + "CONCEPT_NAME" : "Gestation period, 33 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "78395001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443874, + "CONCEPT_NAME" : "Gestation period, 34 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13763000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444267, + "CONCEPT_NAME" : "Gestation period, 35 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84132007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438543, + "CONCEPT_NAME" : "Gestation period, 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57907009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442355, + "CONCEPT_NAME" : "Gestation period, 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43697006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443871, + "CONCEPT_NAME" : "Gestation period, 38 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13798002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435655, + "CONCEPT_NAME" : "Gestation period, 39 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80487005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4326232, + "CONCEPT_NAME" : "Gestation period, 3 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "74952004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442769, + "CONCEPT_NAME" : "Gestation period, 41 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63503002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444067, + "CONCEPT_NAME" : "Gestation period, 42 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36428009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4195157, + "CONCEPT_NAME" : "Gestation period, 4 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "44398003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4290009, + "CONCEPT_NAME" : "Gestation period, 5 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "37005007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4313026, + "CONCEPT_NAME" : "Gestation period, 6 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86801005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4270513, + "CONCEPT_NAME" : "Gestation period, 7 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63110000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4132434, + "CONCEPT_NAME" : "Gestation period, 8 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26690008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4245908, + "CONCEPT_NAME" : "Gestation period, 9 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "931004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 762907, + "CONCEPT_NAME" : "Gestation period greater than or equal to 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "433601000124106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336958, + "CONCEPT_NAME" : "Term pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87527008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4180111, + "CONCEPT_NAME" : "Third trimester pregnancy less than 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429240000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444098, + "CONCEPT_NAME" : "Gestation period, 40 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46230007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 65, + "name" : "Gestational age (GEST) gt than 3 week", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4015296, + "CONCEPT_NAME" : "Antenatal 12 weeks examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169712008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014149, + "CONCEPT_NAME" : "Antenatal 16 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169713003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014150, + "CONCEPT_NAME" : "Antenatal 20 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169714009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808979, + "CONCEPT_NAME" : "Antenatal 22 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861281000000109", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015141, + "CONCEPT_NAME" : "Antenatal 24 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169715005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808980, + "CONCEPT_NAME" : "Antenatal 25 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861301000000105", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014151, + "CONCEPT_NAME" : "Antenatal 30 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169717002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808981, + "CONCEPT_NAME" : "Antenatal 31 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861321000000101", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015297, + "CONCEPT_NAME" : "Antenatal 32 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169718007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015298, + "CONCEPT_NAME" : "Antenatal 34 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169719004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014434, + "CONCEPT_NAME" : "Antenatal 35 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169720005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015299, + "CONCEPT_NAME" : "Antenatal 36 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169721009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015142, + "CONCEPT_NAME" : "Antenatal 37 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169722002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014152, + "CONCEPT_NAME" : "Antenatal 38 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169723007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015300, + "CONCEPT_NAME" : "Antenatal 39 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169724001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015301, + "CONCEPT_NAME" : "Antenatal 40 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169725000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015302, + "CONCEPT_NAME" : "Antenatal 41 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169726004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014435, + "CONCEPT_NAME" : "Antenatal 42 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169727008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4178165, + "CONCEPT_NAME" : "Gestation 14 - 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428567001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181468, + "CONCEPT_NAME" : "Gestation 9- 13 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428930004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181162, + "CONCEPT_NAME" : "Gestation greater than 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429715006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4324063, + "CONCEPT_NAME" : "Gestation less than 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428566005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438542, + "CONCEPT_NAME" : "Gestation less than 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313178001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45770261, + "CONCEPT_NAME" : "Gestation less than 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "925561000000100", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4322726, + "CONCEPT_NAME" : "Gestation less than 9 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428058009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4242241, + "CONCEPT_NAME" : "Gestation period, 10 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "38039008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4174506, + "CONCEPT_NAME" : "Gestation period, 11 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "50367001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4197245, + "CONCEPT_NAME" : "Gestation period, 12 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "79992004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4266517, + "CONCEPT_NAME" : "Gestation period, 13 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "62333002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4248725, + "CONCEPT_NAME" : "Gestation period, 14 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72846000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4283690, + "CONCEPT_NAME" : "Gestation period, 15 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6678005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4049621, + "CONCEPT_NAME" : "Gestation period, 16 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15633004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4277749, + "CONCEPT_NAME" : "Gestation period, 17 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65683006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4097608, + "CONCEPT_NAME" : "Gestation period, 18 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25026004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181751, + "CONCEPT_NAME" : "Gestation period, 19 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54318006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4051642, + "CONCEPT_NAME" : "Gestation period, 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "23464008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4185780, + "CONCEPT_NAME" : "Gestation period, 21 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "41438001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4274955, + "CONCEPT_NAME" : "Gestation period, 22 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65035007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336226, + "CONCEPT_NAME" : "Gestation period, 23 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86883006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439922, + "CONCEPT_NAME" : "Gestation period, 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313179009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435640, + "CONCEPT_NAME" : "Gestation period, 25 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72544005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444023, + "CONCEPT_NAME" : "Gestation period, 26 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48688005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432430, + "CONCEPT_NAME" : "Gestation period, 27 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46906003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444461, + "CONCEPT_NAME" : "Gestation period, 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90797000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444417, + "CONCEPT_NAME" : "Gestation period, 29 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45139008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434484, + "CONCEPT_NAME" : "Gestation period, 30 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "71355009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433864, + "CONCEPT_NAME" : "Gestation period, 31 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64920003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442558, + "CONCEPT_NAME" : "Gestation period, 32 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7707000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441678, + "CONCEPT_NAME" : "Gestation period, 33 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "78395001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443874, + "CONCEPT_NAME" : "Gestation period, 34 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13763000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444267, + "CONCEPT_NAME" : "Gestation period, 35 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84132007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438543, + "CONCEPT_NAME" : "Gestation period, 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57907009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442355, + "CONCEPT_NAME" : "Gestation period, 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43697006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443871, + "CONCEPT_NAME" : "Gestation period, 38 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13798002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435655, + "CONCEPT_NAME" : "Gestation period, 39 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80487005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442769, + "CONCEPT_NAME" : "Gestation period, 41 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63503002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444067, + "CONCEPT_NAME" : "Gestation period, 42 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36428009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4195157, + "CONCEPT_NAME" : "Gestation period, 4 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "44398003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4290009, + "CONCEPT_NAME" : "Gestation period, 5 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "37005007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4313026, + "CONCEPT_NAME" : "Gestation period, 6 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86801005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4270513, + "CONCEPT_NAME" : "Gestation period, 7 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63110000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4132434, + "CONCEPT_NAME" : "Gestation period, 8 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26690008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4245908, + "CONCEPT_NAME" : "Gestation period, 9 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "931004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 762907, + "CONCEPT_NAME" : "Gestation period greater than or equal to 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "433601000124106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336958, + "CONCEPT_NAME" : "Term pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87527008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4180111, + "CONCEPT_NAME" : "Third trimester pregnancy less than 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429240000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444098, + "CONCEPT_NAME" : "Gestation period, 40 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46230007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 66, + "name" : "Gestational age (GEST) gt than 4 week", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4015296, + "CONCEPT_NAME" : "Antenatal 12 weeks examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169712008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014149, + "CONCEPT_NAME" : "Antenatal 16 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169713003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014150, + "CONCEPT_NAME" : "Antenatal 20 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169714009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808979, + "CONCEPT_NAME" : "Antenatal 22 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861281000000109", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015141, + "CONCEPT_NAME" : "Antenatal 24 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169715005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808980, + "CONCEPT_NAME" : "Antenatal 25 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861301000000105", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014151, + "CONCEPT_NAME" : "Antenatal 30 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169717002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808981, + "CONCEPT_NAME" : "Antenatal 31 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861321000000101", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015297, + "CONCEPT_NAME" : "Antenatal 32 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169718007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015298, + "CONCEPT_NAME" : "Antenatal 34 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169719004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014434, + "CONCEPT_NAME" : "Antenatal 35 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169720005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015299, + "CONCEPT_NAME" : "Antenatal 36 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169721009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015142, + "CONCEPT_NAME" : "Antenatal 37 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169722002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014152, + "CONCEPT_NAME" : "Antenatal 38 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169723007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015300, + "CONCEPT_NAME" : "Antenatal 39 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169724001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015301, + "CONCEPT_NAME" : "Antenatal 40 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169725000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015302, + "CONCEPT_NAME" : "Antenatal 41 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169726004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014435, + "CONCEPT_NAME" : "Antenatal 42 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169727008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4178165, + "CONCEPT_NAME" : "Gestation 14 - 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428567001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181468, + "CONCEPT_NAME" : "Gestation 9- 13 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428930004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181162, + "CONCEPT_NAME" : "Gestation greater than 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429715006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4324063, + "CONCEPT_NAME" : "Gestation less than 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428566005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438542, + "CONCEPT_NAME" : "Gestation less than 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313178001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45770261, + "CONCEPT_NAME" : "Gestation less than 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "925561000000100", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4322726, + "CONCEPT_NAME" : "Gestation less than 9 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428058009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4242241, + "CONCEPT_NAME" : "Gestation period, 10 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "38039008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4174506, + "CONCEPT_NAME" : "Gestation period, 11 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "50367001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4197245, + "CONCEPT_NAME" : "Gestation period, 12 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "79992004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4266517, + "CONCEPT_NAME" : "Gestation period, 13 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "62333002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4248725, + "CONCEPT_NAME" : "Gestation period, 14 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72846000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4283690, + "CONCEPT_NAME" : "Gestation period, 15 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6678005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4049621, + "CONCEPT_NAME" : "Gestation period, 16 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15633004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4277749, + "CONCEPT_NAME" : "Gestation period, 17 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65683006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4097608, + "CONCEPT_NAME" : "Gestation period, 18 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25026004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181751, + "CONCEPT_NAME" : "Gestation period, 19 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54318006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4051642, + "CONCEPT_NAME" : "Gestation period, 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "23464008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4185780, + "CONCEPT_NAME" : "Gestation period, 21 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "41438001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4274955, + "CONCEPT_NAME" : "Gestation period, 22 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65035007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336226, + "CONCEPT_NAME" : "Gestation period, 23 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86883006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439922, + "CONCEPT_NAME" : "Gestation period, 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313179009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435640, + "CONCEPT_NAME" : "Gestation period, 25 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72544005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444023, + "CONCEPT_NAME" : "Gestation period, 26 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48688005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432430, + "CONCEPT_NAME" : "Gestation period, 27 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46906003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444461, + "CONCEPT_NAME" : "Gestation period, 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90797000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444417, + "CONCEPT_NAME" : "Gestation period, 29 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45139008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434484, + "CONCEPT_NAME" : "Gestation period, 30 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "71355009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433864, + "CONCEPT_NAME" : "Gestation period, 31 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64920003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442558, + "CONCEPT_NAME" : "Gestation period, 32 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7707000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441678, + "CONCEPT_NAME" : "Gestation period, 33 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "78395001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443874, + "CONCEPT_NAME" : "Gestation period, 34 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13763000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444267, + "CONCEPT_NAME" : "Gestation period, 35 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84132007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438543, + "CONCEPT_NAME" : "Gestation period, 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57907009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442355, + "CONCEPT_NAME" : "Gestation period, 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43697006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443871, + "CONCEPT_NAME" : "Gestation period, 38 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13798002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435655, + "CONCEPT_NAME" : "Gestation period, 39 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80487005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442769, + "CONCEPT_NAME" : "Gestation period, 41 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63503002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444067, + "CONCEPT_NAME" : "Gestation period, 42 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36428009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4290009, + "CONCEPT_NAME" : "Gestation period, 5 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "37005007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4313026, + "CONCEPT_NAME" : "Gestation period, 6 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86801005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4270513, + "CONCEPT_NAME" : "Gestation period, 7 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63110000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4132434, + "CONCEPT_NAME" : "Gestation period, 8 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26690008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4245908, + "CONCEPT_NAME" : "Gestation period, 9 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "931004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 762907, + "CONCEPT_NAME" : "Gestation period greater than or equal to 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "433601000124106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336958, + "CONCEPT_NAME" : "Term pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87527008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4180111, + "CONCEPT_NAME" : "Third trimester pregnancy less than 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429240000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444098, + "CONCEPT_NAME" : "Gestation period, 40 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46230007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 67, + "name" : "Gestational age (GEST) gt than 5 week", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4015296, + "CONCEPT_NAME" : "Antenatal 12 weeks examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169712008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014149, + "CONCEPT_NAME" : "Antenatal 16 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169713003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014150, + "CONCEPT_NAME" : "Antenatal 20 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169714009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808979, + "CONCEPT_NAME" : "Antenatal 22 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861281000000109", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015141, + "CONCEPT_NAME" : "Antenatal 24 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169715005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808980, + "CONCEPT_NAME" : "Antenatal 25 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861301000000105", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014151, + "CONCEPT_NAME" : "Antenatal 30 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169717002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808981, + "CONCEPT_NAME" : "Antenatal 31 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861321000000101", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015297, + "CONCEPT_NAME" : "Antenatal 32 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169718007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015298, + "CONCEPT_NAME" : "Antenatal 34 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169719004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014434, + "CONCEPT_NAME" : "Antenatal 35 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169720005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015299, + "CONCEPT_NAME" : "Antenatal 36 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169721009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015142, + "CONCEPT_NAME" : "Antenatal 37 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169722002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014152, + "CONCEPT_NAME" : "Antenatal 38 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169723007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015300, + "CONCEPT_NAME" : "Antenatal 39 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169724001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015301, + "CONCEPT_NAME" : "Antenatal 40 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169725000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015302, + "CONCEPT_NAME" : "Antenatal 41 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169726004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014435, + "CONCEPT_NAME" : "Antenatal 42 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169727008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4178165, + "CONCEPT_NAME" : "Gestation 14 - 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428567001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181468, + "CONCEPT_NAME" : "Gestation 9- 13 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428930004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181162, + "CONCEPT_NAME" : "Gestation greater than 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429715006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4324063, + "CONCEPT_NAME" : "Gestation less than 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428566005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438542, + "CONCEPT_NAME" : "Gestation less than 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313178001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45770261, + "CONCEPT_NAME" : "Gestation less than 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "925561000000100", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4322726, + "CONCEPT_NAME" : "Gestation less than 9 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428058009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4242241, + "CONCEPT_NAME" : "Gestation period, 10 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "38039008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4174506, + "CONCEPT_NAME" : "Gestation period, 11 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "50367001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4197245, + "CONCEPT_NAME" : "Gestation period, 12 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "79992004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4266517, + "CONCEPT_NAME" : "Gestation period, 13 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "62333002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4248725, + "CONCEPT_NAME" : "Gestation period, 14 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72846000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4283690, + "CONCEPT_NAME" : "Gestation period, 15 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6678005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4049621, + "CONCEPT_NAME" : "Gestation period, 16 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15633004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4277749, + "CONCEPT_NAME" : "Gestation period, 17 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65683006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4097608, + "CONCEPT_NAME" : "Gestation period, 18 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25026004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181751, + "CONCEPT_NAME" : "Gestation period, 19 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54318006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4051642, + "CONCEPT_NAME" : "Gestation period, 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "23464008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4185780, + "CONCEPT_NAME" : "Gestation period, 21 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "41438001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4274955, + "CONCEPT_NAME" : "Gestation period, 22 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65035007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336226, + "CONCEPT_NAME" : "Gestation period, 23 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86883006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439922, + "CONCEPT_NAME" : "Gestation period, 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313179009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435640, + "CONCEPT_NAME" : "Gestation period, 25 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72544005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444023, + "CONCEPT_NAME" : "Gestation period, 26 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48688005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432430, + "CONCEPT_NAME" : "Gestation period, 27 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46906003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444461, + "CONCEPT_NAME" : "Gestation period, 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90797000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444417, + "CONCEPT_NAME" : "Gestation period, 29 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45139008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434484, + "CONCEPT_NAME" : "Gestation period, 30 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "71355009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433864, + "CONCEPT_NAME" : "Gestation period, 31 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64920003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442558, + "CONCEPT_NAME" : "Gestation period, 32 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7707000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441678, + "CONCEPT_NAME" : "Gestation period, 33 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "78395001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443874, + "CONCEPT_NAME" : "Gestation period, 34 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13763000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444267, + "CONCEPT_NAME" : "Gestation period, 35 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84132007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438543, + "CONCEPT_NAME" : "Gestation period, 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57907009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442355, + "CONCEPT_NAME" : "Gestation period, 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43697006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443871, + "CONCEPT_NAME" : "Gestation period, 38 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13798002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435655, + "CONCEPT_NAME" : "Gestation period, 39 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80487005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442769, + "CONCEPT_NAME" : "Gestation period, 41 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63503002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444067, + "CONCEPT_NAME" : "Gestation period, 42 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36428009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4313026, + "CONCEPT_NAME" : "Gestation period, 6 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86801005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4270513, + "CONCEPT_NAME" : "Gestation period, 7 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63110000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4132434, + "CONCEPT_NAME" : "Gestation period, 8 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26690008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4245908, + "CONCEPT_NAME" : "Gestation period, 9 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "931004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 762907, + "CONCEPT_NAME" : "Gestation period greater than or equal to 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "433601000124106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336958, + "CONCEPT_NAME" : "Term pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87527008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4180111, + "CONCEPT_NAME" : "Third trimester pregnancy less than 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429240000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444098, + "CONCEPT_NAME" : "Gestation period, 40 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46230007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 68, + "name" : "Gestational age (GEST) gt than 6 week", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4015296, + "CONCEPT_NAME" : "Antenatal 12 weeks examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169712008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014149, + "CONCEPT_NAME" : "Antenatal 16 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169713003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014150, + "CONCEPT_NAME" : "Antenatal 20 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169714009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808979, + "CONCEPT_NAME" : "Antenatal 22 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861281000000109", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015141, + "CONCEPT_NAME" : "Antenatal 24 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169715005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808980, + "CONCEPT_NAME" : "Antenatal 25 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861301000000105", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014151, + "CONCEPT_NAME" : "Antenatal 30 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169717002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808981, + "CONCEPT_NAME" : "Antenatal 31 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861321000000101", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015297, + "CONCEPT_NAME" : "Antenatal 32 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169718007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015298, + "CONCEPT_NAME" : "Antenatal 34 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169719004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014434, + "CONCEPT_NAME" : "Antenatal 35 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169720005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015299, + "CONCEPT_NAME" : "Antenatal 36 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169721009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015142, + "CONCEPT_NAME" : "Antenatal 37 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169722002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014152, + "CONCEPT_NAME" : "Antenatal 38 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169723007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015300, + "CONCEPT_NAME" : "Antenatal 39 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169724001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015301, + "CONCEPT_NAME" : "Antenatal 40 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169725000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015302, + "CONCEPT_NAME" : "Antenatal 41 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169726004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014435, + "CONCEPT_NAME" : "Antenatal 42 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169727008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4178165, + "CONCEPT_NAME" : "Gestation 14 - 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428567001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181468, + "CONCEPT_NAME" : "Gestation 9- 13 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428930004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181162, + "CONCEPT_NAME" : "Gestation greater than 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429715006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4324063, + "CONCEPT_NAME" : "Gestation less than 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428566005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438542, + "CONCEPT_NAME" : "Gestation less than 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313178001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45770261, + "CONCEPT_NAME" : "Gestation less than 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "925561000000100", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4322726, + "CONCEPT_NAME" : "Gestation less than 9 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428058009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4242241, + "CONCEPT_NAME" : "Gestation period, 10 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "38039008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4174506, + "CONCEPT_NAME" : "Gestation period, 11 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "50367001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4197245, + "CONCEPT_NAME" : "Gestation period, 12 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "79992004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4266517, + "CONCEPT_NAME" : "Gestation period, 13 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "62333002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4248725, + "CONCEPT_NAME" : "Gestation period, 14 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72846000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4283690, + "CONCEPT_NAME" : "Gestation period, 15 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6678005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4049621, + "CONCEPT_NAME" : "Gestation period, 16 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15633004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4277749, + "CONCEPT_NAME" : "Gestation period, 17 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65683006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4097608, + "CONCEPT_NAME" : "Gestation period, 18 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25026004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181751, + "CONCEPT_NAME" : "Gestation period, 19 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54318006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4051642, + "CONCEPT_NAME" : "Gestation period, 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "23464008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4185780, + "CONCEPT_NAME" : "Gestation period, 21 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "41438001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4274955, + "CONCEPT_NAME" : "Gestation period, 22 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65035007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336226, + "CONCEPT_NAME" : "Gestation period, 23 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86883006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439922, + "CONCEPT_NAME" : "Gestation period, 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313179009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435640, + "CONCEPT_NAME" : "Gestation period, 25 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72544005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444023, + "CONCEPT_NAME" : "Gestation period, 26 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48688005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432430, + "CONCEPT_NAME" : "Gestation period, 27 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46906003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444461, + "CONCEPT_NAME" : "Gestation period, 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90797000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444417, + "CONCEPT_NAME" : "Gestation period, 29 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45139008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434484, + "CONCEPT_NAME" : "Gestation period, 30 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "71355009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433864, + "CONCEPT_NAME" : "Gestation period, 31 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64920003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442558, + "CONCEPT_NAME" : "Gestation period, 32 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7707000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441678, + "CONCEPT_NAME" : "Gestation period, 33 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "78395001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443874, + "CONCEPT_NAME" : "Gestation period, 34 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13763000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444267, + "CONCEPT_NAME" : "Gestation period, 35 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84132007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438543, + "CONCEPT_NAME" : "Gestation period, 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57907009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442355, + "CONCEPT_NAME" : "Gestation period, 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43697006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443871, + "CONCEPT_NAME" : "Gestation period, 38 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13798002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435655, + "CONCEPT_NAME" : "Gestation period, 39 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80487005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442769, + "CONCEPT_NAME" : "Gestation period, 41 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63503002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444067, + "CONCEPT_NAME" : "Gestation period, 42 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36428009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4270513, + "CONCEPT_NAME" : "Gestation period, 7 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63110000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4132434, + "CONCEPT_NAME" : "Gestation period, 8 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26690008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4245908, + "CONCEPT_NAME" : "Gestation period, 9 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "931004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 762907, + "CONCEPT_NAME" : "Gestation period greater than or equal to 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "433601000124106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336958, + "CONCEPT_NAME" : "Term pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87527008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4180111, + "CONCEPT_NAME" : "Third trimester pregnancy less than 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429240000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444098, + "CONCEPT_NAME" : "Gestation period, 40 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46230007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 69, + "name" : "Gestational age (GEST) gt than 7 week", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4015296, + "CONCEPT_NAME" : "Antenatal 12 weeks examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169712008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014149, + "CONCEPT_NAME" : "Antenatal 16 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169713003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014150, + "CONCEPT_NAME" : "Antenatal 20 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169714009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808979, + "CONCEPT_NAME" : "Antenatal 22 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861281000000109", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015141, + "CONCEPT_NAME" : "Antenatal 24 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169715005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808980, + "CONCEPT_NAME" : "Antenatal 25 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861301000000105", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014151, + "CONCEPT_NAME" : "Antenatal 30 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169717002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808981, + "CONCEPT_NAME" : "Antenatal 31 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861321000000101", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015297, + "CONCEPT_NAME" : "Antenatal 32 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169718007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015298, + "CONCEPT_NAME" : "Antenatal 34 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169719004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014434, + "CONCEPT_NAME" : "Antenatal 35 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169720005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015299, + "CONCEPT_NAME" : "Antenatal 36 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169721009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015142, + "CONCEPT_NAME" : "Antenatal 37 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169722002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014152, + "CONCEPT_NAME" : "Antenatal 38 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169723007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015300, + "CONCEPT_NAME" : "Antenatal 39 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169724001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015301, + "CONCEPT_NAME" : "Antenatal 40 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169725000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015302, + "CONCEPT_NAME" : "Antenatal 41 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169726004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014435, + "CONCEPT_NAME" : "Antenatal 42 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169727008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4178165, + "CONCEPT_NAME" : "Gestation 14 - 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428567001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181468, + "CONCEPT_NAME" : "Gestation 9- 13 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428930004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181162, + "CONCEPT_NAME" : "Gestation greater than 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429715006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4324063, + "CONCEPT_NAME" : "Gestation less than 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428566005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438542, + "CONCEPT_NAME" : "Gestation less than 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313178001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45770261, + "CONCEPT_NAME" : "Gestation less than 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "925561000000100", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4322726, + "CONCEPT_NAME" : "Gestation less than 9 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428058009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4242241, + "CONCEPT_NAME" : "Gestation period, 10 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "38039008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4174506, + "CONCEPT_NAME" : "Gestation period, 11 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "50367001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4197245, + "CONCEPT_NAME" : "Gestation period, 12 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "79992004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4266517, + "CONCEPT_NAME" : "Gestation period, 13 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "62333002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4248725, + "CONCEPT_NAME" : "Gestation period, 14 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72846000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4283690, + "CONCEPT_NAME" : "Gestation period, 15 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6678005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4049621, + "CONCEPT_NAME" : "Gestation period, 16 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15633004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4277749, + "CONCEPT_NAME" : "Gestation period, 17 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65683006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4097608, + "CONCEPT_NAME" : "Gestation period, 18 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25026004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181751, + "CONCEPT_NAME" : "Gestation period, 19 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54318006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4051642, + "CONCEPT_NAME" : "Gestation period, 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "23464008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4185780, + "CONCEPT_NAME" : "Gestation period, 21 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "41438001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4274955, + "CONCEPT_NAME" : "Gestation period, 22 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65035007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336226, + "CONCEPT_NAME" : "Gestation period, 23 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86883006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439922, + "CONCEPT_NAME" : "Gestation period, 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313179009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435640, + "CONCEPT_NAME" : "Gestation period, 25 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72544005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444023, + "CONCEPT_NAME" : "Gestation period, 26 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48688005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432430, + "CONCEPT_NAME" : "Gestation period, 27 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46906003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444461, + "CONCEPT_NAME" : "Gestation period, 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90797000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444417, + "CONCEPT_NAME" : "Gestation period, 29 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45139008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434484, + "CONCEPT_NAME" : "Gestation period, 30 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "71355009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433864, + "CONCEPT_NAME" : "Gestation period, 31 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64920003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442558, + "CONCEPT_NAME" : "Gestation period, 32 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7707000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441678, + "CONCEPT_NAME" : "Gestation period, 33 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "78395001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443874, + "CONCEPT_NAME" : "Gestation period, 34 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13763000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444267, + "CONCEPT_NAME" : "Gestation period, 35 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84132007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438543, + "CONCEPT_NAME" : "Gestation period, 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57907009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442355, + "CONCEPT_NAME" : "Gestation period, 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43697006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443871, + "CONCEPT_NAME" : "Gestation period, 38 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13798002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435655, + "CONCEPT_NAME" : "Gestation period, 39 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80487005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442769, + "CONCEPT_NAME" : "Gestation period, 41 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63503002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444067, + "CONCEPT_NAME" : "Gestation period, 42 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36428009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4132434, + "CONCEPT_NAME" : "Gestation period, 8 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26690008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4245908, + "CONCEPT_NAME" : "Gestation period, 9 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "931004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 762907, + "CONCEPT_NAME" : "Gestation period greater than or equal to 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "433601000124106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336958, + "CONCEPT_NAME" : "Term pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87527008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4180111, + "CONCEPT_NAME" : "Third trimester pregnancy less than 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429240000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444098, + "CONCEPT_NAME" : "Gestation period, 40 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46230007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 70, + "name" : "Gestational age (GEST) gt than 8 week", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4015296, + "CONCEPT_NAME" : "Antenatal 12 weeks examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169712008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014149, + "CONCEPT_NAME" : "Antenatal 16 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169713003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014150, + "CONCEPT_NAME" : "Antenatal 20 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169714009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808979, + "CONCEPT_NAME" : "Antenatal 22 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861281000000109", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015141, + "CONCEPT_NAME" : "Antenatal 24 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169715005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808980, + "CONCEPT_NAME" : "Antenatal 25 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861301000000105", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014151, + "CONCEPT_NAME" : "Antenatal 30 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169717002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808981, + "CONCEPT_NAME" : "Antenatal 31 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861321000000101", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015297, + "CONCEPT_NAME" : "Antenatal 32 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169718007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015298, + "CONCEPT_NAME" : "Antenatal 34 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169719004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014434, + "CONCEPT_NAME" : "Antenatal 35 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169720005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015299, + "CONCEPT_NAME" : "Antenatal 36 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169721009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015142, + "CONCEPT_NAME" : "Antenatal 37 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169722002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014152, + "CONCEPT_NAME" : "Antenatal 38 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169723007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015300, + "CONCEPT_NAME" : "Antenatal 39 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169724001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015301, + "CONCEPT_NAME" : "Antenatal 40 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169725000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015302, + "CONCEPT_NAME" : "Antenatal 41 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169726004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014435, + "CONCEPT_NAME" : "Antenatal 42 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169727008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4178165, + "CONCEPT_NAME" : "Gestation 14 - 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428567001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181468, + "CONCEPT_NAME" : "Gestation 9- 13 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428930004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181162, + "CONCEPT_NAME" : "Gestation greater than 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429715006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4324063, + "CONCEPT_NAME" : "Gestation less than 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428566005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438542, + "CONCEPT_NAME" : "Gestation less than 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313178001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45770261, + "CONCEPT_NAME" : "Gestation less than 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "925561000000100", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4242241, + "CONCEPT_NAME" : "Gestation period, 10 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "38039008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4174506, + "CONCEPT_NAME" : "Gestation period, 11 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "50367001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4197245, + "CONCEPT_NAME" : "Gestation period, 12 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "79992004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4266517, + "CONCEPT_NAME" : "Gestation period, 13 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "62333002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4248725, + "CONCEPT_NAME" : "Gestation period, 14 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72846000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4283690, + "CONCEPT_NAME" : "Gestation period, 15 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6678005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4049621, + "CONCEPT_NAME" : "Gestation period, 16 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15633004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4277749, + "CONCEPT_NAME" : "Gestation period, 17 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65683006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4097608, + "CONCEPT_NAME" : "Gestation period, 18 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25026004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181751, + "CONCEPT_NAME" : "Gestation period, 19 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54318006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4051642, + "CONCEPT_NAME" : "Gestation period, 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "23464008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4185780, + "CONCEPT_NAME" : "Gestation period, 21 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "41438001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4274955, + "CONCEPT_NAME" : "Gestation period, 22 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65035007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336226, + "CONCEPT_NAME" : "Gestation period, 23 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86883006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439922, + "CONCEPT_NAME" : "Gestation period, 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313179009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435640, + "CONCEPT_NAME" : "Gestation period, 25 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72544005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444023, + "CONCEPT_NAME" : "Gestation period, 26 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48688005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432430, + "CONCEPT_NAME" : "Gestation period, 27 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46906003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444461, + "CONCEPT_NAME" : "Gestation period, 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90797000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444417, + "CONCEPT_NAME" : "Gestation period, 29 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45139008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434484, + "CONCEPT_NAME" : "Gestation period, 30 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "71355009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433864, + "CONCEPT_NAME" : "Gestation period, 31 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64920003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442558, + "CONCEPT_NAME" : "Gestation period, 32 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7707000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441678, + "CONCEPT_NAME" : "Gestation period, 33 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "78395001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443874, + "CONCEPT_NAME" : "Gestation period, 34 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13763000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444267, + "CONCEPT_NAME" : "Gestation period, 35 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84132007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438543, + "CONCEPT_NAME" : "Gestation period, 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57907009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442355, + "CONCEPT_NAME" : "Gestation period, 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43697006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443871, + "CONCEPT_NAME" : "Gestation period, 38 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13798002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435655, + "CONCEPT_NAME" : "Gestation period, 39 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80487005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442769, + "CONCEPT_NAME" : "Gestation period, 41 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63503002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444067, + "CONCEPT_NAME" : "Gestation period, 42 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36428009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4245908, + "CONCEPT_NAME" : "Gestation period, 9 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "931004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 762907, + "CONCEPT_NAME" : "Gestation period greater than or equal to 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "433601000124106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336958, + "CONCEPT_NAME" : "Term pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87527008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4180111, + "CONCEPT_NAME" : "Third trimester pregnancy less than 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429240000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444098, + "CONCEPT_NAME" : "Gestation period, 40 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46230007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 71, + "name" : "Gestational age (GEST) gt than 9 week", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4015296, + "CONCEPT_NAME" : "Antenatal 12 weeks examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169712008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014149, + "CONCEPT_NAME" : "Antenatal 16 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169713003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014150, + "CONCEPT_NAME" : "Antenatal 20 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169714009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808979, + "CONCEPT_NAME" : "Antenatal 22 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861281000000109", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015141, + "CONCEPT_NAME" : "Antenatal 24 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169715005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808980, + "CONCEPT_NAME" : "Antenatal 25 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861301000000105", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014151, + "CONCEPT_NAME" : "Antenatal 30 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169717002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808981, + "CONCEPT_NAME" : "Antenatal 31 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861321000000101", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015297, + "CONCEPT_NAME" : "Antenatal 32 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169718007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015298, + "CONCEPT_NAME" : "Antenatal 34 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169719004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014434, + "CONCEPT_NAME" : "Antenatal 35 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169720005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015299, + "CONCEPT_NAME" : "Antenatal 36 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169721009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015142, + "CONCEPT_NAME" : "Antenatal 37 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169722002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014152, + "CONCEPT_NAME" : "Antenatal 38 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169723007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015300, + "CONCEPT_NAME" : "Antenatal 39 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169724001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015301, + "CONCEPT_NAME" : "Antenatal 40 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169725000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015302, + "CONCEPT_NAME" : "Antenatal 41 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169726004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014435, + "CONCEPT_NAME" : "Antenatal 42 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169727008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4178165, + "CONCEPT_NAME" : "Gestation 14 - 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428567001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181468, + "CONCEPT_NAME" : "Gestation 9- 13 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428930004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181162, + "CONCEPT_NAME" : "Gestation greater than 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429715006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4324063, + "CONCEPT_NAME" : "Gestation less than 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428566005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438542, + "CONCEPT_NAME" : "Gestation less than 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313178001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45770261, + "CONCEPT_NAME" : "Gestation less than 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "925561000000100", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4242241, + "CONCEPT_NAME" : "Gestation period, 10 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "38039008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4174506, + "CONCEPT_NAME" : "Gestation period, 11 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "50367001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4197245, + "CONCEPT_NAME" : "Gestation period, 12 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "79992004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4266517, + "CONCEPT_NAME" : "Gestation period, 13 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "62333002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4248725, + "CONCEPT_NAME" : "Gestation period, 14 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72846000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4283690, + "CONCEPT_NAME" : "Gestation period, 15 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6678005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4049621, + "CONCEPT_NAME" : "Gestation period, 16 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15633004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4277749, + "CONCEPT_NAME" : "Gestation period, 17 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65683006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4097608, + "CONCEPT_NAME" : "Gestation period, 18 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25026004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181751, + "CONCEPT_NAME" : "Gestation period, 19 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54318006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4051642, + "CONCEPT_NAME" : "Gestation period, 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "23464008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4185780, + "CONCEPT_NAME" : "Gestation period, 21 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "41438001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4274955, + "CONCEPT_NAME" : "Gestation period, 22 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65035007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336226, + "CONCEPT_NAME" : "Gestation period, 23 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86883006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439922, + "CONCEPT_NAME" : "Gestation period, 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313179009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435640, + "CONCEPT_NAME" : "Gestation period, 25 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72544005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444023, + "CONCEPT_NAME" : "Gestation period, 26 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48688005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432430, + "CONCEPT_NAME" : "Gestation period, 27 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46906003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444461, + "CONCEPT_NAME" : "Gestation period, 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90797000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444417, + "CONCEPT_NAME" : "Gestation period, 29 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45139008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434484, + "CONCEPT_NAME" : "Gestation period, 30 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "71355009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433864, + "CONCEPT_NAME" : "Gestation period, 31 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64920003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442558, + "CONCEPT_NAME" : "Gestation period, 32 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7707000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441678, + "CONCEPT_NAME" : "Gestation period, 33 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "78395001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443874, + "CONCEPT_NAME" : "Gestation period, 34 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13763000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444267, + "CONCEPT_NAME" : "Gestation period, 35 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84132007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438543, + "CONCEPT_NAME" : "Gestation period, 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57907009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442355, + "CONCEPT_NAME" : "Gestation period, 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43697006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443871, + "CONCEPT_NAME" : "Gestation period, 38 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13798002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435655, + "CONCEPT_NAME" : "Gestation period, 39 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80487005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442769, + "CONCEPT_NAME" : "Gestation period, 41 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63503002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444067, + "CONCEPT_NAME" : "Gestation period, 42 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36428009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 762907, + "CONCEPT_NAME" : "Gestation period greater than or equal to 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "433601000124106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336958, + "CONCEPT_NAME" : "Term pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87527008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4180111, + "CONCEPT_NAME" : "Third trimester pregnancy less than 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429240000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444098, + "CONCEPT_NAME" : "Gestation period, 40 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46230007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 72, + "name" : "Gestational age (GEST) gt than 10 week", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4015296, + "CONCEPT_NAME" : "Antenatal 12 weeks examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169712008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014149, + "CONCEPT_NAME" : "Antenatal 16 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169713003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014150, + "CONCEPT_NAME" : "Antenatal 20 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169714009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808979, + "CONCEPT_NAME" : "Antenatal 22 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861281000000109", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015141, + "CONCEPT_NAME" : "Antenatal 24 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169715005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808980, + "CONCEPT_NAME" : "Antenatal 25 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861301000000105", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014151, + "CONCEPT_NAME" : "Antenatal 30 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169717002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808981, + "CONCEPT_NAME" : "Antenatal 31 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861321000000101", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015297, + "CONCEPT_NAME" : "Antenatal 32 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169718007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015298, + "CONCEPT_NAME" : "Antenatal 34 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169719004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014434, + "CONCEPT_NAME" : "Antenatal 35 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169720005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015299, + "CONCEPT_NAME" : "Antenatal 36 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169721009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015142, + "CONCEPT_NAME" : "Antenatal 37 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169722002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014152, + "CONCEPT_NAME" : "Antenatal 38 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169723007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015300, + "CONCEPT_NAME" : "Antenatal 39 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169724001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015301, + "CONCEPT_NAME" : "Antenatal 40 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169725000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015302, + "CONCEPT_NAME" : "Antenatal 41 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169726004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014435, + "CONCEPT_NAME" : "Antenatal 42 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169727008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4178165, + "CONCEPT_NAME" : "Gestation 14 - 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428567001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181468, + "CONCEPT_NAME" : "Gestation 9- 13 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428930004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181162, + "CONCEPT_NAME" : "Gestation greater than 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429715006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4324063, + "CONCEPT_NAME" : "Gestation less than 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428566005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438542, + "CONCEPT_NAME" : "Gestation less than 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313178001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45770261, + "CONCEPT_NAME" : "Gestation less than 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "925561000000100", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4174506, + "CONCEPT_NAME" : "Gestation period, 11 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "50367001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4197245, + "CONCEPT_NAME" : "Gestation period, 12 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "79992004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4266517, + "CONCEPT_NAME" : "Gestation period, 13 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "62333002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4248725, + "CONCEPT_NAME" : "Gestation period, 14 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72846000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4283690, + "CONCEPT_NAME" : "Gestation period, 15 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6678005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4049621, + "CONCEPT_NAME" : "Gestation period, 16 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15633004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4277749, + "CONCEPT_NAME" : "Gestation period, 17 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65683006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4097608, + "CONCEPT_NAME" : "Gestation period, 18 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25026004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181751, + "CONCEPT_NAME" : "Gestation period, 19 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54318006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4051642, + "CONCEPT_NAME" : "Gestation period, 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "23464008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4185780, + "CONCEPT_NAME" : "Gestation period, 21 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "41438001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4274955, + "CONCEPT_NAME" : "Gestation period, 22 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65035007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336226, + "CONCEPT_NAME" : "Gestation period, 23 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86883006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439922, + "CONCEPT_NAME" : "Gestation period, 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313179009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435640, + "CONCEPT_NAME" : "Gestation period, 25 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72544005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444023, + "CONCEPT_NAME" : "Gestation period, 26 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48688005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432430, + "CONCEPT_NAME" : "Gestation period, 27 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46906003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444461, + "CONCEPT_NAME" : "Gestation period, 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90797000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444417, + "CONCEPT_NAME" : "Gestation period, 29 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45139008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434484, + "CONCEPT_NAME" : "Gestation period, 30 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "71355009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433864, + "CONCEPT_NAME" : "Gestation period, 31 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64920003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442558, + "CONCEPT_NAME" : "Gestation period, 32 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7707000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441678, + "CONCEPT_NAME" : "Gestation period, 33 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "78395001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443874, + "CONCEPT_NAME" : "Gestation period, 34 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13763000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444267, + "CONCEPT_NAME" : "Gestation period, 35 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84132007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438543, + "CONCEPT_NAME" : "Gestation period, 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57907009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442355, + "CONCEPT_NAME" : "Gestation period, 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43697006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443871, + "CONCEPT_NAME" : "Gestation period, 38 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13798002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435655, + "CONCEPT_NAME" : "Gestation period, 39 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80487005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442769, + "CONCEPT_NAME" : "Gestation period, 41 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63503002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444067, + "CONCEPT_NAME" : "Gestation period, 42 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36428009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 762907, + "CONCEPT_NAME" : "Gestation period greater than or equal to 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "433601000124106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336958, + "CONCEPT_NAME" : "Term pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87527008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4180111, + "CONCEPT_NAME" : "Third trimester pregnancy less than 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429240000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444098, + "CONCEPT_NAME" : "Gestation period, 40 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46230007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 73, + "name" : "Gestational age (GEST) gt than 11 week", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4015296, + "CONCEPT_NAME" : "Antenatal 12 weeks examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169712008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014149, + "CONCEPT_NAME" : "Antenatal 16 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169713003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014150, + "CONCEPT_NAME" : "Antenatal 20 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169714009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808979, + "CONCEPT_NAME" : "Antenatal 22 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861281000000109", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015141, + "CONCEPT_NAME" : "Antenatal 24 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169715005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808980, + "CONCEPT_NAME" : "Antenatal 25 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861301000000105", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014151, + "CONCEPT_NAME" : "Antenatal 30 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169717002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808981, + "CONCEPT_NAME" : "Antenatal 31 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861321000000101", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015297, + "CONCEPT_NAME" : "Antenatal 32 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169718007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015298, + "CONCEPT_NAME" : "Antenatal 34 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169719004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014434, + "CONCEPT_NAME" : "Antenatal 35 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169720005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015299, + "CONCEPT_NAME" : "Antenatal 36 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169721009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015142, + "CONCEPT_NAME" : "Antenatal 37 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169722002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014152, + "CONCEPT_NAME" : "Antenatal 38 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169723007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015300, + "CONCEPT_NAME" : "Antenatal 39 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169724001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015301, + "CONCEPT_NAME" : "Antenatal 40 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169725000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015302, + "CONCEPT_NAME" : "Antenatal 41 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169726004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014435, + "CONCEPT_NAME" : "Antenatal 42 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169727008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4178165, + "CONCEPT_NAME" : "Gestation 14 - 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428567001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181468, + "CONCEPT_NAME" : "Gestation 9- 13 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428930004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181162, + "CONCEPT_NAME" : "Gestation greater than 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429715006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4324063, + "CONCEPT_NAME" : "Gestation less than 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428566005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438542, + "CONCEPT_NAME" : "Gestation less than 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313178001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45770261, + "CONCEPT_NAME" : "Gestation less than 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "925561000000100", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4197245, + "CONCEPT_NAME" : "Gestation period, 12 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "79992004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4266517, + "CONCEPT_NAME" : "Gestation period, 13 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "62333002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4248725, + "CONCEPT_NAME" : "Gestation period, 14 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72846000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4283690, + "CONCEPT_NAME" : "Gestation period, 15 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6678005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4049621, + "CONCEPT_NAME" : "Gestation period, 16 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15633004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4277749, + "CONCEPT_NAME" : "Gestation period, 17 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65683006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4097608, + "CONCEPT_NAME" : "Gestation period, 18 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25026004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181751, + "CONCEPT_NAME" : "Gestation period, 19 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54318006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4051642, + "CONCEPT_NAME" : "Gestation period, 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "23464008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4185780, + "CONCEPT_NAME" : "Gestation period, 21 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "41438001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4274955, + "CONCEPT_NAME" : "Gestation period, 22 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65035007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336226, + "CONCEPT_NAME" : "Gestation period, 23 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86883006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439922, + "CONCEPT_NAME" : "Gestation period, 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313179009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435640, + "CONCEPT_NAME" : "Gestation period, 25 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72544005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444023, + "CONCEPT_NAME" : "Gestation period, 26 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48688005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432430, + "CONCEPT_NAME" : "Gestation period, 27 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46906003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444461, + "CONCEPT_NAME" : "Gestation period, 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90797000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444417, + "CONCEPT_NAME" : "Gestation period, 29 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45139008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434484, + "CONCEPT_NAME" : "Gestation period, 30 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "71355009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433864, + "CONCEPT_NAME" : "Gestation period, 31 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64920003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442558, + "CONCEPT_NAME" : "Gestation period, 32 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7707000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441678, + "CONCEPT_NAME" : "Gestation period, 33 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "78395001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443874, + "CONCEPT_NAME" : "Gestation period, 34 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13763000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444267, + "CONCEPT_NAME" : "Gestation period, 35 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84132007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438543, + "CONCEPT_NAME" : "Gestation period, 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57907009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442355, + "CONCEPT_NAME" : "Gestation period, 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43697006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443871, + "CONCEPT_NAME" : "Gestation period, 38 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13798002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435655, + "CONCEPT_NAME" : "Gestation period, 39 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80487005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442769, + "CONCEPT_NAME" : "Gestation period, 41 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63503002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444067, + "CONCEPT_NAME" : "Gestation period, 42 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36428009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 762907, + "CONCEPT_NAME" : "Gestation period greater than or equal to 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "433601000124106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336958, + "CONCEPT_NAME" : "Term pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87527008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4180111, + "CONCEPT_NAME" : "Third trimester pregnancy less than 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429240000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444098, + "CONCEPT_NAME" : "Gestation period, 40 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46230007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 74, + "name" : "Gestational age (GEST) gt than 12 week", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4014149, + "CONCEPT_NAME" : "Antenatal 16 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169713003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014150, + "CONCEPT_NAME" : "Antenatal 20 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169714009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808979, + "CONCEPT_NAME" : "Antenatal 22 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861281000000109", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015141, + "CONCEPT_NAME" : "Antenatal 24 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169715005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808980, + "CONCEPT_NAME" : "Antenatal 25 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861301000000105", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014151, + "CONCEPT_NAME" : "Antenatal 30 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169717002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808981, + "CONCEPT_NAME" : "Antenatal 31 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861321000000101", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015297, + "CONCEPT_NAME" : "Antenatal 32 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169718007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015298, + "CONCEPT_NAME" : "Antenatal 34 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169719004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014434, + "CONCEPT_NAME" : "Antenatal 35 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169720005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015299, + "CONCEPT_NAME" : "Antenatal 36 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169721009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015142, + "CONCEPT_NAME" : "Antenatal 37 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169722002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014152, + "CONCEPT_NAME" : "Antenatal 38 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169723007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015300, + "CONCEPT_NAME" : "Antenatal 39 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169724001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015301, + "CONCEPT_NAME" : "Antenatal 40 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169725000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015302, + "CONCEPT_NAME" : "Antenatal 41 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169726004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014435, + "CONCEPT_NAME" : "Antenatal 42 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169727008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4178165, + "CONCEPT_NAME" : "Gestation 14 - 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428567001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181468, + "CONCEPT_NAME" : "Gestation 9- 13 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428930004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181162, + "CONCEPT_NAME" : "Gestation greater than 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429715006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4324063, + "CONCEPT_NAME" : "Gestation less than 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428566005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438542, + "CONCEPT_NAME" : "Gestation less than 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313178001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45770261, + "CONCEPT_NAME" : "Gestation less than 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "925561000000100", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4266517, + "CONCEPT_NAME" : "Gestation period, 13 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "62333002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4248725, + "CONCEPT_NAME" : "Gestation period, 14 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72846000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4283690, + "CONCEPT_NAME" : "Gestation period, 15 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6678005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4049621, + "CONCEPT_NAME" : "Gestation period, 16 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15633004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4277749, + "CONCEPT_NAME" : "Gestation period, 17 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65683006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4097608, + "CONCEPT_NAME" : "Gestation period, 18 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25026004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181751, + "CONCEPT_NAME" : "Gestation period, 19 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54318006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4051642, + "CONCEPT_NAME" : "Gestation period, 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "23464008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4185780, + "CONCEPT_NAME" : "Gestation period, 21 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "41438001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4274955, + "CONCEPT_NAME" : "Gestation period, 22 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65035007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336226, + "CONCEPT_NAME" : "Gestation period, 23 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86883006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439922, + "CONCEPT_NAME" : "Gestation period, 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313179009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435640, + "CONCEPT_NAME" : "Gestation period, 25 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72544005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444023, + "CONCEPT_NAME" : "Gestation period, 26 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48688005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432430, + "CONCEPT_NAME" : "Gestation period, 27 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46906003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444461, + "CONCEPT_NAME" : "Gestation period, 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90797000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444417, + "CONCEPT_NAME" : "Gestation period, 29 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45139008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434484, + "CONCEPT_NAME" : "Gestation period, 30 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "71355009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433864, + "CONCEPT_NAME" : "Gestation period, 31 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64920003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442558, + "CONCEPT_NAME" : "Gestation period, 32 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7707000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441678, + "CONCEPT_NAME" : "Gestation period, 33 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "78395001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443874, + "CONCEPT_NAME" : "Gestation period, 34 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13763000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444267, + "CONCEPT_NAME" : "Gestation period, 35 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84132007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438543, + "CONCEPT_NAME" : "Gestation period, 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57907009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442355, + "CONCEPT_NAME" : "Gestation period, 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43697006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443871, + "CONCEPT_NAME" : "Gestation period, 38 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13798002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435655, + "CONCEPT_NAME" : "Gestation period, 39 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80487005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442769, + "CONCEPT_NAME" : "Gestation period, 41 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63503002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444067, + "CONCEPT_NAME" : "Gestation period, 42 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36428009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 762907, + "CONCEPT_NAME" : "Gestation period greater than or equal to 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "433601000124106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336958, + "CONCEPT_NAME" : "Term pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87527008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4180111, + "CONCEPT_NAME" : "Third trimester pregnancy less than 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429240000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444098, + "CONCEPT_NAME" : "Gestation period, 40 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46230007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 75, + "name" : "Gestational age (GEST) gt than 13 week", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4014149, + "CONCEPT_NAME" : "Antenatal 16 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169713003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014150, + "CONCEPT_NAME" : "Antenatal 20 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169714009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808979, + "CONCEPT_NAME" : "Antenatal 22 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861281000000109", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015141, + "CONCEPT_NAME" : "Antenatal 24 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169715005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808980, + "CONCEPT_NAME" : "Antenatal 25 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861301000000105", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014151, + "CONCEPT_NAME" : "Antenatal 30 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169717002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808981, + "CONCEPT_NAME" : "Antenatal 31 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861321000000101", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015297, + "CONCEPT_NAME" : "Antenatal 32 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169718007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015298, + "CONCEPT_NAME" : "Antenatal 34 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169719004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014434, + "CONCEPT_NAME" : "Antenatal 35 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169720005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015299, + "CONCEPT_NAME" : "Antenatal 36 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169721009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015142, + "CONCEPT_NAME" : "Antenatal 37 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169722002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014152, + "CONCEPT_NAME" : "Antenatal 38 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169723007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015300, + "CONCEPT_NAME" : "Antenatal 39 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169724001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015301, + "CONCEPT_NAME" : "Antenatal 40 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169725000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015302, + "CONCEPT_NAME" : "Antenatal 41 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169726004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014435, + "CONCEPT_NAME" : "Antenatal 42 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169727008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4178165, + "CONCEPT_NAME" : "Gestation 14 - 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428567001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181162, + "CONCEPT_NAME" : "Gestation greater than 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429715006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4324063, + "CONCEPT_NAME" : "Gestation less than 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428566005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438542, + "CONCEPT_NAME" : "Gestation less than 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313178001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45770261, + "CONCEPT_NAME" : "Gestation less than 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "925561000000100", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4248725, + "CONCEPT_NAME" : "Gestation period, 14 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72846000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4283690, + "CONCEPT_NAME" : "Gestation period, 15 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6678005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4049621, + "CONCEPT_NAME" : "Gestation period, 16 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15633004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4277749, + "CONCEPT_NAME" : "Gestation period, 17 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65683006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4097608, + "CONCEPT_NAME" : "Gestation period, 18 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25026004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181751, + "CONCEPT_NAME" : "Gestation period, 19 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54318006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4051642, + "CONCEPT_NAME" : "Gestation period, 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "23464008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4185780, + "CONCEPT_NAME" : "Gestation period, 21 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "41438001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4274955, + "CONCEPT_NAME" : "Gestation period, 22 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65035007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336226, + "CONCEPT_NAME" : "Gestation period, 23 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86883006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439922, + "CONCEPT_NAME" : "Gestation period, 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313179009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435640, + "CONCEPT_NAME" : "Gestation period, 25 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72544005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444023, + "CONCEPT_NAME" : "Gestation period, 26 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48688005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432430, + "CONCEPT_NAME" : "Gestation period, 27 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46906003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444461, + "CONCEPT_NAME" : "Gestation period, 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90797000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444417, + "CONCEPT_NAME" : "Gestation period, 29 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45139008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434484, + "CONCEPT_NAME" : "Gestation period, 30 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "71355009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433864, + "CONCEPT_NAME" : "Gestation period, 31 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64920003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442558, + "CONCEPT_NAME" : "Gestation period, 32 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7707000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441678, + "CONCEPT_NAME" : "Gestation period, 33 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "78395001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443874, + "CONCEPT_NAME" : "Gestation period, 34 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13763000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444267, + "CONCEPT_NAME" : "Gestation period, 35 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84132007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438543, + "CONCEPT_NAME" : "Gestation period, 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57907009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442355, + "CONCEPT_NAME" : "Gestation period, 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43697006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443871, + "CONCEPT_NAME" : "Gestation period, 38 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13798002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435655, + "CONCEPT_NAME" : "Gestation period, 39 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80487005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442769, + "CONCEPT_NAME" : "Gestation period, 41 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63503002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444067, + "CONCEPT_NAME" : "Gestation period, 42 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36428009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 762907, + "CONCEPT_NAME" : "Gestation period greater than or equal to 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "433601000124106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336958, + "CONCEPT_NAME" : "Term pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87527008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4180111, + "CONCEPT_NAME" : "Third trimester pregnancy less than 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429240000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444098, + "CONCEPT_NAME" : "Gestation period, 40 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46230007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 76, + "name" : "Gestational age (GEST) gt than 14 week", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4014149, + "CONCEPT_NAME" : "Antenatal 16 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169713003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014150, + "CONCEPT_NAME" : "Antenatal 20 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169714009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808979, + "CONCEPT_NAME" : "Antenatal 22 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861281000000109", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015141, + "CONCEPT_NAME" : "Antenatal 24 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169715005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808980, + "CONCEPT_NAME" : "Antenatal 25 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861301000000105", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014151, + "CONCEPT_NAME" : "Antenatal 30 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169717002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808981, + "CONCEPT_NAME" : "Antenatal 31 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861321000000101", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015297, + "CONCEPT_NAME" : "Antenatal 32 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169718007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015298, + "CONCEPT_NAME" : "Antenatal 34 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169719004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014434, + "CONCEPT_NAME" : "Antenatal 35 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169720005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015299, + "CONCEPT_NAME" : "Antenatal 36 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169721009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015142, + "CONCEPT_NAME" : "Antenatal 37 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169722002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014152, + "CONCEPT_NAME" : "Antenatal 38 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169723007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015300, + "CONCEPT_NAME" : "Antenatal 39 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169724001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015301, + "CONCEPT_NAME" : "Antenatal 40 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169725000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015302, + "CONCEPT_NAME" : "Antenatal 41 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169726004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014435, + "CONCEPT_NAME" : "Antenatal 42 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169727008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4178165, + "CONCEPT_NAME" : "Gestation 14 - 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428567001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181162, + "CONCEPT_NAME" : "Gestation greater than 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429715006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4324063, + "CONCEPT_NAME" : "Gestation less than 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428566005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438542, + "CONCEPT_NAME" : "Gestation less than 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313178001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45770261, + "CONCEPT_NAME" : "Gestation less than 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "925561000000100", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4283690, + "CONCEPT_NAME" : "Gestation period, 15 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6678005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4049621, + "CONCEPT_NAME" : "Gestation period, 16 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15633004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4277749, + "CONCEPT_NAME" : "Gestation period, 17 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65683006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4097608, + "CONCEPT_NAME" : "Gestation period, 18 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25026004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181751, + "CONCEPT_NAME" : "Gestation period, 19 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54318006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4051642, + "CONCEPT_NAME" : "Gestation period, 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "23464008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4185780, + "CONCEPT_NAME" : "Gestation period, 21 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "41438001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4274955, + "CONCEPT_NAME" : "Gestation period, 22 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65035007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336226, + "CONCEPT_NAME" : "Gestation period, 23 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86883006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439922, + "CONCEPT_NAME" : "Gestation period, 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313179009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435640, + "CONCEPT_NAME" : "Gestation period, 25 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72544005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444023, + "CONCEPT_NAME" : "Gestation period, 26 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48688005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432430, + "CONCEPT_NAME" : "Gestation period, 27 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46906003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444461, + "CONCEPT_NAME" : "Gestation period, 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90797000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444417, + "CONCEPT_NAME" : "Gestation period, 29 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45139008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434484, + "CONCEPT_NAME" : "Gestation period, 30 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "71355009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433864, + "CONCEPT_NAME" : "Gestation period, 31 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64920003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442558, + "CONCEPT_NAME" : "Gestation period, 32 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7707000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441678, + "CONCEPT_NAME" : "Gestation period, 33 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "78395001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443874, + "CONCEPT_NAME" : "Gestation period, 34 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13763000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444267, + "CONCEPT_NAME" : "Gestation period, 35 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84132007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438543, + "CONCEPT_NAME" : "Gestation period, 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57907009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442355, + "CONCEPT_NAME" : "Gestation period, 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43697006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443871, + "CONCEPT_NAME" : "Gestation period, 38 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13798002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435655, + "CONCEPT_NAME" : "Gestation period, 39 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80487005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442769, + "CONCEPT_NAME" : "Gestation period, 41 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63503002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444067, + "CONCEPT_NAME" : "Gestation period, 42 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36428009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 762907, + "CONCEPT_NAME" : "Gestation period greater than or equal to 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "433601000124106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336958, + "CONCEPT_NAME" : "Term pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87527008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4180111, + "CONCEPT_NAME" : "Third trimester pregnancy less than 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429240000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444098, + "CONCEPT_NAME" : "Gestation period, 40 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46230007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 77, + "name" : "Gestational age (GEST) gt than 15 week", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4014149, + "CONCEPT_NAME" : "Antenatal 16 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169713003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014150, + "CONCEPT_NAME" : "Antenatal 20 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169714009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808979, + "CONCEPT_NAME" : "Antenatal 22 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861281000000109", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015141, + "CONCEPT_NAME" : "Antenatal 24 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169715005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808980, + "CONCEPT_NAME" : "Antenatal 25 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861301000000105", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014151, + "CONCEPT_NAME" : "Antenatal 30 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169717002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808981, + "CONCEPT_NAME" : "Antenatal 31 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861321000000101", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015297, + "CONCEPT_NAME" : "Antenatal 32 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169718007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015298, + "CONCEPT_NAME" : "Antenatal 34 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169719004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014434, + "CONCEPT_NAME" : "Antenatal 35 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169720005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015299, + "CONCEPT_NAME" : "Antenatal 36 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169721009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015142, + "CONCEPT_NAME" : "Antenatal 37 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169722002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014152, + "CONCEPT_NAME" : "Antenatal 38 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169723007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015300, + "CONCEPT_NAME" : "Antenatal 39 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169724001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015301, + "CONCEPT_NAME" : "Antenatal 40 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169725000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015302, + "CONCEPT_NAME" : "Antenatal 41 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169726004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014435, + "CONCEPT_NAME" : "Antenatal 42 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169727008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4178165, + "CONCEPT_NAME" : "Gestation 14 - 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428567001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181162, + "CONCEPT_NAME" : "Gestation greater than 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429715006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4324063, + "CONCEPT_NAME" : "Gestation less than 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428566005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438542, + "CONCEPT_NAME" : "Gestation less than 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313178001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45770261, + "CONCEPT_NAME" : "Gestation less than 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "925561000000100", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4049621, + "CONCEPT_NAME" : "Gestation period, 16 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15633004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4277749, + "CONCEPT_NAME" : "Gestation period, 17 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65683006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4097608, + "CONCEPT_NAME" : "Gestation period, 18 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25026004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181751, + "CONCEPT_NAME" : "Gestation period, 19 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54318006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4051642, + "CONCEPT_NAME" : "Gestation period, 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "23464008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4185780, + "CONCEPT_NAME" : "Gestation period, 21 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "41438001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4274955, + "CONCEPT_NAME" : "Gestation period, 22 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65035007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336226, + "CONCEPT_NAME" : "Gestation period, 23 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86883006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439922, + "CONCEPT_NAME" : "Gestation period, 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313179009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435640, + "CONCEPT_NAME" : "Gestation period, 25 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72544005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444023, + "CONCEPT_NAME" : "Gestation period, 26 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48688005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432430, + "CONCEPT_NAME" : "Gestation period, 27 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46906003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444461, + "CONCEPT_NAME" : "Gestation period, 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90797000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444417, + "CONCEPT_NAME" : "Gestation period, 29 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45139008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434484, + "CONCEPT_NAME" : "Gestation period, 30 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "71355009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433864, + "CONCEPT_NAME" : "Gestation period, 31 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64920003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442558, + "CONCEPT_NAME" : "Gestation period, 32 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7707000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441678, + "CONCEPT_NAME" : "Gestation period, 33 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "78395001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443874, + "CONCEPT_NAME" : "Gestation period, 34 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13763000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444267, + "CONCEPT_NAME" : "Gestation period, 35 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84132007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438543, + "CONCEPT_NAME" : "Gestation period, 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57907009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442355, + "CONCEPT_NAME" : "Gestation period, 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43697006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443871, + "CONCEPT_NAME" : "Gestation period, 38 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13798002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435655, + "CONCEPT_NAME" : "Gestation period, 39 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80487005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442769, + "CONCEPT_NAME" : "Gestation period, 41 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63503002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444067, + "CONCEPT_NAME" : "Gestation period, 42 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36428009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 762907, + "CONCEPT_NAME" : "Gestation period greater than or equal to 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "433601000124106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336958, + "CONCEPT_NAME" : "Term pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87527008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4180111, + "CONCEPT_NAME" : "Third trimester pregnancy less than 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429240000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444098, + "CONCEPT_NAME" : "Gestation period, 40 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46230007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 78, + "name" : "Gestational age (GEST) gt than 41 week", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4014435, + "CONCEPT_NAME" : "Antenatal 42 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169727008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444067, + "CONCEPT_NAME" : "Gestation period, 42 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36428009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 79, + "name" : "Gestational age (GEST) gt than 40 week", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4015302, + "CONCEPT_NAME" : "Antenatal 41 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169726004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014435, + "CONCEPT_NAME" : "Antenatal 42 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169727008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442769, + "CONCEPT_NAME" : "Gestation period, 41 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63503002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444067, + "CONCEPT_NAME" : "Gestation period, 42 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36428009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 80, + "name" : "Gestational age (GEST) gt than 39 week", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4015301, + "CONCEPT_NAME" : "Antenatal 40 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169725000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015302, + "CONCEPT_NAME" : "Antenatal 41 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169726004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014435, + "CONCEPT_NAME" : "Antenatal 42 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169727008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442769, + "CONCEPT_NAME" : "Gestation period, 41 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63503002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444067, + "CONCEPT_NAME" : "Gestation period, 42 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36428009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336958, + "CONCEPT_NAME" : "Term pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87527008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444098, + "CONCEPT_NAME" : "Gestation period, 40 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46230007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 81, + "name" : "Gestational age (GEST) gt than 16 week", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4014150, + "CONCEPT_NAME" : "Antenatal 20 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169714009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808979, + "CONCEPT_NAME" : "Antenatal 22 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861281000000109", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015141, + "CONCEPT_NAME" : "Antenatal 24 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169715005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808980, + "CONCEPT_NAME" : "Antenatal 25 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861301000000105", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014151, + "CONCEPT_NAME" : "Antenatal 30 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169717002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808981, + "CONCEPT_NAME" : "Antenatal 31 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861321000000101", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015297, + "CONCEPT_NAME" : "Antenatal 32 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169718007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015298, + "CONCEPT_NAME" : "Antenatal 34 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169719004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014434, + "CONCEPT_NAME" : "Antenatal 35 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169720005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015299, + "CONCEPT_NAME" : "Antenatal 36 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169721009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015142, + "CONCEPT_NAME" : "Antenatal 37 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169722002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014152, + "CONCEPT_NAME" : "Antenatal 38 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169723007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015300, + "CONCEPT_NAME" : "Antenatal 39 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169724001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015301, + "CONCEPT_NAME" : "Antenatal 40 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169725000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015302, + "CONCEPT_NAME" : "Antenatal 41 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169726004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014435, + "CONCEPT_NAME" : "Antenatal 42 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169727008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4178165, + "CONCEPT_NAME" : "Gestation 14 - 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428567001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181162, + "CONCEPT_NAME" : "Gestation greater than 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429715006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4324063, + "CONCEPT_NAME" : "Gestation less than 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428566005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438542, + "CONCEPT_NAME" : "Gestation less than 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313178001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45770261, + "CONCEPT_NAME" : "Gestation less than 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "925561000000100", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4277749, + "CONCEPT_NAME" : "Gestation period, 17 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65683006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4097608, + "CONCEPT_NAME" : "Gestation period, 18 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25026004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181751, + "CONCEPT_NAME" : "Gestation period, 19 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54318006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4051642, + "CONCEPT_NAME" : "Gestation period, 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "23464008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4185780, + "CONCEPT_NAME" : "Gestation period, 21 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "41438001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4274955, + "CONCEPT_NAME" : "Gestation period, 22 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65035007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336226, + "CONCEPT_NAME" : "Gestation period, 23 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86883006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439922, + "CONCEPT_NAME" : "Gestation period, 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313179009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435640, + "CONCEPT_NAME" : "Gestation period, 25 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72544005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444023, + "CONCEPT_NAME" : "Gestation period, 26 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48688005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432430, + "CONCEPT_NAME" : "Gestation period, 27 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46906003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444461, + "CONCEPT_NAME" : "Gestation period, 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90797000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444417, + "CONCEPT_NAME" : "Gestation period, 29 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45139008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434484, + "CONCEPT_NAME" : "Gestation period, 30 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "71355009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433864, + "CONCEPT_NAME" : "Gestation period, 31 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64920003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442558, + "CONCEPT_NAME" : "Gestation period, 32 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7707000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441678, + "CONCEPT_NAME" : "Gestation period, 33 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "78395001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443874, + "CONCEPT_NAME" : "Gestation period, 34 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13763000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444267, + "CONCEPT_NAME" : "Gestation period, 35 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84132007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438543, + "CONCEPT_NAME" : "Gestation period, 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57907009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442355, + "CONCEPT_NAME" : "Gestation period, 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43697006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443871, + "CONCEPT_NAME" : "Gestation period, 38 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13798002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435655, + "CONCEPT_NAME" : "Gestation period, 39 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80487005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442769, + "CONCEPT_NAME" : "Gestation period, 41 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63503002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444067, + "CONCEPT_NAME" : "Gestation period, 42 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36428009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 762907, + "CONCEPT_NAME" : "Gestation period greater than or equal to 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "433601000124106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336958, + "CONCEPT_NAME" : "Term pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87527008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4180111, + "CONCEPT_NAME" : "Third trimester pregnancy less than 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429240000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444098, + "CONCEPT_NAME" : "Gestation period, 40 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46230007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 82, + "name" : "Gestational age (GEST) gt than 17 week", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4014150, + "CONCEPT_NAME" : "Antenatal 20 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169714009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808979, + "CONCEPT_NAME" : "Antenatal 22 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861281000000109", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015141, + "CONCEPT_NAME" : "Antenatal 24 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169715005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808980, + "CONCEPT_NAME" : "Antenatal 25 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861301000000105", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014151, + "CONCEPT_NAME" : "Antenatal 30 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169717002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808981, + "CONCEPT_NAME" : "Antenatal 31 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861321000000101", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015297, + "CONCEPT_NAME" : "Antenatal 32 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169718007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015298, + "CONCEPT_NAME" : "Antenatal 34 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169719004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014434, + "CONCEPT_NAME" : "Antenatal 35 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169720005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015299, + "CONCEPT_NAME" : "Antenatal 36 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169721009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015142, + "CONCEPT_NAME" : "Antenatal 37 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169722002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014152, + "CONCEPT_NAME" : "Antenatal 38 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169723007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015300, + "CONCEPT_NAME" : "Antenatal 39 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169724001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015301, + "CONCEPT_NAME" : "Antenatal 40 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169725000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015302, + "CONCEPT_NAME" : "Antenatal 41 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169726004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014435, + "CONCEPT_NAME" : "Antenatal 42 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169727008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4178165, + "CONCEPT_NAME" : "Gestation 14 - 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428567001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181162, + "CONCEPT_NAME" : "Gestation greater than 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429715006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4324063, + "CONCEPT_NAME" : "Gestation less than 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428566005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438542, + "CONCEPT_NAME" : "Gestation less than 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313178001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45770261, + "CONCEPT_NAME" : "Gestation less than 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "925561000000100", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4097608, + "CONCEPT_NAME" : "Gestation period, 18 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25026004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181751, + "CONCEPT_NAME" : "Gestation period, 19 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54318006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4051642, + "CONCEPT_NAME" : "Gestation period, 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "23464008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4185780, + "CONCEPT_NAME" : "Gestation period, 21 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "41438001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4274955, + "CONCEPT_NAME" : "Gestation period, 22 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65035007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336226, + "CONCEPT_NAME" : "Gestation period, 23 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86883006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439922, + "CONCEPT_NAME" : "Gestation period, 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313179009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435640, + "CONCEPT_NAME" : "Gestation period, 25 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72544005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444023, + "CONCEPT_NAME" : "Gestation period, 26 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48688005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432430, + "CONCEPT_NAME" : "Gestation period, 27 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46906003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444461, + "CONCEPT_NAME" : "Gestation period, 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90797000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444417, + "CONCEPT_NAME" : "Gestation period, 29 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45139008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434484, + "CONCEPT_NAME" : "Gestation period, 30 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "71355009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433864, + "CONCEPT_NAME" : "Gestation period, 31 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64920003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442558, + "CONCEPT_NAME" : "Gestation period, 32 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7707000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441678, + "CONCEPT_NAME" : "Gestation period, 33 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "78395001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443874, + "CONCEPT_NAME" : "Gestation period, 34 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13763000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444267, + "CONCEPT_NAME" : "Gestation period, 35 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84132007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438543, + "CONCEPT_NAME" : "Gestation period, 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57907009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442355, + "CONCEPT_NAME" : "Gestation period, 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43697006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443871, + "CONCEPT_NAME" : "Gestation period, 38 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13798002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435655, + "CONCEPT_NAME" : "Gestation period, 39 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80487005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442769, + "CONCEPT_NAME" : "Gestation period, 41 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63503002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444067, + "CONCEPT_NAME" : "Gestation period, 42 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36428009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 762907, + "CONCEPT_NAME" : "Gestation period greater than or equal to 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "433601000124106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336958, + "CONCEPT_NAME" : "Term pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87527008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4180111, + "CONCEPT_NAME" : "Third trimester pregnancy less than 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429240000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444098, + "CONCEPT_NAME" : "Gestation period, 40 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46230007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 83, + "name" : "Gestational age (GEST) gt than 18 week", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4014150, + "CONCEPT_NAME" : "Antenatal 20 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169714009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808979, + "CONCEPT_NAME" : "Antenatal 22 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861281000000109", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015141, + "CONCEPT_NAME" : "Antenatal 24 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169715005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808980, + "CONCEPT_NAME" : "Antenatal 25 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861301000000105", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014151, + "CONCEPT_NAME" : "Antenatal 30 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169717002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808981, + "CONCEPT_NAME" : "Antenatal 31 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861321000000101", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015297, + "CONCEPT_NAME" : "Antenatal 32 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169718007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015298, + "CONCEPT_NAME" : "Antenatal 34 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169719004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014434, + "CONCEPT_NAME" : "Antenatal 35 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169720005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015299, + "CONCEPT_NAME" : "Antenatal 36 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169721009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015142, + "CONCEPT_NAME" : "Antenatal 37 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169722002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014152, + "CONCEPT_NAME" : "Antenatal 38 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169723007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015300, + "CONCEPT_NAME" : "Antenatal 39 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169724001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015301, + "CONCEPT_NAME" : "Antenatal 40 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169725000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015302, + "CONCEPT_NAME" : "Antenatal 41 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169726004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014435, + "CONCEPT_NAME" : "Antenatal 42 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169727008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4178165, + "CONCEPT_NAME" : "Gestation 14 - 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428567001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181162, + "CONCEPT_NAME" : "Gestation greater than 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429715006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4324063, + "CONCEPT_NAME" : "Gestation less than 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428566005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438542, + "CONCEPT_NAME" : "Gestation less than 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313178001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45770261, + "CONCEPT_NAME" : "Gestation less than 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "925561000000100", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181751, + "CONCEPT_NAME" : "Gestation period, 19 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54318006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4051642, + "CONCEPT_NAME" : "Gestation period, 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "23464008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4185780, + "CONCEPT_NAME" : "Gestation period, 21 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "41438001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4274955, + "CONCEPT_NAME" : "Gestation period, 22 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65035007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336226, + "CONCEPT_NAME" : "Gestation period, 23 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86883006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439922, + "CONCEPT_NAME" : "Gestation period, 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313179009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435640, + "CONCEPT_NAME" : "Gestation period, 25 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72544005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444023, + "CONCEPT_NAME" : "Gestation period, 26 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48688005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432430, + "CONCEPT_NAME" : "Gestation period, 27 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46906003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444461, + "CONCEPT_NAME" : "Gestation period, 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90797000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444417, + "CONCEPT_NAME" : "Gestation period, 29 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45139008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434484, + "CONCEPT_NAME" : "Gestation period, 30 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "71355009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433864, + "CONCEPT_NAME" : "Gestation period, 31 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64920003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442558, + "CONCEPT_NAME" : "Gestation period, 32 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7707000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441678, + "CONCEPT_NAME" : "Gestation period, 33 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "78395001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443874, + "CONCEPT_NAME" : "Gestation period, 34 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13763000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444267, + "CONCEPT_NAME" : "Gestation period, 35 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84132007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438543, + "CONCEPT_NAME" : "Gestation period, 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57907009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442355, + "CONCEPT_NAME" : "Gestation period, 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43697006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443871, + "CONCEPT_NAME" : "Gestation period, 38 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13798002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435655, + "CONCEPT_NAME" : "Gestation period, 39 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80487005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442769, + "CONCEPT_NAME" : "Gestation period, 41 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63503002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444067, + "CONCEPT_NAME" : "Gestation period, 42 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36428009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 762907, + "CONCEPT_NAME" : "Gestation period greater than or equal to 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "433601000124106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336958, + "CONCEPT_NAME" : "Term pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87527008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4180111, + "CONCEPT_NAME" : "Third trimester pregnancy less than 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429240000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444098, + "CONCEPT_NAME" : "Gestation period, 40 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46230007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 84, + "name" : "Gestational age (GEST) gt than 19 week", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4014150, + "CONCEPT_NAME" : "Antenatal 20 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169714009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808979, + "CONCEPT_NAME" : "Antenatal 22 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861281000000109", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015141, + "CONCEPT_NAME" : "Antenatal 24 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169715005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808980, + "CONCEPT_NAME" : "Antenatal 25 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861301000000105", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014151, + "CONCEPT_NAME" : "Antenatal 30 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169717002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808981, + "CONCEPT_NAME" : "Antenatal 31 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861321000000101", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015297, + "CONCEPT_NAME" : "Antenatal 32 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169718007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015298, + "CONCEPT_NAME" : "Antenatal 34 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169719004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014434, + "CONCEPT_NAME" : "Antenatal 35 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169720005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015299, + "CONCEPT_NAME" : "Antenatal 36 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169721009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015142, + "CONCEPT_NAME" : "Antenatal 37 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169722002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014152, + "CONCEPT_NAME" : "Antenatal 38 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169723007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015300, + "CONCEPT_NAME" : "Antenatal 39 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169724001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015301, + "CONCEPT_NAME" : "Antenatal 40 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169725000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015302, + "CONCEPT_NAME" : "Antenatal 41 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169726004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014435, + "CONCEPT_NAME" : "Antenatal 42 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169727008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4178165, + "CONCEPT_NAME" : "Gestation 14 - 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428567001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181162, + "CONCEPT_NAME" : "Gestation greater than 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429715006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438542, + "CONCEPT_NAME" : "Gestation less than 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313178001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45770261, + "CONCEPT_NAME" : "Gestation less than 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "925561000000100", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4051642, + "CONCEPT_NAME" : "Gestation period, 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "23464008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4185780, + "CONCEPT_NAME" : "Gestation period, 21 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "41438001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4274955, + "CONCEPT_NAME" : "Gestation period, 22 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65035007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336226, + "CONCEPT_NAME" : "Gestation period, 23 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86883006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439922, + "CONCEPT_NAME" : "Gestation period, 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313179009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435640, + "CONCEPT_NAME" : "Gestation period, 25 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72544005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444023, + "CONCEPT_NAME" : "Gestation period, 26 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48688005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432430, + "CONCEPT_NAME" : "Gestation period, 27 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46906003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444461, + "CONCEPT_NAME" : "Gestation period, 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90797000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444417, + "CONCEPT_NAME" : "Gestation period, 29 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45139008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434484, + "CONCEPT_NAME" : "Gestation period, 30 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "71355009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433864, + "CONCEPT_NAME" : "Gestation period, 31 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64920003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442558, + "CONCEPT_NAME" : "Gestation period, 32 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7707000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441678, + "CONCEPT_NAME" : "Gestation period, 33 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "78395001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443874, + "CONCEPT_NAME" : "Gestation period, 34 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13763000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444267, + "CONCEPT_NAME" : "Gestation period, 35 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84132007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438543, + "CONCEPT_NAME" : "Gestation period, 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57907009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442355, + "CONCEPT_NAME" : "Gestation period, 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43697006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443871, + "CONCEPT_NAME" : "Gestation period, 38 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13798002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435655, + "CONCEPT_NAME" : "Gestation period, 39 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80487005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442769, + "CONCEPT_NAME" : "Gestation period, 41 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63503002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444067, + "CONCEPT_NAME" : "Gestation period, 42 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36428009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 762907, + "CONCEPT_NAME" : "Gestation period greater than or equal to 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "433601000124106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336958, + "CONCEPT_NAME" : "Term pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87527008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4180111, + "CONCEPT_NAME" : "Third trimester pregnancy less than 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429240000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444098, + "CONCEPT_NAME" : "Gestation period, 40 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46230007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 85, + "name" : "Gestational age (GEST) gt than 20 week", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 44808979, + "CONCEPT_NAME" : "Antenatal 22 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861281000000109", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015141, + "CONCEPT_NAME" : "Antenatal 24 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169715005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808980, + "CONCEPT_NAME" : "Antenatal 25 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861301000000105", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014151, + "CONCEPT_NAME" : "Antenatal 30 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169717002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808981, + "CONCEPT_NAME" : "Antenatal 31 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861321000000101", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015297, + "CONCEPT_NAME" : "Antenatal 32 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169718007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015298, + "CONCEPT_NAME" : "Antenatal 34 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169719004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014434, + "CONCEPT_NAME" : "Antenatal 35 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169720005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015299, + "CONCEPT_NAME" : "Antenatal 36 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169721009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015142, + "CONCEPT_NAME" : "Antenatal 37 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169722002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014152, + "CONCEPT_NAME" : "Antenatal 38 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169723007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015300, + "CONCEPT_NAME" : "Antenatal 39 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169724001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015301, + "CONCEPT_NAME" : "Antenatal 40 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169725000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015302, + "CONCEPT_NAME" : "Antenatal 41 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169726004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014435, + "CONCEPT_NAME" : "Antenatal 42 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169727008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438542, + "CONCEPT_NAME" : "Gestation less than 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313178001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45770261, + "CONCEPT_NAME" : "Gestation less than 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "925561000000100", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4185780, + "CONCEPT_NAME" : "Gestation period, 21 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "41438001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4274955, + "CONCEPT_NAME" : "Gestation period, 22 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65035007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336226, + "CONCEPT_NAME" : "Gestation period, 23 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86883006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439922, + "CONCEPT_NAME" : "Gestation period, 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313179009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435640, + "CONCEPT_NAME" : "Gestation period, 25 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72544005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444023, + "CONCEPT_NAME" : "Gestation period, 26 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48688005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432430, + "CONCEPT_NAME" : "Gestation period, 27 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46906003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444461, + "CONCEPT_NAME" : "Gestation period, 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90797000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444417, + "CONCEPT_NAME" : "Gestation period, 29 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45139008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434484, + "CONCEPT_NAME" : "Gestation period, 30 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "71355009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433864, + "CONCEPT_NAME" : "Gestation period, 31 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64920003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442558, + "CONCEPT_NAME" : "Gestation period, 32 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7707000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441678, + "CONCEPT_NAME" : "Gestation period, 33 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "78395001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443874, + "CONCEPT_NAME" : "Gestation period, 34 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13763000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444267, + "CONCEPT_NAME" : "Gestation period, 35 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84132007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438543, + "CONCEPT_NAME" : "Gestation period, 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57907009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442355, + "CONCEPT_NAME" : "Gestation period, 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43697006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443871, + "CONCEPT_NAME" : "Gestation period, 38 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13798002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435655, + "CONCEPT_NAME" : "Gestation period, 39 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80487005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442769, + "CONCEPT_NAME" : "Gestation period, 41 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63503002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444067, + "CONCEPT_NAME" : "Gestation period, 42 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36428009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 762907, + "CONCEPT_NAME" : "Gestation period greater than or equal to 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "433601000124106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336958, + "CONCEPT_NAME" : "Term pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87527008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4180111, + "CONCEPT_NAME" : "Third trimester pregnancy less than 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429240000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181162, + "CONCEPT_NAME" : "Gestation greater than 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429715006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444098, + "CONCEPT_NAME" : "Gestation period, 40 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46230007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 86, + "name" : "Gestational age (GEST) gt than 29 week", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4014151, + "CONCEPT_NAME" : "Antenatal 30 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169717002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808981, + "CONCEPT_NAME" : "Antenatal 31 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861321000000101", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015297, + "CONCEPT_NAME" : "Antenatal 32 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169718007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015298, + "CONCEPT_NAME" : "Antenatal 34 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169719004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014434, + "CONCEPT_NAME" : "Antenatal 35 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169720005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015299, + "CONCEPT_NAME" : "Antenatal 36 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169721009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015142, + "CONCEPT_NAME" : "Antenatal 37 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169722002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014152, + "CONCEPT_NAME" : "Antenatal 38 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169723007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015300, + "CONCEPT_NAME" : "Antenatal 39 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169724001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015301, + "CONCEPT_NAME" : "Antenatal 40 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169725000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015302, + "CONCEPT_NAME" : "Antenatal 41 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169726004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014435, + "CONCEPT_NAME" : "Antenatal 42 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169727008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434484, + "CONCEPT_NAME" : "Gestation period, 30 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "71355009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433864, + "CONCEPT_NAME" : "Gestation period, 31 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64920003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442558, + "CONCEPT_NAME" : "Gestation period, 32 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7707000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441678, + "CONCEPT_NAME" : "Gestation period, 33 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "78395001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443874, + "CONCEPT_NAME" : "Gestation period, 34 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13763000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444267, + "CONCEPT_NAME" : "Gestation period, 35 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84132007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438543, + "CONCEPT_NAME" : "Gestation period, 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57907009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442355, + "CONCEPT_NAME" : "Gestation period, 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43697006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443871, + "CONCEPT_NAME" : "Gestation period, 38 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13798002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435655, + "CONCEPT_NAME" : "Gestation period, 39 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80487005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442769, + "CONCEPT_NAME" : "Gestation period, 41 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63503002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444067, + "CONCEPT_NAME" : "Gestation period, 42 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36428009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 762907, + "CONCEPT_NAME" : "Gestation period greater than or equal to 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "433601000124106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336958, + "CONCEPT_NAME" : "Term pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87527008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4180111, + "CONCEPT_NAME" : "Third trimester pregnancy less than 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429240000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444098, + "CONCEPT_NAME" : "Gestation period, 40 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46230007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 87, + "name" : "Gestational age (GEST) gt than 21 week", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 44808979, + "CONCEPT_NAME" : "Antenatal 22 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861281000000109", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015141, + "CONCEPT_NAME" : "Antenatal 24 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169715005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808980, + "CONCEPT_NAME" : "Antenatal 25 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861301000000105", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014151, + "CONCEPT_NAME" : "Antenatal 30 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169717002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808981, + "CONCEPT_NAME" : "Antenatal 31 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861321000000101", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015297, + "CONCEPT_NAME" : "Antenatal 32 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169718007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015298, + "CONCEPT_NAME" : "Antenatal 34 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169719004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014434, + "CONCEPT_NAME" : "Antenatal 35 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169720005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015299, + "CONCEPT_NAME" : "Antenatal 36 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169721009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015142, + "CONCEPT_NAME" : "Antenatal 37 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169722002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014152, + "CONCEPT_NAME" : "Antenatal 38 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169723007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015300, + "CONCEPT_NAME" : "Antenatal 39 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169724001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015301, + "CONCEPT_NAME" : "Antenatal 40 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169725000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015302, + "CONCEPT_NAME" : "Antenatal 41 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169726004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014435, + "CONCEPT_NAME" : "Antenatal 42 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169727008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438542, + "CONCEPT_NAME" : "Gestation less than 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313178001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45770261, + "CONCEPT_NAME" : "Gestation less than 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "925561000000100", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4274955, + "CONCEPT_NAME" : "Gestation period, 22 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65035007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336226, + "CONCEPT_NAME" : "Gestation period, 23 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86883006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439922, + "CONCEPT_NAME" : "Gestation period, 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313179009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435640, + "CONCEPT_NAME" : "Gestation period, 25 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72544005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444023, + "CONCEPT_NAME" : "Gestation period, 26 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48688005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432430, + "CONCEPT_NAME" : "Gestation period, 27 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46906003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444461, + "CONCEPT_NAME" : "Gestation period, 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90797000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444417, + "CONCEPT_NAME" : "Gestation period, 29 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45139008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434484, + "CONCEPT_NAME" : "Gestation period, 30 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "71355009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433864, + "CONCEPT_NAME" : "Gestation period, 31 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64920003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442558, + "CONCEPT_NAME" : "Gestation period, 32 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7707000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441678, + "CONCEPT_NAME" : "Gestation period, 33 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "78395001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443874, + "CONCEPT_NAME" : "Gestation period, 34 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13763000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444267, + "CONCEPT_NAME" : "Gestation period, 35 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84132007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438543, + "CONCEPT_NAME" : "Gestation period, 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57907009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442355, + "CONCEPT_NAME" : "Gestation period, 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43697006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443871, + "CONCEPT_NAME" : "Gestation period, 38 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13798002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435655, + "CONCEPT_NAME" : "Gestation period, 39 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80487005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442769, + "CONCEPT_NAME" : "Gestation period, 41 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63503002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444067, + "CONCEPT_NAME" : "Gestation period, 42 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36428009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 762907, + "CONCEPT_NAME" : "Gestation period greater than or equal to 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "433601000124106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336958, + "CONCEPT_NAME" : "Term pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87527008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4180111, + "CONCEPT_NAME" : "Third trimester pregnancy less than 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429240000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444098, + "CONCEPT_NAME" : "Gestation period, 40 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46230007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 88, + "name" : "Gestational age (GEST) gt than 30 week", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 44808981, + "CONCEPT_NAME" : "Antenatal 31 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861321000000101", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015297, + "CONCEPT_NAME" : "Antenatal 32 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169718007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015298, + "CONCEPT_NAME" : "Antenatal 34 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169719004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014434, + "CONCEPT_NAME" : "Antenatal 35 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169720005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015299, + "CONCEPT_NAME" : "Antenatal 36 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169721009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015142, + "CONCEPT_NAME" : "Antenatal 37 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169722002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014152, + "CONCEPT_NAME" : "Antenatal 38 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169723007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015300, + "CONCEPT_NAME" : "Antenatal 39 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169724001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015301, + "CONCEPT_NAME" : "Antenatal 40 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169725000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015302, + "CONCEPT_NAME" : "Antenatal 41 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169726004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014435, + "CONCEPT_NAME" : "Antenatal 42 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169727008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433864, + "CONCEPT_NAME" : "Gestation period, 31 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64920003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442558, + "CONCEPT_NAME" : "Gestation period, 32 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7707000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441678, + "CONCEPT_NAME" : "Gestation period, 33 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "78395001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443874, + "CONCEPT_NAME" : "Gestation period, 34 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13763000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444267, + "CONCEPT_NAME" : "Gestation period, 35 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84132007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438543, + "CONCEPT_NAME" : "Gestation period, 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57907009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442355, + "CONCEPT_NAME" : "Gestation period, 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43697006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443871, + "CONCEPT_NAME" : "Gestation period, 38 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13798002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435655, + "CONCEPT_NAME" : "Gestation period, 39 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80487005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442769, + "CONCEPT_NAME" : "Gestation period, 41 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63503002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444067, + "CONCEPT_NAME" : "Gestation period, 42 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36428009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 762907, + "CONCEPT_NAME" : "Gestation period greater than or equal to 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "433601000124106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336958, + "CONCEPT_NAME" : "Term pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87527008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4180111, + "CONCEPT_NAME" : "Third trimester pregnancy less than 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429240000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444098, + "CONCEPT_NAME" : "Gestation period, 40 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46230007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 89, + "name" : "Gestational age (GEST) gt than 38 week", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4015300, + "CONCEPT_NAME" : "Antenatal 39 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169724001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015301, + "CONCEPT_NAME" : "Antenatal 40 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169725000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015302, + "CONCEPT_NAME" : "Antenatal 41 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169726004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014435, + "CONCEPT_NAME" : "Antenatal 42 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169727008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435655, + "CONCEPT_NAME" : "Gestation period, 39 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80487005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442769, + "CONCEPT_NAME" : "Gestation period, 41 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63503002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444067, + "CONCEPT_NAME" : "Gestation period, 42 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36428009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336958, + "CONCEPT_NAME" : "Term pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87527008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444098, + "CONCEPT_NAME" : "Gestation period, 40 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46230007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 90, + "name" : "Gestational age (GEST) gt than 37 week", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4014152, + "CONCEPT_NAME" : "Antenatal 38 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169723007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015300, + "CONCEPT_NAME" : "Antenatal 39 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169724001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015301, + "CONCEPT_NAME" : "Antenatal 40 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169725000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015302, + "CONCEPT_NAME" : "Antenatal 41 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169726004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014435, + "CONCEPT_NAME" : "Antenatal 42 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169727008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443871, + "CONCEPT_NAME" : "Gestation period, 38 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13798002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435655, + "CONCEPT_NAME" : "Gestation period, 39 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80487005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442769, + "CONCEPT_NAME" : "Gestation period, 41 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63503002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444067, + "CONCEPT_NAME" : "Gestation period, 42 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36428009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336958, + "CONCEPT_NAME" : "Term pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87527008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444098, + "CONCEPT_NAME" : "Gestation period, 40 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46230007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 91, + "name" : "Gestational age (GEST) gt than 36 week", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4015142, + "CONCEPT_NAME" : "Antenatal 37 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169722002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014152, + "CONCEPT_NAME" : "Antenatal 38 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169723007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015300, + "CONCEPT_NAME" : "Antenatal 39 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169724001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015301, + "CONCEPT_NAME" : "Antenatal 40 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169725000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015302, + "CONCEPT_NAME" : "Antenatal 41 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169726004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014435, + "CONCEPT_NAME" : "Antenatal 42 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169727008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442355, + "CONCEPT_NAME" : "Gestation period, 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43697006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443871, + "CONCEPT_NAME" : "Gestation period, 38 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13798002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435655, + "CONCEPT_NAME" : "Gestation period, 39 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80487005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442769, + "CONCEPT_NAME" : "Gestation period, 41 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63503002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444067, + "CONCEPT_NAME" : "Gestation period, 42 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36428009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 762907, + "CONCEPT_NAME" : "Gestation period greater than or equal to 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "433601000124106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336958, + "CONCEPT_NAME" : "Term pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87527008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444098, + "CONCEPT_NAME" : "Gestation period, 40 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46230007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 92, + "name" : "Gestational age (GEST) gt than 35 week", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4015299, + "CONCEPT_NAME" : "Antenatal 36 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169721009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015142, + "CONCEPT_NAME" : "Antenatal 37 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169722002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014152, + "CONCEPT_NAME" : "Antenatal 38 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169723007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015300, + "CONCEPT_NAME" : "Antenatal 39 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169724001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015301, + "CONCEPT_NAME" : "Antenatal 40 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169725000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015302, + "CONCEPT_NAME" : "Antenatal 41 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169726004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014435, + "CONCEPT_NAME" : "Antenatal 42 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169727008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438543, + "CONCEPT_NAME" : "Gestation period, 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57907009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442355, + "CONCEPT_NAME" : "Gestation period, 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43697006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443871, + "CONCEPT_NAME" : "Gestation period, 38 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13798002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435655, + "CONCEPT_NAME" : "Gestation period, 39 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80487005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442769, + "CONCEPT_NAME" : "Gestation period, 41 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63503002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444067, + "CONCEPT_NAME" : "Gestation period, 42 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36428009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 762907, + "CONCEPT_NAME" : "Gestation period greater than or equal to 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "433601000124106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336958, + "CONCEPT_NAME" : "Term pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87527008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444098, + "CONCEPT_NAME" : "Gestation period, 40 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46230007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 93, + "name" : "Gestational age (GEST) gt than 34 week", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4014434, + "CONCEPT_NAME" : "Antenatal 35 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169720005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015299, + "CONCEPT_NAME" : "Antenatal 36 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169721009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015142, + "CONCEPT_NAME" : "Antenatal 37 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169722002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014152, + "CONCEPT_NAME" : "Antenatal 38 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169723007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015300, + "CONCEPT_NAME" : "Antenatal 39 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169724001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015301, + "CONCEPT_NAME" : "Antenatal 40 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169725000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015302, + "CONCEPT_NAME" : "Antenatal 41 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169726004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014435, + "CONCEPT_NAME" : "Antenatal 42 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169727008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444267, + "CONCEPT_NAME" : "Gestation period, 35 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84132007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438543, + "CONCEPT_NAME" : "Gestation period, 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57907009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442355, + "CONCEPT_NAME" : "Gestation period, 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43697006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443871, + "CONCEPT_NAME" : "Gestation period, 38 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13798002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435655, + "CONCEPT_NAME" : "Gestation period, 39 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80487005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442769, + "CONCEPT_NAME" : "Gestation period, 41 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63503002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444067, + "CONCEPT_NAME" : "Gestation period, 42 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36428009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 762907, + "CONCEPT_NAME" : "Gestation period greater than or equal to 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "433601000124106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336958, + "CONCEPT_NAME" : "Term pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87527008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4180111, + "CONCEPT_NAME" : "Third trimester pregnancy less than 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429240000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444098, + "CONCEPT_NAME" : "Gestation period, 40 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46230007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 94, + "name" : "Gestational age (GEST) gt than 22 week", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4015141, + "CONCEPT_NAME" : "Antenatal 24 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169715005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808980, + "CONCEPT_NAME" : "Antenatal 25 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861301000000105", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014151, + "CONCEPT_NAME" : "Antenatal 30 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169717002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808981, + "CONCEPT_NAME" : "Antenatal 31 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861321000000101", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015297, + "CONCEPT_NAME" : "Antenatal 32 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169718007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015298, + "CONCEPT_NAME" : "Antenatal 34 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169719004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014434, + "CONCEPT_NAME" : "Antenatal 35 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169720005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015299, + "CONCEPT_NAME" : "Antenatal 36 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169721009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015142, + "CONCEPT_NAME" : "Antenatal 37 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169722002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014152, + "CONCEPT_NAME" : "Antenatal 38 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169723007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015300, + "CONCEPT_NAME" : "Antenatal 39 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169724001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015301, + "CONCEPT_NAME" : "Antenatal 40 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169725000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015302, + "CONCEPT_NAME" : "Antenatal 41 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169726004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014435, + "CONCEPT_NAME" : "Antenatal 42 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169727008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438542, + "CONCEPT_NAME" : "Gestation less than 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313178001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45770261, + "CONCEPT_NAME" : "Gestation less than 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "925561000000100", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336226, + "CONCEPT_NAME" : "Gestation period, 23 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86883006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439922, + "CONCEPT_NAME" : "Gestation period, 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313179009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435640, + "CONCEPT_NAME" : "Gestation period, 25 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72544005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444023, + "CONCEPT_NAME" : "Gestation period, 26 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48688005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432430, + "CONCEPT_NAME" : "Gestation period, 27 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46906003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444461, + "CONCEPT_NAME" : "Gestation period, 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90797000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444417, + "CONCEPT_NAME" : "Gestation period, 29 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45139008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434484, + "CONCEPT_NAME" : "Gestation period, 30 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "71355009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433864, + "CONCEPT_NAME" : "Gestation period, 31 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64920003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442558, + "CONCEPT_NAME" : "Gestation period, 32 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7707000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441678, + "CONCEPT_NAME" : "Gestation period, 33 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "78395001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443874, + "CONCEPT_NAME" : "Gestation period, 34 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13763000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444267, + "CONCEPT_NAME" : "Gestation period, 35 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84132007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438543, + "CONCEPT_NAME" : "Gestation period, 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57907009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442355, + "CONCEPT_NAME" : "Gestation period, 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43697006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443871, + "CONCEPT_NAME" : "Gestation period, 38 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13798002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435655, + "CONCEPT_NAME" : "Gestation period, 39 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80487005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442769, + "CONCEPT_NAME" : "Gestation period, 41 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63503002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444067, + "CONCEPT_NAME" : "Gestation period, 42 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36428009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 762907, + "CONCEPT_NAME" : "Gestation period greater than or equal to 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "433601000124106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336958, + "CONCEPT_NAME" : "Term pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87527008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4180111, + "CONCEPT_NAME" : "Third trimester pregnancy less than 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429240000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444098, + "CONCEPT_NAME" : "Gestation period, 40 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46230007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 95, + "name" : "Gestational age (GEST) gt than 23 week", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4015141, + "CONCEPT_NAME" : "Antenatal 24 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169715005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808980, + "CONCEPT_NAME" : "Antenatal 25 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861301000000105", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014151, + "CONCEPT_NAME" : "Antenatal 30 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169717002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808981, + "CONCEPT_NAME" : "Antenatal 31 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861321000000101", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015297, + "CONCEPT_NAME" : "Antenatal 32 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169718007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015298, + "CONCEPT_NAME" : "Antenatal 34 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169719004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014434, + "CONCEPT_NAME" : "Antenatal 35 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169720005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015299, + "CONCEPT_NAME" : "Antenatal 36 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169721009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015142, + "CONCEPT_NAME" : "Antenatal 37 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169722002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014152, + "CONCEPT_NAME" : "Antenatal 38 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169723007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015300, + "CONCEPT_NAME" : "Antenatal 39 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169724001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015301, + "CONCEPT_NAME" : "Antenatal 40 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169725000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015302, + "CONCEPT_NAME" : "Antenatal 41 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169726004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014435, + "CONCEPT_NAME" : "Antenatal 42 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169727008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45770261, + "CONCEPT_NAME" : "Gestation less than 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "925561000000100", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439922, + "CONCEPT_NAME" : "Gestation period, 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313179009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435640, + "CONCEPT_NAME" : "Gestation period, 25 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72544005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444023, + "CONCEPT_NAME" : "Gestation period, 26 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48688005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432430, + "CONCEPT_NAME" : "Gestation period, 27 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46906003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444461, + "CONCEPT_NAME" : "Gestation period, 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90797000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444417, + "CONCEPT_NAME" : "Gestation period, 29 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45139008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434484, + "CONCEPT_NAME" : "Gestation period, 30 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "71355009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433864, + "CONCEPT_NAME" : "Gestation period, 31 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64920003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442558, + "CONCEPT_NAME" : "Gestation period, 32 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7707000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441678, + "CONCEPT_NAME" : "Gestation period, 33 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "78395001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443874, + "CONCEPT_NAME" : "Gestation period, 34 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13763000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444267, + "CONCEPT_NAME" : "Gestation period, 35 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84132007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438543, + "CONCEPT_NAME" : "Gestation period, 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57907009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442355, + "CONCEPT_NAME" : "Gestation period, 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43697006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443871, + "CONCEPT_NAME" : "Gestation period, 38 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13798002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435655, + "CONCEPT_NAME" : "Gestation period, 39 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80487005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442769, + "CONCEPT_NAME" : "Gestation period, 41 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63503002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444067, + "CONCEPT_NAME" : "Gestation period, 42 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36428009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 762907, + "CONCEPT_NAME" : "Gestation period greater than or equal to 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "433601000124106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336958, + "CONCEPT_NAME" : "Term pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87527008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4180111, + "CONCEPT_NAME" : "Third trimester pregnancy less than 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429240000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444098, + "CONCEPT_NAME" : "Gestation period, 40 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46230007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 96, + "name" : "Gestational age (GEST) gt than 24 week", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 44808980, + "CONCEPT_NAME" : "Antenatal 25 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861301000000105", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014151, + "CONCEPT_NAME" : "Antenatal 30 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169717002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808981, + "CONCEPT_NAME" : "Antenatal 31 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861321000000101", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015297, + "CONCEPT_NAME" : "Antenatal 32 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169718007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015298, + "CONCEPT_NAME" : "Antenatal 34 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169719004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014434, + "CONCEPT_NAME" : "Antenatal 35 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169720005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015299, + "CONCEPT_NAME" : "Antenatal 36 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169721009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015142, + "CONCEPT_NAME" : "Antenatal 37 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169722002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014152, + "CONCEPT_NAME" : "Antenatal 38 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169723007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015300, + "CONCEPT_NAME" : "Antenatal 39 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169724001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015301, + "CONCEPT_NAME" : "Antenatal 40 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169725000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015302, + "CONCEPT_NAME" : "Antenatal 41 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169726004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014435, + "CONCEPT_NAME" : "Antenatal 42 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169727008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45770261, + "CONCEPT_NAME" : "Gestation less than 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "925561000000100", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435640, + "CONCEPT_NAME" : "Gestation period, 25 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72544005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444023, + "CONCEPT_NAME" : "Gestation period, 26 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48688005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432430, + "CONCEPT_NAME" : "Gestation period, 27 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46906003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444461, + "CONCEPT_NAME" : "Gestation period, 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90797000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444417, + "CONCEPT_NAME" : "Gestation period, 29 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45139008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434484, + "CONCEPT_NAME" : "Gestation period, 30 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "71355009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433864, + "CONCEPT_NAME" : "Gestation period, 31 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64920003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442558, + "CONCEPT_NAME" : "Gestation period, 32 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7707000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441678, + "CONCEPT_NAME" : "Gestation period, 33 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "78395001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443874, + "CONCEPT_NAME" : "Gestation period, 34 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13763000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444267, + "CONCEPT_NAME" : "Gestation period, 35 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84132007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438543, + "CONCEPT_NAME" : "Gestation period, 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57907009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442355, + "CONCEPT_NAME" : "Gestation period, 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43697006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443871, + "CONCEPT_NAME" : "Gestation period, 38 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13798002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435655, + "CONCEPT_NAME" : "Gestation period, 39 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80487005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442769, + "CONCEPT_NAME" : "Gestation period, 41 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63503002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444067, + "CONCEPT_NAME" : "Gestation period, 42 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36428009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 762907, + "CONCEPT_NAME" : "Gestation period greater than or equal to 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "433601000124106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336958, + "CONCEPT_NAME" : "Term pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87527008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4180111, + "CONCEPT_NAME" : "Third trimester pregnancy less than 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429240000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444098, + "CONCEPT_NAME" : "Gestation period, 40 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46230007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 97, + "name" : "Gestational age (GEST) gt than 25 week", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4014151, + "CONCEPT_NAME" : "Antenatal 30 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169717002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808981, + "CONCEPT_NAME" : "Antenatal 31 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861321000000101", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015297, + "CONCEPT_NAME" : "Antenatal 32 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169718007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015298, + "CONCEPT_NAME" : "Antenatal 34 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169719004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014434, + "CONCEPT_NAME" : "Antenatal 35 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169720005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015299, + "CONCEPT_NAME" : "Antenatal 36 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169721009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015142, + "CONCEPT_NAME" : "Antenatal 37 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169722002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014152, + "CONCEPT_NAME" : "Antenatal 38 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169723007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015300, + "CONCEPT_NAME" : "Antenatal 39 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169724001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015301, + "CONCEPT_NAME" : "Antenatal 40 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169725000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015302, + "CONCEPT_NAME" : "Antenatal 41 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169726004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014435, + "CONCEPT_NAME" : "Antenatal 42 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169727008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45770261, + "CONCEPT_NAME" : "Gestation less than 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "925561000000100", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444023, + "CONCEPT_NAME" : "Gestation period, 26 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48688005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432430, + "CONCEPT_NAME" : "Gestation period, 27 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46906003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444461, + "CONCEPT_NAME" : "Gestation period, 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90797000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444417, + "CONCEPT_NAME" : "Gestation period, 29 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45139008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434484, + "CONCEPT_NAME" : "Gestation period, 30 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "71355009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433864, + "CONCEPT_NAME" : "Gestation period, 31 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64920003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442558, + "CONCEPT_NAME" : "Gestation period, 32 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7707000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441678, + "CONCEPT_NAME" : "Gestation period, 33 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "78395001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443874, + "CONCEPT_NAME" : "Gestation period, 34 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13763000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444267, + "CONCEPT_NAME" : "Gestation period, 35 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84132007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438543, + "CONCEPT_NAME" : "Gestation period, 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57907009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442355, + "CONCEPT_NAME" : "Gestation period, 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43697006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443871, + "CONCEPT_NAME" : "Gestation period, 38 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13798002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435655, + "CONCEPT_NAME" : "Gestation period, 39 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80487005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442769, + "CONCEPT_NAME" : "Gestation period, 41 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63503002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444067, + "CONCEPT_NAME" : "Gestation period, 42 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36428009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 762907, + "CONCEPT_NAME" : "Gestation period greater than or equal to 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "433601000124106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336958, + "CONCEPT_NAME" : "Term pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87527008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4180111, + "CONCEPT_NAME" : "Third trimester pregnancy less than 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429240000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444098, + "CONCEPT_NAME" : "Gestation period, 40 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46230007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 98, + "name" : "Gestational age (GEST) gt than 26 week", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4014151, + "CONCEPT_NAME" : "Antenatal 30 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169717002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808981, + "CONCEPT_NAME" : "Antenatal 31 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861321000000101", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015297, + "CONCEPT_NAME" : "Antenatal 32 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169718007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015298, + "CONCEPT_NAME" : "Antenatal 34 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169719004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014434, + "CONCEPT_NAME" : "Antenatal 35 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169720005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015299, + "CONCEPT_NAME" : "Antenatal 36 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169721009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015142, + "CONCEPT_NAME" : "Antenatal 37 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169722002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014152, + "CONCEPT_NAME" : "Antenatal 38 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169723007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015300, + "CONCEPT_NAME" : "Antenatal 39 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169724001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015301, + "CONCEPT_NAME" : "Antenatal 40 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169725000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015302, + "CONCEPT_NAME" : "Antenatal 41 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169726004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014435, + "CONCEPT_NAME" : "Antenatal 42 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169727008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45770261, + "CONCEPT_NAME" : "Gestation less than 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "925561000000100", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432430, + "CONCEPT_NAME" : "Gestation period, 27 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46906003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444461, + "CONCEPT_NAME" : "Gestation period, 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90797000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444417, + "CONCEPT_NAME" : "Gestation period, 29 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45139008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434484, + "CONCEPT_NAME" : "Gestation period, 30 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "71355009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433864, + "CONCEPT_NAME" : "Gestation period, 31 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64920003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442558, + "CONCEPT_NAME" : "Gestation period, 32 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7707000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441678, + "CONCEPT_NAME" : "Gestation period, 33 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "78395001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443874, + "CONCEPT_NAME" : "Gestation period, 34 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13763000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444267, + "CONCEPT_NAME" : "Gestation period, 35 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84132007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438543, + "CONCEPT_NAME" : "Gestation period, 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57907009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442355, + "CONCEPT_NAME" : "Gestation period, 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43697006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443871, + "CONCEPT_NAME" : "Gestation period, 38 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13798002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435655, + "CONCEPT_NAME" : "Gestation period, 39 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80487005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442769, + "CONCEPT_NAME" : "Gestation period, 41 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63503002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444067, + "CONCEPT_NAME" : "Gestation period, 42 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36428009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 762907, + "CONCEPT_NAME" : "Gestation period greater than or equal to 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "433601000124106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336958, + "CONCEPT_NAME" : "Term pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87527008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4180111, + "CONCEPT_NAME" : "Third trimester pregnancy less than 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429240000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444098, + "CONCEPT_NAME" : "Gestation period, 40 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46230007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 99, + "name" : "Gestational age (GEST) gt than 27 week", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4014151, + "CONCEPT_NAME" : "Antenatal 30 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169717002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808981, + "CONCEPT_NAME" : "Antenatal 31 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861321000000101", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015297, + "CONCEPT_NAME" : "Antenatal 32 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169718007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015298, + "CONCEPT_NAME" : "Antenatal 34 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169719004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014434, + "CONCEPT_NAME" : "Antenatal 35 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169720005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015299, + "CONCEPT_NAME" : "Antenatal 36 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169721009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015142, + "CONCEPT_NAME" : "Antenatal 37 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169722002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014152, + "CONCEPT_NAME" : "Antenatal 38 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169723007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015300, + "CONCEPT_NAME" : "Antenatal 39 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169724001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015301, + "CONCEPT_NAME" : "Antenatal 40 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169725000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015302, + "CONCEPT_NAME" : "Antenatal 41 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169726004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014435, + "CONCEPT_NAME" : "Antenatal 42 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169727008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444461, + "CONCEPT_NAME" : "Gestation period, 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90797000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444417, + "CONCEPT_NAME" : "Gestation period, 29 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45139008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434484, + "CONCEPT_NAME" : "Gestation period, 30 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "71355009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433864, + "CONCEPT_NAME" : "Gestation period, 31 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64920003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442558, + "CONCEPT_NAME" : "Gestation period, 32 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7707000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441678, + "CONCEPT_NAME" : "Gestation period, 33 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "78395001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443874, + "CONCEPT_NAME" : "Gestation period, 34 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13763000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444267, + "CONCEPT_NAME" : "Gestation period, 35 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84132007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438543, + "CONCEPT_NAME" : "Gestation period, 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57907009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442355, + "CONCEPT_NAME" : "Gestation period, 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43697006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443871, + "CONCEPT_NAME" : "Gestation period, 38 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13798002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435655, + "CONCEPT_NAME" : "Gestation period, 39 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80487005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442769, + "CONCEPT_NAME" : "Gestation period, 41 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63503002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444067, + "CONCEPT_NAME" : "Gestation period, 42 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36428009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 762907, + "CONCEPT_NAME" : "Gestation period greater than or equal to 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "433601000124106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336958, + "CONCEPT_NAME" : "Term pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87527008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4180111, + "CONCEPT_NAME" : "Third trimester pregnancy less than 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429240000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444098, + "CONCEPT_NAME" : "Gestation period, 40 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46230007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 100, + "name" : "Gestational age (GEST) gt than 28 week", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4014151, + "CONCEPT_NAME" : "Antenatal 30 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169717002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808981, + "CONCEPT_NAME" : "Antenatal 31 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861321000000101", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015297, + "CONCEPT_NAME" : "Antenatal 32 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169718007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015298, + "CONCEPT_NAME" : "Antenatal 34 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169719004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014434, + "CONCEPT_NAME" : "Antenatal 35 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169720005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015299, + "CONCEPT_NAME" : "Antenatal 36 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169721009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015142, + "CONCEPT_NAME" : "Antenatal 37 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169722002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014152, + "CONCEPT_NAME" : "Antenatal 38 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169723007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015300, + "CONCEPT_NAME" : "Antenatal 39 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169724001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015301, + "CONCEPT_NAME" : "Antenatal 40 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169725000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015302, + "CONCEPT_NAME" : "Antenatal 41 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169726004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014435, + "CONCEPT_NAME" : "Antenatal 42 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169727008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444417, + "CONCEPT_NAME" : "Gestation period, 29 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45139008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434484, + "CONCEPT_NAME" : "Gestation period, 30 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "71355009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433864, + "CONCEPT_NAME" : "Gestation period, 31 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64920003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442558, + "CONCEPT_NAME" : "Gestation period, 32 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7707000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441678, + "CONCEPT_NAME" : "Gestation period, 33 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "78395001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443874, + "CONCEPT_NAME" : "Gestation period, 34 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13763000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444267, + "CONCEPT_NAME" : "Gestation period, 35 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84132007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438543, + "CONCEPT_NAME" : "Gestation period, 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57907009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442355, + "CONCEPT_NAME" : "Gestation period, 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43697006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443871, + "CONCEPT_NAME" : "Gestation period, 38 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13798002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435655, + "CONCEPT_NAME" : "Gestation period, 39 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80487005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442769, + "CONCEPT_NAME" : "Gestation period, 41 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63503002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444067, + "CONCEPT_NAME" : "Gestation period, 42 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36428009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 762907, + "CONCEPT_NAME" : "Gestation period greater than or equal to 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "433601000124106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336958, + "CONCEPT_NAME" : "Term pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87527008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4180111, + "CONCEPT_NAME" : "Third trimester pregnancy less than 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429240000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444098, + "CONCEPT_NAME" : "Gestation period, 40 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46230007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 101, + "name" : "Gestational age (GEST) gt than 31 week", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4015297, + "CONCEPT_NAME" : "Antenatal 32 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169718007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015298, + "CONCEPT_NAME" : "Antenatal 34 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169719004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014434, + "CONCEPT_NAME" : "Antenatal 35 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169720005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015299, + "CONCEPT_NAME" : "Antenatal 36 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169721009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015142, + "CONCEPT_NAME" : "Antenatal 37 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169722002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014152, + "CONCEPT_NAME" : "Antenatal 38 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169723007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015300, + "CONCEPT_NAME" : "Antenatal 39 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169724001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015301, + "CONCEPT_NAME" : "Antenatal 40 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169725000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015302, + "CONCEPT_NAME" : "Antenatal 41 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169726004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014435, + "CONCEPT_NAME" : "Antenatal 42 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169727008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442558, + "CONCEPT_NAME" : "Gestation period, 32 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7707000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441678, + "CONCEPT_NAME" : "Gestation period, 33 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "78395001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443874, + "CONCEPT_NAME" : "Gestation period, 34 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13763000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444267, + "CONCEPT_NAME" : "Gestation period, 35 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84132007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438543, + "CONCEPT_NAME" : "Gestation period, 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57907009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442355, + "CONCEPT_NAME" : "Gestation period, 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43697006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443871, + "CONCEPT_NAME" : "Gestation period, 38 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13798002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435655, + "CONCEPT_NAME" : "Gestation period, 39 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80487005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442769, + "CONCEPT_NAME" : "Gestation period, 41 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63503002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444067, + "CONCEPT_NAME" : "Gestation period, 42 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36428009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 762907, + "CONCEPT_NAME" : "Gestation period greater than or equal to 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "433601000124106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336958, + "CONCEPT_NAME" : "Term pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87527008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4180111, + "CONCEPT_NAME" : "Third trimester pregnancy less than 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429240000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444098, + "CONCEPT_NAME" : "Gestation period, 40 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46230007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 102, + "name" : "Gestational age (GEST) gt than 32 week", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4015298, + "CONCEPT_NAME" : "Antenatal 34 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169719004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014434, + "CONCEPT_NAME" : "Antenatal 35 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169720005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015299, + "CONCEPT_NAME" : "Antenatal 36 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169721009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015142, + "CONCEPT_NAME" : "Antenatal 37 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169722002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014152, + "CONCEPT_NAME" : "Antenatal 38 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169723007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015300, + "CONCEPT_NAME" : "Antenatal 39 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169724001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015301, + "CONCEPT_NAME" : "Antenatal 40 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169725000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015302, + "CONCEPT_NAME" : "Antenatal 41 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169726004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014435, + "CONCEPT_NAME" : "Antenatal 42 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169727008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441678, + "CONCEPT_NAME" : "Gestation period, 33 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "78395001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443874, + "CONCEPT_NAME" : "Gestation period, 34 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13763000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444267, + "CONCEPT_NAME" : "Gestation period, 35 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84132007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438543, + "CONCEPT_NAME" : "Gestation period, 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57907009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442355, + "CONCEPT_NAME" : "Gestation period, 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43697006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443871, + "CONCEPT_NAME" : "Gestation period, 38 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13798002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435655, + "CONCEPT_NAME" : "Gestation period, 39 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80487005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442769, + "CONCEPT_NAME" : "Gestation period, 41 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63503002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444067, + "CONCEPT_NAME" : "Gestation period, 42 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36428009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 762907, + "CONCEPT_NAME" : "Gestation period greater than or equal to 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "433601000124106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336958, + "CONCEPT_NAME" : "Term pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87527008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4180111, + "CONCEPT_NAME" : "Third trimester pregnancy less than 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429240000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444098, + "CONCEPT_NAME" : "Gestation period, 40 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46230007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 103, + "name" : "Gestational age (GEST) gt than 33 week", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4015298, + "CONCEPT_NAME" : "Antenatal 34 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169719004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014434, + "CONCEPT_NAME" : "Antenatal 35 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169720005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015299, + "CONCEPT_NAME" : "Antenatal 36 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169721009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015142, + "CONCEPT_NAME" : "Antenatal 37 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169722002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014152, + "CONCEPT_NAME" : "Antenatal 38 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169723007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015300, + "CONCEPT_NAME" : "Antenatal 39 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169724001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015301, + "CONCEPT_NAME" : "Antenatal 40 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169725000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015302, + "CONCEPT_NAME" : "Antenatal 41 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169726004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014435, + "CONCEPT_NAME" : "Antenatal 42 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169727008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443874, + "CONCEPT_NAME" : "Gestation period, 34 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13763000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444267, + "CONCEPT_NAME" : "Gestation period, 35 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84132007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438543, + "CONCEPT_NAME" : "Gestation period, 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57907009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442355, + "CONCEPT_NAME" : "Gestation period, 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43697006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443871, + "CONCEPT_NAME" : "Gestation period, 38 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13798002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435655, + "CONCEPT_NAME" : "Gestation period, 39 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80487005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442769, + "CONCEPT_NAME" : "Gestation period, 41 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63503002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444067, + "CONCEPT_NAME" : "Gestation period, 42 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36428009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 762907, + "CONCEPT_NAME" : "Gestation period greater than or equal to 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "433601000124106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336958, + "CONCEPT_NAME" : "Term pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87527008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4180111, + "CONCEPT_NAME" : "Third trimester pregnancy less than 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429240000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444098, + "CONCEPT_NAME" : "Gestation period, 40 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46230007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 104, + "name" : "Ectopic pregnancy (ECT)", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4215648, + "CONCEPT_NAME" : "Acute renal failure following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "71909003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4312095, + "CONCEPT_NAME" : "Afibrinogenemia following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "85796009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3655216, + "CONCEPT_NAME" : "Air embolism due to and following ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "860689000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3655215, + "CONCEPT_NAME" : "Air embolism due to and following molar pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "860688008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3655206, + "CONCEPT_NAME" : "Amniotic fluid embolism due to and following ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "860677002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3655205, + "CONCEPT_NAME" : "Amniotic fluid embolism due to and following molar pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "860676006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4152444, + "CONCEPT_NAME" : "Antenatal ultrasound confirms ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "370382007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45763635, + "CONCEPT_NAME" : "Aspiration of ectopic pregnancy from cornu of fallopian tube", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "700073007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3655208, + "CONCEPT_NAME" : "Blood clot embolism due to and following ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "860679004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3655207, + "CONCEPT_NAME" : "Blood clot embolism due to and following molar pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "860678007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4147060, + "CONCEPT_NAME" : "Cerebral anoxia following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "30243004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44783183, + "CONCEPT_NAME" : "Combined intrauterine and ovarian pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "699240001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4135209, + "CONCEPT_NAME" : "Combined pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "31601007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40483581, + "CONCEPT_NAME" : "Combined tubal and intrauterine pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "442478007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440464, + "CONCEPT_NAME" : "Complication following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "2989004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4100193, + "CONCEPT_NAME" : "Damage to bladder following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "27552001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4185718, + "CONCEPT_NAME" : "Damage to bowel following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "44017002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4232953, + "CONCEPT_NAME" : "Damage to broad ligament following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "89573004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4173946, + "CONCEPT_NAME" : "Damage to cervix following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "42294002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42537767, + "CONCEPT_NAME" : "Damage to pelvic organs and tissues following ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "737329004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42537768, + "CONCEPT_NAME" : "Damage to pelvic organs and tissues following molar pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "737330009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4174543, + "CONCEPT_NAME" : "Damage to periurethral tissue following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "42536002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4194053, + "CONCEPT_NAME" : "Damage to uterus following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "79333004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4216382, + "CONCEPT_NAME" : "Damage to vagina following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72209007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4266839, + "CONCEPT_NAME" : "Defibrination syndrome following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "62698000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42537762, + "CONCEPT_NAME" : "Delayed hemorrhage due to and following ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "737322008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42537770, + "CONCEPT_NAME" : "Disorder of vein following ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "737332001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42537771, + "CONCEPT_NAME" : "Disorder of vein following molar pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "737333006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437611, + "CONCEPT_NAME" : "Ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "34801009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4276942, + "CONCEPT_NAME" : "Electrolyte imbalance following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6509007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42539701, + "CONCEPT_NAME" : "Embolism due to and following ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "737324009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42537764, + "CONCEPT_NAME" : "Embolism due to and following molar pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "737325005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4066014, + "CONCEPT_NAME" : "Endometritis following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "172001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42537763, + "CONCEPT_NAME" : "Excessive hemorrhage due to and following ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "737323003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40493226, + "CONCEPT_NAME" : "Excision of fallopian tube and surgical removal of ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "445912000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3655214, + "CONCEPT_NAME" : "Fat embolism due to and following ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "860687003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3655213, + "CONCEPT_NAME" : "Fat embolism due to and following molar pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "860686007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4149029, + "CONCEPT_NAME" : "Intraligamentous pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "35656003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4066151, + "CONCEPT_NAME" : "Intraperitoneal pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "17285009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4063939, + "CONCEPT_NAME" : "Intravascular hemolysis following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "20084001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42872572, + "CONCEPT_NAME" : "Laparoscopic excision of ectopic ovarian pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "450563004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42872571, + "CONCEPT_NAME" : "Laparoscopic excision of ruptured ectopic tubal pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "450562009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4112952, + "CONCEPT_NAME" : "Membranous pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198624007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4113218, + "CONCEPT_NAME" : "Mesenteric pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198626009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530979, + "CONCEPT_NAME" : "Miscarriage of tubal ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609525000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4107071, + "CONCEPT_NAME" : "Oliguria following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "29908007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 200153, + "CONCEPT_NAME" : "Ovarian pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "9899009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336392, + "CONCEPT_NAME" : "Parametritis following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87169001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4314877, + "CONCEPT_NAME" : "Pelvic peritonitis following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86709000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42537765, + "CONCEPT_NAME" : "Physiological shock due to and following molar pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "737326006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4023382, + "CONCEPT_NAME" : "Postoperative shock following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "11669000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3655209, + "CONCEPT_NAME" : "Pulmonary embolism due to and following ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "860680001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3655210, + "CONCEPT_NAME" : "Pulmonary embolism due to and following molar pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "860681002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4308664, + "CONCEPT_NAME" : "Removal of ectopic fetus from abdominal cavity", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "387709005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4227423, + "CONCEPT_NAME" : "Removal of ectopic fetus from fallopian tube without salpingectomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "88362001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4247895, + "CONCEPT_NAME" : "Removal of ectopic fetus from ovary without oophorectomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "73341009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4300391, + "CONCEPT_NAME" : "Removal of extrauterine ectopic fetus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "387710000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45757120, + "CONCEPT_NAME" : "Renal failure after ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10752771000119100", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42537766, + "CONCEPT_NAME" : "Renal failure following molar pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "737327002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4095115, + "CONCEPT_NAME" : "Renal tubular necrosis following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26235008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4316051, + "CONCEPT_NAME" : "Salpingitis following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "9516007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4239009, + "CONCEPT_NAME" : "Salpingo-oophoritis following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57468008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4174577, + "CONCEPT_NAME" : "Secondary abdominal pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276881003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4187090, + "CONCEPT_NAME" : "Sepsis following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46848006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3655212, + "CONCEPT_NAME" : "Septic embolism due to and following ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "860683004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3655211, + "CONCEPT_NAME" : "Septic embolism due to and following molar pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "860682009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4080587, + "CONCEPT_NAME" : "Septic shock following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "24051007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110295, + "CONCEPT_NAME" : "Surgical treatment of ectopic pregnancy; abdominal pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59130", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110298, + "CONCEPT_NAME" : "Surgical treatment of ectopic pregnancy; cervical, with evacuation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59140", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110297, + "CONCEPT_NAME" : "Surgical treatment of ectopic pregnancy; interstitial, uterine pregnancy with partial resection of uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59136", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4296038, + "CONCEPT_NAME" : "Tetanus complicating ectopic AND/OR molar pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "76843005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 199076, + "CONCEPT_NAME" : "Tubal pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "79586000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4151214, + "CONCEPT_NAME" : "Uremia following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "28196006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4242401, + "CONCEPT_NAME" : "Urinary tract infection following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "38176009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4129027, + "CONCEPT_NAME" : "Viable fetus in abdominal pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237253003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 107, + "name" : "Ectopic pregnancy procedure (ECT1 & ECT 2)", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4200678, + "CONCEPT_NAME" : "Abdominal hysterectomy and left salpingo-oophorectomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "302191001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4300368, + "CONCEPT_NAME" : "Aspiration of ectopic pregnancy from fallopian tube", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "387617009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4093429, + "CONCEPT_NAME" : "Bilateral complete salpingectomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25811000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004347, + "CONCEPT_NAME" : "Bilateral partial salpingectomy, not otherwise specified", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "66.63", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4107080, + "CONCEPT_NAME" : "Bilateral salpingectomy with oophorectomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "29827000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4142956, + "CONCEPT_NAME" : "Diagnostic laparoscopy of female pelvis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "264973001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757216, + "CONCEPT_NAME" : "Discharge disposition [CARE]", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "52688-9", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Survey" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757177, + "CONCEPT_NAME" : "Discharge Status", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "52523-8", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Survey" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40259069, + "CONCEPT_NAME" : "Dye test of fallopian tube", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "177006000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4074443, + "CONCEPT_NAME" : "Endoscopic freeing of adhesions of fallopian tube", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "176994003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4074426, + "CONCEPT_NAME" : "Excision of ectopic ovarian pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "176928008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4074427, + "CONCEPT_NAME" : "Excision of ruptured ectopic tubal pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "176929000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004345, + "CONCEPT_NAME" : "Excision or destruction of lesion of fallopian tube", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "66.61", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4196129, + "CONCEPT_NAME" : "Failed minimum access approach", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "313004003", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4001541, + "CONCEPT_NAME" : "Fallopian tube excision", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "120053002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4306064, + "CONCEPT_NAME" : "Fimbrial extraction of tubal pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "387616000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4100257, + "CONCEPT_NAME" : "Fimbriectomy of fallopian tube", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25344002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4084217, + "CONCEPT_NAME" : "Gynecological emergency hospital admission", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "183459001", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4085257, + "CONCEPT_NAME" : "Inhalation anesthesia, machine system, closed, circulation of primary agent", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "24277005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40347147, + "CONCEPT_NAME" : "Laparoscopic", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "260508005", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Qualifier Value" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40378260, + "CONCEPT_NAME" : "Laparoscopic approach", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "180627003", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Qualifier Value" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4319321, + "CONCEPT_NAME" : "Laparoscopic lysis of adhesions", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "9540004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40490893, + "CONCEPT_NAME" : "Laparoscopic lysis of adhesions of ovary and fallopian tube", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "447077004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4190526, + "CONCEPT_NAME" : "Laparoscopic total abdominal hysterectomy and bilateral salpingo-oophorectomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "414575003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110299, + "CONCEPT_NAME" : "Laparoscopic treatment of ectopic pregnancy; without salpingectomy and/or oophorectomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59150", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110300, + "CONCEPT_NAME" : "Laparoscopic treatment of ectopic pregnancy; with salpingectomy and/or oophorectomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59151", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4251314, + "CONCEPT_NAME" : "Laparoscopy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "73632009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40480864, + "CONCEPT_NAME" : "Laparoscopy assisted vaginal hysterectomy with bilateral salpingo-oophorectomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "441820006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4032749, + "CONCEPT_NAME" : "Laparoscopy of fallopian tube", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "236938008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110240, + "CONCEPT_NAME" : "Laparoscopy, surgical; with removal of adnexal structures (partial or total oophorectomy and/or salpingectomy)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "58661", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2722205, + "CONCEPT_NAME" : "Laparoscopy, surgical; with removal of adnexal structures (partial or total oophorectomy and/or salpingectomy). (Deprecated)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "56307", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110245, + "CONCEPT_NAME" : "Laparoscopy, surgical; with salpingostomy (salpingoneostomy)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "58673", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2722217, + "CONCEPT_NAME" : "Laparoscopy, surgical; with salpingostomy (salpingoneostomy). (Deprecated)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "56343", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4074877, + "CONCEPT_NAME" : "Left salpingectomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "176917009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4074876, + "CONCEPT_NAME" : "Left salpingo-oophorectomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "176915001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4214980, + "CONCEPT_NAME" : "Lysis of adhesions", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "39270003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004348, + "CONCEPT_NAME" : "Other partial salpingectomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "66.69", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4267567, + "CONCEPT_NAME" : "Partial salpingectomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "62692004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004342, + "CONCEPT_NAME" : "Removal of both fallopian tubes at same operative episode", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "66.51", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004788, + "CONCEPT_NAME" : "Removal of extratubal ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "74.3", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "3-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004343, + "CONCEPT_NAME" : "Removal of remaining fallopian tube", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "66.52", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4074424, + "CONCEPT_NAME" : "Right salpingectomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "176916000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4072837, + "CONCEPT_NAME" : "Right salpingo-oophorectomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "176914002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110247, + "CONCEPT_NAME" : "Salpingectomy, complete or partial, unilateral or bilateral (separate procedure)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "58700", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4032000, + "CONCEPT_NAME" : "Salpingectomy of remaining fallopian tube", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "14353000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004346, + "CONCEPT_NAME" : "Salpingectomy with removal of tubal pregnancy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "66.62", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4021363, + "CONCEPT_NAME" : "Salpingo-oophorectomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "116028008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4073272, + "CONCEPT_NAME" : "Salpingo-oophorectomy of remaining solitary fallopian tube and ovary", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "176909001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004351, + "CONCEPT_NAME" : "Salpingo-oophorostomy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "66.72", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004362, + "CONCEPT_NAME" : "Salpingo-salpingostomy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "66.73", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4263669, + "CONCEPT_NAME" : "Salpingostomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "60463004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004308, + "CONCEPT_NAME" : "Salpingostomy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "66.02", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110253, + "CONCEPT_NAME" : "Salpingostomy (salpingoneostomy)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "58770", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004307, + "CONCEPT_NAME" : "Salpingotomy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "66.01", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004306, + "CONCEPT_NAME" : "Salpingotomy and salpingostomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "66.0", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "3-dig nonbill code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110296, + "CONCEPT_NAME" : "Surgical treatment of ectopic pregnancy; interstitial, uterine pregnancy requiring total hysterectomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59135", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110293, + "CONCEPT_NAME" : "Surgical treatment of ectopic pregnancy; tubal or ovarian, requiring salpingectomy and/or oophorectomy, abdominal or vaginal approach", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59120", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110294, + "CONCEPT_NAME" : "Surgical treatment of ectopic pregnancy; tubal or ovarian, without salpingectomy and/or oophorectomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59121", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40258875, + "CONCEPT_NAME" : "Termination of pregnancy NEC", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "176831008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4019096, + "CONCEPT_NAME" : "Total abdominal hysterectomy with bilateral salpingo-oophorectomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "116144002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004331, + "CONCEPT_NAME" : "Total bilateral salpingectomy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "66.5", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "3-dig nonbill code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004330, + "CONCEPT_NAME" : "Total unilateral salpingectomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "66.4", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "3-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336229, + "CONCEPT_NAME" : "Unilateral salpingectomy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "86894005", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4301905, + "CONCEPT_NAME" : "Unilateral salpingo-oophorectomy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "78698008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 108, + "name" : "Preterm (PREM)", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 432452, + "CONCEPT_NAME" : "Anemia of prematurity", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "47100003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014461, + "CONCEPT_NAME" : "Baby birth weight equal to 50 percent to 74 percent (3450-3749g)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169864006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4151169, + "CONCEPT_NAME" : "Baby birth weight less than 751gm", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "310491007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015275, + "CONCEPT_NAME" : "Baby extremely premature 28-32 weeks", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "169851005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4149449, + "CONCEPT_NAME" : "Baby premature 24-26 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "310523002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37016220, + "CONCEPT_NAME" : "Baby premature 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15887011000119107", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37016221, + "CONCEPT_NAME" : "Baby premature 25 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15887051000119108", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4149457, + "CONCEPT_NAME" : "Baby premature 26-28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "310548004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37016222, + "CONCEPT_NAME" : "Baby premature 26 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15887091000119103", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37018684, + "CONCEPT_NAME" : "Baby premature 27 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15887131000119101", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 46271955, + "CONCEPT_NAME" : "Baby premature 28-32 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "710235005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37016216, + "CONCEPT_NAME" : "Baby premature 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15750001000119103", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37016217, + "CONCEPT_NAME" : "Baby premature 29 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15750041000119101", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37016218, + "CONCEPT_NAME" : "Baby premature 30 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15750081000119106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37016213, + "CONCEPT_NAME" : "Baby premature 31 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15635451000119107", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 46271814, + "CONCEPT_NAME" : "Baby premature 32-36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "710068006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37018683, + "CONCEPT_NAME" : "Baby premature 32 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15635411000119106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37018889, + "CONCEPT_NAME" : "Baby premature 33 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15635371000119105", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37016212, + "CONCEPT_NAME" : "Baby premature 34 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15635331000119107", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 762577, + "CONCEPT_NAME" : "Baby premature 35-36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429151000124100", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37016211, + "CONCEPT_NAME" : "Baby premature 35 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15635291000119101", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014299, + "CONCEPT_NAME" : "Baby premature 36-38 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169849006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4149451, + "CONCEPT_NAME" : "Baby premature 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "310530008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4150406, + "CONCEPT_NAME" : "Baby premature 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "310529003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4150405, + "CONCEPT_NAME" : "Baby premature 38 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "310528006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4150404, + "CONCEPT_NAME" : "Baby premature 39 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "310527001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015274, + "CONCEPT_NAME" : "Baby very premature 32 to 36 weeks", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "169850006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36684754, + "CONCEPT_NAME" : "Bilateral retinopathy of prematurity", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "343791000119101", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37207968, + "CONCEPT_NAME" : "Bilateral retinopathy of prematurity of eyes stage 0", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "343781000119104", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36684753, + "CONCEPT_NAME" : "Bilateral retinopathy of prematurity of eyes stage 1 - demarcation line", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "343771000119102", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36684752, + "CONCEPT_NAME" : "Bilateral retinopathy of prematurity of eyes stage 2 - intraretinal ridge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "343761000119108", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36684751, + "CONCEPT_NAME" : "Bilateral retinopathy of prematurity of eyes stage 3 - ridge with extraretinal fibrovascular proliferation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "343751000119106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4141513, + "CONCEPT_NAME" : "Complication of prematurity", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "426850008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4195545, + "CONCEPT_NAME" : "Disorder relating to short gestation AND/OR low birthweight", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "67645006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 38001501, + "CONCEPT_NAME" : "Extreme immaturity or respiratory distress syndrome, neonate", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "790", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "DRG", + "CONCEPT_CLASS_ID" : "MS-DRG" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439128, + "CONCEPT_NAME" : "Extreme prematurity of infant", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276658003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4148097, + "CONCEPT_NAME" : "Fetal or neonatal effect of abruptio placentae", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "268803008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4118056, + "CONCEPT_NAME" : "Fetal or neonatal effect of maternal premature rupture of membrane", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206037001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 72726, + "CONCEPT_NAME" : "Light-for-dates with signs of fetal malnutrition", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64177003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36675173, + "CONCEPT_NAME" : "Moderate to late prematurity of infant", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "771507004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440847, + "CONCEPT_NAME" : "Neonatal jaundice associated with preterm delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "73749009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4086393, + "CONCEPT_NAME" : "Premature delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "282020008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4217564, + "CONCEPT_NAME" : "Premature infant", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "395507008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4147874, + "CONCEPT_NAME" : "Premature infant 28-37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "310661005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4273560, + "CONCEPT_NAME" : "Premature labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6383007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4175637, + "CONCEPT_NAME" : "Premature pregnancy delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "49550006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4064709, + "CONCEPT_NAME" : "Premature rupture of membranes, labor delayed by therapy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199661007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4058403, + "CONCEPT_NAME" : "Premature separation of placenta with coagulation defect", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198912003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440519, + "CONCEPT_NAME" : "Premature - weight 1000g-2499g or gestation of 28-37weeks", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "206169007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440525, + "CONCEPT_NAME" : "Prematurity of fetus", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "44247006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36675035, + "CONCEPT_NAME" : "Prematurity of infant", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "771299009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37311892, + "CONCEPT_NAME" : "Primary central sleep apnea of prematurity", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "789009003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2109484, + "CONCEPT_NAME" : "Repair, initial inguinal hernia, preterm infant (younger than 37 weeks gestation at birth), performed from birth up to 50 weeks postconception age, with or without hydrocelectomy; incarcerated or strangulated", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "49492", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2109483, + "CONCEPT_NAME" : "Repair, initial inguinal hernia, preterm infant (younger than 37 weeks gestation at birth), performed from birth up to 50 weeks postconception age, with or without hydrocelectomy; reducible", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "49491", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 373766, + "CONCEPT_NAME" : "Retinopathy of prematurity", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "415297005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36684687, + "CONCEPT_NAME" : "Retinopathy of prematurity of left eye", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "338021000119106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36684686, + "CONCEPT_NAME" : "Retinopathy of prematurity of left eye stage 1 - demarcation line", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "338001000119102", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36684685, + "CONCEPT_NAME" : "Retinopathy of prematurity of left eye stage 2 - intraretinal ridge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "337991000119106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36684684, + "CONCEPT_NAME" : "Retinopathy of prematurity of left eye stage 3 - ridge with extraretinal fibrovascular proliferation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "337981000119108", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36684624, + "CONCEPT_NAME" : "Retinopathy of prematurity of right eye", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "332411000119108", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36684623, + "CONCEPT_NAME" : "Retinopathy of prematurity of right eye stage 1 - demarcation line", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "332391000119108", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36684622, + "CONCEPT_NAME" : "Retinopathy of prematurity of right eye stage 2 - intraretinal ridge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "332381000119105", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36684621, + "CONCEPT_NAME" : "Retinopathy of prematurity of right eye stage 3 - ridge with extraretinal fibrovascular proliferation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "332371000119107", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45772079, + "CONCEPT_NAME" : "Retinopathy of prematurity stage 0", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "124111000119102", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 375250, + "CONCEPT_NAME" : "Retinopathy of prematurity stage 1 - demarcation line", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "408847006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 375251, + "CONCEPT_NAME" : "Retinopathy of prematurity stage 2 - intraretinal ridge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "408848001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 379009, + "CONCEPT_NAME" : "Retinopathy of prematurity stage 3 - ridge with extraretinal fibrovascular proliferation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "408849009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443519, + "CONCEPT_NAME" : "Retinopathy of prematurity stage 4 - subtotal retinal detachment", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "408850009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443520, + "CONCEPT_NAME" : "Retinopathy of prematurity stage 5 - total retinal detachment", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "408851008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 136530, + "CONCEPT_NAME" : "Sclerema neonatorum", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206539008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2514572, + "CONCEPT_NAME" : "Subsequent intensive care, per day, for the evaluation and management of the recovering infant (present body weight of 2501-5000 grams)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "99480", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42740403, + "CONCEPT_NAME" : "Subsequent intensive care, per day, for the evaluation and management of the recovering low birth weight infant (present body weight of 1500-2500 g)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "99299", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2514571, + "CONCEPT_NAME" : "Subsequent intensive care, per day, for the evaluation and management of the recovering low birth weight infant (present body weight of 1500-2500 grams)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "99479", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42739401, + "CONCEPT_NAME" : "Subsequent intensive care, per day, for the evaluation and management of the recovering very low birth weight infant (present body weight less than 1500 g)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "99298", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2514570, + "CONCEPT_NAME" : "Subsequent intensive care, per day, for the evaluation and management of the recovering very low birth weight infant (present body weight less than 1500 grams)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "99478", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2111055, + "CONCEPT_NAME" : "Treatment of extensive or progressive retinopathy, 1 or more sessions, preterm infant (less than 37 weeks gestation at birth), performed from birth up to 1 year of age (eg, retinopathy of prematurity), photocoagulation or cryotherapy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "67229", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435925, + "CONCEPT_NAME" : "Very premature - less than 1000g or less than 28 weeks", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "268817004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4149523, + "CONCEPT_NAME" : "Very preterm maturity of infant", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "268868001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 109, + "name" : "Methotrexate", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 1305058, + "CONCEPT_NAME" : "methotrexate", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6851", + "DOMAIN_ID" : "Drug", + "VOCABULARY_ID" : "RxNorm", + "CONCEPT_CLASS_ID" : "Ingredient" + }, + "isExcluded" : false, + "includeDescendants" : true, + "includeMapped" : false + } + ] + } + }, + { + "id" : 111, + "name" : "Pregnancy Confirmation (PCONF)", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 441092, + "CONCEPT_NAME" : "Advanced maternal age gravida", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "416413003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061424, + "CONCEPT_NAME" : "Antenatal care: primigravida", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169573007", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40760833, + "CONCEPT_NAME" : "Birth plurality of Pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57722-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Clinical Observation" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4139126, + "CONCEPT_NAME" : "Braxton Hicks contractions", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "32644009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015590, + "CONCEPT_NAME" : "Counseling for termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10383002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3011536, + "CONCEPT_NAME" : "Delivery date Estimated", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "11778-8", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Clinical Observation" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43054893, + "CONCEPT_NAME" : "Delivery location", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72150-6", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Survey" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43021054, + "CONCEPT_NAME" : "Dichorionic diamniotic twin pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "459166009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37017322, + "CONCEPT_NAME" : "Dizygotic twin pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "713575004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441085, + "CONCEPT_NAME" : "Elderly primigravida", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "29399001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 192380, + "CONCEPT_NAME" : "Failed attempted termination of pregnancy without complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90645002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4210896, + "CONCEPT_NAME" : "Fetal gestational age", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57036006", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Observable Entity" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3006722, + "CONCEPT_NAME" : "Fetal Heart Narrative Activity US", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "11616-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Clinical Observation" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40759953, + "CONCEPT_NAME" : "Fetal Narrative Movement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "56834-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Clinical Observation" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 195877, + "CONCEPT_NAME" : "Finding of gravid uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "289675001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061522, + "CONCEPT_NAME" : "General practitioner unit delivery booking", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169622009", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437937, + "CONCEPT_NAME" : "Grand multipara", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "18656007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4030415, + "CONCEPT_NAME" : "Illegitimate pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14080002", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 197031, + "CONCEPT_NAME" : "Intrauterine pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65727000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061672, + "CONCEPT_NAME" : "IUD failure - pregnant", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169488004", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43021951, + "CONCEPT_NAME" : "Monochorionic diamniotic twin pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "459168005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43021952, + "CONCEPT_NAME" : "Monochorionic monoamniotic twin pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "459171002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3045823, + "CONCEPT_NAME" : "Multiple pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45371-2", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Clinical Observation" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432969, + "CONCEPT_NAME" : "Multiple pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16356006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3000119, + "CONCEPT_NAME" : "Narrative Fetal presentation US", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "18850-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Clinical Observation" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4217975, + "CONCEPT_NAME" : "Normal pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72892002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038942, + "CONCEPT_NAME" : "O/E - fetal movements", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163535001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4150948, + "CONCEPT_NAME" : "O/E - fetal presentation", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "268952006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4148890, + "CONCEPT_NAME" : "Pregnancy benefits", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "270471004", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Qualifier Value" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4094910, + "CONCEPT_NAME" : "Pregnancy test positive", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "250423000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061785, + "CONCEPT_NAME" : "Pregnancy unplanned and unwanted", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169567006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060237, + "CONCEPT_NAME" : "Pregnancy unplanned but wanted", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169566002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4299535, + "CONCEPT_NAME" : "Pregnant", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "77386006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4059982, + "CONCEPT_NAME" : "Pregnant - blood test confirms", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169561007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061686, + "CONCEPT_NAME" : "Pregnant - on history", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169563005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4059984, + "CONCEPT_NAME" : "Pregnant - planned", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169565003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061411, + "CONCEPT_NAME" : "Pregnant, sheath failure", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169508004", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4059981, + "CONCEPT_NAME" : "Pregnant - urine test confirms", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169560008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4133029, + "CONCEPT_NAME" : "Primigravida", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "127364007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442594, + "CONCEPT_NAME" : "Quadruplet pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "60810003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440466, + "CONCEPT_NAME" : "Quadruplet pregnancy with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199326006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061423, + "CONCEPT_NAME" : "Questionable if pregnancy was planned", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169569009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4214930, + "CONCEPT_NAME" : "Refer to early pregnancy unit", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "417577000", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040000, + "CONCEPT_NAME" : "Reliability of last menstrual period observation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "53661-5", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Clinical Observation" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 196484, + "CONCEPT_NAME" : "Retroverted incarcerated gravid uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199466009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4042412, + "CONCEPT_NAME" : "Serum pregnancy test positive", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "166437003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 198212, + "CONCEPT_NAME" : "Spotting per vagina in pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "284075002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4129023, + "CONCEPT_NAME" : "Teenage pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237240001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4218813, + "CONCEPT_NAME" : "Third trimester pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "41587001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432375, + "CONCEPT_NAME" : "Triplet pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64254006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441919, + "CONCEPT_NAME" : "Twin pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65147003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4307820, + "CONCEPT_NAME" : "Unplanned pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "83074005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4059985, + "CONCEPT_NAME" : "Unplanned pregnancy unknown if child is wanted", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169568001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4239301, + "CONCEPT_NAME" : "Unwanted pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "58532003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4041878, + "CONCEPT_NAME" : "Urine pregnancy test positive", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "167256004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3023791, + "CONCEPT_NAME" : "Uterus Fundal height Tape measure", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "11881-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Clinical Observation" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40519557, + "CONCEPT_NAME" : "[V]Other unwanted pregnancy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "316385002", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40524802, + "CONCEPT_NAME" : "[V]Pregnant state, incidental", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "315903005", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40524805, + "CONCEPT_NAME" : "[V]Unspecified pregnant state", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "315906002", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 113, + "name" : "Threatened miscarriage (TA)", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 440457, + "CONCEPT_NAME" : "Threatened miscarriage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54048003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4252252, + "CONCEPT_NAME" : "Threatened miscarriage in first trimester", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "73790007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4294259, + "CONCEPT_NAME" : "Threatened miscarriage in second trimester", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "75933004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4032055, + "CONCEPT_NAME" : "Threatened miscarriage in third trimester", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10884004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 112, + "name" : "Pregnancy complications (PCOMP)", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4198125, + "CONCEPT_NAME" : "Abdominal pain in early pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "314041007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4149783, + "CONCEPT_NAME" : "Abdominal pain in pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "309737007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 193525, + "CONCEPT_NAME" : "Abdominal pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "82661006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 314099, + "CONCEPT_NAME" : "Abnormal fetal heart rate", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "312668007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437688, + "CONCEPT_NAME" : "Abnormal findings on antenatal screening of mother", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199732004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440216, + "CONCEPT_NAME" : "Abnormal glucose tolerance test", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "274858002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439403, + "CONCEPT_NAME" : "Abnormal glucose tolerance test during pregnancy - baby not yet delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "372054004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4162865, + "CONCEPT_NAME" : "Abnormal glucose tolerance test during pregnancy, childbirth and the puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "372046001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 197050, + "CONCEPT_NAME" : "Abnormality of organs AND/OR soft tissues of pelvis affecting pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1639007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4034308, + "CONCEPT_NAME" : "Acromion presentation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "23954006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004824, + "CONCEPT_NAME" : "Amnioinfusion", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "75.37", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435880, + "CONCEPT_NAME" : "Amniotic cavity infection with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199678003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435616, + "CONCEPT_NAME" : "Amniotic fluid embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "17263003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4154997, + "CONCEPT_NAME" : "Amniotic fluid leaking", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "371380006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441959, + "CONCEPT_NAME" : "Amniotic fluid -meconium stain", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "168092006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 436768, + "CONCEPT_NAME" : "Amniotic fluid pulmonary embolism with antenatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200296007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432967, + "CONCEPT_NAME" : "Anemia during pregnancy - baby not yet delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199246003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434701, + "CONCEPT_NAME" : "Anemia in mother complicating pregnancy, childbirth AND/OR puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45828008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4099889, + "CONCEPT_NAME" : "Anemia of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "27342004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4079835, + "CONCEPT_NAME" : "Antenatal risk factors", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276445008", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435887, + "CONCEPT_NAME" : "Antepartum deep vein thrombosis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "49956009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434089, + "CONCEPT_NAME" : "Antepartum hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "34842007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4143074, + "CONCEPT_NAME" : "Antepartum hemorrhage, abruptio placentae and placenta previa", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "267197003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438489, + "CONCEPT_NAME" : "Antepartum hemorrhage associated with coagulation defect", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "267199000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438203, + "CONCEPT_NAME" : "Antepartum hemorrhage with coagulation defect - not delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198918004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4129039, + "CONCEPT_NAME" : "Anti-D antibodies", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "237301008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 80156, + "CONCEPT_NAME" : "Asymptomatic bacteriuria in pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "31563000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 321638, + "CONCEPT_NAME" : "Benign essential hypertension complicating pregnancy, childbirth and the puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198942000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 314423, + "CONCEPT_NAME" : "Benign essential hypertension complicating pregnancy, childbirth and the puerperium - not delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198946002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4027371, + "CONCEPT_NAME" : "Bone AND/OR joint disorder in mother complicating pregnancy, childbirth AND/OR puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "128076000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 73282, + "CONCEPT_NAME" : "Breast engorgement in pregnancy, the puerperium or lactation with antenatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200420005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 76756, + "CONCEPT_NAME" : "Breech presentation with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199355003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 375016, + "CONCEPT_NAME" : "Central nervous system malformation in fetus affecting obstetrical care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1538006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110305, + "CONCEPT_NAME" : "Cerclage of cervix, during pregnancy; abdominal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59325", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110304, + "CONCEPT_NAME" : "Cerclage of cervix, during pregnancy; vaginal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59320", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4321386, + "CONCEPT_NAME" : "Cervical cerclage suture present", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "69802008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 436740, + "CONCEPT_NAME" : "Cervical incompetence", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "17382005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437334, + "CONCEPT_NAME" : "Cervical incompetence with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199484006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 72973, + "CONCEPT_NAME" : "Chromosomal abnormality in fetus affecting obstetrical care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "42686001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3170656, + "CONCEPT_NAME" : "Complcated pregnancy due to surgical history: uterine myomectomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6980001000004103", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "Nebraska Lexicon", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435875, + "CONCEPT_NAME" : "Complication of pregnancy, childbirth and/or puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198609003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433822, + "CONCEPT_NAME" : "Complication related to pregnancy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "90821003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 80205, + "CONCEPT_NAME" : "Condition in fetus originating in the perinatal period", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "41168002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 197339, + "CONCEPT_NAME" : "Congenital abnormality of uterus, affecting pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "41215002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 193825, + "CONCEPT_NAME" : "Congenital abnormality of uterus complicating antenatal care, baby not yet delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "267216000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 314426, + "CONCEPT_NAME" : "Congenital cardiovascular disorder during pregnancy - baby not yet delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199268008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 196175, + "CONCEPT_NAME" : "Congenital OR acquired abnormality of cervix affecting pregnancy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "111443000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 201920, + "CONCEPT_NAME" : "Congenital OR acquired abnormality of vagina affecting pregnancy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "111444006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440162, + "CONCEPT_NAME" : "Congenital or acquired abnormality of vulva complicating antenatal care - baby not yet delivered", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "267249009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433826, + "CONCEPT_NAME" : "Continuing pregnancy after abortion of one fetus or more", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199306007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432373, + "CONCEPT_NAME" : "Continuing pregnancy after intrauterine death of one or more fetuses", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199307003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43020670, + "CONCEPT_NAME" : "Continuing pregnancy after intrauterine death of one twin with intrauterine retention of dead twin", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "472321009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441647, + "CONCEPT_NAME" : "Continuing pregnancy after intrauterine death of twin fetus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429187001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4120986, + "CONCEPT_NAME" : "Controlled cord traction of placenta", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "302384005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433828, + "CONCEPT_NAME" : "Cord tangled or knotted with compression", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "267266006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442421, + "CONCEPT_NAME" : "Cord tangled with compression with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199881006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004823, + "CONCEPT_NAME" : "Correction of fetal defect", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "75.36", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4170118, + "CONCEPT_NAME" : "Cystitis of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "275412000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 73265, + "CONCEPT_NAME" : "Deep transverse arrest with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199775005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 192691, + "CONCEPT_NAME" : "Diabetes mellitus during pregnancy - baby not yet delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199227004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 194700, + "CONCEPT_NAME" : "Diabetes mellitus in mother complicating pregnancy, childbirth AND/OR puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "76751001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 201958, + "CONCEPT_NAME" : "Disorder involving the integument of fetus OR newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "111474003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438815, + "CONCEPT_NAME" : "Disorder of amniotic cavity AND/OR membrane", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72860003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 79890, + "CONCEPT_NAME" : "Disorder of pelvic size and disproportion", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237256006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4053583, + "CONCEPT_NAME" : "Disorder of placenta", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "125586008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 201091, + "CONCEPT_NAME" : "Disproportion - major pelvic abnormality", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199398004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4059763, + "CONCEPT_NAME" : "Disproportion - major pelvic abnormality with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199402008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442913, + "CONCEPT_NAME" : "Drug dependence during pregnancy - baby not yet delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199254001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440787, + "CONCEPT_NAME" : "Drug dependence in mother complicating pregnancy, childbirth AND/OR puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "34150001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443700, + "CONCEPT_NAME" : "Eclampsia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15938005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 137613, + "CONCEPT_NAME" : "Eclampsia in pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198992004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438204, + "CONCEPT_NAME" : "Edema or excessive weight gain in pregnancy without mention of hypertension", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "267202005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442442, + "CONCEPT_NAME" : "Elderly primigravida with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199719009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 81636, + "CONCEPT_NAME" : "Excessive fetal growth affecting management of mother", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "22173004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40479820, + "CONCEPT_NAME" : "Exposure to rubella in pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "444517009", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Event" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 78210, + "CONCEPT_NAME" : "Face OR brow presentation of fetus", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "37762002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4071437, + "CONCEPT_NAME" : "Face presentation of fetus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "21882006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437341, + "CONCEPT_NAME" : "Failed mechanical induction with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199695006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 201083, + "CONCEPT_NAME" : "Fetal AND/OR placental disorder affecting management of mother", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "22753004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43022052, + "CONCEPT_NAME" : "Fetal anemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "462166006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 79146, + "CONCEPT_NAME" : "Fetal blood loss", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206390008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4196670, + "CONCEPT_NAME" : "Fetal blood loss from vasa previa", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "50544004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 80165, + "CONCEPT_NAME" : "Fetal disproportion", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "31805001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 73268, + "CONCEPT_NAME" : "Fetal distress affecting management of mother", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12867002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4203009, + "CONCEPT_NAME" : "Fetal exsanguination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "52977000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 80204, + "CONCEPT_NAME" : "Fetal growth restriction", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "22033007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 201366, + "CONCEPT_NAME" : "Fetal-maternal hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "71028008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 196757, + "CONCEPT_NAME" : "Fetal-maternal hemorrhage with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199578005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4145315, + "CONCEPT_NAME" : "Fetal movements felt", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "268470003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441682, + "CONCEPT_NAME" : "Fetal or neonatal effect of compression of umbilical cord", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86629005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433027, + "CONCEPT_NAME" : "Fetal or neonatal effect of maternal hypertensive disease", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "268794002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 436219, + "CONCEPT_NAME" : "Fetal or neonatal effect of maternal infection", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "206005002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441680, + "CONCEPT_NAME" : "Fetal or neonatal effect of multiple pregnancy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "18001006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 81360, + "CONCEPT_NAME" : "Fetus papyraceous", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90127001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4047725, + "CONCEPT_NAME" : "Fetus small-for-dates with signs of malnutrition", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206164002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442827, + "CONCEPT_NAME" : "Fetus with central nervous system malformation with antenatal problem", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "199520001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 80463, + "CONCEPT_NAME" : "Fetus with chromosomal abnormality with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199527003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4064277, + "CONCEPT_NAME" : "Fetus with damage due to intrauterine contraceptive device", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199558002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4063297, + "CONCEPT_NAME" : "Fetus with damage due to intrauterine contraceptive device with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199561001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060672, + "CONCEPT_NAME" : "Fetus with drug damage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199547006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4064178, + "CONCEPT_NAME" : "Fetus with drug damage with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199550009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4064169, + "CONCEPT_NAME" : "Fetus with hereditary disease", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199531009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4064172, + "CONCEPT_NAME" : "Fetus with hereditary disease with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199534001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4143204, + "CONCEPT_NAME" : "Fetus with viral damage via mother", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "267254000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4064175, + "CONCEPT_NAME" : "Fetus with viral damage via mother with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199539006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3657563, + "CONCEPT_NAME" : "First trimester bleeding", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1323351000000104", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 76772, + "CONCEPT_NAME" : "Galactorrhea in pregnancy and the puerperium with antenatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200448005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 76750, + "CONCEPT_NAME" : "Generally contracted pelvis with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199406006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 77340, + "CONCEPT_NAME" : "Genitourinary tract infection in pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "267204006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 74415, + "CONCEPT_NAME" : "Genitourinary tract infection in pregnancy - not delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199108000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4024659, + "CONCEPT_NAME" : "Gestational diabetes mellitus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "11687002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443214, + "CONCEPT_NAME" : "Gestational edema", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237285000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442565, + "CONCEPT_NAME" : "Gestational edema without hypertension", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "77376005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4058113, + "CONCEPT_NAME" : "Gestational edema with proteinuria", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199141002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442441, + "CONCEPT_NAME" : "Grand multiparity with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199715003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 316478, + "CONCEPT_NAME" : "Heart disease in mother complicating pregnancy, childbirth AND/OR puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "78381004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2212713, + "CONCEPT_NAME" : "Hemoglobin or RBCs, fetal, for fetomaternal hemorrhage; differential lysis (Kleihauer-Betke)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "85460", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437090, + "CONCEPT_NAME" : "Hemolytic disease of fetus OR newborn due to ABO immunization", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "32858009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433603, + "CONCEPT_NAME" : "Hemolytic disease of fetus OR newborn due to RhD isoimmunization", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86986002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438478, + "CONCEPT_NAME" : "Hemorrhage in early pregnancy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "25825004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437935, + "CONCEPT_NAME" : "Hemorrhage in early pregnancy, antepartum", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "30850008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4311256, + "CONCEPT_NAME" : "Herpes gestationis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86081009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442088, + "CONCEPT_NAME" : "High head at term", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199373000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 72696, + "CONCEPT_NAME" : "High head at term with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199376008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4302252, + "CONCEPT_NAME" : "High risk pregnancy care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "386322007", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4062565, + "CONCEPT_NAME" : "History of recurrent miscarriage - not delivered", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199088001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 81923, + "CONCEPT_NAME" : "Hydrocephalic disproportion with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199428006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444245, + "CONCEPT_NAME" : "Hydrocephalic fetus causing disproportion", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "111439004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 77662, + "CONCEPT_NAME" : "Hydrops fetalis due to isoimmunization", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15539009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4030872, + "CONCEPT_NAME" : "Hyperemesis gravidarum", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14094001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4098582, + "CONCEPT_NAME" : "Hyperemesis gravidarum before end of 22 week gestation with carbohydrate depletion", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "27152008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4227141, + "CONCEPT_NAME" : "Hyperemesis gravidarum before end of 22 week gestation with dehydration", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87621000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4142340, + "CONCEPT_NAME" : "Hyperemesis gravidarum before end of 22 week gestation with electrolyte imbalance", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "33370009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 436485, + "CONCEPT_NAME" : "Hyperemesis gravidarum with metabolic disturbance", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199025001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440788, + "CONCEPT_NAME" : "Hyperemesis gravidarum with metabolic disturbance - not delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199028004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 321080, + "CONCEPT_NAME" : "Hypertension complicating pregnancy, childbirth and the puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198941007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 133284, + "CONCEPT_NAME" : "Impetigo herpetiformis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65539006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 436180, + "CONCEPT_NAME" : "Infection of amniotic cavity", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10573002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433823, + "CONCEPT_NAME" : "Infectious disease in mother complicating pregnancy, childbirth AND/OR puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40609001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433266, + "CONCEPT_NAME" : "Infective/parasitic disease in preg/childbirth/puerperium", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "199153003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 79896, + "CONCEPT_NAME" : "Inlet pelvic contraction with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199410009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4197403, + "CONCEPT_NAME" : "Intervillous thrombosis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80256005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4023420, + "CONCEPT_NAME" : "Intra-amniotic infection of fetus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "11618000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4180743, + "CONCEPT_NAME" : "Intraventricular hemorrhage of fetus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428241007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4058246, + "CONCEPT_NAME" : "Iron deficiency anemia of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199248002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4079751, + "CONCEPT_NAME" : "Iron supplement in pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "182947002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442772, + "CONCEPT_NAME" : "Isoimmunization from non-ABO, non-Rh blood-group incompatibility affecting pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "66958002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530880, + "CONCEPT_NAME" : "Known or suspected fetal abnormality", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "609414006", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 77335, + "CONCEPT_NAME" : "Known OR suspected fetal abnormality affecting management of mother", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "66064007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 78818, + "CONCEPT_NAME" : "Large fetus causing disproportion with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199423002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443325, + "CONCEPT_NAME" : "Late pregnancy vomiting - not delivered", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "199033000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439880, + "CONCEPT_NAME" : "Late vomiting of pregnancy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "38331001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 194699, + "CONCEPT_NAME" : "Liver disorder in pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15230009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443292, + "CONCEPT_NAME" : "Liver disorder in pregnancy - not delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199118005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4130310, + "CONCEPT_NAME" : "Macdonald's cervical cerclage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "236946009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 77338, + "CONCEPT_NAME" : "Malposition and malpresentation of fetus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "270498000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004764, + "CONCEPT_NAME" : "Manual rotation of fetal head", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "73.51", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4016059, + "CONCEPT_NAME" : "Maternal alcohol abuse", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "169942003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443295, + "CONCEPT_NAME" : "Maternal care for diminished fetal movements", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "200473005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432977, + "CONCEPT_NAME" : "Maternal distress with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200101003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441081, + "CONCEPT_NAME" : "Maternal gonorrhea during pregnancy - baby not yet delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199165004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 314432, + "CONCEPT_NAME" : "Maternal hypotension syndrome", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "88887003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 315327, + "CONCEPT_NAME" : "Maternal hypotension syndrome with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200113008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42872398, + "CONCEPT_NAME" : "Maternal obesity complicating pregnancy, childbirth and the puerperium, antepartum", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "171000119107", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439893, + "CONCEPT_NAME" : "Maternal obesity syndrome", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "44772007", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438205, + "CONCEPT_NAME" : "Maternal syphilis during pregnancy - baby not yet delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199158007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434697, + "CONCEPT_NAME" : "Maternal tobacco abuse", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169940006", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442918, + "CONCEPT_NAME" : "Mental disorder during pregnancy - baby not yet delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199261002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060424, + "CONCEPT_NAME" : "Mental disorders during pregnancy, childbirth and the puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199257008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 436166, + "CONCEPT_NAME" : "Mild hyperemesis gravidarum", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "19569008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435023, + "CONCEPT_NAME" : "Mild hyperemesis-not delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199023008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 314090, + "CONCEPT_NAME" : "Mild pre-eclampsia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "41114007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4063183, + "CONCEPT_NAME" : "Mixed feto-pelvic disproportion", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199416003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 78817, + "CONCEPT_NAME" : "Mixed feto-pelvic disproportion with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199419005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4030429, + "CONCEPT_NAME" : "Moderate hyperemesis gravidarum", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "129597002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4034094, + "CONCEPT_NAME" : "Moderate proteinuric hypertension of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237281009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4199931, + "CONCEPT_NAME" : "Morning sickness", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "51885006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437041, + "CONCEPT_NAME" : "Mother not delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "289257009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110337, + "CONCEPT_NAME" : "Multifetal pregnancy reduction(s) (MPR)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59866", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 75015, + "CONCEPT_NAME" : "Multiple gestation with one OR more fetal malpresentations", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80224003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4063175, + "CONCEPT_NAME" : "Multiple pregnancy with malpresentation with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199381004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4178154, + "CONCEPT_NAME" : "Multiple pregnancy with one fetal loss", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428511009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 194598, + "CONCEPT_NAME" : "Neoplasm of uncertain behavior of placenta", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "95005005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4080067, + "CONCEPT_NAME" : "Non-urgent obstetric admission", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "183494008", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442051, + "CONCEPT_NAME" : "Obstetric air pulmonary embolism with antenatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200290001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433545, + "CONCEPT_NAME" : "Obstetric blood-clot pulmonary embolism with antenatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200303005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 78218, + "CONCEPT_NAME" : "Obstetric breast abscess with antenatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200376001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4080059, + "CONCEPT_NAME" : "Obstetric emergency hospital admission", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "183460006", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441926, + "CONCEPT_NAME" : "Obstetric nipple infection with antenatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200369006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 76491, + "CONCEPT_NAME" : "Obstetric non-purulent mastitis with antenatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200383008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442071, + "CONCEPT_NAME" : "Obstetric shock with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200107004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038426, + "CONCEPT_NAME" : "O/E - fetal movements felt", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163538004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038755, + "CONCEPT_NAME" : "O/E - fundus 34-36 week size", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163506009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434111, + "CONCEPT_NAME" : "Oligohydramnios", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59566000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432386, + "CONCEPT_NAME" : "Oligohydramnios with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199654008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 72378, + "CONCEPT_NAME" : "Outlet pelvic contraction with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199414000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443323, + "CONCEPT_NAME" : "Papyraceous fetus - not delivered", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "199070009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 195019, + "CONCEPT_NAME" : "Pelvic soft tissue abnormality in pregnancy, childbirth and the puerperium with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199513008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 135370, + "CONCEPT_NAME" : "Perinatal cutaneous hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "18503002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 258564, + "CONCEPT_NAME" : "Perinatal interstitial emphysema", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "60125001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 313590, + "CONCEPT_NAME" : "Perinatal respiratory failure", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "91581004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 197608, + "CONCEPT_NAME" : "Peripheral neuritis in pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "17787002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 199086, + "CONCEPT_NAME" : "Peripheral neuritis in pregnancy - not delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199095005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444374, + "CONCEPT_NAME" : "Persistent occipitoposterior position", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "70068004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 317941, + "CONCEPT_NAME" : "Phlebitis AND/OR thrombosis complicating pregnancy AND/OR puerperium", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "26850007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014718, + "CONCEPT_NAME" : "Placental abnormality", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169957005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 198488, + "CONCEPT_NAME" : "Placental abruption", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "415105001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 201350, + "CONCEPT_NAME" : "Placental abruption - not delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198911005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 200784, + "CONCEPT_NAME" : "Placental condition affecting management of mother", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "111447004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014716, + "CONCEPT_NAME" : "Placental finding", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169952004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4034100, + "CONCEPT_NAME" : "Placental insufficiency", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237292005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4064854, + "CONCEPT_NAME" : "Placental localization", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "164817009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4284028, + "CONCEPT_NAME" : "Placenta previa", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36813001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 196751, + "CONCEPT_NAME" : "Placenta previa with hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198903000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 200149, + "CONCEPT_NAME" : "Placenta previa with hemorrhage - not delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198906008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 194710, + "CONCEPT_NAME" : "Placenta previa without hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7792000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 192372, + "CONCEPT_NAME" : "Placenta previa without hemorrhage - not delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198900002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437623, + "CONCEPT_NAME" : "Polyhydramnios", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86203003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433540, + "CONCEPT_NAME" : "Polyhydramnios with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199647002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 72693, + "CONCEPT_NAME" : "Poor fetal growth affecting management", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "397949005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 75639, + "CONCEPT_NAME" : "Poor fetal nutrition", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276608005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439393, + "CONCEPT_NAME" : "Pre-eclampsia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "398254007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 141084, + "CONCEPT_NAME" : "Pre-eclampsia or eclampsia with pre-existing hypertension", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198997005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 136743, + "CONCEPT_NAME" : "Pre-eclampsia or eclampsia with pre-existing hypertension - not delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199002002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4146816, + "CONCEPT_NAME" : "Pre-existing hypertension complicating AND/OR reason for care during childbirth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "34694006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4277110, + "CONCEPT_NAME" : "Pre-existing hypertension complicating AND/OR reason for care during pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65402008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 321074, + "CONCEPT_NAME" : "Pre-existing hypertension complicating pregnancy, childbirth and puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199005000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438209, + "CONCEPT_NAME" : "Pregnancy care of habitual aborter", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "199089009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4062674, + "CONCEPT_NAME" : "Pregnancy complication NOS", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "199152008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439348, + "CONCEPT_NAME" : "Pregnancy complications", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "198881004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4167493, + "CONCEPT_NAME" : "Pregnancy-induced hypertension", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48194001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4062574, + "CONCEPT_NAME" : "Pregnancy-related glycosuria", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199132007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 194702, + "CONCEPT_NAME" : "Premature rupture of membranes", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "44223004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 200468, + "CONCEPT_NAME" : "Premature rupture of membranes with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199659003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 201516, + "CONCEPT_NAME" : "Primary malignant neoplasm of placenta", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "93965008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435883, + "CONCEPT_NAME" : "Prolapse of cord with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199870008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4082504, + "CONCEPT_NAME" : "Pruritus of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "239102001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 313272, + "CONCEPT_NAME" : "Puerperal cerebrovascular disorder with antenatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200332008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 192679, + "CONCEPT_NAME" : "Renal disease in pregnancy AND/OR puerperium without hypertension", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "75150001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 192684, + "CONCEPT_NAME" : "Renal hypertension complicating pregnancy, childbirth and the puerperium - not delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198953006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 196486, + "CONCEPT_NAME" : "Retroverted incarcerated gravid uterus with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199470001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 199891, + "CONCEPT_NAME" : "Rhesus isoimmunization affecting pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "44795003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 192376, + "CONCEPT_NAME" : "Rhesus isoimmunization with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199583002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4327745, + "CONCEPT_NAME" : "Second trimester bleeding", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "430881000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4032345, + "CONCEPT_NAME" : "Severe hyperemesis gravidarum", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "129598007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433536, + "CONCEPT_NAME" : "Severe pre-eclampsia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46764007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 132685, + "CONCEPT_NAME" : "Severe pre-eclampsia - not delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198985009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4127241, + "CONCEPT_NAME" : "Shirodkar's cervical cerclage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "236947000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438226, + "CONCEPT_NAME" : "Short cord", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59795007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437946, + "CONCEPT_NAME" : "Short cord with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199890004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 75608, + "CONCEPT_NAME" : "Shoulder dystocia with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199784005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4087113, + "CONCEPT_NAME" : "Slow fetal growth AND/OR fetal malnutrition", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "18471004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435331, + "CONCEPT_NAME" : "Superficial thrombophlebitis in pregnancy and the puerperium with antenatal complication", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "200226001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530886, + "CONCEPT_NAME" : "Suspected fetal damage from disease in the mother", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609420007", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530888, + "CONCEPT_NAME" : "Suspected fetal damage from radiation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609422004", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4142581, + "CONCEPT_NAME" : "Third trimester bleeding", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "427139004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 138479, + "CONCEPT_NAME" : "Thyroid dysfunction during pregnancy - baby not yet delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199239007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 139895, + "CONCEPT_NAME" : "Thyroid dysfunction during pregnancy, childbirth and the puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199235001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110288, + "CONCEPT_NAME" : "Transabdominal amnioinfusion, including ultrasound guidance", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59070", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441922, + "CONCEPT_NAME" : "Transient hypertension of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237279007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 136760, + "CONCEPT_NAME" : "Transient hypertension of pregnancy - not delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198967002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 81358, + "CONCEPT_NAME" : "Transverse OR oblique presentation of fetus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "11914001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437931, + "CONCEPT_NAME" : "Triplet pregnancy with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199322008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 196758, + "CONCEPT_NAME" : "Tumor of body of uterus affecting pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "223003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 192385, + "CONCEPT_NAME" : "Tumor of uterine body complicating antenatal care, baby not yet delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "267223004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434097, + "CONCEPT_NAME" : "Twin pregnancy with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199318003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2211782, + "CONCEPT_NAME" : "Ultrasonic guidance for intrauterine fetal transfusion or cordocentesis, imaging supervision and interpretation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "76941", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061971, + "CONCEPT_NAME" : "Umbilical cord tight around neck with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199875003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110340, + "CONCEPT_NAME" : "Unlisted fetal invasive procedure, including ultrasound guidance, when performed", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59897", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 79091, + "CONCEPT_NAME" : "Unstable lie", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86356004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 72374, + "CONCEPT_NAME" : "Unstable lie with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199345002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4146482, + "CONCEPT_NAME" : "Urinary tract infection in pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "307534009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 194101, + "CONCEPT_NAME" : "Uterine size for dates discrepancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "430933008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37109810, + "CONCEPT_NAME" : "Vaginal bleeding complicating early pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "723665008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442290, + "CONCEPT_NAME" : "Varicose veins of legs complicating pregnancy AND/OR puerperium", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "5626004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434712, + "CONCEPT_NAME" : "Varicose veins of legs in pregnancy and the puerperium with antenatal complication", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "200208004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441929, + "CONCEPT_NAME" : "Varicose veins of perineum and vulva in pregnancy and the puerperium with antenatal complication", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "200217004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435021, + "CONCEPT_NAME" : "Vasa previa with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199896005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 315884, + "CONCEPT_NAME" : "Vascular lesions of cord with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199901007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4300078, + "CONCEPT_NAME" : "Velamentous insertion of umbilical cord", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "77278008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440158, + "CONCEPT_NAME" : "Venereal disease in mother complicating pregnancy, childbirth AND/OR puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "27075004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 313543, + "CONCEPT_NAME" : "Venous complication of pregnancy and/or puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "267280004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435604, + "CONCEPT_NAME" : "Viral disease in mother complicating pregnancy, childbirth AND/OR puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "31516002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 35625971, + "CONCEPT_NAME" : "Vomiting during third trimester of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "769087009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440785, + "CONCEPT_NAME" : "Vomiting of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90325002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + } + ], + "QualifiedLimit" : { + "Type" : "Last" + }, + "ExpressionLimit" : { + "Type" : "All" + }, + "InclusionRules" : [ + { + "name" : "Outcome between 161d-301d from entry event", + "expression" : { + "Type" : "ANY", + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 1, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 161, + "Coeff" : 1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 1, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 161, + "Coeff" : 1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 0, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 141, + "Coeff" : 1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 0, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 141, + "Coeff" : 1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 0, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 141, + "Coeff" : 1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 0, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 141, + "Coeff" : 1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + }, + { + "name" : "No outcome between 0d-160d from entry event", + "expression" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 1, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 160, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 1, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 160, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 0, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 140, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 0, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 140, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 0, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 140, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 0, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 140, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + }, + { + "name" : "No outcome in the 28d before entry event", + "expression" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 1, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 28, + "Coeff" : -1 + }, + "End" : { + "Days" : 0, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 1, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 28, + "Coeff" : -1 + }, + "End" : { + "Days" : 0, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 60, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 28, + "Coeff" : -1 + }, + "End" : { + "Days" : 0, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 60, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 28, + "Coeff" : -1 + }, + "End" : { + "Days" : 0, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 107, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 14, + "Coeff" : -1 + }, + "End" : { + "Days" : 0, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "DrugEra" : { + "CodesetId" : 109 + } + }, + "StartWindow" : { + "Start" : { + "Days" : 28, + "Coeff" : -1 + }, + "End" : { + "Days" : 0, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 107, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 14, + "Coeff" : -1 + }, + "End" : { + "Days" : 0, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 62, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 14, + "Coeff" : -1 + }, + "End" : { + "Days" : 0, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 62, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 14, + "Coeff" : -1 + }, + "End" : { + "Days" : 0, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 62, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 14, + "Coeff" : -1 + }, + "End" : { + "Days" : 0, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + }, + { + "name" : "Has a second pregnancy marker", + "description" : "has a second marker", + "expression" : { + "Type" : "ANY", + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 61, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 2, + "IsDistinct" : true, + "CountColumn" : "DOMAIN_CONCEPT" + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 61, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 2, + "IsDistinct" : true, + "CountColumn" : "DOMAIN_CONCEPT" + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 61, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 2, + "IsDistinct" : true, + "CountColumn" : "DOMAIN_CONCEPT" + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 61, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 2, + "IsDistinct" : true, + "CountColumn" : "DOMAIN_CONCEPT" + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 2, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 61, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false, + "CountColumn" : "START_DATE" + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 61, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false, + "CountColumn" : "START_DATE" + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 61, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false, + "CountColumn" : "START_DATE" + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 61, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false, + "CountColumn" : "START_DATE" + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + } + }, + { + "name" : "Female, aged 12-55 on outcome date", + "expression" : { + "Type" : "ANY", + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 1, + "ConditionTypeExclude" : false, + "Age" : { + "Value" : 12, + "Op" : "bt", + "Extent" : 55 + }, + "Gender" : [ + { + "CONCEPT_ID" : 8532, + "CONCEPT_NAME" : "FEMALE", + "STANDARD_CONCEPT" : null, + "STANDARD_CONCEPT_CAPTION" : "Unknown", + "INVALID_REASON" : null, + "INVALID_REASON_CAPTION" : "Unknown", + "CONCEPT_CODE" : "F", + "DOMAIN_ID" : "Gender", + "VOCABULARY_ID" : "Gender", + "CONCEPT_CLASS_ID" : null + } + ] + } + }, + "StartWindow" : { + "Start" : { + "Days" : 161, + "Coeff" : 1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 1, + "ObservationTypeExclude" : false, + "Age" : { + "Value" : 12, + "Op" : "bt", + "Extent" : 55 + }, + "Gender" : [ + { + "CONCEPT_ID" : 8532, + "CONCEPT_NAME" : "FEMALE", + "STANDARD_CONCEPT" : null, + "STANDARD_CONCEPT_CAPTION" : "Unknown", + "INVALID_REASON" : null, + "INVALID_REASON_CAPTION" : "Unknown", + "CONCEPT_CODE" : "F", + "DOMAIN_ID" : "Gender", + "VOCABULARY_ID" : "Gender", + "CONCEPT_CLASS_ID" : null + } + ] + } + }, + "StartWindow" : { + "Start" : { + "Days" : 161, + "Coeff" : 1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 0, + "ConditionTypeExclude" : false, + "Age" : { + "Value" : 12, + "Op" : "bt", + "Extent" : 55 + }, + "Gender" : [ + { + "CONCEPT_ID" : 8532, + "CONCEPT_NAME" : "FEMALE", + "STANDARD_CONCEPT" : null, + "STANDARD_CONCEPT_CAPTION" : "Unknown", + "INVALID_REASON" : null, + "INVALID_REASON_CAPTION" : "Unknown", + "CONCEPT_CODE" : "F", + "DOMAIN_ID" : "Gender", + "VOCABULARY_ID" : "Gender", + "CONCEPT_CLASS_ID" : null + } + ] + } + }, + "StartWindow" : { + "Start" : { + "Days" : 141, + "Coeff" : 1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 0, + "ProcedureTypeExclude" : false, + "Age" : { + "Value" : 12, + "Op" : "bt", + "Extent" : 55 + }, + "Gender" : [ + { + "CONCEPT_ID" : 8532, + "CONCEPT_NAME" : "FEMALE", + "STANDARD_CONCEPT" : null, + "STANDARD_CONCEPT_CAPTION" : "Unknown", + "INVALID_REASON" : null, + "INVALID_REASON_CAPTION" : "Unknown", + "CONCEPT_CODE" : "F", + "DOMAIN_ID" : "Gender", + "VOCABULARY_ID" : "Gender", + "CONCEPT_CLASS_ID" : null + } + ] + } + }, + "StartWindow" : { + "Start" : { + "Days" : 141, + "Coeff" : 1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 0, + "MeasurementTypeExclude" : false, + "Age" : { + "Value" : 12, + "Op" : "bt", + "Extent" : 55 + }, + "Gender" : [ + { + "CONCEPT_ID" : 8532, + "CONCEPT_NAME" : "FEMALE", + "STANDARD_CONCEPT" : null, + "STANDARD_CONCEPT_CAPTION" : "Unknown", + "INVALID_REASON" : null, + "INVALID_REASON_CAPTION" : "Unknown", + "CONCEPT_CODE" : "F", + "DOMAIN_ID" : "Gender", + "VOCABULARY_ID" : "Gender", + "CONCEPT_CLASS_ID" : null + } + ] + } + }, + "StartWindow" : { + "Start" : { + "Days" : 141, + "Coeff" : 1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 0, + "ObservationTypeExclude" : false, + "Age" : { + "Value" : 12, + "Op" : "bt", + "Extent" : 55 + }, + "Gender" : [ + { + "CONCEPT_ID" : 8532, + "CONCEPT_NAME" : "FEMALE", + "STANDARD_CONCEPT" : null, + "STANDARD_CONCEPT_CAPTION" : "Unknown", + "INVALID_REASON" : null, + "INVALID_REASON_CAPTION" : "Unknown", + "CONCEPT_CODE" : "F", + "DOMAIN_ID" : "Gender", + "VOCABULARY_ID" : "Gender", + "CONCEPT_CLASS_ID" : null + } + ] + } + }, + "StartWindow" : { + "Start" : { + "Days" : 141, + "Coeff" : 1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + }, + { + "name" : "If only a delivery code, no other pregnancy outcome", + "expression" : { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 1, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 161, + "Coeff" : 1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 1, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 161, + "Coeff" : 1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 60, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 168, + "Coeff" : -1 + }, + "End" : { + "Days" : 168, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 60, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 168, + "Coeff" : -1 + }, + "End" : { + "Days" : 168, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 104, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 154, + "Coeff" : -1 + }, + "End" : { + "Days" : 70, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 107, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 154, + "Coeff" : -1 + }, + "End" : { + "Days" : 70, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "DrugEra" : { + "CodesetId" : 109 + } + }, + "StartWindow" : { + "Start" : { + "Days" : 154, + "Coeff" : -1 + }, + "End" : { + "Days" : 70, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 107, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 154, + "Coeff" : -1 + }, + "End" : { + "Days" : 70, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 62, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 154, + "Coeff" : -1 + }, + "End" : { + "Days" : 70, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 62, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 154, + "Coeff" : -1 + }, + "End" : { + "Days" : 70, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 62, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 154, + "Coeff" : -1 + }, + "End" : { + "Days" : 70, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 1, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 168, + "Coeff" : -1 + }, + "End" : { + "Days" : 182, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 1, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 168, + "Coeff" : -1 + }, + "End" : { + "Days" : 182, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + }, + "CodesetId" : 0, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 141, + "Coeff" : 1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 60, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 168, + "Coeff" : -1 + }, + "End" : { + "Days" : 168, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 60, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 168, + "Coeff" : -1 + }, + "End" : { + "Days" : 168, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 104, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 154, + "Coeff" : -1 + }, + "End" : { + "Days" : 70, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 107, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 154, + "Coeff" : -1 + }, + "End" : { + "Days" : 70, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 107, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 154, + "Coeff" : -1 + }, + "End" : { + "Days" : 70, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "DrugEra" : { + "CodesetId" : 109 + } + }, + "StartWindow" : { + "Start" : { + "Days" : 154, + "Coeff" : -1 + }, + "End" : { + "Days" : 70, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 62, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 154, + "Coeff" : -1 + }, + "End" : { + "Days" : 70, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 62, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 154, + "Coeff" : -1 + }, + "End" : { + "Days" : 70, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 62, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 154, + "Coeff" : -1 + }, + "End" : { + "Days" : 70, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 1, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 168, + "Coeff" : -1 + }, + "End" : { + "Days" : 182, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 1, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 168, + "Coeff" : -1 + }, + "End" : { + "Days" : 182, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + }, + "CodesetId" : 0, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 141, + "Coeff" : 1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Measurement" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 60, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 168, + "Coeff" : -1 + }, + "End" : { + "Days" : 168, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 60, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 168, + "Coeff" : -1 + }, + "End" : { + "Days" : 168, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 104, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 154, + "Coeff" : -1 + }, + "End" : { + "Days" : 70, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 107, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 154, + "Coeff" : -1 + }, + "End" : { + "Days" : 70, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 107, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 154, + "Coeff" : -1 + }, + "End" : { + "Days" : 70, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "DrugEra" : { + "CodesetId" : 109 + } + }, + "StartWindow" : { + "Start" : { + "Days" : 154, + "Coeff" : -1 + }, + "End" : { + "Days" : 70, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 62, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 154, + "Coeff" : -1 + }, + "End" : { + "Days" : 70, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 62, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 154, + "Coeff" : -1 + }, + "End" : { + "Days" : 70, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 62, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 154, + "Coeff" : -1 + }, + "End" : { + "Days" : 70, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 1, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 168, + "Coeff" : -1 + }, + "End" : { + "Days" : 182, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 1, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 168, + "Coeff" : -1 + }, + "End" : { + "Days" : 182, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + }, + "CodesetId" : 0, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 141, + "Coeff" : 1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 60, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 168, + "Coeff" : -1 + }, + "End" : { + "Days" : 168, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 60, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 168, + "Coeff" : -1 + }, + "End" : { + "Days" : 168, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 104, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 154, + "Coeff" : -1 + }, + "End" : { + "Days" : 70, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 107, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 154, + "Coeff" : -1 + }, + "End" : { + "Days" : 70, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 107, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 154, + "Coeff" : -1 + }, + "End" : { + "Days" : 70, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "DrugEra" : { + "CodesetId" : 109 + } + }, + "StartWindow" : { + "Start" : { + "Days" : 154, + "Coeff" : -1 + }, + "End" : { + "Days" : 70, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 62, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 154, + "Coeff" : -1 + }, + "End" : { + "Days" : 70, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 62, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 154, + "Coeff" : -1 + }, + "End" : { + "Days" : 70, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 62, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 154, + "Coeff" : -1 + }, + "End" : { + "Days" : 70, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 1, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 168, + "Coeff" : -1 + }, + "End" : { + "Days" : 182, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 1, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 168, + "Coeff" : -1 + }, + "End" : { + "Days" : 182, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + }, + "CodesetId" : 0, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 141, + "Coeff" : 1 + }, + "End" : { + "Days" : 301, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + }, + { + "name" : "Outcome marker in observation period", + "expression" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "ObservationPeriod" : { + "CorrelatedCriteria" : { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 1, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "EndWindow" : { + "Start" : { + "Coeff" : -1 + }, + "End" : { + "Days" : 0, + "Coeff" : 1 + }, + "UseIndexEnd" : true, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 1, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "EndWindow" : { + "Start" : { + "Coeff" : -1 + }, + "End" : { + "Days" : 0, + "Coeff" : 1 + }, + "UseIndexEnd" : true, + "UseEventEnd" : true + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 0, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "EndWindow" : { + "Start" : { + "Coeff" : -1 + }, + "End" : { + "Days" : 0, + "Coeff" : 1 + }, + "UseIndexEnd" : true, + "UseEventEnd" : true + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 0, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "EndWindow" : { + "Start" : { + "Coeff" : -1 + }, + "End" : { + "Days" : 0, + "Coeff" : 1 + }, + "UseIndexEnd" : true, + "UseEventEnd" : true + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 0, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "EndWindow" : { + "Start" : { + "Coeff" : -1 + }, + "End" : { + "Days" : 0, + "Coeff" : 1 + }, + "UseIndexEnd" : true, + "UseEventEnd" : true + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 0, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "EndWindow" : { + "Start" : { + "Coeff" : -1 + }, + "End" : { + "Days" : 0, + "Coeff" : 1 + }, + "UseIndexEnd" : true, + "UseEventEnd" : true + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + } + }, + "StartWindow" : { + "Start" : { + "Coeff" : -1 + }, + "End" : { + "Days" : 0, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + } + ], + "EndStrategy" : { + "DateOffset" : { + "DateField" : "StartDate", + "Offset" : 301 + } + }, + "CensoringCriteria" : [ + { + "ConditionOccurrence" : { + "CodesetId" : 1, + "ConditionTypeExclude" : false + } + }, + { + "Observation" : { + "CodesetId" : 1, + "ObservationTypeExclude" : false + } + }, + { + "ConditionOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 1, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 168, + "Coeff" : 1 + }, + "End" : { + "Days" : 182, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 1, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 168, + "Coeff" : 1 + }, + "End" : { + "Days" : 182, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 0, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 30, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 60, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 168, + "Coeff" : -1 + }, + "End" : { + "Days" : 182, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 60, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 168, + "Coeff" : -1 + }, + "End" : { + "Days" : 182, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 62, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 154, + "Coeff" : -1 + }, + "End" : { + "Days" : 70, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 62, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 154, + "Coeff" : -1 + }, + "End" : { + "Days" : 70, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 62, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 154, + "Coeff" : -1 + }, + "End" : { + "Days" : 70, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 107, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 154, + "Coeff" : -1 + }, + "End" : { + "Days" : 70, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 107, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 154, + "Coeff" : -1 + }, + "End" : { + "Days" : 70, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "DrugEra" : { + "CodesetId" : 109 + } + }, + "StartWindow" : { + "Start" : { + "Days" : 154, + "Coeff" : -1 + }, + "End" : { + "Days" : 70, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + }, + "CodesetId" : 0, + "ConditionTypeExclude" : false + } + }, + { + "ProcedureOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 1, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 168, + "Coeff" : -1 + }, + "End" : { + "Days" : 182, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 1, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 168, + "Coeff" : -1 + }, + "End" : { + "Days" : 182, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 60, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 168, + "Coeff" : -1 + }, + "End" : { + "Days" : 182, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 60, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 168, + "Coeff" : -1 + }, + "End" : { + "Days" : 182, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 107, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 154, + "Coeff" : -1 + }, + "End" : { + "Days" : 70, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "DrugEra" : { + "CodesetId" : 109 + } + }, + "StartWindow" : { + "Start" : { + "Days" : 154, + "Coeff" : -1 + }, + "End" : { + "Days" : 70, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 107, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 154, + "Coeff" : -1 + }, + "End" : { + "Days" : 70, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 62, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 154, + "Coeff" : -1 + }, + "End" : { + "Days" : 70, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 62, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 154, + "Coeff" : -1 + }, + "End" : { + "Days" : 70, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 62, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 154, + "Coeff" : -1 + }, + "End" : { + "Days" : 70, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + }, + "CodesetId" : 0, + "ProcedureTypeExclude" : false + } + }, + { + "Observation" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 1, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 168, + "Coeff" : -1 + }, + "End" : { + "Days" : 182, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 1, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 168, + "Coeff" : -1 + }, + "End" : { + "Days" : 182, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 0, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 30, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 60, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 168, + "Coeff" : -1 + }, + "End" : { + "Days" : 182, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 60, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 168, + "Coeff" : -1 + }, + "End" : { + "Days" : 182, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 107, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 154, + "Coeff" : -1 + }, + "End" : { + "Days" : 70, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "DrugEra" : { + "CodesetId" : 109 + } + }, + "StartWindow" : { + "Start" : { + "Days" : 154, + "Coeff" : -1 + }, + "End" : { + "Days" : 70, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 107, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 154, + "Coeff" : -1 + }, + "End" : { + "Days" : 70, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 62, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 154, + "Coeff" : -1 + }, + "End" : { + "Days" : 70, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 62, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 154, + "Coeff" : -1 + }, + "End" : { + "Days" : 70, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 62, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 154, + "Coeff" : -1 + }, + "End" : { + "Days" : 70, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + }, + "CodesetId" : 0, + "ObservationTypeExclude" : false + } + }, + { + "Measurement" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 1, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 168, + "Coeff" : -1 + }, + "End" : { + "Days" : 182, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 1, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 168, + "Coeff" : -1 + }, + "End" : { + "Days" : 182, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 0, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 30, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 60, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 168, + "Coeff" : -1 + }, + "End" : { + "Days" : 182, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 60, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 168, + "Coeff" : -1 + }, + "End" : { + "Days" : 182, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "DrugEra" : { + "CodesetId" : 109 + } + }, + "StartWindow" : { + "Start" : { + "Days" : 154, + "Coeff" : -1 + }, + "End" : { + "Days" : 70, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 107, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 154, + "Coeff" : -1 + }, + "End" : { + "Days" : 70, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 107, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 154, + "Coeff" : -1 + }, + "End" : { + "Days" : 70, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 62, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 154, + "Coeff" : -1 + }, + "End" : { + "Days" : 70, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 62, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 154, + "Coeff" : -1 + }, + "End" : { + "Days" : 70, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 62, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 154, + "Coeff" : -1 + }, + "End" : { + "Days" : 70, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + }, + "CodesetId" : 0, + "MeasurementTypeExclude" : false + } + } + ], + "CollapseSettings" : { + "CollapseType" : "ERA", + "EraPad" : 0 + }, + "CensorWindow" : {} +} \ No newline at end of file diff --git a/inst/cohorts/1434.json b/inst/cohorts/1434.json new file mode 100644 index 00000000..126e71ac --- /dev/null +++ b/inst/cohorts/1434.json @@ -0,0 +1,160406 @@ +{ + "cdmVersionRange" : ">=5.0.0", + "PrimaryCriteria" : { + "CriteriaList" : [ + { + "Measurement" : { + "CorrelatedCriteria" : { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 62, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 62, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 62, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 60, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 60, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + }, + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + { + "ConditionOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 63, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 63, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 60, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 60, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 62, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 62, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 62, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 20, + "ConditionTypeExclude" : false + } + }, + { + "ConditionOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 64, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 64, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 62, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 62, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 62, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 60, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 60, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 21, + "ConditionTypeExclude" : false + } + }, + { + "ConditionOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 65, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 65, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 62, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 62, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 62, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 60, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 60, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 22, + "ConditionTypeExclude" : false + } + }, + { + "ConditionOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 66, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 66, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 62, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 62, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 62, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 60, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 60, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 23, + "ConditionTypeExclude" : false + } + }, + { + "ConditionOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 67, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 67, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 62, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 62, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 62, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 60, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 60, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 24, + "ConditionTypeExclude" : false + } + }, + { + "ConditionOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 68, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 68, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 62, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 62, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 62, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 60, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 60, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 25, + "ConditionTypeExclude" : false + } + }, + { + "ConditionOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 69, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 69, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 62, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 62, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 62, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 60, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 60, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 26, + "ConditionTypeExclude" : false + } + }, + { + "ConditionOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 70, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 70, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 62, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 62, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 62, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 60, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 60, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 3, + "ConditionTypeExclude" : false + } + }, + { + "ProcedureOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 70, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 70, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 62, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 62, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 62, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 60, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 60, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 3, + "ProcedureTypeExclude" : false + } + }, + { + "ConditionOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 71, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 71, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 62, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 62, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 62, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 60, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 60, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 14, + "ConditionTypeExclude" : false + } + }, + { + "ConditionOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 72, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 72, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 62, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 62, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 62, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 60, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 60, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 17, + "ConditionTypeExclude" : false + } + }, + { + "ConditionOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 73, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 73, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 62, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 62, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 62, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 60, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 60, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 18, + "ConditionTypeExclude" : false + } + }, + { + "ConditionOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 74, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 74, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 62, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 62, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 62, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 60, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 60, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 9, + "ConditionTypeExclude" : false + } + }, + { + "ProcedureOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 74, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 74, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 62, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 62, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 62, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 60, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 60, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 9, + "ProcedureTypeExclude" : false + } + }, + { + "ConditionOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 75, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 75, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 62, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 62, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 62, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 60, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 60, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 19, + "ConditionTypeExclude" : false + } + }, + { + "ConditionOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 76, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 76, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 62, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 62, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 62, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 60, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 60, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 28, + "ConditionTypeExclude" : false + } + }, + { + "ConditionOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 77, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 77, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 62, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 62, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 62, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 60, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 60, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 29, + "ConditionTypeExclude" : false + } + }, + { + "ConditionOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 81, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 81, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 62, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 62, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 62, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 60, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 60, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 30, + "ConditionTypeExclude" : false + } + }, + { + "ProcedureOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 81, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 81, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 62, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 62, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 62, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 60, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 60, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 30, + "ProcedureTypeExclude" : false + } + }, + { + "ConditionOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 82, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 82, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 62, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 62, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 62, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 60, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 60, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 31, + "ConditionTypeExclude" : false + } + }, + { + "ConditionOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 83, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 83, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 62, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 62, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 62, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 60, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 60, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 32, + "ConditionTypeExclude" : false + } + }, + { + "ConditionOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 84, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 84, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 62, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 62, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 62, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 60, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 60, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 33, + "ConditionTypeExclude" : false + } + }, + { + "ConditionOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 85, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 85, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 62, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 62, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 62, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 60, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 60, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 34, + "ConditionTypeExclude" : false + } + }, + { + "ProcedureOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 85, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 85, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 62, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 62, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 62, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 60, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 60, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 34, + "ProcedureTypeExclude" : false + } + }, + { + "ConditionOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 2, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 2, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 62, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 62, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 62, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 60, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 60, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 55, + "ConditionTypeExclude" : false + } + }, + { + "Observation" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 2, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 2, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 62, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 62, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 62, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 60, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 60, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 55, + "ObservationTypeExclude" : false + } + }, + { + "ProcedureOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 2, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 2, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 62, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 62, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 62, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 60, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 60, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 55, + "ProcedureTypeExclude" : false + } + }, + { + "ProcedureOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 2, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 2, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 55, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 55, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 55, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 62, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 62, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 62, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 60, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 60, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 5, + "ProcedureTypeExclude" : false + } + }, + { + "ConditionOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 2, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 2, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 5, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 55, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 55, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 55, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 62, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 62, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 62, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 60, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 60, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 6, + "ConditionTypeExclude" : false + } + }, + { + "Observation" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 2, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 2, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 5, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 55, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 55, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 55, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 62, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 62, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 62, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 60, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 60, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 6, + "ObservationTypeExclude" : false + } + }, + { + "Measurement" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 2, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 2, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 55, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 55, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 55, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 5, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 62, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 62, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 62, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 60, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 60, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 6, + "MeasurementTypeExclude" : false + } + }, + { + "ConditionOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 2, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 2, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 5, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 6, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 6, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 6, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 55, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 55, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 55, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 62, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 62, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 62, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 60, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 60, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 7, + "ConditionTypeExclude" : false + } + }, + { + "Observation" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 2, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 2, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 55, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 55, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 55, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 5, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 6, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 6, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 6, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 62, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 62, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 62, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 60, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 60, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 7, + "ObservationTypeExclude" : false + } + }, + { + "Measurement" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 2, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 2, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 5, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 7, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 7, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 6, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 6, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 6, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 55, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 55, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 55, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 62, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 62, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 62, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 60, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 60, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 8, + "MeasurementTypeExclude" : false + } + }, + { + "ProcedureOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 2, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 2, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 5, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 55, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 55, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 55, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 6, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 6, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 6, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 7, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 7, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 62, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 62, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 62, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 60, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 60, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 8, + "ProcedureTypeExclude" : false + } + }, + { + "ConditionOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 2, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 2, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 55, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 55, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 55, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 5, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 6, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 6, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 6, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 62, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 62, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 62, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 60, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 60, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 112, + "ConditionTypeExclude" : false + } + }, + { + "Measurement" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 2, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 2, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 55, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 55, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 55, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 5, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 6, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 6, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 6, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 62, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 62, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 62, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 60, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 60, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 112, + "MeasurementTypeExclude" : false + } + }, + { + "ProcedureOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 2, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 2, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 55, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 55, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 55, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 5, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 6, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 6, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 6, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 62, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 62, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 62, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 60, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 60, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 112, + "ProcedureTypeExclude" : false + } + }, + { + "Observation" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 2, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 2, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 55, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 55, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 55, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 5, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 6, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 6, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 6, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 62, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 62, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 62, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 60, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 60, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 112, + "ObservationTypeExclude" : false + } + }, + { + "ConditionOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 2, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 2, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 55, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 55, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 55, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 5, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 6, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 6, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 6, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 62, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 62, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 62, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 60, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 60, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 113, + "ConditionTypeExclude" : false + } + }, + { + "ConditionOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 2, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 2, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 55, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 55, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 55, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 5, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 6, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 6, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 6, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 62, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 62, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 62, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 60, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 60, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 57, + "ConditionTypeExclude" : false + } + }, + { + "Measurement" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 2, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 2, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 55, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 55, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 55, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 5, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 6, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 6, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 6, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 62, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 62, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 62, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 60, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 60, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 57, + "MeasurementTypeExclude" : false + } + }, + { + "Observation" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 2, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 2, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 55, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 55, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 55, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 5, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 6, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 6, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 6, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 62, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 62, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 62, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 60, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 60, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 57, + "ObservationTypeExclude" : false + } + }, + { + "ProcedureOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 2, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 2, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 55, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 55, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 55, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 5, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 6, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 6, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 6, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 62, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 62, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 62, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 60, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 60, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 57, + "ProcedureTypeExclude" : false + } + }, + { + "ConditionOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 2, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 2, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 55, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 55, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 55, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 5, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 6, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 6, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 6, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 62, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 62, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 62, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 60, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 60, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 56, + "ConditionTypeExclude" : false + } + }, + { + "Observation" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 2, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 2, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 55, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 55, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 55, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 5, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 6, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 6, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false, + "CountColumn" : "DOMAIN_CONCEPT" + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 6, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 62, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 62, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 62, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 60, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 60, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 56, + "ObservationTypeExclude" : false + } + }, + { + "ProcedureOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 2, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 2, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 55, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 55, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 55, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 5, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 6, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 6, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 6, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 62, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 62, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 62, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 60, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 60, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + }, + "CodesetId" : 56, + "ProcedureTypeExclude" : false + } + }, + { + "ConditionOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 2, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 2, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 55, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 55, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 55, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 5, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 6, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 6, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 6, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 7, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : 1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 7, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 8, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : 1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 8, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : 1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 62, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 71, + "Coeff" : 1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + }, + "CodesetId" : 62, + "ConditionTypeExclude" : false + } + }, + { + "Observation" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 2, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 2, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 55, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 55, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 55, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 5, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 6, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 6, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 6, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 7, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : 1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 7, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 8, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : 1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 8, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : 1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 62, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 71, + "Coeff" : 1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + }, + "CodesetId" : 62, + "ObservationTypeExclude" : false + } + }, + { + "ProcedureOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 4, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 2, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 2, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 55, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 55, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 55, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 5, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 6, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 6, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 6, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 7, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : 1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 7, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 8, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : 1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 8, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : 1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + }, + "CodesetId" : 62, + "ProcedureTypeExclude" : false + } + } + ], + "ObservationWindow" : { + "PriorDays" : 0, + "PostDays" : 0 + }, + "PrimaryCriteriaLimit" : { + "Type" : "All" + } + }, + "ConceptSets" : [ + { + "id" : 0, + "name" : "Delivery (DELIV)", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4130321, + "CONCEPT_NAME" : "Abdominal delivery for shoulder dystocia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "236989008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439402, + "CONCEPT_NAME" : "Abnormal glucose tolerance test during pregnancy - baby delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "372055003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4155282, + "CONCEPT_NAME" : "Abnormal glucose tolerance test in the puerperium - baby delivered during current episode of care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "372051007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437936, + "CONCEPT_NAME" : "Amniotic cavity infection - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199677008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4248954, + "CONCEPT_NAME" : "Amniotomy at delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "408817009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432968, + "CONCEPT_NAME" : "Anemia during pregnancy - baby delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199244000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442923, + "CONCEPT_NAME" : "Anemia in the puerperium - baby delivered during current episode of care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199245004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442922, + "CONCEPT_NAME" : "Anemia in the puerperium - baby delivered during previous episode of care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199247007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2101814, + "CONCEPT_NAME" : "Anesthesia for cesarean delivery following neuraxial labor analgesia/anesthesia (List separately in addition to code for primary procedure performed)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "01968", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441649, + "CONCEPT_NAME" : "Antenatal deep vein thrombosis - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200232006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443133, + "CONCEPT_NAME" : "Antepartum hemorrhage with coagulation defect - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198917009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4075168, + "CONCEPT_NAME" : "Assisted breech delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177158008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 76761, + "CONCEPT_NAME" : "Asymptomatic bacteriuria in pregnancy - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199099004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 73526, + "CONCEPT_NAME" : "Asymptomatic bacteriuria in pregnancy - delivered with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199100007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4078138, + "CONCEPT_NAME" : "Baby normal at birth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "275735001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4075169, + "CONCEPT_NAME" : "Barton forceps cephalic delivery with rotation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177167008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4147974, + "CONCEPT_NAME" : "Barton's forceps delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "30476003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 314103, + "CONCEPT_NAME" : "Benign essential hypertension complicating pregnancy, childbirth and the puerperium - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198944004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 320456, + "CONCEPT_NAME" : "Benign essential hypertension complicating pregnancy, childbirth and the puerperium - delivered with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198945003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014291, + "CONCEPT_NAME" : "Birth detail", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169811007", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Observable Entity" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4016064, + "CONCEPT_NAME" : "Birth details not known", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169963001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015277, + "CONCEPT_NAME" : "Birth head circumference", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169876006", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Observable Entity" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015270, + "CONCEPT_NAME" : "Birth of child", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169836001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4192676, + "CONCEPT_NAME" : "Born by cesarean section", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "394699000", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 77624, + "CONCEPT_NAME" : "Breast engorgement in pregnancy, the puerperium or lactation - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200418007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 81086, + "CONCEPT_NAME" : "Breast engorgement in pregnancy, the puerperium or lactation - delivered with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200419004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3662128, + "CONCEPT_NAME" : "Breech delivery following termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1147961000000102", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 436767, + "CONCEPT_NAME" : "Breech extraction - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200142000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4075165, + "CONCEPT_NAME" : "Breech extraction delivery with version", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177152009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 73537, + "CONCEPT_NAME" : "Breech presentation - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199354004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4235752, + "CONCEPT_NAME" : "Central laceration during delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90532005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3662129, + "CONCEPT_NAME" : "Cephalic delivery following termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1147971000000109", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4071629, + "CONCEPT_NAME" : "Cephalic vaginal delivery with abnormal presentation of head at delivery without instrument", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177179008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441369, + "CONCEPT_NAME" : "Cervical incompetence - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199482005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435607, + "CONCEPT_NAME" : "Cervical incompetence - delivered with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199483000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437942, + "CONCEPT_NAME" : "Cesarean delivery - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200146002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110316, + "CONCEPT_NAME" : "Cesarean delivery only", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59514", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110323, + "CONCEPT_NAME" : "Cesarean delivery only, following attempted vaginal delivery after previous cesarean delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59620", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4165077, + "CONCEPT_NAME" : "Cesarean hysterectomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "41059002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015701, + "CONCEPT_NAME" : "Cesarean section", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "11466000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004789, + "CONCEPT_NAME" : "Cesarean section of other specified type", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "74.4", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "3-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42872492, + "CONCEPT_NAME" : "Cesarean section through inverted T shaped incision of uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "450483001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42872493, + "CONCEPT_NAME" : "Cesarean section through J shaped incision of uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "450484007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4152029, + "CONCEPT_NAME" : "Childbirth examination - normal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "268484008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014738, + "CONCEPT_NAME" : "Child examination - birth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "170099002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4223536, + "CONCEPT_NAME" : "Classical cesarean section", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84195007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37208486, + "CONCEPT_NAME" : "Clitoral tear during delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1105801000000107", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4034145, + "CONCEPT_NAME" : "Complete breech delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237311001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 194707, + "CONCEPT_NAME" : "Congenital abnormality of uterus - baby delivered with postpartum complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "267215001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 315013, + "CONCEPT_NAME" : "Congenital cardiovascular disorder during pregnancy - baby delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199266007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435879, + "CONCEPT_NAME" : "Congenital or acquired abnormality of vulva - baby delivered with postpartum complication", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "267248001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4129041, + "CONCEPT_NAME" : "Cord beside head", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237306003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433270, + "CONCEPT_NAME" : "Cord entanglement without compression", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "11209007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439092, + "CONCEPT_NAME" : "Cord tangled with compression - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199880007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 75882, + "CONCEPT_NAME" : "Deep transverse arrest - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199774009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441361, + "CONCEPT_NAME" : "Delayed delivery after artificial rupture of membranes", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "35347003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4075190, + "CONCEPT_NAME" : "DeLee forceps cephalic delivery with rotation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177168003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440793, + "CONCEPT_NAME" : "Deliveries by breech extraction", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "271370008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 193277, + "CONCEPT_NAME" : "Deliveries by cesarean", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200144004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4106406, + "CONCEPT_NAME" : "Delivery by double application of forceps", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "29613008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061457, + "CONCEPT_NAME" : "Delivery by elective cesarean section", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200148001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4066112, + "CONCEPT_NAME" : "Delivery by emergency cesarean section", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200149009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4232028, + "CONCEPT_NAME" : "Delivery by Kielland rotation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "89346004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4234710, + "CONCEPT_NAME" : "Delivery by Malstrom's extraction", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90438006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4223638, + "CONCEPT_NAME" : "Delivery by Malstrom's extraction with episiotomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40219000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4278225, + "CONCEPT_NAME" : "Delivery by midwife", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65243006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4100410, + "CONCEPT_NAME" : "Delivery by Scanzoni maneuver", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25296001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4189205, + "CONCEPT_NAME" : "Delivery by vacuum extraction", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "61586001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4096145, + "CONCEPT_NAME" : "Delivery by vacuum extraction with episiotomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26313002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038495, + "CONCEPT_NAME" : "Delivery finding", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "118215003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441641, + "CONCEPT_NAME" : "Delivery normal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48782003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40551541, + "CONCEPT_NAME" : "Delivery of cephalic presentation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "384730009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4056129, + "CONCEPT_NAME" : "Delivery of face presentation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16819009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42872805, + "CONCEPT_NAME" : "Delivery of occipitoposterior presentation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "450798003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4130319, + "CONCEPT_NAME" : "Delivery of the after coming head", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "236982004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4293034, + "CONCEPT_NAME" : "Delivery of vertex presentation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "384729004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443012, + "CONCEPT_NAME" : "Diabetes mellitus during pregnancy - baby delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199225007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4062685, + "CONCEPT_NAME" : "Diabetes mellitus in the puerperium - baby delivered during current episode of care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199226008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4309425, + "CONCEPT_NAME" : "Dilation and curettage of uterus after delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "391998006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 198486, + "CONCEPT_NAME" : "Disproportion - major pelvic abnormality - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199400000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4134722, + "CONCEPT_NAME" : "Disruption of episiotomy wound in the puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "398262004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442915, + "CONCEPT_NAME" : "Drug dependence during pregnancy - baby delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199252002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 133816, + "CONCEPT_NAME" : "Eclampsia - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198990007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443321, + "CONCEPT_NAME" : "Edema or excessive weight gain in pregnancy without mention of hypertension, delivered with mention of postpartum complication", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "199075004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440794, + "CONCEPT_NAME" : "Elderly primigravida - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199718001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4075182, + "CONCEPT_NAME" : "Elective cesarean section", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177141003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4075161, + "CONCEPT_NAME" : "Elective lower segment cesarean section", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177143000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42536960, + "CONCEPT_NAME" : "Elective lower segment cesarean section with bilateral tubal ligation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "736026009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4075160, + "CONCEPT_NAME" : "Elective upper segment cesarean section", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177142005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42536952, + "CONCEPT_NAME" : "Elective upper segment cesarean section with bilateral tubal ligation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "736018001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4167089, + "CONCEPT_NAME" : "Emergency cesarean section", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "274130007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4127252, + "CONCEPT_NAME" : "Emergency lower segment cesarean section", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "236985002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42537021, + "CONCEPT_NAME" : "Emergency lower segment cesarean section with bilateral tubal ligation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "736118004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 46270991, + "CONCEPT_NAME" : "Emergency lower segment cesarean section with inverted T incision", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "709004006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4032767, + "CONCEPT_NAME" : "Emergency upper segment cesarean section", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "236986001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42536954, + "CONCEPT_NAME" : "Emergency upper segment cesarean section with bilateral tubal ligation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "736020003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4272812, + "CONCEPT_NAME" : "Episioproctotomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63407004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4311671, + "CONCEPT_NAME" : "Episiotomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "85548006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44513763, + "CONCEPT_NAME" : "Episiotomy to facilitate delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "R27.1", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "OPCS4", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4211824, + "CONCEPT_NAME" : "Extraperitoneal cesarean section", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57271003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45757775, + "CONCEPT_NAME" : "Failed attempted vaginal birth after previous cesarean section", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "38451000119105", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441924, + "CONCEPT_NAME" : "Failed mechanical induction - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199694005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443521, + "CONCEPT_NAME" : "Failed trial of labor - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "413339006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 193535, + "CONCEPT_NAME" : "Fetal-maternal hemorrhage - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199577000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 72697, + "CONCEPT_NAME" : "Fetus with chromosomal abnormality - delivered", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "199526007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4063296, + "CONCEPT_NAME" : "Fetus with damage due to intrauterine contraceptive device - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199560000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4064177, + "CONCEPT_NAME" : "Fetus with drug damage - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199549009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4064171, + "CONCEPT_NAME" : "Fetus with hereditary disease - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199533007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4064174, + "CONCEPT_NAME" : "Fetus with viral damage via mother - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199538003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 192978, + "CONCEPT_NAME" : "First degree perineal tear during delivery - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199916005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 199088, + "CONCEPT_NAME" : "First degree perineal tear during delivery with postnatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199917001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4217642, + "CONCEPT_NAME" : "Footling breech delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72492007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4075187, + "CONCEPT_NAME" : "Forceps cephalic delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177161009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4114637, + "CONCEPT_NAME" : "Forceps delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "302383004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435022, + "CONCEPT_NAME" : "Forceps delivery - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200130005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4032761, + "CONCEPT_NAME" : "Forceps delivery, face to pubes", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "236977006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4324549, + "CONCEPT_NAME" : "Forceps delivery with rotation of fetal head", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "71166009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004702, + "CONCEPT_NAME" : "Forceps, vacuum, and breech delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "2-dig nonbill code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 194429, + "CONCEPT_NAME" : "Fourth degree perineal tear during delivery - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199934009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4244672, + "CONCEPT_NAME" : "Frank breech delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "38479009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 74440, + "CONCEPT_NAME" : "Galactorrhea in pregnancy and the puerperium - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200446009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 77052, + "CONCEPT_NAME" : "Generally contracted pelvis - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199405005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4091200, + "CONCEPT_NAME" : "Genital tear resulting from childbirth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "249219008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 81357, + "CONCEPT_NAME" : "Genitourinary tract infection in pregnancy - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199106001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 80778, + "CONCEPT_NAME" : "Genitourinary tract infection in pregnancy - delivered with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199107005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4009879, + "CONCEPT_NAME" : "Good neonatal condition at birth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "102500002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014452, + "CONCEPT_NAME" : "GP unit birth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169814004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434110, + "CONCEPT_NAME" : "Grand multiparity - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199714004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4032764, + "CONCEPT_NAME" : "Groin traction at breech delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "236980007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435323, + "CONCEPT_NAME" : "Hemorrhage in early pregnancy, delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "81448000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44513743, + "CONCEPT_NAME" : "High forceps cephalic delivery NEC", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "R21.2", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "OPCS4", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4075188, + "CONCEPT_NAME" : "High forceps cephalic delivery with rotation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177162002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4231702, + "CONCEPT_NAME" : "High forceps delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "89849000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4035778, + "CONCEPT_NAME" : "High forceps delivery with episiotomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15413009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 77615, + "CONCEPT_NAME" : "High head at term - delivered", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "199375007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4075170, + "CONCEPT_NAME" : "High vacuum delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177173009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441630, + "CONCEPT_NAME" : "History of recurrent miscarriage - delivered", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199087006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014451, + "CONCEPT_NAME" : "Home birth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169813005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 73538, + "CONCEPT_NAME" : "Hydrocephalic disproportion - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199427001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 436173, + "CONCEPT_NAME" : "Hyperemesis gravidarum with metabolic disturbance - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199027009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4064834, + "CONCEPT_NAME" : "Hypertonic uterine inertia - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199838008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004771, + "CONCEPT_NAME" : "Incision of cervix to assist delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "73.93", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 77621, + "CONCEPT_NAME" : "Inlet pelvic contraction - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199409004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4128031, + "CONCEPT_NAME" : "Instrumental delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "236974004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40760193, + "CONCEPT_NAME" : "Labor and delivery process Narrative", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57074-7", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Clinical Observation" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 80782, + "CONCEPT_NAME" : "Large fetus causing disproportion - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199422007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441082, + "CONCEPT_NAME" : "Late pregnancy vomiting - delivered", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "199032005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 196170, + "CONCEPT_NAME" : "Liver disorder in pregnancy - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199117000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004786, + "CONCEPT_NAME" : "Low cervical cesarean section", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "74.1", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "3-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4161944, + "CONCEPT_NAME" : "Low cervical cesarean section", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "398307005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37312440, + "CONCEPT_NAME" : "Lower uterine segment cesarean section", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "788180009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44513746, + "CONCEPT_NAME" : "Low forceps cephalic delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "R21.5", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "OPCS4", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4088084, + "CONCEPT_NAME" : "Low forceps delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "18625004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4075735, + "CONCEPT_NAME" : "Low forceps delivery with episiotomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "17860005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4075191, + "CONCEPT_NAME" : "Low vacuum delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177174003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4071505, + "CONCEPT_NAME" : "Manipulative cephalic vaginal delivery with abnormal presentation of head at delivery without instrument", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177180006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4069969, + "CONCEPT_NAME" : "Manual removal of placenta from delivered uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177204008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 313829, + "CONCEPT_NAME" : "Maternal hypotension syndrome - delivered with postnatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200112003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438206, + "CONCEPT_NAME" : "Maternal rubella during pregnancy - baby delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199192005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435606, + "CONCEPT_NAME" : "Maternal syphilis during pregnancy - baby delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199156006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442920, + "CONCEPT_NAME" : "Mental disorder during pregnancy - baby delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199259006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442919, + "CONCEPT_NAME" : "Mental disorder in the puerperium - baby delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199260001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44513745, + "CONCEPT_NAME" : "Mid forceps cephalic delivery NEC", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "R21.4", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "OPCS4", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4075189, + "CONCEPT_NAME" : "Midforceps cephalic delivery with rotation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177164001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4266683, + "CONCEPT_NAME" : "Mid forceps delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "62508004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4093774, + "CONCEPT_NAME" : "Mid forceps delivery with episiotomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25828002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4143647, + "CONCEPT_NAME" : "Midforceps delivery without rotation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "265639000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42535817, + "CONCEPT_NAME" : "Mid vacuum delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "734276001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 72970, + "CONCEPT_NAME" : "Mixed feto-pelvic disproportion - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199418002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433260, + "CONCEPT_NAME" : "Mother delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "289256000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4063163, + "CONCEPT_NAME" : "Multiple delivery, all by cesarean section", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199331008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4063162, + "CONCEPT_NAME" : "Multiple delivery, all by forceps and vacuum extractor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199330009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4059751, + "CONCEPT_NAME" : "Multiple delivery, all spontaneous", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199329004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42539267, + "CONCEPT_NAME" : "Multiple liveborn in hospital by vaginal delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16089691000119102", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442082, + "CONCEPT_NAME" : "Multiple pregnancy with malpresentation - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199380003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2101016, + "CONCEPT_NAME" : "Neuraxial analgesia/anesthesia for labor ending in a cesarean delivery (includes any repeat subarachnoid needle placement and drug injection and/or any necessary replacement of an epidural catheter during labor) (Deprecated)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "00857", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4071630, + "CONCEPT_NAME" : "Non-manipulative cephalic vaginal delivery with abnormal presentation of head at delivery without instrument", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177181005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4127248, + "CONCEPT_NAME" : "Nonrotational forceps delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "236975003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014720, + "CONCEPT_NAME" : "Normal birth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169961004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4063160, + "CONCEPT_NAME" : "Normal delivery but ante- or post- natal conditions present", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199314001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4071507, + "CONCEPT_NAME" : "Normal delivery procedure", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177184002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442053, + "CONCEPT_NAME" : "Obstetric blood-clot pulmonary embolism - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200301007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 74433, + "CONCEPT_NAME" : "Obstetric breast abscess - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200374003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 78494, + "CONCEPT_NAME" : "Obstetric breast abscess - delivered with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200375002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 75326, + "CONCEPT_NAME" : "Obstetric damage to pelvic joints and ligaments - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199990003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 193269, + "CONCEPT_NAME" : "Obstetric high vaginal laceration - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199979008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 197048, + "CONCEPT_NAME" : "Obstetric inversion of uterus - delivered with postnatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199969006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442080, + "CONCEPT_NAME" : "Obstetric laceration of cervix - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199974003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 79897, + "CONCEPT_NAME" : "Obstetric non-purulent mastitis - delivered with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200382003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 201368, + "CONCEPT_NAME" : "Obstetric pelvic hematoma - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199995008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 193271, + "CONCEPT_NAME" : "Obstetric pelvic hematoma - delivered with postnatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199996009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 195025, + "CONCEPT_NAME" : "Obstetric shock - delivered with postnatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200106008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 199087, + "CONCEPT_NAME" : "Obstructed labor caused by bony pelvis - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199759007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 196182, + "CONCEPT_NAME" : "Obstructed labor caused by pelvic soft tissues - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199769001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 194711, + "CONCEPT_NAME" : "Obstructed labor due to fetal malposition - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199749006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433274, + "CONCEPT_NAME" : "Oligohydramnios - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199653002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004767, + "CONCEPT_NAME" : "Operations on fetus to facilitate delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "73.8", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "3-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004802, + "CONCEPT_NAME" : "Other cesarean section of unspecified type", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "74.99", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004765, + "CONCEPT_NAME" : "Other manually assisted delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "73.59", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004768, + "CONCEPT_NAME" : "Other operations assisting delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "73.9", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "3-dig nonbill code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004783, + "CONCEPT_NAME" : "Other operations assisting delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "73.99", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4191809, + "CONCEPT_NAME" : "Other procedures inducing or assisting delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "73", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "2-dig nonbill code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44513736, + "CONCEPT_NAME" : "Other specified breech extraction delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "R19.8", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "OPCS4", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44513756, + "CONCEPT_NAME" : "Other specified cephalic vaginal delivery with abnormal presentation of head at delivery without instrument", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "R23.8", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "OPCS4", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44513729, + "CONCEPT_NAME" : "Other specified elective caesarean delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "R17.8", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "OPCS4", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44513747, + "CONCEPT_NAME" : "Other specified forceps cephalic delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "R21.8", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "OPCS4", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004731, + "CONCEPT_NAME" : "Other specified instrumental delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72.8", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "3-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44513740, + "CONCEPT_NAME" : "Other specified other breech delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "R20.8", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "OPCS4", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44513733, + "CONCEPT_NAME" : "Other specified other caesarean delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "R18.8", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "OPCS4", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44513752, + "CONCEPT_NAME" : "Other specified vacuum delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "R22.8", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "OPCS4", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4145318, + "CONCEPT_NAME" : "Outcome of delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "268475008", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Observable Entity" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4127249, + "CONCEPT_NAME" : "Outlet forceps delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "236976002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 73824, + "CONCEPT_NAME" : "Outlet pelvic contraction - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199413006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42535816, + "CONCEPT_NAME" : "Outlet vacuum delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "734275002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4234421, + "CONCEPT_NAME" : "Partial breech delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "359943008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4023797, + "CONCEPT_NAME" : "Partial breech delivery with forceps to aftercoming head", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "19390001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4307825, + "CONCEPT_NAME" : "Perineal hematoma during delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "83094001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4073438, + "CONCEPT_NAME" : "Piper forceps delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177170007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 193539, + "CONCEPT_NAME" : "Placental abruption - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198910006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4172142, + "CONCEPT_NAME" : "Placenta previa found before labor AND delivery by cesarean section without hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48888007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 193264, + "CONCEPT_NAME" : "Placenta previa with hemorrhage - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198905007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 201359, + "CONCEPT_NAME" : "Placenta previa without hemorrhage - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198899007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014292, + "CONCEPT_NAME" : "Place of birth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169812000", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Observable Entity" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434427, + "CONCEPT_NAME" : "Polyhydramnios - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199646006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435031, + "CONCEPT_NAME" : "Postnatal deep vein thrombosis - delivered with postnatal complication", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "200237000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441363, + "CONCEPT_NAME" : "Postpartum coagulation defects - delivered with postnatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200030007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438220, + "CONCEPT_NAME" : "Precipitate labor - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199833004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 200160, + "CONCEPT_NAME" : "Premature rupture of membranes - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199658006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37110284, + "CONCEPT_NAME" : "Preterm delivery following Cesarean section", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "724489002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37110283, + "CONCEPT_NAME" : "Preterm delivery following induction of labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "724488005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45757175, + "CONCEPT_NAME" : "Preterm labor in second trimester with preterm delivery in second trimester", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10761141000119107", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45757176, + "CONCEPT_NAME" : "Preterm labor in third trimester with preterm delivery in third trimester", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10761191000119104", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36712702, + "CONCEPT_NAME" : "Preterm labor with preterm delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10761241000119104", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44784550, + "CONCEPT_NAME" : "Preterm spontaneous labor with preterm delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "698716002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44784551, + "CONCEPT_NAME" : "Preterm spontaneous labor with term delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "698717006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 196762, + "CONCEPT_NAME" : "Primary uterine inertia - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199819004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 72692, + "CONCEPT_NAME" : "Prolapsed arm - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199384007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440476, + "CONCEPT_NAME" : "Prolapse of cord", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "270500004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441645, + "CONCEPT_NAME" : "Prolapse of cord - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199869007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440475, + "CONCEPT_NAME" : "Prolonged first stage - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199847000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434431, + "CONCEPT_NAME" : "Prolonged second stage - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199857004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442419, + "CONCEPT_NAME" : "Puerperal cerebrovascular disorder - delivered", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "200330000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442418, + "CONCEPT_NAME" : "Puerperal cerebrovascular disorder - delivered with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200331001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4065749, + "CONCEPT_NAME" : "Puerperal endometritis - delivered with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200181000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434713, + "CONCEPT_NAME" : "Puerperal pyrexia of unknown origin - delivered with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200280009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438481, + "CONCEPT_NAME" : "Quadruplet pregnancy - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199325005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 200157, + "CONCEPT_NAME" : "Renal hypertension complicating pregnancy, childbirth and the puerperium - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198951008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442078, + "CONCEPT_NAME" : "Retained placenta with no hemorrhage - delivered with postnatal problem", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "200037005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 198216, + "CONCEPT_NAME" : "Retroverted incarcerated gravid uterus - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199468005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 195878, + "CONCEPT_NAME" : "Rhesus isoimmunization - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199582007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4127253, + "CONCEPT_NAME" : "Right mediolateral episiotomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "236992007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4121924, + "CONCEPT_NAME" : "Routine episiotomy and repair", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "288194000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 198816, + "CONCEPT_NAME" : "Rupture of uterus before labor - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199960005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 192699, + "CONCEPT_NAME" : "Rupture of uterus during and after labor - delivered", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "199964001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4064960, + "CONCEPT_NAME" : "Rupture of uterus during and after labor - delivered with postnatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199965000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4065618, + "CONCEPT_NAME" : "Secondary postpartum hemorrhage - delivered with postnatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200025008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 192384, + "CONCEPT_NAME" : "Secondary uterine inertia - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199824001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 198499, + "CONCEPT_NAME" : "Second degree perineal tear during delivery - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199925004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4264738, + "CONCEPT_NAME" : "Separation of symphysis pubis during delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "61007003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438490, + "CONCEPT_NAME" : "Severe pre-eclampsia - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198983002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439077, + "CONCEPT_NAME" : "Severe pre-eclampsia - delivered with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198984008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4092760, + "CONCEPT_NAME" : "Sex of baby at delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "281053000", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Observable Entity" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435020, + "CONCEPT_NAME" : "Short cord - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199889008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 80474, + "CONCEPT_NAME" : "Shoulder dystocia - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199783004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4170152, + "CONCEPT_NAME" : "Simpson's forceps delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "275169009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36713074, + "CONCEPT_NAME" : "Single liveborn born in hospital by vaginal delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "17561000119102", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4073422, + "CONCEPT_NAME" : "Spontaneous breech delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177157003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4167497, + "CONCEPT_NAME" : "Spontaneous unassisted delivery, medical personnel present", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48204000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4205240, + "CONCEPT_NAME" : "Spontaneous vertex delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "309469004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110318, + "CONCEPT_NAME" : "Subtotal or total hysterectomy after cesarean delivery (List separately in addition to code for primary procedure)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59525", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439094, + "CONCEPT_NAME" : "Superficial thrombophlebitis in pregnancy and the puerperium - delivered", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "200224003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439095, + "CONCEPT_NAME" : "Superficial thrombophlebitis in pregnancy and the puerperium - delivered with postnatal complication", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "267283002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 193275, + "CONCEPT_NAME" : "Third degree perineal tear during delivery - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199930000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3186670, + "CONCEPT_NAME" : "Threatened premature labor - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "480001000004104", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "Nebraska Lexicon", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 136755, + "CONCEPT_NAME" : "Thyroid dysfunction during pregnancy - baby delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199237009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 138207, + "CONCEPT_NAME" : "Thyroid dysfunction in the puerperium - baby delivered during current episode of care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199238004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4204679, + "CONCEPT_NAME" : "Total breech delivery with forceps to aftercoming head", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54973000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 137940, + "CONCEPT_NAME" : "Transient hypertension of pregnancy - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198965005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4063171, + "CONCEPT_NAME" : "Transverse lie - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199362007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4174854, + "CONCEPT_NAME" : "Trauma from instrument during delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "42599006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4267072, + "CONCEPT_NAME" : "Traumatic extension of episiotomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36497006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439093, + "CONCEPT_NAME" : "Traumatic lesion during delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64229006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432975, + "CONCEPT_NAME" : "Trauma to perineum and/or vulva during delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "267268007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4161678, + "CONCEPT_NAME" : "Trauma to perineum during delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "397952002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3655718, + "CONCEPT_NAME" : "Trauma to urethra and bladder during delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "866229004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4134431, + "CONCEPT_NAME" : "Trauma to vagina during delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "128077009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4326563, + "CONCEPT_NAME" : "Trauma to vulva during delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7504005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4290245, + "CONCEPT_NAME" : "Trial forceps delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "69422002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4073424, + "CONCEPT_NAME" : "Trial of vacuum delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177176001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440462, + "CONCEPT_NAME" : "Triplet pregnancy - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199321001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 196181, + "CONCEPT_NAME" : "Tumor of uterine body - baby delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "267221002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 197049, + "CONCEPT_NAME" : "Tumor of uterine body - baby delivered with postpartum complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "267222009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4101844, + "CONCEPT_NAME" : "Twin birth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "28030000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42535052, + "CONCEPT_NAME" : "Twin live born in hospital by vaginal delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "151441000119105", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435018, + "CONCEPT_NAME" : "Twin pregnancy - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199317008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060157, + "CONCEPT_NAME" : "Umbilical cord tight around neck - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199874004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110342, + "CONCEPT_NAME" : "Unlisted procedure, maternity care and delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59899", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004742, + "CONCEPT_NAME" : "Unspecified instrumental delivery", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72.9", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "3-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 79889, + "CONCEPT_NAME" : "Unstable lie - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199344003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45757158, + "CONCEPT_NAME" : "Uterine laceration during delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10760261000119106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4075171, + "CONCEPT_NAME" : "Vacuum delivery before full dilation of cervix", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177175002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442069, + "CONCEPT_NAME" : "Vacuum extractor delivery - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200138003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 193544, + "CONCEPT_NAME" : "Vaginal abnormality - baby delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "267240008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4228344, + "CONCEPT_NAME" : "Vaginal cesarean section", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "89053004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4331179, + "CONCEPT_NAME" : "Vaginal delivery, medical personnel present", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "22633006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44784097, + "CONCEPT_NAME" : "Vaginal delivery of fetus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "700000006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110320, + "CONCEPT_NAME" : "Vaginal delivery only, after previous cesarean delivery (with or without episiotomy and/or forceps)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59612", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110308, + "CONCEPT_NAME" : "Vaginal delivery only (with or without episiotomy and/or forceps)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59409", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4167018, + "CONCEPT_NAME" : "Vaginal delivery with forceps including postpartum care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45718005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442059, + "CONCEPT_NAME" : "Varicose veins of legs in pregnancy and the puerperium - delivered", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "200206000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435610, + "CONCEPT_NAME" : "Varicose veins of perineum and vulva in pregnancy and the puerperium - delivered", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "200215007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435609, + "CONCEPT_NAME" : "Vasa previa - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199895009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 321367, + "CONCEPT_NAME" : "Vascular lesions of cord - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199900008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443246, + "CONCEPT_NAME" : "Vulval abnormality - baby delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "267247006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441087, + "CONCEPT_NAME" : "Vulval and/or perineal hematoma during delivery - delivered", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "199944006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4071632, + "CONCEPT_NAME" : "Water birth delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177185001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40394878, + "CONCEPT_NAME" : "[X]Delivery", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "200548008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 1, + "name" : "Livebirth (LB)", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4092289, + "CONCEPT_NAME" : "Livebirth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "281050002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4307044, + "CONCEPT_NAME" : "Live birth surviving more than one year", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "390959009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40482735, + "CONCEPT_NAME" : "Liveborn born in hospital", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "442311008", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40483126, + "CONCEPT_NAME" : "Liveborn born in hospital by cesarean section", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "442365008", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4163851, + "CONCEPT_NAME" : "Multiple birth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45384004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36713468, + "CONCEPT_NAME" : "Multiple liveborn other than twins born in hospital", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "717807001", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3174212, + "CONCEPT_NAME" : "Premature 28 week quadruplet", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7550001000004101", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "Nebraska Lexicon", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4097427, + "CONCEPT_NAME" : "Premature birth of fraternal twins, both living", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25192009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4147043, + "CONCEPT_NAME" : "Premature birth of fraternal twins, one living, one stillborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "30165006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4142021, + "CONCEPT_NAME" : "Premature birth of identical twins, both living", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "34100008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4310910, + "CONCEPT_NAME" : "Premature birth of identical twins, one living, one stillborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "39213008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4069200, + "CONCEPT_NAME" : "Premature birth of multiple newborns", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "20272009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4145125, + "CONCEPT_NAME" : "Premature birth of newborn quadruplets", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "34089005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4082863, + "CONCEPT_NAME" : "Premature birth of newborn quintuplets", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "24146004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4008884, + "CONCEPT_NAME" : "Premature birth of newborn sextuplets", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "112075006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4107401, + "CONCEPT_NAME" : "Premature birth of newborn triplets", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "29997008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4029786, + "CONCEPT_NAME" : "Premature birth of newborn twins", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13859001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45765500, + "CONCEPT_NAME" : "Quadruplet birth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "702452007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45757166, + "CONCEPT_NAME" : "Quadruplets, all live born", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10760701000119102", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45773428, + "CONCEPT_NAME" : "Quadruplets, some live born", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10760741000119100", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45765501, + "CONCEPT_NAME" : "Quintuplet birth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "702453002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45757167, + "CONCEPT_NAME" : "Quintuplets, all live born", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10760781000119105", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45757168, + "CONCEPT_NAME" : "Quintuplets, some live born", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10760821000119100", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45765502, + "CONCEPT_NAME" : "Sextuplet birth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "702454008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45772082, + "CONCEPT_NAME" : "Sextuplets, all live born", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10760861000119105", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45757169, + "CONCEPT_NAME" : "Sextuplets, some live born", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10760901000119104", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014295, + "CONCEPT_NAME" : "Single live birth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169826009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40483521, + "CONCEPT_NAME" : "Single liveborn born in hospital by cesarean section", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "442423001", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36713465, + "CONCEPT_NAME" : "Singleton liveborn born in hospital", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "717803002", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4227728, + "CONCEPT_NAME" : "Term birth of fraternal twins, both living", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87662006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4330570, + "CONCEPT_NAME" : "Term birth of fraternal twins, one living, one stillborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "22514005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4049333, + "CONCEPT_NAME" : "Term birth of identical twins, both living", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15467003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4243026, + "CONCEPT_NAME" : "Term birth of identical twins, one living, one stillborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "38257001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4066292, + "CONCEPT_NAME" : "Term birth of multiple newborns", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "17333005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4193224, + "CONCEPT_NAME" : "Term birth of newborn quadruplets", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7888004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336090, + "CONCEPT_NAME" : "Term birth of newborn quintuplets", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86803008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4199146, + "CONCEPT_NAME" : "Term birth of newborn sextuplets", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "52483005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4307237, + "CONCEPT_NAME" : "Term birth of newborn triplets", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "8333008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4178275, + "CONCEPT_NAME" : "Term birth of newborn twins", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "50758004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4094046, + "CONCEPT_NAME" : "Triplet birth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "281052005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42539210, + "CONCEPT_NAME" : "Triplet liveborn in hospital by cesarean section", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16089571000119102", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014456, + "CONCEPT_NAME" : "Triplets - all live born", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169831006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015422, + "CONCEPT_NAME" : "Triplets - one live and two stillborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169833009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45757165, + "CONCEPT_NAME" : "Triplets, some live born", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10760661000119109", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015421, + "CONCEPT_NAME" : "Triplets - two live and one stillborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169832004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40483084, + "CONCEPT_NAME" : "Twin liveborn born in hospital", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "442327001", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40483101, + "CONCEPT_NAME" : "Twin liveborn born in hospital by cesarean section", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "442342003", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014296, + "CONCEPT_NAME" : "Twins - both live born", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169828005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014455, + "CONCEPT_NAME" : "Twins - one still and one live born", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169829002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 2, + "name" : "Gestational age (GEST)", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4015296, + "CONCEPT_NAME" : "Antenatal 12 weeks examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169712008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014149, + "CONCEPT_NAME" : "Antenatal 16 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169713003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014150, + "CONCEPT_NAME" : "Antenatal 20 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169714009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808979, + "CONCEPT_NAME" : "Antenatal 22 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861281000000109", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015141, + "CONCEPT_NAME" : "Antenatal 24 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169715005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808980, + "CONCEPT_NAME" : "Antenatal 25 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861301000000105", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014151, + "CONCEPT_NAME" : "Antenatal 30 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169717002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808981, + "CONCEPT_NAME" : "Antenatal 31 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861321000000101", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015297, + "CONCEPT_NAME" : "Antenatal 32 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169718007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015298, + "CONCEPT_NAME" : "Antenatal 34 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169719004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014434, + "CONCEPT_NAME" : "Antenatal 35 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169720005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015299, + "CONCEPT_NAME" : "Antenatal 36 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169721009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015142, + "CONCEPT_NAME" : "Antenatal 37 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169722002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014152, + "CONCEPT_NAME" : "Antenatal 38 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169723007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015300, + "CONCEPT_NAME" : "Antenatal 39 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169724001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015301, + "CONCEPT_NAME" : "Antenatal 40 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169725000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015302, + "CONCEPT_NAME" : "Antenatal 41 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169726004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014435, + "CONCEPT_NAME" : "Antenatal 42 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169727008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4178165, + "CONCEPT_NAME" : "Gestation 14 - 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428567001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181468, + "CONCEPT_NAME" : "Gestation 9- 13 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428930004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181162, + "CONCEPT_NAME" : "Gestation greater than 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429715006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4324063, + "CONCEPT_NAME" : "Gestation less than 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428566005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438542, + "CONCEPT_NAME" : "Gestation less than 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313178001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45770261, + "CONCEPT_NAME" : "Gestation less than 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "925561000000100", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4322726, + "CONCEPT_NAME" : "Gestation less than 9 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428058009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4242241, + "CONCEPT_NAME" : "Gestation period, 10 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "38039008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4174506, + "CONCEPT_NAME" : "Gestation period, 11 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "50367001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4197245, + "CONCEPT_NAME" : "Gestation period, 12 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "79992004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4266517, + "CONCEPT_NAME" : "Gestation period, 13 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "62333002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4248725, + "CONCEPT_NAME" : "Gestation period, 14 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72846000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4283690, + "CONCEPT_NAME" : "Gestation period, 15 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6678005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4049621, + "CONCEPT_NAME" : "Gestation period, 16 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15633004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4277749, + "CONCEPT_NAME" : "Gestation period, 17 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65683006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4097608, + "CONCEPT_NAME" : "Gestation period, 18 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25026004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181751, + "CONCEPT_NAME" : "Gestation period, 19 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54318006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4337360, + "CONCEPT_NAME" : "Gestation period, 1 week", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87178007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4051642, + "CONCEPT_NAME" : "Gestation period, 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "23464008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4185780, + "CONCEPT_NAME" : "Gestation period, 21 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "41438001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4274955, + "CONCEPT_NAME" : "Gestation period, 22 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65035007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336226, + "CONCEPT_NAME" : "Gestation period, 23 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86883006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439922, + "CONCEPT_NAME" : "Gestation period, 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313179009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435640, + "CONCEPT_NAME" : "Gestation period, 25 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72544005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444023, + "CONCEPT_NAME" : "Gestation period, 26 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48688005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432430, + "CONCEPT_NAME" : "Gestation period, 27 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46906003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444461, + "CONCEPT_NAME" : "Gestation period, 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90797000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444417, + "CONCEPT_NAME" : "Gestation period, 29 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45139008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4220085, + "CONCEPT_NAME" : "Gestation period, 2 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "82118009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434484, + "CONCEPT_NAME" : "Gestation period, 30 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "71355009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433864, + "CONCEPT_NAME" : "Gestation period, 31 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64920003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442558, + "CONCEPT_NAME" : "Gestation period, 32 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7707000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441678, + "CONCEPT_NAME" : "Gestation period, 33 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "78395001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443874, + "CONCEPT_NAME" : "Gestation period, 34 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13763000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444267, + "CONCEPT_NAME" : "Gestation period, 35 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84132007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438543, + "CONCEPT_NAME" : "Gestation period, 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57907009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442355, + "CONCEPT_NAME" : "Gestation period, 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43697006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443871, + "CONCEPT_NAME" : "Gestation period, 38 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13798002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435655, + "CONCEPT_NAME" : "Gestation period, 39 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80487005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4326232, + "CONCEPT_NAME" : "Gestation period, 3 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "74952004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442769, + "CONCEPT_NAME" : "Gestation period, 41 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63503002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444067, + "CONCEPT_NAME" : "Gestation period, 42 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36428009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4195157, + "CONCEPT_NAME" : "Gestation period, 4 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "44398003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4290009, + "CONCEPT_NAME" : "Gestation period, 5 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "37005007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4313026, + "CONCEPT_NAME" : "Gestation period, 6 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86801005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4270513, + "CONCEPT_NAME" : "Gestation period, 7 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63110000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4132434, + "CONCEPT_NAME" : "Gestation period, 8 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26690008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4245908, + "CONCEPT_NAME" : "Gestation period, 9 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "931004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 762907, + "CONCEPT_NAME" : "Gestation period greater than or equal to 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "433601000124106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336958, + "CONCEPT_NAME" : "Term pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87527008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4180111, + "CONCEPT_NAME" : "Third trimester pregnancy less than 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429240000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444098, + "CONCEPT_NAME" : "Gestation period, 40 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46230007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 3, + "name" : "Gestational period, 8 weeks", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4132434, + "CONCEPT_NAME" : "Gestation period, 8 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26690008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4322726, + "CONCEPT_NAME" : "Gestation less than 9 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428058009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 4, + "name" : "Last menstrual period (LMP)", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4072438, + "CONCEPT_NAME" : "Date of last menstrual period", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "21840007", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Observable Entity" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4088445, + "CONCEPT_NAME" : "Date of last normal period", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "248993009", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Observable Entity" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4058439, + "CONCEPT_NAME" : "Last menstrual period -1st day", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "161713000", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Observable Entity" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 5, + "name" : "Nuchal ultrasound (ULS)", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4186424, + "CONCEPT_NAME" : "Nuchal ultrasound scan", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "414880004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4324606, + "CONCEPT_NAME" : "Transvaginal nuchal ultrasonography", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "430063002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40489798, + "CONCEPT_NAME" : "Ultrasonography of multiple pregnancy for fetal nuchal translucency", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "446810002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2211754, + "CONCEPT_NAME" : "Ultrasound, pregnant uterus, real time with image documentation, first trimester fetal nuchal translucency measurement, transabdominal or transvaginal approach; each additional gestation (List separately in addition to code for primary procedure)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "76814", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2211753, + "CONCEPT_NAME" : "Ultrasound, pregnant uterus, real time with image documentation, first trimester fetal nuchal translucency measurement, transabdominal or transvaginal approach; single or first gestation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "76813", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4237339, + "CONCEPT_NAME" : "Ultrasound scan for fetal nuchal translucency", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "408815001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 6, + "name" : "Alpha fetal protein (AFP)", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 40480490, + "CONCEPT_NAME" : "Abnormal presence of alpha-fetoprotein", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "441772009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061810, + "CONCEPT_NAME" : "AFP - blood sent", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169688006", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061809, + "CONCEPT_NAME" : "AFP blood test not wanted", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169687001", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040768, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein interpretation in Amniotic fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "41273-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3038294, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein interpretation in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "41274-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3010296, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Mass/volume] in Amniotic fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1832-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42529192, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Mass/volume] in Amniotic fluid by Immunoassay", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "83075-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3027634, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Mass/volume] in Cerebral spinal fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1833-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757479, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Mass/volume] in Cord blood", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54348-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3032506, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Mass/volume] in Peritoneal fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "49761-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3033080, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Mass/volume] in Pleural fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "49762-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3009306, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Mass/volume] in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1834-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42529190, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Mass/volume] in Serum or Plasma by Immunoassay", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "83073-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4197249, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80152001", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4099476, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein measurement, amniotic fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "27220002", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014768, + "CONCEPT_NAME" : "Alpha-1-fetoprotein measurement, serum", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "104404005", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3012116, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Moles/volume] in Amniotic fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15019-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3024289, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Moles/volume] in Pleural fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "19173-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3021607, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Moles/volume] in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "19177-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3046154, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Multiple of the median] adjusted for diabetes in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43998-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3044142, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Multiple of the median] adjusted for diabetes+weight in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43996-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3030180, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Multiple of the median] adjusted for multiple gestations in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "50610-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3046979, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Multiple of the median] adjusted for weight in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43997-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3022269, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Multiple of the median] adjusted in Amniotic fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "29253-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3016670, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Multiple of the median] adjusted in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "23811-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3024370, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Multiple of the median] in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "20450-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40761829, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein panel - Amniotic fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "58735-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3044397, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Presence] in Amniotic fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43798-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3025053, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Presence] in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "31993-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3027505, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Units/volume] in Amniotic fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "19171-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42529191, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Units/volume] in Amniotic fluid by Immunoassay", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "83074-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3045958, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Units/volume] in Body fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "44910-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40762626, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Units/volume] in Cerebral spinal fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59564-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3028331, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Units/volume] in Pleural fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "19172-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42529189, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Units/volume] in Serum or Plasma by Immunoassay", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "83072-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2212200, + "CONCEPT_NAME" : "Alpha-fetoprotein (AFP); AFP-L3 fraction isoform and total AFP (including ratio)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "82107", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2212199, + "CONCEPT_NAME" : "Alpha-fetoprotein (AFP); amniotic fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "82106", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2212198, + "CONCEPT_NAME" : "Alpha-fetoprotein (AFP); serum", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "82105", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4147940, + "CONCEPT_NAME" : "Alpha-fetoprotein blood test", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "268468007", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4269851, + "CONCEPT_NAME" : "Alpha-fetoprotein level - finding", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "365802003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4041177, + "CONCEPT_NAME" : "Alpha-fetoprotein low", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "166562001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44807243, + "CONCEPT_NAME" : "Alpha fetoprotein multiple of median measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "816011000000101", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4042555, + "CONCEPT_NAME" : "Alpha-fetoprotein normal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "166558007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4059689, + "CONCEPT_NAME" : "Alpha-fetoprotein radioimmunoassay", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169188005", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4042557, + "CONCEPT_NAME" : "Alpha-fetoprotein raised", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "166561008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4078285, + "CONCEPT_NAME" : "Alpha-fetoprotein test - antenatal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "275833003", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4057158, + "CONCEPT_NAME" : "Amniotic fluid AFP equivocal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "168108003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4269860, + "CONCEPT_NAME" : "Amniotic fluid AFP - finding", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "365827005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4042936, + "CONCEPT_NAME" : "Blood sent: alpha-fetoprotein", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "166557002", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40761828, + "CONCEPT_NAME" : "Collection date of Amniotic fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "58734-5", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Clinical Observation" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37396772, + "CONCEPT_NAME" : "Congenital deficiency of alpha-fetoprotein", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "716698007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37396771, + "CONCEPT_NAME" : "Hereditary persistence of alpha-fetoprotein", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "716697002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40478936, + "CONCEPT_NAME" : "Measurement of alpha fetoprotein and analysis of chromosomes in amniotic fluid specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "444311009", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40483704, + "CONCEPT_NAME" : "Measurement of alpha fetoprotein and human chorionic gonadotropin and unconjugated estriol in serum or plasma specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "443883001", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40480870, + "CONCEPT_NAME" : "Measurement of alpha fetoprotein as marker for malignant neoplasm", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "441825001", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40483600, + "CONCEPT_NAME" : "Measurement of alpha fetoprotein in second trimester", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "442495004", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4310471, + "CONCEPT_NAME" : "MS alpha-fetoprotein level", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "391516001", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4210719, + "CONCEPT_NAME" : "Plasma alpha-fetoprotein multiple of median measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313867006", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4161969, + "CONCEPT_NAME" : "Serum alpha-fetoprotein level elevated", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "399643001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4275335, + "CONCEPT_NAME" : "Serum alpha-fetoprotein level - finding", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "365804002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4195345, + "CONCEPT_NAME" : "Serum alpha-fetoprotein multiple of median measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313868001", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4078287, + "CONCEPT_NAME" : "Triple test", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "275835005", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3051868, + "CONCEPT_NAME" : "Trisomy 21 risk based on maternal age+Alpha-1-Fetoprotein+Choriogonadotropin+Estriol.unconjugated [Likelihood] in Fetus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "47222-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 7, + "name" : "Amenorrhea (AMEN)", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 443800, + "CONCEPT_NAME" : "Amenorrhea", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14302001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4184965, + "CONCEPT_NAME" : "Amenorrhea associated with obesity", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "413487000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40480713, + "CONCEPT_NAME" : "Anovulatory amenorrhea", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "444769001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4242590, + "CONCEPT_NAME" : "Cryptomenorrhea", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "58851004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4211822, + "CONCEPT_NAME" : "Dietary amenorrhea", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57260004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4070773, + "CONCEPT_NAME" : "Dysponderal amenorrhea", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "21669001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4034017, + "CONCEPT_NAME" : "Exercise-related amenorrhea", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237119008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4034018, + "CONCEPT_NAME" : "Lactational amenorrhea", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237122005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45765512, + "CONCEPT_NAME" : "Normogonadotropic amenorrhea", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "702466002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4211227, + "CONCEPT_NAME" : "Pathologic amenorrhea", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "56561006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4261326, + "CONCEPT_NAME" : "Physiologic amenorrhea", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "44811000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4219015, + "CONCEPT_NAME" : "Postpill amenorrhea", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "39931000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4138554, + "CONCEPT_NAME" : "Premenopausal amenorrhea", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "32590007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40318194, + "CONCEPT_NAME" : "Primary amenorrhea", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "156035004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4230947, + "CONCEPT_NAME" : "Primary physiologic amenorrhea", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "8913004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40318195, + "CONCEPT_NAME" : "Secondary amenorrhea", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "156036003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4312727, + "CONCEPT_NAME" : "Secondary physiologic amenorrhea", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86030004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 8, + "name" : "Urine pregnancy test (URINE)", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4055287, + "CONCEPT_NAME" : "High sensitivity urine pregnancy test", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "167257008", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37392366, + "CONCEPT_NAME" : "High sensitivity urine pregnancy test", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1003171000000104", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Observable Entity" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4250175, + "CONCEPT_NAME" : "Pregnancy detection examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "74036000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4091293, + "CONCEPT_NAME" : "Sensitive pregnancy test", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "252161000", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4091461, + "CONCEPT_NAME" : "Standard pregnancy test", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "252160004", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4055285, + "CONCEPT_NAME" : "Urine pregnancy test", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "167252002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37392365, + "CONCEPT_NAME" : "Urine pregnancy test", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1003161000000106", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Observable Entity" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2212173, + "CONCEPT_NAME" : "Urine pregnancy test, by visual color comparison methods", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "81025", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014769, + "CONCEPT_NAME" : "Urine pregnancy test, by visual color comparison methods", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "104405006", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 9, + "name" : "Gestational period, 12 weeks", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4015296, + "CONCEPT_NAME" : "Antenatal 12 weeks examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169712008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4197245, + "CONCEPT_NAME" : "Gestation period, 12 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "79992004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 10, + "name" : "Gestational period, 37 weeks", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4015142, + "CONCEPT_NAME" : "Antenatal 37 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169722002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442355, + "CONCEPT_NAME" : "Gestation period, 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43697006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 762907, + "CONCEPT_NAME" : "Gestation period greater than or equal to 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "433601000124106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 11, + "name" : "Gestational period, 36 weeks", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4015299, + "CONCEPT_NAME" : "Antenatal 36 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169721009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438543, + "CONCEPT_NAME" : "Gestation period, 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57907009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 12, + "name" : "Gestational period, 35 weeks", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4014434, + "CONCEPT_NAME" : "Antenatal 35 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169720005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444267, + "CONCEPT_NAME" : "Gestation period, 35 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84132007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4180111, + "CONCEPT_NAME" : "Third trimester pregnancy less than 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429240000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 13, + "name" : "Gestational period, 39 weeks", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4015300, + "CONCEPT_NAME" : "Antenatal 39 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169724001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435655, + "CONCEPT_NAME" : "Gestation period, 39 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80487005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 14, + "name" : "Gestational period, 9 weeks", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4245908, + "CONCEPT_NAME" : "Gestation period, 9 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "931004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 15, + "name" : "Gestational period, 40 weeks", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4015301, + "CONCEPT_NAME" : "Antenatal 40 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169725000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336958, + "CONCEPT_NAME" : "Term pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87527008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444098, + "CONCEPT_NAME" : "Gestation period, 40 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46230007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 17, + "name" : "Gestational period, 10 weeks", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4242241, + "CONCEPT_NAME" : "Gestation period, 10 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "38039008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 18, + "name" : "Gestational period, 11 weeks", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4174506, + "CONCEPT_NAME" : "Gestation period, 11 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "50367001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 19, + "name" : "Gestational period, 13 weeks", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4181468, + "CONCEPT_NAME" : "Gestation 9- 13 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428930004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4266517, + "CONCEPT_NAME" : "Gestation period, 13 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "62333002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 20, + "name" : "Gestational period, 1 week", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4337360, + "CONCEPT_NAME" : "Gestation period, 1 week", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87178007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 21, + "name" : "Gestational period, 2 weeks", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4220085, + "CONCEPT_NAME" : "Gestation period, 2 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "82118009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 22, + "name" : "Gestational period, 3 weeks", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4326232, + "CONCEPT_NAME" : "Gestation period, 3 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "74952004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 23, + "name" : "Gestational period, 4 weeks", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4195157, + "CONCEPT_NAME" : "Gestation period, 4 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "44398003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 24, + "name" : "Gestational period, 5 weeks", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4290009, + "CONCEPT_NAME" : "Gestation period, 5 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "37005007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 25, + "name" : "Gestational period, 6 weeks", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4313026, + "CONCEPT_NAME" : "Gestation period, 6 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86801005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 26, + "name" : "Gestational period, 7 weeks", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4270513, + "CONCEPT_NAME" : "Gestation period, 7 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63110000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 28, + "name" : "Gestational period, 14 weeks", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4248725, + "CONCEPT_NAME" : "Gestation period, 14 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72846000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 29, + "name" : "Gestational period, 15 weeks", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4283690, + "CONCEPT_NAME" : "Gestation period, 15 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6678005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 30, + "name" : "Gestational period, 16 weeks", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4014149, + "CONCEPT_NAME" : "Antenatal 16 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169713003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4049621, + "CONCEPT_NAME" : "Gestation period, 16 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15633004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 31, + "name" : "Gestational period, 17 weeks", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4277749, + "CONCEPT_NAME" : "Gestation period, 17 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65683006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 32, + "name" : "Gestational period, 18 weeks", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4097608, + "CONCEPT_NAME" : "Gestation period, 18 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25026004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 33, + "name" : "Gestational period, 19 weeks", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4324063, + "CONCEPT_NAME" : "Gestation less than 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428566005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181751, + "CONCEPT_NAME" : "Gestation period, 19 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54318006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 34, + "name" : "Gestational period, 20 weeks", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4014150, + "CONCEPT_NAME" : "Antenatal 20 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169714009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4178165, + "CONCEPT_NAME" : "Gestation 14 - 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428567001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4051642, + "CONCEPT_NAME" : "Gestation period, 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "23464008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 35, + "name" : "Gestational period, 21 weeks", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4181162, + "CONCEPT_NAME" : "Gestation greater than 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429715006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4185780, + "CONCEPT_NAME" : "Gestation period, 21 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "41438001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 36, + "name" : "Gestational period, 22 weeks", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 44808979, + "CONCEPT_NAME" : "Antenatal 22 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861281000000109", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4274955, + "CONCEPT_NAME" : "Gestation period, 22 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65035007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 37, + "name" : "Gestational period, 23 weeks", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 438542, + "CONCEPT_NAME" : "Gestation less than 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313178001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336226, + "CONCEPT_NAME" : "Gestation period, 23 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86883006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 38, + "name" : "Gestational period, 24 weeks", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4015141, + "CONCEPT_NAME" : "Antenatal 24 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169715005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439922, + "CONCEPT_NAME" : "Gestation period, 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313179009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 40, + "name" : "Gestational period, 25 weeks", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 44808980, + "CONCEPT_NAME" : "Antenatal 25 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861301000000105", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435640, + "CONCEPT_NAME" : "Gestation period, 25 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72544005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 41, + "name" : "Gestational period, 26 weeks", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 444023, + "CONCEPT_NAME" : "Gestation period, 26 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48688005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 42, + "name" : "Gestational period, 27 weeks", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 45770261, + "CONCEPT_NAME" : "Gestation less than 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "925561000000100", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432430, + "CONCEPT_NAME" : "Gestation period, 27 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46906003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 43, + "name" : "Gestational period, 28 weeks", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 444461, + "CONCEPT_NAME" : "Gestation period, 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90797000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 44, + "name" : "Gestational period, 29 weeks", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 444417, + "CONCEPT_NAME" : "Gestation period, 29 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45139008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 45, + "name" : "Gestational period, 30 weeks", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4014151, + "CONCEPT_NAME" : "Antenatal 30 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169717002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434484, + "CONCEPT_NAME" : "Gestation period, 30 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "71355009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 47, + "name" : "Gestational period, 31 weeks", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 44808981, + "CONCEPT_NAME" : "Antenatal 31 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861321000000101", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433864, + "CONCEPT_NAME" : "Gestation period, 31 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64920003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 48, + "name" : "Gestational period, 32 weeks", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4015297, + "CONCEPT_NAME" : "Antenatal 32 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169718007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442558, + "CONCEPT_NAME" : "Gestation period, 32 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7707000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 49, + "name" : "Gestational period, 33 weeks", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 441678, + "CONCEPT_NAME" : "Gestation period, 33 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "78395001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 50, + "name" : "Gestational period, 34 weeks", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4015298, + "CONCEPT_NAME" : "Antenatal 34 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169719004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443874, + "CONCEPT_NAME" : "Gestation period, 34 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13763000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 51, + "name" : "Gestational period, 38 weeks", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4014152, + "CONCEPT_NAME" : "Antenatal 38 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169723007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443871, + "CONCEPT_NAME" : "Gestation period, 38 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13798002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 52, + "name" : "Gestational period, 41 weeks", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4015302, + "CONCEPT_NAME" : "Antenatal 41 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169726004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442769, + "CONCEPT_NAME" : "Gestation period, 41 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63503002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 53, + "name" : "Gestational period, 42 weeks", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4014435, + "CONCEPT_NAME" : "Antenatal 42 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169727008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444067, + "CONCEPT_NAME" : "Gestation period, 42 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36428009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 55, + "name" : "Fertility procedure, condition or observation (NFERT)", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4239302, + "CONCEPT_NAME" : "Artificial insemination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "58533008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004542, + "CONCEPT_NAME" : "Artificial insemination", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "69.92", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4130186, + "CONCEPT_NAME" : "Artificial insemination by donor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "236896006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4127094, + "CONCEPT_NAME" : "Artificial insemination by husband", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "236895005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4187819, + "CONCEPT_NAME" : "Artificial insemination, heterologous", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46249006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4280831, + "CONCEPT_NAME" : "Artificial insemination, homologous", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "66601000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110196, + "CONCEPT_NAME" : "Artificial insemination; intra-cervical", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "58321", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110197, + "CONCEPT_NAME" : "Artificial insemination; intra-uterine", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "58322", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4238828, + "CONCEPT_NAME" : "Artificial insemination with sperm washing and capacitation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57233006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2213350, + "CONCEPT_NAME" : "Assisted embryo hatching, microtechniques (any method)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "89253", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4272937, + "CONCEPT_NAME" : "Assisted fertilization", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63487001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2721246, + "CONCEPT_NAME" : "Assisted oocyte fertilization, case rate", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "S4022", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42739500, + "CONCEPT_NAME" : "Assisted oocyte fertilization, microtechnique (any method) (Deprecated)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "89252", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2213363, + "CONCEPT_NAME" : "Assisted oocyte fertilization, microtechnique; greater than 10 oocytes", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "89281", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2213362, + "CONCEPT_NAME" : "Assisted oocyte fertilization, microtechnique; less than or equal to 10 oocytes", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "89280", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2213365, + "CONCEPT_NAME" : "Biopsy, oocyte polar body or embryo blastomere, microtechnique (for pre-implantation genetic diagnosis); greater than 5 embryos", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "89291", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2213364, + "CONCEPT_NAME" : "Biopsy, oocyte polar body or embryo blastomere, microtechnique (for pre-implantation genetic diagnosis); less than or equal to 5 embryos", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "89290", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2721238, + "CONCEPT_NAME" : "Complete cycle, gamete intrafallopian transfer (gift), case rate", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "S4013", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2721239, + "CONCEPT_NAME" : "Complete cycle, zygote intrafallopian transfer (zift), case rate", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "S4014", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2721240, + "CONCEPT_NAME" : "Complete in vitro fertilization cycle, not otherwise specified, case rate", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "S4015", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4309021, + "CONCEPT_NAME" : "Complications of attempted introduction of fertilized ovum following in vitro fertilization", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "213202009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40482399, + "CONCEPT_NAME" : "Conceived by in vitro fertilization", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "443633009", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2213355, + "CONCEPT_NAME" : "Cryopreservation; embryo(s)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "89258", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2721256, + "CONCEPT_NAME" : "Cryopreserved embryo transfer, case rate", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "S4037", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2213347, + "CONCEPT_NAME" : "Culture of oocyte(s)/embryo(s), less than 4 days", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "89250", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2213348, + "CONCEPT_NAME" : "Culture of oocyte(s)/embryo(s), less than 4 days; with co-culture of oocyte(s)/embryos", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "89251", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4022096, + "CONCEPT_NAME" : "Direct injection of sperm into cytoplasm of the oocyte", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "225244002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4024589, + "CONCEPT_NAME" : "Direct intraperitoneal insemination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "225247009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2721247, + "CONCEPT_NAME" : "Donor egg cycle, incomplete, case rate", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "S4023", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2721248, + "CONCEPT_NAME" : "Donor services for in vitro fertilization (sperm or embryo), case rate", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "S4025", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4327048, + "CONCEPT_NAME" : "Embryo transfer", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "75456002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110275, + "CONCEPT_NAME" : "Embryo transfer, intrauterine", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "58974", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4072852, + "CONCEPT_NAME" : "Endoscopic intrafallopian transfer of gamete", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "176996001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4072863, + "CONCEPT_NAME" : "Endoscopic transurethral ultrasound directed oocyte recovery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177038005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4074569, + "CONCEPT_NAME" : "Endoscopic transvesical oocyte recovery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177039002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2213361, + "CONCEPT_NAME" : "Extended culture of oocyte(s)/embryo(s), 4-7 days", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "89272", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4127892, + "CONCEPT_NAME" : "Fallopian replacement of egg with delayed insemination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "236913003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110274, + "CONCEPT_NAME" : "Follicle puncture for oocyte retrieval, any method", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "58970", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4032737, + "CONCEPT_NAME" : "Frozen embryo transfer", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "236894009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2721243, + "CONCEPT_NAME" : "Frozen embryo transfer procedure cancelled before transfer, case rate", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "S4018", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2721241, + "CONCEPT_NAME" : "Frozen in vitro fertilization cycle, case rate", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "S4016", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4127104, + "CONCEPT_NAME" : "Gamete intrafallopian transfer", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "236912008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4072421, + "CONCEPT_NAME" : "Gamete intrauterine transfer", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "176843009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110276, + "CONCEPT_NAME" : "Gamete, zygote, or embryo intrafallopian transfer, any method", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "58976", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4309019, + "CONCEPT_NAME" : "Infection associated with artificial insemination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "213200001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2213360, + "CONCEPT_NAME" : "Insemination of oocytes", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "89268", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4072715, + "CONCEPT_NAME" : "Intracervical artificial insemination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "176844003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4030829, + "CONCEPT_NAME" : "Intraperitoneal insemination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "238312005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4138741, + "CONCEPT_NAME" : "Intrauterine artificial insemination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "265064001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4139858, + "CONCEPT_NAME" : "Intrauterine insemination using donor sperm", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "426250000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4139060, + "CONCEPT_NAME" : "Intrauterine insemination using partner sperm", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "426389008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4137390, + "CONCEPT_NAME" : "Intrauterine insemination with controlled ovarian hyperstimulation using donor sperm", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "425644009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4145843, + "CONCEPT_NAME" : "Intrauterine insemination with controlled ovarian hyperstimulation using partner sperm", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "426968007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4020898, + "CONCEPT_NAME" : "Intravaginal artificial insemination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "225250007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2721255, + "CONCEPT_NAME" : "INTRAVAGINAL CULTURE (IVC)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "S4036", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4199599, + "CONCEPT_NAME" : "In vitro fertilization", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "52637005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2788842, + "CONCEPT_NAME" : "In Vitro Fertilization", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "8E0ZXY1", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD10PCS", + "CONCEPT_CLASS_ID" : "ICD10PCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2721237, + "CONCEPT_NAME" : "In vitro fertilization; including but not limited to identification and incubation of mature oocytes, fertilization with sperm, incubation of embryo(s), and subsequent visualization for determination of development", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "S4011", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3049700, + "CONCEPT_NAME" : "In vitro fertilization pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "47224-1", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Clinical Observation" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2721245, + "CONCEPT_NAME" : "In vitro fertilization procedure cancelled after aspiration, case rate", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "S4021", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2721244, + "CONCEPT_NAME" : "In vitro fertilization procedure cancelled before aspiration, case rate", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "S4020", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4138627, + "CONCEPT_NAME" : "In vitro fertilization using donor eggs", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "425866000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 46273065, + "CONCEPT_NAME" : "In vitro fertilization with surrogacy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "711544002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4145664, + "CONCEPT_NAME" : "IVF - In vitro fertilization using donor sperm", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "427664000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4138633, + "CONCEPT_NAME" : "IVF - In vitro fertilization with intracytoplasmic sperm injection (ICSI)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "425901007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4141534, + "CONCEPT_NAME" : "IVF - In vitro fertilization with intracytoplasmic sperm injection (ICSI) and donor egg", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "426914002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4142402, + "CONCEPT_NAME" : "IVF - In vitro fertilization with pre-implantation genetic diagnosis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "426417003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4144415, + "CONCEPT_NAME" : "Laparoscopic oocyte recovery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "265082003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40259107, + "CONCEPT_NAME" : "Laparoscopic oocyte recovery (& NEC)", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "177040000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2213351, + "CONCEPT_NAME" : "Oocyte identification from follicular fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "89254", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4072862, + "CONCEPT_NAME" : "Oocyte recovery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177037000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 46232934, + "CONCEPT_NAME" : "Other introduction of gametes into uterine cavity", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "Q21", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "OPCS4", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44513468, + "CONCEPT_NAME" : "Other specified introduction of gametes into uterine cavity", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "Q13.8", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "OPCS4", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44517168, + "CONCEPT_NAME" : "Other specified in vitro fertilisation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "Y96.8", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "OPCS4", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4075024, + "CONCEPT_NAME" : "Other specified oocyte recovery", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "177043003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44513634, + "CONCEPT_NAME" : "Other specified oocyte recovery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "Q48.8", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "OPCS4", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44513516, + "CONCEPT_NAME" : "Other specified other introduction of gametes into uterine cavity", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "Q21.8", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "OPCS4", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2213352, + "CONCEPT_NAME" : "Preparation of embryo for transfer (any method)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "89255", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40490338, + "CONCEPT_NAME" : "Retrieval of oocyte by transabdominal approach", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "446934006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2213358, + "CONCEPT_NAME" : "Sperm isolation; complex prep (eg, Percoll gradient, albumin gradient) for insemination or diagnosis with semen analysis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "89261", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2213357, + "CONCEPT_NAME" : "Sperm isolation; simple prep (eg, sperm wash and swim-up) for insemination or diagnosis with semen analysis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "89260", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110198, + "CONCEPT_NAME" : "Sperm washing for artificial insemination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "58323", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2721254, + "CONCEPT_NAME" : "Stimulated intrauterine insemination (iui), case rate", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "S4035", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4022098, + "CONCEPT_NAME" : "Subzonal insemination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "225249007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44790511, + "CONCEPT_NAME" : "Transfer of embryo to uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "233111000000108", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40490447, + "CONCEPT_NAME" : "Transmyometrial transfer of embryo to uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "448543003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4073406, + "CONCEPT_NAME" : "Transvaginal oocyte recovery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177042008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4127106, + "CONCEPT_NAME" : "Tubal embryo transfer", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "236915005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4020897, + "CONCEPT_NAME" : "Zona drilling", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "225248004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4127105, + "CONCEPT_NAME" : "Zygote intrafallopian transfer", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "236914009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 56, + "name" : "Antenatal GP visits (AGP)", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4014433, + "CONCEPT_NAME" : "Antenatal 28 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169716006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014148, + "CONCEPT_NAME" : "Antenatal booking examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169711001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4173786, + "CONCEPT_NAME" : "Antenatal care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "424525001", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061786, + "CONCEPT_NAME" : "Antenatal care categorized by gravida number", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169572002", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060243, + "CONCEPT_NAME" : "Antenatal care: elderly primiparous", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169588002", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530904, + "CONCEPT_NAME" : "Antenatal care for woman with history of recurrent miscarriage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609442008", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061437, + "CONCEPT_NAME" : "Antenatal care from consultant", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169615001", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060251, + "CONCEPT_NAME" : "Antenatal care from general practitioner", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169614002", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439656, + "CONCEPT_NAME" : "Antenatal care: grand multiparity", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169581008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060246, + "CONCEPT_NAME" : "Antenatal care: history of child abuse", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169595006", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060097, + "CONCEPT_NAME" : "Antenatal care: history of infertility", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169589005", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060242, + "CONCEPT_NAME" : "Antenatal care: history of perinatal death", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169583006", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060241, + "CONCEPT_NAME" : "Antenatal care: history of stillbirth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169582001", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4059989, + "CONCEPT_NAME" : "Antenatal care: history of trophoblastic disease", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169585004", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060247, + "CONCEPT_NAME" : "Antenatal care: medical risk", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169597003", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4147564, + "CONCEPT_NAME" : "Antenatal care midwifery led", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "310248000", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060239, + "CONCEPT_NAME" : "Antenatal care: multip", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169576004", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061433, + "CONCEPT_NAME" : "Antenatal care: multiparous, older than 35 years", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169605007", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061426, + "CONCEPT_NAME" : "Antenatal care: obstetric risk", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169578003", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36713461, + "CONCEPT_NAME" : "Antenatal care of elderly primigravida", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "717797001", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061425, + "CONCEPT_NAME" : "Antenatal care of second pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169574001", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061787, + "CONCEPT_NAME" : "Antenatal care of third pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169575000", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060098, + "CONCEPT_NAME" : "Antenatal care: poor home conditions", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169592009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4059988, + "CONCEPT_NAME" : "Antenatal care: poor obstetric history", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169584000", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061789, + "CONCEPT_NAME" : "Antenatal care: precious pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169587007", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060248, + "CONCEPT_NAME" : "Antenatal care: primiparous, older than 30 years", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169604006", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060101, + "CONCEPT_NAME" : "Antenatal care: primiparous, under 17 years", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169603000", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061793, + "CONCEPT_NAME" : "Antenatal care provider", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169613008", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060240, + "CONCEPT_NAME" : "Antenatal care: recurrent aborter", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169580009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060244, + "CONCEPT_NAME" : "Antenatal care: social risk", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169591002", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4059987, + "CONCEPT_NAME" : "Antenatal care: uncertain dates", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169579006", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4190427, + "CONCEPT_NAME" : "Antenatal clinic", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "394574007", + "DOMAIN_ID" : "Visit", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Location" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4147941, + "CONCEPT_NAME" : "Antenatal data", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "268469004", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Observable Entity" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4047845, + "CONCEPT_NAME" : "Antenatal education", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "135892000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4084186, + "CONCEPT_NAME" : "Antenatal exercises", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "183329005", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4062361, + "CONCEPT_NAME" : "Antenatal relaxation class", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "171066005", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061521, + "CONCEPT_NAME" : "Antenatal - shared care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169616000", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4081196, + "CONCEPT_NAME" : "Antepartum", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276986009", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Qualifier Value" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110312, + "CONCEPT_NAME" : "Antepartum care only; 4-6 visits", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59425", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110313, + "CONCEPT_NAME" : "Antepartum care only; 7 or more visits", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59426", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2108689, + "CONCEPT_NAME" : "Anti-D immune globulin received between 26 and 30 weeks gestation (Pre-Cr)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "4178F", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015159, + "CONCEPT_NAME" : "Consultant unit birth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169815003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060252, + "CONCEPT_NAME" : "Consultant unit booking", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169623004", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37016958, + "CONCEPT_NAME" : "Counting fetal movement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "713120004", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4076939, + "CONCEPT_NAME" : "Delivery booking place", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "275816005", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Observable Entity" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061795, + "CONCEPT_NAME" : "Delivery: no place booked", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169620001", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4156955, + "CONCEPT_NAME" : "Delivery place booked", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "271402002", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4150421, + "CONCEPT_NAME" : "Delivery place planned", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "310585007", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4059478, + "CONCEPT_NAME" : "Estimated date of delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "161714006", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Observable Entity" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4128833, + "CONCEPT_NAME" : "Estimated date of delivery from last period", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "289206005", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Observable Entity" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4226978, + "CONCEPT_NAME" : "External fetal monitor surveillance during multiple pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87663001", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060255, + "CONCEPT_NAME" : "Feeding intention - breast", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169643005", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4084439, + "CONCEPT_NAME" : "Fetal heart monitoring", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "281568006", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015304, + "CONCEPT_NAME" : "Fetal size accords with dates", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169732009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060104, + "CONCEPT_NAME" : "Home delivery booked", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169621002", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4151190, + "CONCEPT_NAME" : "Home delivery planned", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "310586008", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2514574, + "CONCEPT_NAME" : "Home visit for prenatal monitoring and assessment to include fetal heart rate, non-stress test, uterine monitoring, and gestational diabetes monitoring", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "99500", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061791, + "CONCEPT_NAME" : "Late onset antenatal care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169594005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4066354, + "CONCEPT_NAME" : "Maternal care for poor fetal growth", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "200474004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4305717, + "CONCEPT_NAME" : "Midwife unit delivery booking", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "390782000", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37016955, + "CONCEPT_NAME" : "Monitoring fetal development", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "713117007", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4084521, + "CONCEPT_NAME" : "Obstetric D.V. done", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "183760007", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038747, + "CONCEPT_NAME" : "Obstetric examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "163497009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4140250, + "CONCEPT_NAME" : "Obstetric monitoring", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "265642006", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038420, + "CONCEPT_NAME" : "O/E - breech presentation", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163514003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038571, + "CONCEPT_NAME" : "O/E - fetal heart 120-160", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163548002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038945, + "CONCEPT_NAME" : "O/E - fetal heart heard", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163542001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4039088, + "CONCEPT_NAME" : "O/E - fetal heart not heard", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163543006", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038943, + "CONCEPT_NAME" : "O/E - fetal movement diminished", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163540009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4039610, + "CONCEPT_NAME" : "O/E - fetal movements seen", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163537009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038938, + "CONCEPT_NAME" : "O/E -fetal presentation unsure", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163518000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038760, + "CONCEPT_NAME" : "O/E - fetus very active", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163539007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038418, + "CONCEPT_NAME" : "O/E - fundal size = dates", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163510007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038749, + "CONCEPT_NAME" : "O/E - fundus 12-16 week size", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163499007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038751, + "CONCEPT_NAME" : "O/E - fundus 16-20 week size", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163500003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038932, + "CONCEPT_NAME" : "O/E - fundus 20-24 week size", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163501004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4039602, + "CONCEPT_NAME" : "O/E - fundus 24-28 week size", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163502006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038753, + "CONCEPT_NAME" : "O/E - fundus 28-32 week size", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163504007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038935, + "CONCEPT_NAME" : "O/E - fundus = term size", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163509002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038748, + "CONCEPT_NAME" : "O/E - gravid uterus size", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163498004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4039609, + "CONCEPT_NAME" : "O/E - no fetal movements", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163536000", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038759, + "CONCEPT_NAME" : "O/E - partial engagement - 3/5", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163531005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4175225, + "CONCEPT_NAME" : "O/E - PP free - not engaged", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "275968002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038424, + "CONCEPT_NAME" : "O/E - presentation engaged-1/5", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163533008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4171428, + "CONCEPT_NAME" : "O/E - presenting part engaged", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "275969005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4039608, + "CONCEPT_NAME" : "O/E - presenting part free-4/5", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163530006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038941, + "CONCEPT_NAME" : "O/E - presenting part free-5/5", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163529001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038939, + "CONCEPT_NAME" : "O/E - presenting part position", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163520002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038937, + "CONCEPT_NAME" : "O/E - transverse lie", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163516001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038573, + "CONCEPT_NAME" : "O/E - VE for pelvic assessment", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163555000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4039603, + "CONCEPT_NAME" : "O/E - vertex presentation", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163513009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4194143, + "CONCEPT_NAME" : "O/E - viable fetus", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "312354009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4016475, + "CONCEPT_NAME" : "Placenta normal O/E", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "169954003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2618150, + "CONCEPT_NAME" : "Prenatal care, at-risk assessment", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "H1000", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2618151, + "CONCEPT_NAME" : "Prenatal care, at-risk enhanced service; antepartum management", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "H1001", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2618152, + "CONCEPT_NAME" : "Prenatal care, at risk enhanced service; care coordination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "H1002", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2618154, + "CONCEPT_NAME" : "Prenatal care, at-risk enhanced service; follow-up home visit", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "H1004", + "DOMAIN_ID" : "Visit", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2618155, + "CONCEPT_NAME" : "Prenatal care, at-risk enhanced service package (includes h1001-h1004)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "H1005", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4176966, + "CONCEPT_NAME" : "Prenatal education", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "363266006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4112701, + "CONCEPT_NAME" : "Prenatal examination and care of mother", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "18114009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4311447, + "CONCEPT_NAME" : "Prenatal initial visit", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "424441002", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4172038, + "CONCEPT_NAME" : "Prenatal supplemental visit", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "422808006", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4313474, + "CONCEPT_NAME" : "Prenatal visit", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "424619006", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060105, + "CONCEPT_NAME" : "Private home delivery booking", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169624005", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 77619, + "CONCEPT_NAME" : "Reduced fetal movement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276369006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4081292, + "CONCEPT_NAME" : "Referral to antenatal clinic", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "183860003", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 46272536, + "CONCEPT_NAME" : "Referral to breastfeeding education class during prenatal period", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "710916001", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4084693, + "CONCEPT_NAME" : "Referral to obstetrics service", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "183548008", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4047564, + "CONCEPT_NAME" : "Routine antenatal care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "134435003", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4083415, + "CONCEPT_NAME" : "Seen in antenatal clinic", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "185226003", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4260976, + "CONCEPT_NAME" : "Seen in fetal medicine clinic", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "440580005", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2101831, + "CONCEPT_NAME" : "Subsequent prenatal care visit (Prenatal) [Excludes: patients who are seen for a condition unrelated to pregnancy or prenatal care (eg, an upper respiratory infection; patients seen for consultation only, not for continuing care)]", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "0502F", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40517216, + "CONCEPT_NAME" : "[V]Pregnancy examination and test", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "308165008", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40525253, + "CONCEPT_NAME" : "[V]Unspecified antenatal screening", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "315976001", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 57, + "name" : "Confirmation of pregnancy (PCONF)", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 441092, + "CONCEPT_NAME" : "Advanced maternal age gravida", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "416413003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061424, + "CONCEPT_NAME" : "Antenatal care: primigravida", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169573007", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40760833, + "CONCEPT_NAME" : "Birth plurality of Pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57722-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Clinical Observation" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4139126, + "CONCEPT_NAME" : "Braxton Hicks contractions", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "32644009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015590, + "CONCEPT_NAME" : "Counseling for termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10383002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3011536, + "CONCEPT_NAME" : "Delivery date Estimated", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "11778-8", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Clinical Observation" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43054893, + "CONCEPT_NAME" : "Delivery location", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72150-6", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Survey" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43021054, + "CONCEPT_NAME" : "Dichorionic diamniotic twin pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "459166009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37017322, + "CONCEPT_NAME" : "Dizygotic twin pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "713575004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441085, + "CONCEPT_NAME" : "Elderly primigravida", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "29399001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 192380, + "CONCEPT_NAME" : "Failed attempted termination of pregnancy without complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90645002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4210896, + "CONCEPT_NAME" : "Fetal gestational age", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57036006", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Observable Entity" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3006722, + "CONCEPT_NAME" : "Fetal Heart Narrative Activity US", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "11616-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Clinical Observation" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40759953, + "CONCEPT_NAME" : "Fetal Narrative Movement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "56834-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Clinical Observation" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 195877, + "CONCEPT_NAME" : "Finding of gravid uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "289675001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061522, + "CONCEPT_NAME" : "General practitioner unit delivery booking", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169622009", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437937, + "CONCEPT_NAME" : "Grand multipara", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "18656007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4030415, + "CONCEPT_NAME" : "Illegitimate pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14080002", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 197031, + "CONCEPT_NAME" : "Intrauterine pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65727000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061672, + "CONCEPT_NAME" : "IUD failure - pregnant", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169488004", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43021951, + "CONCEPT_NAME" : "Monochorionic diamniotic twin pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "459168005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43021952, + "CONCEPT_NAME" : "Monochorionic monoamniotic twin pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "459171002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3045823, + "CONCEPT_NAME" : "Multiple pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45371-2", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Clinical Observation" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432969, + "CONCEPT_NAME" : "Multiple pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16356006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3000119, + "CONCEPT_NAME" : "Narrative Fetal presentation US", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "18850-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Clinical Observation" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4217975, + "CONCEPT_NAME" : "Normal pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72892002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038942, + "CONCEPT_NAME" : "O/E - fetal movements", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163535001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4150948, + "CONCEPT_NAME" : "O/E - fetal presentation", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "268952006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4148890, + "CONCEPT_NAME" : "Pregnancy benefits", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "270471004", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Qualifier Value" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4094910, + "CONCEPT_NAME" : "Pregnancy test positive", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "250423000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061785, + "CONCEPT_NAME" : "Pregnancy unplanned and unwanted", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169567006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060237, + "CONCEPT_NAME" : "Pregnancy unplanned but wanted", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169566002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4299535, + "CONCEPT_NAME" : "Pregnant", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "77386006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4059982, + "CONCEPT_NAME" : "Pregnant - blood test confirms", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169561007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061686, + "CONCEPT_NAME" : "Pregnant - on history", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169563005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4059984, + "CONCEPT_NAME" : "Pregnant - planned", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169565003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061411, + "CONCEPT_NAME" : "Pregnant, sheath failure", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169508004", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4059981, + "CONCEPT_NAME" : "Pregnant - urine test confirms", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169560008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4133029, + "CONCEPT_NAME" : "Primigravida", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "127364007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442594, + "CONCEPT_NAME" : "Quadruplet pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "60810003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440466, + "CONCEPT_NAME" : "Quadruplet pregnancy with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199326006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061423, + "CONCEPT_NAME" : "Questionable if pregnancy was planned", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169569009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4214930, + "CONCEPT_NAME" : "Refer to early pregnancy unit", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "417577000", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040000, + "CONCEPT_NAME" : "Reliability of last menstrual period observation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "53661-5", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Clinical Observation" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 196484, + "CONCEPT_NAME" : "Retroverted incarcerated gravid uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199466009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4042412, + "CONCEPT_NAME" : "Serum pregnancy test positive", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "166437003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 198212, + "CONCEPT_NAME" : "Spotting per vagina in pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "284075002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4129023, + "CONCEPT_NAME" : "Teenage pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237240001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4218813, + "CONCEPT_NAME" : "Third trimester pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "41587001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432375, + "CONCEPT_NAME" : "Triplet pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64254006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441919, + "CONCEPT_NAME" : "Twin pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65147003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4307820, + "CONCEPT_NAME" : "Unplanned pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "83074005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4059985, + "CONCEPT_NAME" : "Unplanned pregnancy unknown if child is wanted", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169568001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4239301, + "CONCEPT_NAME" : "Unwanted pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "58532003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4041878, + "CONCEPT_NAME" : "Urine pregnancy test positive", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "167256004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3023791, + "CONCEPT_NAME" : "Uterus Fundal height Tape measure", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "11881-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Clinical Observation" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40519557, + "CONCEPT_NAME" : "[V]Other unwanted pregnancy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "316385002", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40524802, + "CONCEPT_NAME" : "[V]Pregnant state, incidental", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "315903005", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40524805, + "CONCEPT_NAME" : "[V]Unspecified pregnant state", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "315906002", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 58, + "name" : "Gonadotropin, chorionic (hCG) (HCG)", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 2721180, + "CONCEPT_NAME" : "BLOOD CHEMISTRY FOR FREE BETA HUMAN CHORIONIC GONADOTROPIN (HCG)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "S3618", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3019145, + "CONCEPT_NAME" : "Choriogonadotropin.beta subunit free [Mass/volume] in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25373-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3011465, + "CONCEPT_NAME" : "Choriogonadotropin.beta subunit free [Units/volume] in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "19180-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3011996, + "CONCEPT_NAME" : "Choriogonadotropin.beta subunit [Moles/volume] in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "2111-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3010164, + "CONCEPT_NAME" : "Choriogonadotropin.beta subunit [Multiple of the median] adjusted in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "23841-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40758989, + "CONCEPT_NAME" : "Choriogonadotropin.beta subunit [Multiple of the median] in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55868-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3011149, + "CONCEPT_NAME" : "Choriogonadotropin.beta subunit (pregnancy test) [Presence] in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "2110-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3009417, + "CONCEPT_NAME" : "Choriogonadotropin.beta subunit (pregnancy test) [Presence] in Urine", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "2112-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3038136, + "CONCEPT_NAME" : "Choriogonadotropin.beta subunit [Units/volume] in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "21198-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3004303, + "CONCEPT_NAME" : "Choriogonadotropin.intact [Moles/volume] in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "2117-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3036988, + "CONCEPT_NAME" : "Choriogonadotropin.intact [Units/volume] in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "30243-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3002091, + "CONCEPT_NAME" : "Choriogonadotropin [Moles/volume] in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "2119-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3008714, + "CONCEPT_NAME" : "Choriogonadotropin [Multiple of the median] adjusted in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "32166-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3003191, + "CONCEPT_NAME" : "Choriogonadotropin (pregnancy test) [Presence] in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "2118-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3018954, + "CONCEPT_NAME" : "Choriogonadotropin (pregnancy test) [Presence] in Urine", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "2106-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3018171, + "CONCEPT_NAME" : "Choriogonadotropin [Units/volume] in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "19080-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4018189, + "CONCEPT_NAME" : "Chorionic gonadotropin, alpha subunit measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "104595003", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4296540, + "CONCEPT_NAME" : "Chorionic gonadotropin, beta-subunit measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "386558001", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4296541, + "CONCEPT_NAME" : "Chorionic gonadotropin, beta-subunit measurement, spinal fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "386559009", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4016953, + "CONCEPT_NAME" : "Chorionic gonadotropin, intact measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "104596002", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4017479, + "CONCEPT_NAME" : "Chorionic gonadotropin measurement, qualitative", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "104406007", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4263011, + "CONCEPT_NAME" : "Elevated serum human chorionic gonadotropin level, beta subunit", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "396700001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43527960, + "CONCEPT_NAME" : "Fetal congenital abnormalities, biochemical assays of three proteins (PAPP-A, hCG [any form], DIA), utilizing maternal serum, algorithm reported as a risk score", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "81509", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43527959, + "CONCEPT_NAME" : "Fetal congenital abnormalities, biochemical assays of two proteins (PAPP-A, hCG [any form]), utilizing maternal serum, algorithm reported as a risk score", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "81508", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4096237, + "CONCEPT_NAME" : "Free beta human chorionic gonadotrophin measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "250658009", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44807244, + "CONCEPT_NAME" : "Free beta human chorionic gonadotrophin multiple of median measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "816021000000107", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2212633, + "CONCEPT_NAME" : "Gonadotropin, chorionic (hCG); free beta chain", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84704", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2212632, + "CONCEPT_NAME" : "Gonadotropin, chorionic (hCG); qualitative", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84703", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2212631, + "CONCEPT_NAME" : "Gonadotropin, chorionic (hCG); quantitative", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84702", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44807240, + "CONCEPT_NAME" : "Human chorionic gonadotrophin multiple of median measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "815981000000104", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4285271, + "CONCEPT_NAME" : "Human chorionic gonadotropin measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "67900009", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44806337, + "CONCEPT_NAME" : "Human chorionic gonadotropin output measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "800821000000104", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038817, + "CONCEPT_NAME" : "Increased human chorionic gonadotropin level", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "131102000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44812174, + "CONCEPT_NAME" : "Plasma human chorionic gonadotrophin concentration measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "911491000000101", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4210718, + "CONCEPT_NAME" : "Plasma human chorionic gonadotropin multiple of median measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313865003", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4210722, + "CONCEPT_NAME" : "Serum free beta human chorionic gonadotrophin measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313872002", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4195509, + "CONCEPT_NAME" : "Serum free beta human chorionic gonadotropin multiple of median measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "314070003", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4198892, + "CONCEPT_NAME" : "Serum human chorionic gonadotropin multiple of median measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313866002", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4041161, + "CONCEPT_NAME" : "Serum pregnancy test (B-HCG)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "166434005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4042751, + "CONCEPT_NAME" : "Serum total HCG measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "167037004", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4214677, + "CONCEPT_NAME" : "Total beta human chorionic gonadotrophin level", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "394721004", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44789306, + "CONCEPT_NAME" : "Total human chorionic gonadotropin measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "195261000000107", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4055426, + "CONCEPT_NAME" : "Urine chorionic gonadotrophin measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "167376008", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4055954, + "CONCEPT_NAME" : "Urine HCG 24 hour assay", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "167391005", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 60, + "name" : "Stillbirth (SB)", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4129846, + "CONCEPT_NAME" : "Antepartum fetal death", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237361005", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Event" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37017027, + "CONCEPT_NAME" : "Antepartum stillbirth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "713202001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4079844, + "CONCEPT_NAME" : "Fetal death", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276507005", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Event" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4071603, + "CONCEPT_NAME" : "Fetal death due to prelabor anoxia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206258000", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Event" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442338, + "CONCEPT_NAME" : "Fetal death from asphyxia AND/OR anoxia before onset of labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "44174001", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Event" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443695, + "CONCEPT_NAME" : "Fetal death from asphyxia AND/OR anoxia during labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1762004", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Event" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4034159, + "CONCEPT_NAME" : "Fresh stillbirth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237365001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45773593, + "CONCEPT_NAME" : "Intrapartum stillbirth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "921611000000101", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060687, + "CONCEPT_NAME" : "Intrauterine death - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199607009", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Event" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4028787, + "CONCEPT_NAME" : "Macerated stillbirth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237366000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4222915, + "CONCEPT_NAME" : "Premature birth of fraternal twins, both stillborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84382006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4242724, + "CONCEPT_NAME" : "Premature birth of identical twins, both stillborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "3798002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4184594, + "CONCEPT_NAME" : "Premature birth of stillborn twins", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54650005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42539377, + "CONCEPT_NAME" : "Quadruplets with all four stillborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "762612009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42538805, + "CONCEPT_NAME" : "Quintuplets with all five stillborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "762613004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42538806, + "CONCEPT_NAME" : "Sextuplets with all six stillborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "762614005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014454, + "CONCEPT_NAME" : "Single stillbirth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169827000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443213, + "CONCEPT_NAME" : "Stillbirth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237364002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40406337, + "CONCEPT_NAME" : "Stillbirth", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "206581002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4287409, + "CONCEPT_NAME" : "Stillbirth of immature female (500-999 gms.)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "68509000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4217655, + "CONCEPT_NAME" : "Stillbirth of immature fetus, sex undetermined (500-999 gms.)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72543004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4261819, + "CONCEPT_NAME" : "Stillbirth of immature male (500-999 gms.)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "35608009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4321563, + "CONCEPT_NAME" : "Stillbirth of mature female (2500 gms. or more)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "70112005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4301269, + "CONCEPT_NAME" : "Stillbirth of mature male (2500 gms. or more)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7860005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4103876, + "CONCEPT_NAME" : "Stillbirth of premature female (1000-2499 gms.)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "28996007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4300979, + "CONCEPT_NAME" : "Stillbirth of premature male (1000-2499 gms.)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "77814006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443463, + "CONCEPT_NAME" : "Stillbirth - unknown if fetal death intrapartum or prior to labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "408796008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4306288, + "CONCEPT_NAME" : "Term birth of fraternal twins, both stillborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "83121003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4192641, + "CONCEPT_NAME" : "Term birth of identical twins, both stillborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "75697004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4203001, + "CONCEPT_NAME" : "Term birth of stillborn twins", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "52942000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015163, + "CONCEPT_NAME" : "Triplets - three stillborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169834003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015162, + "CONCEPT_NAME" : "Twins - both stillborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169830007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 61, + "name" : "Pregnancy markers", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4198718, + "CONCEPT_NAME" : "120 minute blood glucose measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313545000", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4209254, + "CONCEPT_NAME" : "120 minute plasma glucose measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313627007", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4197835, + "CONCEPT_NAME" : "120 minute serum glucose measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313631001", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4193852, + "CONCEPT_NAME" : "150 minute blood glucose measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313624000", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4198731, + "CONCEPT_NAME" : "150 minute plasma glucose measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313628002", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4195213, + "CONCEPT_NAME" : "150 minute serum glucose measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313810002", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44805579, + "CONCEPT_NAME" : "180 minute plasma glucose measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "754261000000106", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3016704, + "CONCEPT_NAME" : "1 minute Apgar Score", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "9272-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Clinical Observation" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4234906, + "CONCEPT_NAME" : "240 minute plasma glucose measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "440576000", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4258832, + "CONCEPT_NAME" : "300 minute plasma glucose measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "440620002", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4198733, + "CONCEPT_NAME" : "30 minute blood glucose measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313637002", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4193853, + "CONCEPT_NAME" : "30 minute plasma glucose measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313625004", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4198732, + "CONCEPT_NAME" : "30 minute serum glucose measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313629005", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3004221, + "CONCEPT_NAME" : "5 minute Apgar Score", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "9274-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Clinical Observation" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4209122, + "CONCEPT_NAME" : "60 minute blood glucose measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313474007", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4193854, + "CONCEPT_NAME" : "60 minute plasma glucose measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313626003", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4193855, + "CONCEPT_NAME" : "60 minute serum glucose measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313630000", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4198719, + "CONCEPT_NAME" : "90 minute blood glucose measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313546004", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4198742, + "CONCEPT_NAME" : "90 minute plasma glucose measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313697000", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4198743, + "CONCEPT_NAME" : "90 minute serum glucose measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313698005", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4130321, + "CONCEPT_NAME" : "Abdominal delivery for shoulder dystocia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "236989008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4200678, + "CONCEPT_NAME" : "Abdominal hysterectomy and left salpingo-oophorectomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "302191001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4059050, + "CONCEPT_NAME" : "Abdominal obstetric X-ray", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "168759005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4198125, + "CONCEPT_NAME" : "Abdominal pain in early pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "314041007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4149783, + "CONCEPT_NAME" : "Abdominal pain in pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "309737007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 193525, + "CONCEPT_NAME" : "Abdominal pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "82661006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442631, + "CONCEPT_NAME" : "Abnormal cerebral signs in the newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63814006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 314478, + "CONCEPT_NAME" : "Abnormal fetal heart beat first noted during labor AND/OR delivery in liveborn infant", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "22271007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 312733, + "CONCEPT_NAME" : "Abnormal fetal heart beat, not clear if noted before OR after onset of labor in liveborn infant", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "231958008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 137974, + "CONCEPT_NAME" : "Abnormal fetal heart beat noted before labor in liveborn infant", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "655007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 314099, + "CONCEPT_NAME" : "Abnormal fetal heart rate", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "312668007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437688, + "CONCEPT_NAME" : "Abnormal findings on antenatal screening of mother", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199732004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438557, + "CONCEPT_NAME" : "Abnormal glucose level", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "102660008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440216, + "CONCEPT_NAME" : "Abnormal glucose tolerance test", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "274858002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439402, + "CONCEPT_NAME" : "Abnormal glucose tolerance test during pregnancy - baby delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "372055003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439403, + "CONCEPT_NAME" : "Abnormal glucose tolerance test during pregnancy - baby not yet delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "372054004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4162865, + "CONCEPT_NAME" : "Abnormal glucose tolerance test during pregnancy, childbirth and the puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "372046001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4155282, + "CONCEPT_NAME" : "Abnormal glucose tolerance test in the puerperium - baby delivered during current episode of care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "372051007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4162866, + "CONCEPT_NAME" : "Abnormal glucose tolerance test in the puerperium - baby delivered during previous episode of care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "372050008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4306804, + "CONCEPT_NAME" : "Abnormal head circumference in relation to growth / age standard", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "422695002", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437342, + "CONCEPT_NAME" : "Abnormality of forces of labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "35882009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 197050, + "CONCEPT_NAME" : "Abnormality of organs AND/OR soft tissues of pelvis affecting pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1639007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40480490, + "CONCEPT_NAME" : "Abnormal presence of alpha-fetoprotein", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "441772009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4136368, + "CONCEPT_NAME" : "Abnormal presence of glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "31649001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 436477, + "CONCEPT_NAME" : "Abnormal products of conception", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "39804004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3003694, + "CONCEPT_NAME" : "ABO and Rh group [Type] in Blood", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "882-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444365, + "CONCEPT_NAME" : "Abortion", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "70317007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42597053, + "CONCEPT_NAME" : "Abortion associated with Equine arteritis virus infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "318481000009103", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED Veterinary", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42597052, + "CONCEPT_NAME" : "Abortion associated with Equine herpesvirus infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "318471000009100", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED Veterinary", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42597051, + "CONCEPT_NAME" : "Abortion associated with umbilical torsion", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "318461000009109", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED Veterinary", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 201076, + "CONCEPT_NAME" : "Abortion complicated by damage to pelvic organs AND/OR tissues", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "373908001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 197612, + "CONCEPT_NAME" : "Abortion complicated by delayed AND/OR excessive hemorrhage", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "111426003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438812, + "CONCEPT_NAME" : "Abortion complicated by genital-pelvic infection", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "373891000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 195319, + "CONCEPT_NAME" : "Abortion complicated by renal failure", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "10123006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42599848, + "CONCEPT_NAME" : "Abortion due to Brucella canis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "360051000009101", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED Veterinary", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2721147, + "CONCEPT_NAME" : "ABORTION FOR MATERNAL INDICATION", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "S2262", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2784560, + "CONCEPT_NAME" : "Abortion of Products of Conception, Abortifacient, Via Natural or Artificial Opening", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10A07ZX", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD10PCS", + "CONCEPT_CLASS_ID" : "ICD10PCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2784559, + "CONCEPT_NAME" : "Abortion of Products of Conception, Laminaria, Via Natural or Artificial Opening", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10A07ZW", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD10PCS", + "CONCEPT_CLASS_ID" : "ICD10PCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2784555, + "CONCEPT_NAME" : "Abortion of Products of Conception, Open Approach", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10A00ZZ", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD10PCS", + "CONCEPT_CLASS_ID" : "ICD10PCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2784556, + "CONCEPT_NAME" : "Abortion of Products of Conception, Percutaneous Approach", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10A03ZZ", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD10PCS", + "CONCEPT_CLASS_ID" : "ICD10PCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2784557, + "CONCEPT_NAME" : "Abortion of Products of Conception, Percutaneous Endoscopic Approach", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10A04ZZ", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD10PCS", + "CONCEPT_CLASS_ID" : "ICD10PCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2784558, + "CONCEPT_NAME" : "Abortion of Products of Conception, Vacuum, Via Natural or Artificial Opening", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10A07Z6", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD10PCS", + "CONCEPT_CLASS_ID" : "ICD10PCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2784561, + "CONCEPT_NAME" : "Abortion of Products of Conception, Via Natural or Artificial Opening", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10A07ZZ", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD10PCS", + "CONCEPT_CLASS_ID" : "ICD10PCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2784562, + "CONCEPT_NAME" : "Abortion of Products of Conception, Via Natural or Artificial Opening Endoscopic", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10A08ZZ", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD10PCS", + "CONCEPT_CLASS_ID" : "ICD10PCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440776, + "CONCEPT_NAME" : "Abortion with complication", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "371332008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440454, + "CONCEPT_NAME" : "Abortion without complication", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "51830007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4050827, + "CONCEPT_NAME" : "Abrasion of anus, infected", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "211060000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4052366, + "CONCEPT_NAME" : "Abrasion of penis, infected", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "211064009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4052365, + "CONCEPT_NAME" : "Abrasion of perineum, infected", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "211063003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4050829, + "CONCEPT_NAME" : "Abrasion of vulva, infected", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "211066006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36713476, + "CONCEPT_NAME" : "Abscess of breast associated with childbirth with attachment difficulty", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "717817006", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4262542, + "CONCEPT_NAME" : "Abscess of nipple associated with childbirth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46273003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3034139, + "CONCEPT_NAME" : "Acetylcholinesterase [Enzymatic activity/volume] in Amniotic fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1708-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4173330, + "CONCEPT_NAME" : "Acquired subglottic stenosis in newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276635001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4034308, + "CONCEPT_NAME" : "Acromion presentation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "23954006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 761075, + "CONCEPT_NAME" : "Acute idiopathic neonatal pulmonary hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "142221000119105", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 196490, + "CONCEPT_NAME" : "Acute renal failure following labor AND/OR delivery", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "13010001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4215648, + "CONCEPT_NAME" : "Acute renal failure following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "71909003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45772947, + "CONCEPT_NAME" : "Acute respiratory distress in newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "707540007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45768986, + "CONCEPT_NAME" : "Acute respiratory distress in newborn with surfactant disorder", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "707541006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37397030, + "CONCEPT_NAME" : "Adult onset non-insulinoma persistent hyperinsulinemic hypoglycemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "717044000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441092, + "CONCEPT_NAME" : "Advanced maternal age gravida", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "416413003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4312095, + "CONCEPT_NAME" : "Afibrinogenemia following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "85796009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4129840, + "CONCEPT_NAME" : "Afibrinogenemia - postpartum", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237337003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061810, + "CONCEPT_NAME" : "AFP - blood sent", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169688006", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061809, + "CONCEPT_NAME" : "AFP blood test not wanted", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169687001", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3655216, + "CONCEPT_NAME" : "Air embolism due to and following ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "860689000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3655215, + "CONCEPT_NAME" : "Air embolism due to and following molar pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "860688008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4030070, + "CONCEPT_NAME" : "Alcohol-induced hypoglycemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237641009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4029428, + "CONCEPT_NAME" : "Alimentary hyperinsulinemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237647008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4029425, + "CONCEPT_NAME" : "Alimentary hypoglycemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237639008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040768, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein interpretation in Amniotic fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "41273-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3038294, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein interpretation in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "41274-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3010296, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Mass/volume] in Amniotic fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1832-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42529192, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Mass/volume] in Amniotic fluid by Immunoassay", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "83075-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3027634, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Mass/volume] in Cerebral spinal fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1833-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757479, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Mass/volume] in Cord blood", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54348-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3032506, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Mass/volume] in Peritoneal fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "49761-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3033080, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Mass/volume] in Pleural fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "49762-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3009306, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Mass/volume] in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1834-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42529190, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Mass/volume] in Serum or Plasma by Immunoassay", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "83073-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4197249, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80152001", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4099476, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein measurement, amniotic fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "27220002", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014768, + "CONCEPT_NAME" : "Alpha-1-fetoprotein measurement, serum", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "104404005", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3012116, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Moles/volume] in Amniotic fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15019-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3024289, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Moles/volume] in Pleural fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "19173-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3021607, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Moles/volume] in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "19177-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3046154, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Multiple of the median] adjusted for diabetes in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43998-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3044142, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Multiple of the median] adjusted for diabetes+weight in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43996-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3030180, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Multiple of the median] adjusted for multiple gestations in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "50610-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3046979, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Multiple of the median] adjusted for weight in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43997-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3022269, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Multiple of the median] adjusted in Amniotic fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "29253-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3016670, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Multiple of the median] adjusted in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "23811-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3004943, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Multiple of the median] in Amniotic fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "29595-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3024370, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Multiple of the median] in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "20450-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40761829, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein panel - Amniotic fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "58735-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3044397, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Presence] in Amniotic fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43798-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3025053, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Presence] in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "31993-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3027505, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Units/volume] in Amniotic fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "19171-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42529191, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Units/volume] in Amniotic fluid by Immunoassay", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "83074-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3045958, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Units/volume] in Body fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "44910-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40762626, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Units/volume] in Cerebral spinal fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59564-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3028331, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Units/volume] in Pleural fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "19172-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42529189, + "CONCEPT_NAME" : "Alpha-1-Fetoprotein [Units/volume] in Serum or Plasma by Immunoassay", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "83072-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2212200, + "CONCEPT_NAME" : "Alpha-fetoprotein (AFP); AFP-L3 fraction isoform and total AFP (including ratio)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "82107", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2212199, + "CONCEPT_NAME" : "Alpha-fetoprotein (AFP); amniotic fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "82106", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2212198, + "CONCEPT_NAME" : "Alpha-fetoprotein (AFP); serum", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "82105", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4147940, + "CONCEPT_NAME" : "Alpha-fetoprotein blood test", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "268468007", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4269851, + "CONCEPT_NAME" : "Alpha-fetoprotein level - finding", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "365802003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4041177, + "CONCEPT_NAME" : "Alpha-fetoprotein low", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "166562001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44807243, + "CONCEPT_NAME" : "Alpha fetoprotein multiple of median measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "816011000000101", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4042555, + "CONCEPT_NAME" : "Alpha-fetoprotein normal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "166558007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4059689, + "CONCEPT_NAME" : "Alpha-fetoprotein radioimmunoassay", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169188005", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4042557, + "CONCEPT_NAME" : "Alpha-fetoprotein raised", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "166561008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4078285, + "CONCEPT_NAME" : "Alpha-fetoprotein test - antenatal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "275833003", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4207608, + "CONCEPT_NAME" : "Ambulatory continuous glucose monitoring of interstitial tissue fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "439926003", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2314093, + "CONCEPT_NAME" : "Ambulatory continuous glucose monitoring of interstitial tissue fluid via a subcutaneous sensor for a minimum of 72 hours; analysis, interpretation and report", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "95251", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2314092, + "CONCEPT_NAME" : "Ambulatory continuous glucose monitoring of interstitial tissue fluid via a subcutaneous sensor for a minimum of 72 hours; physician or other qualified health care professional (office) provided equipment, sensor placement, hook-up, calibration of monitor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "95250", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4208334, + "CONCEPT_NAME" : "Ambulatory continuous glucose monitoring of interstitial tissue fluid with sensor placement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "440404000", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443800, + "CONCEPT_NAME" : "Amenorrhea", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14302001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4184965, + "CONCEPT_NAME" : "Amenorrhea associated with obesity", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "413487000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4146045, + "CONCEPT_NAME" : "Amniocentesis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "34536000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110279, + "CONCEPT_NAME" : "Amniocentesis; diagnostic", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4140734, + "CONCEPT_NAME" : "Amniocentesis for possible chromosomal abnormality", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "427230007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110280, + "CONCEPT_NAME" : "Amniocentesis; therapeutic amniotic fluid reduction (includes ultrasound guidance)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004824, + "CONCEPT_NAME" : "Amnioinfusion", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "75.37", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437936, + "CONCEPT_NAME" : "Amniotic cavity infection - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199677008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435880, + "CONCEPT_NAME" : "Amniotic cavity infection with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199678003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4057158, + "CONCEPT_NAME" : "Amniotic fluid AFP equivocal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "168108003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4269860, + "CONCEPT_NAME" : "Amniotic fluid AFP - finding", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "365827005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4231903, + "CONCEPT_NAME" : "Amniotic fluid analysis for hemolytic disease of the newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "359878007", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435616, + "CONCEPT_NAME" : "Amniotic fluid embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "17263003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3655206, + "CONCEPT_NAME" : "Amniotic fluid embolism due to and following ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "860677002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3655205, + "CONCEPT_NAME" : "Amniotic fluid embolism due to and following molar pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "860676006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4057149, + "CONCEPT_NAME" : "Amniotic fluid examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "168083008", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433880, + "CONCEPT_NAME" : "Amniotic fluid examination abnormal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "410037001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4154997, + "CONCEPT_NAME" : "Amniotic fluid leaking", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "371380006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441959, + "CONCEPT_NAME" : "Amniotic fluid -meconium stain", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "168092006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 436768, + "CONCEPT_NAME" : "Amniotic fluid pulmonary embolism with antenatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200296007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437948, + "CONCEPT_NAME" : "Amniotic fluid pulmonary embolism with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200297003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2212210, + "CONCEPT_NAME" : "Amniotic fluid scan (spectrophotometric)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "82143", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4248954, + "CONCEPT_NAME" : "Amniotomy at delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "408817009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4173032, + "CONCEPT_NAME" : "Anal margin hematoma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276465001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4170460, + "CONCEPT_NAME" : "Anal sphincter tear", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "275431006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432968, + "CONCEPT_NAME" : "Anemia during pregnancy - baby delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199244000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432967, + "CONCEPT_NAME" : "Anemia during pregnancy - baby not yet delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199246003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4209094, + "CONCEPT_NAME" : "Anemia during the puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313291009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434701, + "CONCEPT_NAME" : "Anemia in mother complicating pregnancy, childbirth AND/OR puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45828008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442923, + "CONCEPT_NAME" : "Anemia in the puerperium - baby delivered during current episode of care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199245004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442922, + "CONCEPT_NAME" : "Anemia in the puerperium - baby delivered during previous episode of care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199247007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4099889, + "CONCEPT_NAME" : "Anemia of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "27342004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432452, + "CONCEPT_NAME" : "Anemia of prematurity", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "47100003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42739743, + "CONCEPT_NAME" : "Anesthesia for abortion procedures (Deprecated)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "01964", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2101814, + "CONCEPT_NAME" : "Anesthesia for cesarean delivery following neuraxial labor analgesia/anesthesia (List separately in addition to code for primary procedure performed)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "01968", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2101807, + "CONCEPT_NAME" : "Anesthesia for cesarean delivery only", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "01961", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2101809, + "CONCEPT_NAME" : "Anesthesia for cesarean hysterectomy without any labor analgesia/anesthesia care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "01963", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2101804, + "CONCEPT_NAME" : "Anesthesia for external cephalic version procedure", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "01958", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2101811, + "CONCEPT_NAME" : "Anesthesia for incomplete or missed abortion procedures", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "01965", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2101812, + "CONCEPT_NAME" : "Anesthesia for induced abortion procedures", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "01966", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2100998, + "CONCEPT_NAME" : "Anesthesia for intraperitoneal procedures in lower abdomen including laparoscopy; amniocentesis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "00842", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2101808, + "CONCEPT_NAME" : "Anesthesia for urgent hysterectomy following delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "01962", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2101806, + "CONCEPT_NAME" : "Anesthesia for vaginal delivery only", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "01960", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4118417, + "CONCEPT_NAME" : "Anomalies of umbilicus", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "205840009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40480713, + "CONCEPT_NAME" : "Anovulatory amenorrhea", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "444769001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4149405, + "CONCEPT_NAME" : "Anoxia, in liveborn infant", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "30828007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015296, + "CONCEPT_NAME" : "Antenatal 12 weeks examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169712008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014149, + "CONCEPT_NAME" : "Antenatal 16 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169713003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014150, + "CONCEPT_NAME" : "Antenatal 20 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169714009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808979, + "CONCEPT_NAME" : "Antenatal 22 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861281000000109", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015141, + "CONCEPT_NAME" : "Antenatal 24 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169715005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808980, + "CONCEPT_NAME" : "Antenatal 25 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861301000000105", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014433, + "CONCEPT_NAME" : "Antenatal 28 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169716006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014151, + "CONCEPT_NAME" : "Antenatal 30 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169717002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808981, + "CONCEPT_NAME" : "Antenatal 31 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861321000000101", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015297, + "CONCEPT_NAME" : "Antenatal 32 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169718007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015298, + "CONCEPT_NAME" : "Antenatal 34 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169719004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014434, + "CONCEPT_NAME" : "Antenatal 35 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169720005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015299, + "CONCEPT_NAME" : "Antenatal 36 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169721009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015142, + "CONCEPT_NAME" : "Antenatal 37 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169722002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014152, + "CONCEPT_NAME" : "Antenatal 38 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169723007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015300, + "CONCEPT_NAME" : "Antenatal 39 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169724001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015301, + "CONCEPT_NAME" : "Antenatal 40 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169725000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015302, + "CONCEPT_NAME" : "Antenatal 41 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169726004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014435, + "CONCEPT_NAME" : "Antenatal 42 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169727008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061154, + "CONCEPT_NAME" : "Antenatal amniocentesis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169646002", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060259, + "CONCEPT_NAME" : "Antenatal amniocentesis - abnormal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169653006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061530, + "CONCEPT_NAME" : "Antenatal amniocentesis - normal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169652001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014319, + "CONCEPT_NAME" : "Antenatal blood group screening", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169703006", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015139, + "CONCEPT_NAME" : "Antenatal blood group screening done", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169705004", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4207466, + "CONCEPT_NAME" : "Antenatal blood tests", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "312404004", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014148, + "CONCEPT_NAME" : "Antenatal booking examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169711001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4173786, + "CONCEPT_NAME" : "Antenatal care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "424525001", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061786, + "CONCEPT_NAME" : "Antenatal care categorized by gravida number", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169572002", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060243, + "CONCEPT_NAME" : "Antenatal care: elderly primiparous", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169588002", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530904, + "CONCEPT_NAME" : "Antenatal care for woman with history of recurrent miscarriage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609442008", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061437, + "CONCEPT_NAME" : "Antenatal care from consultant", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169615001", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060251, + "CONCEPT_NAME" : "Antenatal care from general practitioner", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169614002", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439656, + "CONCEPT_NAME" : "Antenatal care: grand multiparity", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169581008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060246, + "CONCEPT_NAME" : "Antenatal care: history of child abuse", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169595006", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060097, + "CONCEPT_NAME" : "Antenatal care: history of infertility", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169589005", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060242, + "CONCEPT_NAME" : "Antenatal care: history of perinatal death", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169583006", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060241, + "CONCEPT_NAME" : "Antenatal care: history of stillbirth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169582001", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4059989, + "CONCEPT_NAME" : "Antenatal care: history of trophoblastic disease", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169585004", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060247, + "CONCEPT_NAME" : "Antenatal care: medical risk", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169597003", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4147564, + "CONCEPT_NAME" : "Antenatal care midwifery led", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "310248000", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060239, + "CONCEPT_NAME" : "Antenatal care: multip", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169576004", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061433, + "CONCEPT_NAME" : "Antenatal care: multiparous, older than 35 years", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169605007", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061426, + "CONCEPT_NAME" : "Antenatal care: obstetric risk", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169578003", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36713461, + "CONCEPT_NAME" : "Antenatal care of elderly primigravida", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "717797001", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061425, + "CONCEPT_NAME" : "Antenatal care of second pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169574001", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061787, + "CONCEPT_NAME" : "Antenatal care of third pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169575000", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060098, + "CONCEPT_NAME" : "Antenatal care: poor home conditions", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169592009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4059988, + "CONCEPT_NAME" : "Antenatal care: poor obstetric history", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169584000", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061789, + "CONCEPT_NAME" : "Antenatal care: precious pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169587007", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061424, + "CONCEPT_NAME" : "Antenatal care: primigravida", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169573007", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060248, + "CONCEPT_NAME" : "Antenatal care: primiparous, older than 30 years", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169604006", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060101, + "CONCEPT_NAME" : "Antenatal care: primiparous, under 17 years", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169603000", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061793, + "CONCEPT_NAME" : "Antenatal care provider", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169613008", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060240, + "CONCEPT_NAME" : "Antenatal care: recurrent aborter", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169580009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060244, + "CONCEPT_NAME" : "Antenatal care: social risk", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169591002", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4059987, + "CONCEPT_NAME" : "Antenatal care: uncertain dates", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169579006", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4190427, + "CONCEPT_NAME" : "Antenatal clinic", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "394574007", + "DOMAIN_ID" : "Visit", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Location" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4147941, + "CONCEPT_NAME" : "Antenatal data", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "268469004", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Observable Entity" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441649, + "CONCEPT_NAME" : "Antenatal deep vein thrombosis - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200232006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4047845, + "CONCEPT_NAME" : "Antenatal education", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "135892000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4084186, + "CONCEPT_NAME" : "Antenatal exercises", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "183329005", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4170305, + "CONCEPT_NAME" : "Antenatal/postnatal care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "275305005", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4062361, + "CONCEPT_NAME" : "Antenatal relaxation class", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "171066005", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060266, + "CONCEPT_NAME" : "Antenatal RhD antibody screening", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169673001", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4079835, + "CONCEPT_NAME" : "Antenatal risk factors", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276445008", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4152443, + "CONCEPT_NAME" : "Antenatal scan unable to confirm pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "370381000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4087235, + "CONCEPT_NAME" : "Antenatal screening", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "243787009", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37310544, + "CONCEPT_NAME" : "Antenatal screening blood test for Down's, Edwards' and Patau's syndromes", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "747731000000104", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37310338, + "CONCEPT_NAME" : "Antenatal screening blood test for Edwards'and Patau's syndromes", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1128891000000103", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36713463, + "CONCEPT_NAME" : "Antenatal screening for fetal growth retardation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "717801000", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4191703, + "CONCEPT_NAME" : "Antenatal screening for human immunodeficiency virus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "390786002", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36713464, + "CONCEPT_NAME" : "Antenatal screening for isoimmunization", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "717802007", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36713462, + "CONCEPT_NAME" : "Antenatal screening for malformation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "717800004", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37016744, + "CONCEPT_NAME" : "Antenatal screening for viral hepatitis type B", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "712853001", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 35609139, + "CONCEPT_NAME" : "Antenatal screening quadruple test", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1079091000000109", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061521, + "CONCEPT_NAME" : "Antenatal - shared care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169616000", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014320, + "CONCEPT_NAME" : "Antenatal sickle cell screening", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169707007", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015137, + "CONCEPT_NAME" : "Antenatal syphilis screen-blood sent", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169700009", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015294, + "CONCEPT_NAME" : "Antenatal syphilis screening", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169698000", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37016760, + "CONCEPT_NAME" : "Antenatal thalassemia screening", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "712871008", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4152444, + "CONCEPT_NAME" : "Antenatal ultrasound confirms ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "370382007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4152445, + "CONCEPT_NAME" : "Antenatal ultrasound confirms intrauterine pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "370383002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061131, + "CONCEPT_NAME" : "Antenatal ultrasound result received", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169231003", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Observable Entity" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061803, + "CONCEPT_NAME" : "Antenatal ultrasound scan 4-8 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169668007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061157, + "CONCEPT_NAME" : "Antenatal ultrasound scan abnormal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169665005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061534, + "CONCEPT_NAME" : "Antenatal ultrasound scan at 17-22 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169670003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4141415, + "CONCEPT_NAME" : "Antenatal ultrasound scan at 22-40 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "307813007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060265, + "CONCEPT_NAME" : "Antenatal ultrasound scan at 9-16 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169669004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060263, + "CONCEPT_NAME" : "Antenatal ultrasound scan awaited", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169662008", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4143115, + "CONCEPT_NAME" : "Antenatal ultrasound scan for possible abnormality", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "425551008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060264, + "CONCEPT_NAME" : "Antenatal ultrasound scan normal and appropriate for dates", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169663003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061802, + "CONCEPT_NAME" : "Antenatal ultrasound scan status", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169657007", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060262, + "CONCEPT_NAME" : "Antenatal ultrasound scan wanted", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169661001", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4081196, + "CONCEPT_NAME" : "Antepartum", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276986009", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Qualifier Value" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110312, + "CONCEPT_NAME" : "Antepartum care only; 4-6 visits", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59425", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110313, + "CONCEPT_NAME" : "Antepartum care only; 7 or more visits", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59426", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435887, + "CONCEPT_NAME" : "Antepartum deep vein thrombosis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "49956009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4079969, + "CONCEPT_NAME" : "Antepartum fetal asphyxia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276642001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4129846, + "CONCEPT_NAME" : "Antepartum fetal death", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237361005", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Event" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434089, + "CONCEPT_NAME" : "Antepartum hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "34842007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4143074, + "CONCEPT_NAME" : "Antepartum hemorrhage, abruptio placentae and placenta previa", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "267197003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438489, + "CONCEPT_NAME" : "Antepartum hemorrhage associated with coagulation defect", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "267199000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443133, + "CONCEPT_NAME" : "Antepartum hemorrhage with coagulation defect - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198917009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438203, + "CONCEPT_NAME" : "Antepartum hemorrhage with coagulation defect - not delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198918004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37017027, + "CONCEPT_NAME" : "Antepartum stillbirth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "713202001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4129039, + "CONCEPT_NAME" : "Anti-D antibodies", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "237301008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2108689, + "CONCEPT_NAME" : "Anti-D immune globulin received between 26 and 30 weeks gestation (Pre-Cr)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "4178F", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061531, + "CONCEPT_NAME" : "A/N U/S scan offered", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "169659005", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014312, + "CONCEPT_NAME" : "Apgar at 10 minutes = 1", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169924008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4016469, + "CONCEPT_NAME" : "Apgar at 10 minutes = 4", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169927001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014579, + "CONCEPT_NAME" : "Apgar at 10 minutes = 6", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169929003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4016470, + "CONCEPT_NAME" : "Apgar at 10 minutes = 7", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169930008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4269556, + "CONCEPT_NAME" : "Apgar at 10 minutes - finding", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "364743002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014304, + "CONCEPT_NAME" : "Apgar at 1 minute", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169895004", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Observable Entity" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4016052, + "CONCEPT_NAME" : "Apgar at 1 minute = 8", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169905005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015431, + "CONCEPT_NAME" : "Apgar at 1 minute = 9", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169906006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4269555, + "CONCEPT_NAME" : "Apgar at 1 minute - finding", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "364741000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4016464, + "CONCEPT_NAME" : "Apgar at 5 minutes", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169909004", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Observable Entity" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4016467, + "CONCEPT_NAME" : "Apgar at 5 minutes = 10", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169920004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4016466, + "CONCEPT_NAME" : "Apgar at 5 minutes = 9", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169919005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4266765, + "CONCEPT_NAME" : "Apgar at 5 minutes - finding", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "364742007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4167905, + "CONCEPT_NAME" : "Apgar normal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "275307002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4299090, + "CONCEPT_NAME" : "Apgar score 0", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "77714001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4183596, + "CONCEPT_NAME" : "Apgar score 1", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43610007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4170878, + "CONCEPT_NAME" : "Apgar score 10", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "49544001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4219591, + "CONCEPT_NAME" : "Apgar score 2", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "39910003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4132308, + "CONCEPT_NAME" : "Apgar score 3", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26635001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4244236, + "CONCEPT_NAME" : "Apgar score 4", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "38107004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4088036, + "CONCEPT_NAME" : "Apgar score 5", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "24388001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4011798, + "CONCEPT_NAME" : "Apgar score 6", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10318004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4028032, + "CONCEPT_NAME" : "Apgar score 7", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13323003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4049582, + "CONCEPT_NAME" : "Apgar score 8", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12431004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4274664, + "CONCEPT_NAME" : "Apgar score 9", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64198003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 318247, + "CONCEPT_NAME" : "Apnea in the newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13094009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36716744, + "CONCEPT_NAME" : "Apnea of newborn due to neurological injury", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "722915009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4079848, + "CONCEPT_NAME" : "Apnea of prematurity", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276544005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3006511, + "CONCEPT_NAME" : "Appearance of Amniotic fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1887-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4080668, + "CONCEPT_NAME" : "Arrested active phase of labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "24699006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004542, + "CONCEPT_NAME" : "Artificial insemination", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "69.92", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4239302, + "CONCEPT_NAME" : "Artificial insemination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "58533008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4130186, + "CONCEPT_NAME" : "Artificial insemination by donor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "236896006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4127094, + "CONCEPT_NAME" : "Artificial insemination by husband", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "236895005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4187819, + "CONCEPT_NAME" : "Artificial insemination, heterologous", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46249006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4280831, + "CONCEPT_NAME" : "Artificial insemination, homologous", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "66601000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110196, + "CONCEPT_NAME" : "Artificial insemination; intra-cervical", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "58321", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110197, + "CONCEPT_NAME" : "Artificial insemination; intra-uterine", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "58322", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4238828, + "CONCEPT_NAME" : "Artificial insemination with sperm washing and capacitation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57233006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4131376, + "CONCEPT_NAME" : "Ascitic fluid glucose measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "413059003", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439136, + "CONCEPT_NAME" : "Asphyxia, in liveborn infant", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "28314004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004526, + "CONCEPT_NAME" : "Aspiration curettage following delivery or abortion", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "69.52", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004525, + "CONCEPT_NAME" : "Aspiration curettage of uterus for termination of pregnancy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "69.51", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4212941, + "CONCEPT_NAME" : "Aspiration curettage of uterus for termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "391897002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45763635, + "CONCEPT_NAME" : "Aspiration of ectopic pregnancy from cornu of fallopian tube", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "700073007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4300368, + "CONCEPT_NAME" : "Aspiration of ectopic pregnancy from fallopian tube", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "387617009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4153454, + "CONCEPT_NAME" : "Aspiration of liquor or mucus in newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "268832006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4075168, + "CONCEPT_NAME" : "Assisted breech delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177158008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2213350, + "CONCEPT_NAME" : "Assisted embryo hatching, microtechniques (any method)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "89253", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4272937, + "CONCEPT_NAME" : "Assisted fertilization", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63487001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2721246, + "CONCEPT_NAME" : "Assisted oocyte fertilization, case rate", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "S4022", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42739500, + "CONCEPT_NAME" : "Assisted oocyte fertilization, microtechnique (any method) (Deprecated)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "89252", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2213363, + "CONCEPT_NAME" : "Assisted oocyte fertilization, microtechnique; greater than 10 oocytes", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "89281", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2213362, + "CONCEPT_NAME" : "Assisted oocyte fertilization, microtechnique; less than or equal to 10 oocytes", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "89280", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 80156, + "CONCEPT_NAME" : "Asymptomatic bacteriuria in pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "31563000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 76761, + "CONCEPT_NAME" : "Asymptomatic bacteriuria in pregnancy - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199099004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 73526, + "CONCEPT_NAME" : "Asymptomatic bacteriuria in pregnancy - delivered with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199100007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 196488, + "CONCEPT_NAME" : "Atonic postpartum hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "27214003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42739562, + "CONCEPT_NAME" : "Attendance at delivery (when requested by delivering physician) and initial stabilization of newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "99436", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2514559, + "CONCEPT_NAME" : "Attendance at delivery (when requested by the delivering physician or other qualified health care professional) and initial stabilization of newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "99464", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4173192, + "CONCEPT_NAME" : "Atypical isoimmunization of newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276580005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4215792, + "CONCEPT_NAME" : "Autoimmune hypoglycemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "71858003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37397031, + "CONCEPT_NAME" : "Autosomal dominant hyperinsulinism due to Kir6.2 deficiency", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "717045004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37397032, + "CONCEPT_NAME" : "Autosomal dominant hyperinsulinism due to SUR1 deficiency", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "717046003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37204850, + "CONCEPT_NAME" : "Autosomal recessive hyperinsulinism due to Kir6.2 deficiency", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "783768006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37204849, + "CONCEPT_NAME" : "Autosomal recessive hyperinsulinism due to SUR1 deficiency", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "783767001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4149455, + "CONCEPT_NAME" : "Baby birth weight 2 to 2.5 kilogram", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "310538001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014461, + "CONCEPT_NAME" : "Baby birth weight equal to 50 percent to 74 percent (3450-3749g)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169864006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4151169, + "CONCEPT_NAME" : "Baby birth weight less than 751gm", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "310491007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015275, + "CONCEPT_NAME" : "Baby extremely premature 28-32 weeks", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "169851005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4078138, + "CONCEPT_NAME" : "Baby normal at birth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "275735001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4149449, + "CONCEPT_NAME" : "Baby premature 24-26 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "310523002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37016220, + "CONCEPT_NAME" : "Baby premature 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15887011000119107", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37016221, + "CONCEPT_NAME" : "Baby premature 25 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15887051000119108", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4149457, + "CONCEPT_NAME" : "Baby premature 26-28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "310548004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37016222, + "CONCEPT_NAME" : "Baby premature 26 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15887091000119103", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37018684, + "CONCEPT_NAME" : "Baby premature 27 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15887131000119101", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 46271955, + "CONCEPT_NAME" : "Baby premature 28-32 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "710235005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37016216, + "CONCEPT_NAME" : "Baby premature 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15750001000119103", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37016217, + "CONCEPT_NAME" : "Baby premature 29 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15750041000119101", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37016218, + "CONCEPT_NAME" : "Baby premature 30 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15750081000119106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37016213, + "CONCEPT_NAME" : "Baby premature 31 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15635451000119107", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 46271814, + "CONCEPT_NAME" : "Baby premature 32-36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "710068006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37018683, + "CONCEPT_NAME" : "Baby premature 32 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15635411000119106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37018889, + "CONCEPT_NAME" : "Baby premature 33 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15635371000119105", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37016212, + "CONCEPT_NAME" : "Baby premature 34 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15635331000119107", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 762577, + "CONCEPT_NAME" : "Baby premature 35-36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429151000124100", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37016211, + "CONCEPT_NAME" : "Baby premature 35 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15635291000119101", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014299, + "CONCEPT_NAME" : "Baby premature 36-38 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169849006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4149451, + "CONCEPT_NAME" : "Baby premature 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "310530008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4150406, + "CONCEPT_NAME" : "Baby premature 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "310529003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4150405, + "CONCEPT_NAME" : "Baby premature 38 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "310528006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4150404, + "CONCEPT_NAME" : "Baby premature 39 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "310527001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015274, + "CONCEPT_NAME" : "Baby very premature 32 to 36 weeks", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "169850006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 133594, + "CONCEPT_NAME" : "Bacterial sepsis of newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276669000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4075169, + "CONCEPT_NAME" : "Barton forceps cephalic delivery with rotation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177167008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4147974, + "CONCEPT_NAME" : "Barton's forceps delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "30476003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42742559, + "CONCEPT_NAME" : "BCKDHB (branched-chain keto acid dehydrogenase E1, beta polypeptide) (eg, maple syrup urine disease) gene analysis, common variants (eg, R183P, G278S, E422X)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "81205", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42742561, + "CONCEPT_NAME" : "BCR/ABL1 (t(9;22)) (eg, chronic myelogenous leukemia) translocation analysis; minor breakpoint, qualitative or quantitative", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "81207", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4150338, + "CONCEPT_NAME" : "Bedtime blood glucose measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "271065008", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 321638, + "CONCEPT_NAME" : "Benign essential hypertension complicating pregnancy, childbirth and the puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198942000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 314103, + "CONCEPT_NAME" : "Benign essential hypertension complicating pregnancy, childbirth and the puerperium - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198944004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 320456, + "CONCEPT_NAME" : "Benign essential hypertension complicating pregnancy, childbirth and the puerperium - delivered with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198945003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 314423, + "CONCEPT_NAME" : "Benign essential hypertension complicating pregnancy, childbirth and the puerperium - not delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198946002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4062811, + "CONCEPT_NAME" : "Benign essential hypertension complicating pregnancy, childbirth and the puerperium with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198947006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 762706, + "CONCEPT_NAME" : "Benign familial neonatal seizures, non-refractory", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "430821000124108", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 762705, + "CONCEPT_NAME" : "Benign familial neonatal seizures, refractory", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "430811000124100", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4244383, + "CONCEPT_NAME" : "Benign neonatal convulsions", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "38281008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4043411, + "CONCEPT_NAME" : "Benign neonatal familial convulsions", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "230410004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4046209, + "CONCEPT_NAME" : "Benign non-familial neonatal convulsions", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "230411000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4028640, + "CONCEPT_NAME" : "Bicornuate uterus in pregnancy, childbirth and the puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237225003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4093429, + "CONCEPT_NAME" : "Bilateral complete salpingectomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25811000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004347, + "CONCEPT_NAME" : "Bilateral partial salpingectomy, not otherwise specified", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "66.63", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36684754, + "CONCEPT_NAME" : "Bilateral retinopathy of prematurity", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "343791000119101", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37207968, + "CONCEPT_NAME" : "Bilateral retinopathy of prematurity of eyes stage 0", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "343781000119104", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36684753, + "CONCEPT_NAME" : "Bilateral retinopathy of prematurity of eyes stage 1 - demarcation line", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "343771000119102", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36684752, + "CONCEPT_NAME" : "Bilateral retinopathy of prematurity of eyes stage 2 - intraretinal ridge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "343761000119108", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36684751, + "CONCEPT_NAME" : "Bilateral retinopathy of prematurity of eyes stage 3 - ridge with extraretinal fibrovascular proliferation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "343751000119106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4107080, + "CONCEPT_NAME" : "Bilateral salpingectomy with oophorectomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "29827000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36716760, + "CONCEPT_NAME" : "Bilious vomiting of newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "722933003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4028644, + "CONCEPT_NAME" : "Biochemical pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237243004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2213365, + "CONCEPT_NAME" : "Biopsy, oocyte polar body or embryo blastomere, microtechnique (for pre-implantation genetic diagnosis); greater than 5 embryos", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "89291", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2213364, + "CONCEPT_NAME" : "Biopsy, oocyte polar body or embryo blastomere, microtechnique (for pre-implantation genetic diagnosis); less than or equal to 5 embryos", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "89290", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4184996, + "CONCEPT_NAME" : "Birth asphyxia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "413654009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36716763, + "CONCEPT_NAME" : "Birth asphyxia co-occurrent with metabolic acidemia of cord blood", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "722937002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36716762, + "CONCEPT_NAME" : "Birth asphyxia with Apgar score 5 minute Apgar score 4-6", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "722936006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014291, + "CONCEPT_NAME" : "Birth detail", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169811007", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Observable Entity" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4016064, + "CONCEPT_NAME" : "Birth details not known", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169963001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015277, + "CONCEPT_NAME" : "Birth head circumference", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169876006", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Observable Entity" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015278, + "CONCEPT_NAME" : "Birth head circumference equal to 10th-24th centile", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169879004", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015282, + "CONCEPT_NAME" : "Birth head circumference equal to 90th-96th centile", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169883004", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42536751, + "CONCEPT_NAME" : "Birth injury of long bone", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "735745004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42536565, + "CONCEPT_NAME" : "Birth injury of thorax", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "735494000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4290881, + "CONCEPT_NAME" : "Birth injury to scalp", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "37384000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014465, + "CONCEPT_NAME" : "Birth length", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169886007", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Observable Entity" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015288, + "CONCEPT_NAME" : "Birth length=75th-89th centile", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169892001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015429, + "CONCEPT_NAME" : "Birth length equal to 10th-24th centile", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169889000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015287, + "CONCEPT_NAME" : "Birth length equal to 50th-74th centile", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169891008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014466, + "CONCEPT_NAME" : "Birth length equal to 90th-96th centile", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169893006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015284, + "CONCEPT_NAME" : "Birth length equal to third centile", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169887003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015270, + "CONCEPT_NAME" : "Birth of child", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169836001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40760833, + "CONCEPT_NAME" : "Birth plurality of Pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57722-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Clinical Observation" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435641, + "CONCEPT_NAME" : "Birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "56110009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4030440, + "CONCEPT_NAME" : "Birth trauma deafness", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "129631008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4149610, + "CONCEPT_NAME" : "Birth weight 999 g or less", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "310660006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4171114, + "CONCEPT_NAME" : "Birth weight abnormality", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276609002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4187520, + "CONCEPT_NAME" : "Birth weight finding", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "47340003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 46271901, + "CONCEPT_NAME" : "Birth weight less than 500g", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "710168009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40759177, + "CONCEPT_NAME" : "Birth weight - Reported", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "56056-5", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Clinical Observation" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4262136, + "CONCEPT_NAME" : "Blighted ovum", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "35999006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2721180, + "CONCEPT_NAME" : "BLOOD CHEMISTRY FOR FREE BETA HUMAN CHORIONIC GONADOTROPIN (HCG)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "S3618", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3655208, + "CONCEPT_NAME" : "Blood clot embolism due to and following ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "860679004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3655207, + "CONCEPT_NAME" : "Blood clot embolism due to and following molar pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "860678007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4028780, + "CONCEPT_NAME" : "Blood dyscrasia puerperal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237338008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4055674, + "CONCEPT_NAME" : "Blood glucose 0-1.4 mmol/L", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "166914001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4041701, + "CONCEPT_NAME" : "Blood glucose 10-13.9 mmol/L", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "166919006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4041702, + "CONCEPT_NAME" : "Blood glucose 14+ mmol/L", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "166923003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4041700, + "CONCEPT_NAME" : "Blood glucose 1.5-2.4 mmol/L", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "166915000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4055675, + "CONCEPT_NAME" : "Blood glucose 2.5-4.9 mmol/L", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "166916004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4055676, + "CONCEPT_NAME" : "Blood glucose 5-6.9 mmol/L", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "166917008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4042726, + "CONCEPT_NAME" : "Blood glucose 7-9.9 mmol/L", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "166918003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4042728, + "CONCEPT_NAME" : "Blood glucose abnormal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "166922008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4275337, + "CONCEPT_NAME" : "Blood glucose level - finding", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "365812005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4041697, + "CONCEPT_NAME" : "Blood glucose method", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "166888009", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4042727, + "CONCEPT_NAME" : "Blood glucose normal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "166921001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4135545, + "CONCEPT_NAME" : "Blood glucose series", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "412928005", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44784272, + "CONCEPT_NAME" : "Blood in vomit of newborn due to swallowed maternal blood", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "698317008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4042936, + "CONCEPT_NAME" : "Blood sent: alpha-fetoprotein", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "166557002", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4078281, + "CONCEPT_NAME" : "BM stix glucose measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "275810004", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4027371, + "CONCEPT_NAME" : "Bone AND/OR joint disorder in mother complicating pregnancy, childbirth AND/OR puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "128076000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4192676, + "CONCEPT_NAME" : "Born by cesarean section", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "394699000", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4260748, + "CONCEPT_NAME" : "Bottle fed at birth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "412728002", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42742564, + "CONCEPT_NAME" : "BRAF (B-Raf proto-oncogene, serine/threonine kinase) (eg, colon cancer, melanoma), gene analysis, V600 variant(s)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "81210", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4139126, + "CONCEPT_NAME" : "Braxton Hicks contractions", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "32644009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 73019, + "CONCEPT_NAME" : "Breast engorgement in newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "34831003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4066255, + "CONCEPT_NAME" : "Breast engorgement in pregnancy/puerperium/lact + p/n comp", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "200421009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443330, + "CONCEPT_NAME" : "Breast engorgement in pregnancy, the puerperium or lactation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200416006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 77624, + "CONCEPT_NAME" : "Breast engorgement in pregnancy, the puerperium or lactation - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200418007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 81086, + "CONCEPT_NAME" : "Breast engorgement in pregnancy, the puerperium or lactation - delivered with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200419004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 73282, + "CONCEPT_NAME" : "Breast engorgement in pregnancy, the puerperium or lactation with antenatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200420005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4260749, + "CONCEPT_NAME" : "Breast fed at birth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "412729005", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4054949, + "CONCEPT_NAME" : "Breastfeeding education", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "243094003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4066258, + "CONCEPT_NAME" : "Breastfeeding painful", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200430001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4345684, + "CONCEPT_NAME" : "Breastfeeding problem in the newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "240301009", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015144, + "CONCEPT_NAME" : "Breastfeeding started", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169745008", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40766616, + "CONCEPT_NAME" : "Breastfeeding status", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63895-7", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Clinical Observation" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4254219, + "CONCEPT_NAME" : "Breastfeeding support", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "408883002", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3662128, + "CONCEPT_NAME" : "Breech delivery following termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1147961000000102", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4213387, + "CONCEPT_NAME" : "Breech extraction", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "417121007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 436767, + "CONCEPT_NAME" : "Breech extraction - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200142000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4075165, + "CONCEPT_NAME" : "Breech extraction delivery with version", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177152009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 73267, + "CONCEPT_NAME" : "Breech malpresentation successfully converted to cephalic presentation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "17532001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 74698, + "CONCEPT_NAME" : "Breech presentation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6096002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 73537, + "CONCEPT_NAME" : "Breech presentation - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199354004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 76756, + "CONCEPT_NAME" : "Breech presentation with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199355003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4283942, + "CONCEPT_NAME" : "Bronchopulmonary dysplasia of newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "67569000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4122871, + "CONCEPT_NAME" : "Bruising of umbilical cord", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "289333007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3026267, + "CONCEPT_NAME" : "Calorie intake total 24 hour", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "9057-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Clinical Observation" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4120298, + "CONCEPT_NAME" : "Capillary blood glucose measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "302789003", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4031037, + "CONCEPT_NAME" : "Carbuncle of umbilicus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14268002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 317669, + "CONCEPT_NAME" : "Cardiac arrest in fetus OR newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "179924009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36713582, + "CONCEPT_NAME" : "Cardiac complication of anesthesia during the puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "717959008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4306192, + "CONCEPT_NAME" : "Cardiotochogram", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "387672006", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4261479, + "CONCEPT_NAME" : "Carneous mole", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "44979007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42742390, + "CONCEPT_NAME" : "Car seat/bed testing for airway integrity, for infants through 12 months of age, with continual clinical staff observation and continuous recording of pulse oximetry, heart rate and respiratory rate, with interpretation and report; 60 minutes", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "94780", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2108149, + "CONCEPT_NAME" : "Catheterization of umbilical vein for diagnosis or therapy, newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36510", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4065999, + "CONCEPT_NAME" : "Cellulitis and abscess of umbilicus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200660001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4208980, + "CONCEPT_NAME" : "Cellulitis of umbilicus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "56644003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4235752, + "CONCEPT_NAME" : "Central laceration during delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90532005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36716743, + "CONCEPT_NAME" : "Central neonatal apnea", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "722914008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36713583, + "CONCEPT_NAME" : "Central nervous system complication of anesthesia during the puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "717960003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 375016, + "CONCEPT_NAME" : "Central nervous system malformation in fetus affecting obstetrical care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1538006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4047852, + "CONCEPT_NAME" : "Cephalhematoma due to birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206200000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3662129, + "CONCEPT_NAME" : "Cephalic delivery following termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1147971000000109", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4071629, + "CONCEPT_NAME" : "Cephalic vaginal delivery with abnormal presentation of head at delivery without instrument", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177179008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110305, + "CONCEPT_NAME" : "Cerclage of cervix, during pregnancy; abdominal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59325", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110304, + "CONCEPT_NAME" : "Cerclage of cervix, during pregnancy; vaginal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59320", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4147060, + "CONCEPT_NAME" : "Cerebral anoxia following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "30243004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4243309, + "CONCEPT_NAME" : "Cerebral hemorrhage due to intrapartum anoxia or hypoxia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "38453000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 377980, + "CONCEPT_NAME" : "Cerebral irritability in newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "4952001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4171109, + "CONCEPT_NAME" : "Cerebral irritation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276596008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4171111, + "CONCEPT_NAME" : "Cerebral leukomalacia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276599001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4082313, + "CONCEPT_NAME" : "Cerebral ventricular distension", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "277476007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 316494, + "CONCEPT_NAME" : "Cerebrovascular disorder in the puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6594005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4321386, + "CONCEPT_NAME" : "Cervical cerclage suture present", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "69802008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4034148, + "CONCEPT_NAME" : "Cervical dystocia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237324001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 436740, + "CONCEPT_NAME" : "Cervical incompetence", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "17382005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441369, + "CONCEPT_NAME" : "Cervical incompetence - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199482005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435607, + "CONCEPT_NAME" : "Cervical incompetence - delivered with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199483000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437334, + "CONCEPT_NAME" : "Cervical incompetence with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199484006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440166, + "CONCEPT_NAME" : "Cervical incompetence with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199485007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44790204, + "CONCEPT_NAME" : "Cervical length scanning at 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "228531000000103", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 197043, + "CONCEPT_NAME" : "Cervical observation during pregnancy and labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "249020006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437942, + "CONCEPT_NAME" : "Cesarean delivery - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200146002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110316, + "CONCEPT_NAME" : "Cesarean delivery only", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59514", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110323, + "CONCEPT_NAME" : "Cesarean delivery only, following attempted vaginal delivery after previous cesarean delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59620", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110324, + "CONCEPT_NAME" : "Cesarean delivery only, following attempted vaginal delivery after previous cesarean delivery; including postpartum care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59622", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110317, + "CONCEPT_NAME" : "Cesarean delivery only; including postpartum care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59515", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4165077, + "CONCEPT_NAME" : "Cesarean hysterectomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "41059002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015701, + "CONCEPT_NAME" : "Cesarean section", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "11466000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4303297, + "CONCEPT_NAME" : "Cesarean section care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "386234001", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004789, + "CONCEPT_NAME" : "Cesarean section of other specified type", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "74.4", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "3-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4066111, + "CONCEPT_NAME" : "Cesarean section - pregnancy at term", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200147006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42872492, + "CONCEPT_NAME" : "Cesarean section through inverted T shaped incision of uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "450483001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42872493, + "CONCEPT_NAME" : "Cesarean section through J shaped incision of uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "450484007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 197344, + "CONCEPT_NAME" : "Cesarean wound disruption", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "396544001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 194113, + "CONCEPT_NAME" : "Cesarean wound disruption - delivered with postnatal complication", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "200337002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4065866, + "CONCEPT_NAME" : "Cesarean wound disruption with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200338007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40482050, + "CONCEPT_NAME" : "Chemical pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "445086005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4152029, + "CONCEPT_NAME" : "Childbirth examination - normal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "268484008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4253751, + "CONCEPT_NAME" : "Child examination - 2 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "410622001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40479783, + "CONCEPT_NAME" : "Child examination at birth with explicit context", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "444483000", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014738, + "CONCEPT_NAME" : "Child examination - birth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "170099002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4194590, + "CONCEPT_NAME" : "Child HC < 0.4th centile", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "314643009", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4200299, + "CONCEPT_NAME" : "Child HC = 0.4th centile", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "314644003", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4194591, + "CONCEPT_NAME" : "Child HC 0.5th - 1.9th centile", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "314645002", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4199794, + "CONCEPT_NAME" : "Child HC 10th - 24th centile", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "314649008", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4194593, + "CONCEPT_NAME" : "Child HC 26th - 49th centile", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "314651007", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4199793, + "CONCEPT_NAME" : "Child HC = 2nd centile", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "314646001", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4194592, + "CONCEPT_NAME" : "Child HC 3rd - 8th centile", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "314647005", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014735, + "CONCEPT_NAME" : "Child HC = 3rd-9th centile", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "170063007", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014605, + "CONCEPT_NAME" : "Child HC = 50th-74th centile", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "170066004", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4194594, + "CONCEPT_NAME" : "Child HC 51st - 74th centile", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "314653005", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014606, + "CONCEPT_NAME" : "Child HC = 75th-89th centile", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "170067008", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4194595, + "CONCEPT_NAME" : "Child HC = 75th centile", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "314654004", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4199796, + "CONCEPT_NAME" : "Child HC 76th - 90th centile", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "314655003", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014607, + "CONCEPT_NAME" : "Child HC = 90th-96th centile", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "170068003", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4199797, + "CONCEPT_NAME" : "Child HC 92nd - 97th centile", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "314657006", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014736, + "CONCEPT_NAME" : "Child HC = > 97th centile", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "170069006", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4194596, + "CONCEPT_NAME" : "Child HC 98.1st-99.6th centile", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "314659009", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4200422, + "CONCEPT_NAME" : "Child HC = 98th centile", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "314658001", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4199798, + "CONCEPT_NAME" : "Child HC >99.6th centile", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "314660004", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4197178, + "CONCEPT_NAME" : "Child HC = 9th centile", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "314648000", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4200300, + "CONCEPT_NAME" : "Child head circumference 50 equal to 50th centile", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "314652000", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4276725, + "CONCEPT_NAME" : "Child head circumference centile finding", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "365943002", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4016184, + "CONCEPT_NAME" : "Child head circumference equal to 25th-49th centile", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "170065000", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4199795, + "CONCEPT_NAME" : "Child head circumference equal to 25th centile", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "314650008", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4197179, + "CONCEPT_NAME" : "Child head circumference equal to 91st centile", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "314656002", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4016183, + "CONCEPT_NAME" : "Child head circumference equal to third centile", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "170062002", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4102952, + "CONCEPT_NAME" : "Cholestasis-edema syndrome, Norwegian type", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "28724005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4203366, + "CONCEPT_NAME" : "Cholestasis in newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "433237003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4340944, + "CONCEPT_NAME" : "Cholestasis of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "235888006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3019145, + "CONCEPT_NAME" : "Choriogonadotropin.beta subunit free [Mass/volume] in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25373-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3011465, + "CONCEPT_NAME" : "Choriogonadotropin.beta subunit free [Units/volume] in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "19180-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3011996, + "CONCEPT_NAME" : "Choriogonadotropin.beta subunit [Moles/volume] in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "2111-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3010164, + "CONCEPT_NAME" : "Choriogonadotropin.beta subunit [Multiple of the median] adjusted in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "23841-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40758989, + "CONCEPT_NAME" : "Choriogonadotropin.beta subunit [Multiple of the median] in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55868-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3011149, + "CONCEPT_NAME" : "Choriogonadotropin.beta subunit (pregnancy test) [Presence] in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "2110-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3009417, + "CONCEPT_NAME" : "Choriogonadotropin.beta subunit (pregnancy test) [Presence] in Urine", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "2112-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3038136, + "CONCEPT_NAME" : "Choriogonadotropin.beta subunit [Units/volume] in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "21198-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3004303, + "CONCEPT_NAME" : "Choriogonadotropin.intact [Moles/volume] in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "2117-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3036988, + "CONCEPT_NAME" : "Choriogonadotropin.intact [Units/volume] in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "30243-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3002091, + "CONCEPT_NAME" : "Choriogonadotropin [Moles/volume] in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "2119-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3008714, + "CONCEPT_NAME" : "Choriogonadotropin [Multiple of the median] adjusted in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "32166-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3003191, + "CONCEPT_NAME" : "Choriogonadotropin (pregnancy test) [Presence] in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "2118-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3018954, + "CONCEPT_NAME" : "Choriogonadotropin (pregnancy test) [Presence] in Urine", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "2106-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3018171, + "CONCEPT_NAME" : "Choriogonadotropin [Units/volume] in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "19080-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4018189, + "CONCEPT_NAME" : "Chorionic gonadotropin, alpha subunit measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "104595003", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4296540, + "CONCEPT_NAME" : "Chorionic gonadotropin, beta-subunit measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "386558001", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4296541, + "CONCEPT_NAME" : "Chorionic gonadotropin, beta-subunit measurement, spinal fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "386559009", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4016953, + "CONCEPT_NAME" : "Chorionic gonadotropin, intact measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "104596002", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4017479, + "CONCEPT_NAME" : "Chorionic gonadotropin measurement, qualitative", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "104406007", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2212145, + "CONCEPT_NAME" : "Chorionic gonadotropin stimulation panel; estradiol response This panel must include the following: Estradiol, total (82670 x 2 on 3 pooled blood samples)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80415", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2212144, + "CONCEPT_NAME" : "Chorionic gonadotropin stimulation panel; testosterone response This panel must include the following: Testosterone (84403 x 2 on 3 pooled blood samples)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80414", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110282, + "CONCEPT_NAME" : "Chorionic villus sampling, any method", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59015", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44793560, + "CONCEPT_NAME" : "Chorionic villus sampling culture", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "283931000000109", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44791458, + "CONCEPT_NAME" : "Chorionic villus sampling culture and direct chromosome analysis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "283941000000100", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4162502, + "CONCEPT_NAME" : "Chorionic villus sampling using obstetric ultrasound guidance", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "433153009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 72973, + "CONCEPT_NAME" : "Chromosomal abnormality in fetus affecting obstetrical care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "42686001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40760436, + "CONCEPT_NAME" : "Chromosome 13+18+21+X+Y aneuploidy in Amniotic fluid or Chorionic villus sample by FISH Nominal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57317-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2213267, + "CONCEPT_NAME" : "Chromosome analysis, amniotic fluid or chorionic villus, count 15 cells, 1 karyotype, with banding", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "88267", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2213268, + "CONCEPT_NAME" : "Chromosome analysis, in situ for amniotic fluid cells, count cells from 6-12 colonies, 1 karyotype, with banding", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "88269", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4080590, + "CONCEPT_NAME" : "Chronic congenital cytomegalic inclusion disease", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "240551003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4173190, + "CONCEPT_NAME" : "Chronic partial asphyxia of newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276573008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 313023, + "CONCEPT_NAME" : "Chronic respiratory disease in perinatal period", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "20322005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4223536, + "CONCEPT_NAME" : "Classical cesarean section", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84195007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004785, + "CONCEPT_NAME" : "Classical cesarean section", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "74.0", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "3-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36713561, + "CONCEPT_NAME" : "Classic onset hemorrhagic disease of newborn due to vitamin K deficiency", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "717936002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37208486, + "CONCEPT_NAME" : "Clitoral tear during delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1105801000000107", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434167, + "CONCEPT_NAME" : "Cold injury syndrome of newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26746005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40761828, + "CONCEPT_NAME" : "Collection date of Amniotic fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "58734-5", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Clinical Observation" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4182145, + "CONCEPT_NAME" : "Color of lochia - finding", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "366298006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44783183, + "CONCEPT_NAME" : "Combined intrauterine and ovarian pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "699240001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4135209, + "CONCEPT_NAME" : "Combined pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "31601007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40483581, + "CONCEPT_NAME" : "Combined tubal and intrauterine pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "442478007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3170656, + "CONCEPT_NAME" : "Complcated pregnancy due to surgical history: uterine myomectomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6980001000004103", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "Nebraska Lexicon", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437046, + "CONCEPT_NAME" : "Complete abortion", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "69124005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4034145, + "CONCEPT_NAME" : "Complete breech delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237311001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2721238, + "CONCEPT_NAME" : "Complete cycle, gamete intrafallopian transfer (gift), case rate", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "S4013", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2721239, + "CONCEPT_NAME" : "Complete cycle, zygote intrafallopian transfer (zift), case rate", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "S4014", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439085, + "CONCEPT_NAME" : "Complete inevitable miscarriage complicated by delayed or excessive hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "307735008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441629, + "CONCEPT_NAME" : "Complete inevitable miscarriage complicated by embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "307750004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441921, + "CONCEPT_NAME" : "Complete inevitable miscarriage complicated by genital tract and pelvic infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "307734007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4146774, + "CONCEPT_NAME" : "Complete inevitable miscarriage without complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "307738005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2721240, + "CONCEPT_NAME" : "Complete in vitro fertilization cycle, not otherwise specified, case rate", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "S4015", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441073, + "CONCEPT_NAME" : "Complete legal termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "267194005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438196, + "CONCEPT_NAME" : "Complete legal termination of pregnancy with delayed or excessive hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198719001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40318618, + "CONCEPT_NAME" : "Complete miscarriage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "156073000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441910, + "CONCEPT_NAME" : "Complete miscarriage with damage to pelvic organs or tissues", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198657009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432682, + "CONCEPT_NAME" : "Complete miscarriage with delayed or excessive hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198656000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441632, + "CONCEPT_NAME" : "Complete miscarriage with embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198663000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435318, + "CONCEPT_NAME" : "Complete miscarriage with genital tract or pelvic infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198655001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435000, + "CONCEPT_NAME" : "Complete miscarriage with metabolic disorder", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198660002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 436742, + "CONCEPT_NAME" : "Complete miscarriage with renal failure", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198659007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438805, + "CONCEPT_NAME" : "Complete miscarriage with shock", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198661003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4113352, + "CONCEPT_NAME" : "Complete spontaneous abortion NOS", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "198667004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440464, + "CONCEPT_NAME" : "Complication following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "2989004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440795, + "CONCEPT_NAME" : "Complication occurring during labor and delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199745000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36715374, + "CONCEPT_NAME" : "Complication of anesthesia during the puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "721022000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432382, + "CONCEPT_NAME" : "Complication of labor AND/OR delivery", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "27541007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 436489, + "CONCEPT_NAME" : "Complication of obstetrical surgery AND/OR procedure", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "78408007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437947, + "CONCEPT_NAME" : "Complication of obstetrical surgical wound", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "32999002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435875, + "CONCEPT_NAME" : "Complication of pregnancy, childbirth and/or puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198609003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4141513, + "CONCEPT_NAME" : "Complication of prematurity", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "426850008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441364, + "CONCEPT_NAME" : "Complication of the puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80113008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433822, + "CONCEPT_NAME" : "Complication related to pregnancy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "90821003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433263, + "CONCEPT_NAME" : "Complications following abortion and ectopic and molar pregnancies", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "198818003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4309021, + "CONCEPT_NAME" : "Complications of attempted introduction of fertilized ovum following in vitro fertilization", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "213202009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4193765, + "CONCEPT_NAME" : "Compression of umbilical cord", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "79222000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40482399, + "CONCEPT_NAME" : "Conceived by in vitro fertilization", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "443633009", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 80205, + "CONCEPT_NAME" : "Condition in fetus originating in the perinatal period", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "41168002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441964, + "CONCEPT_NAME" : "Conditions involving the integument AND/OR temperature regulation of fetus OR newborn", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "40504002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 197339, + "CONCEPT_NAME" : "Congenital abnormality of uterus, affecting pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "41215002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 194707, + "CONCEPT_NAME" : "Congenital abnormality of uterus - baby delivered with postpartum complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "267215001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 193825, + "CONCEPT_NAME" : "Congenital abnormality of uterus complicating antenatal care, baby not yet delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "267216000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 315013, + "CONCEPT_NAME" : "Congenital cardiovascular disorder during pregnancy - baby delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199266007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 314426, + "CONCEPT_NAME" : "Congenital cardiovascular disorder during pregnancy - baby not yet delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199268008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443249, + "CONCEPT_NAME" : "Congenital cardiovascular disorders during pregnancy, childbirth and the puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "267207004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 436532, + "CONCEPT_NAME" : "Congenital cytomegalovirus infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59527008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37396772, + "CONCEPT_NAME" : "Congenital deficiency of alpha-fetoprotein", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "716698007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4236230, + "CONCEPT_NAME" : "Congenital hyperinsulinism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "360339005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 196175, + "CONCEPT_NAME" : "Congenital OR acquired abnormality of cervix affecting pregnancy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "111443000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 201920, + "CONCEPT_NAME" : "Congenital OR acquired abnormality of vagina affecting pregnancy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "111444006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435879, + "CONCEPT_NAME" : "Congenital or acquired abnormality of vulva - baby delivered with postpartum complication", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "267248001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440162, + "CONCEPT_NAME" : "Congenital or acquired abnormality of vulva complicating antenatal care - baby not yet delivered", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "267249009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4188480, + "CONCEPT_NAME" : "Congenital rubella pneumonitis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "47082005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433869, + "CONCEPT_NAME" : "Congenital rubella syndrome", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1857005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015159, + "CONCEPT_NAME" : "Consultant unit birth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169815003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060252, + "CONCEPT_NAME" : "Consultant unit booking", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169623004", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433826, + "CONCEPT_NAME" : "Continuing pregnancy after abortion of one fetus or more", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199306007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432373, + "CONCEPT_NAME" : "Continuing pregnancy after intrauterine death of one or more fetuses", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199307003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43020670, + "CONCEPT_NAME" : "Continuing pregnancy after intrauterine death of one twin with intrauterine retention of dead twin", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "472321009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441647, + "CONCEPT_NAME" : "Continuing pregnancy after intrauterine death of twin fetus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429187001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45757769, + "CONCEPT_NAME" : "Continuing triplet pregnancy after spontaneous abortion of one or more fetuses", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36801000119105", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4237335, + "CONCEPT_NAME" : "Continuous fetal heart monitoring during labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "408804006", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4268171, + "CONCEPT_NAME" : "Contraction ring dystocia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "62129004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4120986, + "CONCEPT_NAME" : "Controlled cord traction of placenta", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "302384005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36716738, + "CONCEPT_NAME" : "Contusion of brain due to birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "722908001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36716737, + "CONCEPT_NAME" : "Contusion of cerebellum due to birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "722907006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 380533, + "CONCEPT_NAME" : "Convulsions in the newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87476004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434708, + "CONCEPT_NAME" : "Cord around neck with compression", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "289311005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4129041, + "CONCEPT_NAME" : "Cord beside head", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237306003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442292, + "CONCEPT_NAME" : "Cord entanglement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "53419009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433270, + "CONCEPT_NAME" : "Cord entanglement without compression", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "11209007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110281, + "CONCEPT_NAME" : "Cordocentesis (intrauterine), any method", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59012", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433828, + "CONCEPT_NAME" : "Cord tangled or knotted with compression", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "267266006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439092, + "CONCEPT_NAME" : "Cord tangled with compression - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199880007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442421, + "CONCEPT_NAME" : "Cord tangled with compression with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199881006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4055252, + "CONCEPT_NAME" : "Correct fixing of baby to breast education", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "243096001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004823, + "CONCEPT_NAME" : "Correction of fetal defect", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "75.36", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015590, + "CONCEPT_NAME" : "Counseling for termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10383002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37016958, + "CONCEPT_NAME" : "Counting fetal movement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "713120004", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2212630, + "CONCEPT_NAME" : "C-peptide", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84681", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433548, + "CONCEPT_NAME" : "Cracked nipple associated with childbirth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "35716006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36713479, + "CONCEPT_NAME" : "Cracked nipple associated with childbirth with attachment difficulty", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "717820003", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45757216, + "CONCEPT_NAME" : "Cracked nipple associated with lactation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10836241000119104", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443243, + "CONCEPT_NAME" : "Cracked nipple in pregnancy, the puerperium or lactation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "267291006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440481, + "CONCEPT_NAME" : "Cracked nipple in pregnancy, the puerperium or lactation - delivered with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200412008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432396, + "CONCEPT_NAME" : "Cracked nipple in pregnancy, the puerperium or lactation with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200414009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442529, + "CONCEPT_NAME" : "Cranial nerve injury due to birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206234004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2213355, + "CONCEPT_NAME" : "Cryopreservation; embryo(s)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "89258", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2721256, + "CONCEPT_NAME" : "Cryopreserved embryo transfer, case rate", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "S4037", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4242590, + "CONCEPT_NAME" : "Cryptomenorrhea", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "58851004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4057444, + "CONCEPT_NAME" : "CSF: glucose decreased", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "167740005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4055550, + "CONCEPT_NAME" : "CSF: glucose increased", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "167741009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4269855, + "CONCEPT_NAME" : "CSF: glucose level - finding", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "365815007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4057443, + "CONCEPT_NAME" : "CSF: glucose normal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "167739008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2213347, + "CONCEPT_NAME" : "Culture of oocyte(s)/embryo(s), less than 4 days", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "89250", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2213348, + "CONCEPT_NAME" : "Culture of oocyte(s)/embryo(s), less than 4 days; with co-culture of oocyte(s)/embryos", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "89251", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110301, + "CONCEPT_NAME" : "Curettage, postpartum", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59160", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 193174, + "CONCEPT_NAME" : "Cystic fibrosis with meconium ileus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86092005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4170118, + "CONCEPT_NAME" : "Cystitis of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "275412000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42742301, + "CONCEPT_NAME" : "Cytogenomic constitutional (genome-wide) microarray analysis; interrogation of genomic regions for copy number and single nucleotide polymorphism (SNP) variants for chromosomal abnormalities", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "81229", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4100193, + "CONCEPT_NAME" : "Damage to bladder following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "27552001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4185718, + "CONCEPT_NAME" : "Damage to bowel following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "44017002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4232953, + "CONCEPT_NAME" : "Damage to broad ligament following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "89573004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4173946, + "CONCEPT_NAME" : "Damage to cervix following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "42294002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 196475, + "CONCEPT_NAME" : "Damage to pelvic organs AND/OR tissues following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16083003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42537767, + "CONCEPT_NAME" : "Damage to pelvic organs and tissues following ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "737329004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42537768, + "CONCEPT_NAME" : "Damage to pelvic organs and tissues following molar pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "737330009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4174543, + "CONCEPT_NAME" : "Damage to periurethral tissue following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "42536002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4194053, + "CONCEPT_NAME" : "Damage to uterus following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "79333004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4216382, + "CONCEPT_NAME" : "Damage to vagina following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72209007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4072438, + "CONCEPT_NAME" : "Date of last menstrual period", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "21840007", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Observable Entity" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4088445, + "CONCEPT_NAME" : "Date of last normal period", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "248993009", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Observable Entity" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060625, + "CONCEPT_NAME" : "Dating/booking US scan", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169229007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44810005, + "CONCEPT_NAME" : "Dating obstetric ultrasound scan", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "866481000000104", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40491449, + "CONCEPT_NAME" : "Decline in Edinburgh postnatal depression scale score", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "448717002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40487136, + "CONCEPT_NAME" : "Decline in Edinburgh postnatal depression scale score at 8 months", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "449413009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4197955, + "CONCEPT_NAME" : "Decreased glucose level", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "51798006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 75882, + "CONCEPT_NAME" : "Deep transverse arrest - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199774009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 73265, + "CONCEPT_NAME" : "Deep transverse arrest with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199775005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44784536, + "CONCEPT_NAME" : "Deep transverse arrest with persistent occipitoposterior position", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "698702007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438820, + "CONCEPT_NAME" : "Deep venous thrombosis in puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "56272000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4266839, + "CONCEPT_NAME" : "Defibrination syndrome following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "62698000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4234604, + "CONCEPT_NAME" : "Dehiscence AND/OR disruption of uterine wound in the puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "361095003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438814, + "CONCEPT_NAME" : "Delayed AND/OR excessive hemorrhage following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "79133008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 194109, + "CONCEPT_NAME" : "Delayed AND/OR secondary postpartum hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "23171006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4048293, + "CONCEPT_NAME" : "Delayed conjugation causing neonatal jaundice associated with another disorder", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206453006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441361, + "CONCEPT_NAME" : "Delayed delivery after artificial rupture of membranes", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "35347003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42537762, + "CONCEPT_NAME" : "Delayed hemorrhage due to and following ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "737322008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42537759, + "CONCEPT_NAME" : "Delayed hemorrhage due to and following miscarriage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "737318003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4114265, + "CONCEPT_NAME" : "Delayed or excessive hemorrhage following abortive pregnancy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "198827002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4277103, + "CONCEPT_NAME" : "Delayed repair of episiotomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65378009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4075190, + "CONCEPT_NAME" : "DeLee forceps cephalic delivery with rotation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177168003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440793, + "CONCEPT_NAME" : "Deliveries by breech extraction", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "271370008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 193277, + "CONCEPT_NAME" : "Deliveries by cesarean", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200144004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2514560, + "CONCEPT_NAME" : "Delivery/birthing room resuscitation, provision of positive pressure ventilation and/or chest compressions in the presence of acute inadequate ventilation and/or cardiac output", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "99465", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4076939, + "CONCEPT_NAME" : "Delivery booking place", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "275816005", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Observable Entity" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4106406, + "CONCEPT_NAME" : "Delivery by double application of forceps", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "29613008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061457, + "CONCEPT_NAME" : "Delivery by elective cesarean section", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200148001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4066112, + "CONCEPT_NAME" : "Delivery by emergency cesarean section", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200149009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4232028, + "CONCEPT_NAME" : "Delivery by Kielland rotation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "89346004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4234710, + "CONCEPT_NAME" : "Delivery by Malstrom's extraction", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90438006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4223638, + "CONCEPT_NAME" : "Delivery by Malstrom's extraction with episiotomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40219000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4278225, + "CONCEPT_NAME" : "Delivery by midwife", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65243006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4100410, + "CONCEPT_NAME" : "Delivery by Scanzoni maneuver", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25296001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4189205, + "CONCEPT_NAME" : "Delivery by vacuum extraction", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "61586001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4096145, + "CONCEPT_NAME" : "Delivery by vacuum extraction with episiotomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26313002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4237496, + "CONCEPT_NAME" : "Delivery care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "409006000", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3011536, + "CONCEPT_NAME" : "Delivery date Estimated", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "11778-8", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Clinical Observation" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038495, + "CONCEPT_NAME" : "Delivery finding", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "118215003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43054893, + "CONCEPT_NAME" : "Delivery location", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72150-6", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Survey" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061795, + "CONCEPT_NAME" : "Delivery: no place booked", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169620001", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441641, + "CONCEPT_NAME" : "Delivery normal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48782003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40551541, + "CONCEPT_NAME" : "Delivery of cephalic presentation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "384730009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4056129, + "CONCEPT_NAME" : "Delivery of face presentation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16819009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42872805, + "CONCEPT_NAME" : "Delivery of occipitoposterior presentation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "450798003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110311, + "CONCEPT_NAME" : "Delivery of placenta (separate procedure)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59414", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4130319, + "CONCEPT_NAME" : "Delivery of the after coming head", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "236982004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4293034, + "CONCEPT_NAME" : "Delivery of vertex presentation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "384729004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4156955, + "CONCEPT_NAME" : "Delivery place booked", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "271402002", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4150421, + "CONCEPT_NAME" : "Delivery place planned", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "310585007", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4128030, + "CONCEPT_NAME" : "Delivery procedure", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "236973005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4046029, + "CONCEPT_NAME" : "Delivery room care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "133905007", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36715417, + "CONCEPT_NAME" : "DEND syndrome", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "721088003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36716734, + "CONCEPT_NAME" : "Depressed fracture of skull due to birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "722904004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4252401, + "CONCEPT_NAME" : "Dermatitis of the newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7392002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4193756, + "CONCEPT_NAME" : "Desultory labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "79179003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40478932, + "CONCEPT_NAME" : "Detection of ordinal level of hemoglobin F in amniotic fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "444308008", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443012, + "CONCEPT_NAME" : "Diabetes mellitus during pregnancy - baby delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199225007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 192691, + "CONCEPT_NAME" : "Diabetes mellitus during pregnancy - baby not yet delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199227004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4058243, + "CONCEPT_NAME" : "Diabetes mellitus during pregnancy, childbirth and the puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199223000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 194700, + "CONCEPT_NAME" : "Diabetes mellitus in mother complicating pregnancy, childbirth AND/OR puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "76751001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4062685, + "CONCEPT_NAME" : "Diabetes mellitus in the puerperium - baby delivered during current episode of care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199226008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4062686, + "CONCEPT_NAME" : "Diabetes mellitus in the puerperium - baby delivered during previous episode of care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199228009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43531645, + "CONCEPT_NAME" : "Diabetes mellitus, transient neonatal 1", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609579009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43531019, + "CONCEPT_NAME" : "Diabetes mellitus, transient neonatal 2", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609580007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43531020, + "CONCEPT_NAME" : "Diabetes mellitus, transient neonatal 3", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609581006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40758528, + "CONCEPT_NAME" : "Diabetes tracking panel", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55399-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Clinical Observation" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3169474, + "CONCEPT_NAME" : "Diabetic hypoglycemia w anger outbursts", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16580001000004105", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "Nebraska Lexicon", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443727, + "CONCEPT_NAME" : "Diabetic ketoacidosis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "420422005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4009303, + "CONCEPT_NAME" : "Diabetic ketoacidosis without coma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "111556005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004805, + "CONCEPT_NAME" : "Diagnostic amniocentesis", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "75.1", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "3-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4143646, + "CONCEPT_NAME" : "Diagnostic amniocentesis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "265635006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40479665, + "CONCEPT_NAME" : "Diagnostic amniocentesis using ultrasound guidance", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "443005005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4032755, + "CONCEPT_NAME" : "Diagnostic amniocentesis with fluid replacement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "236954006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4142956, + "CONCEPT_NAME" : "Diagnostic laparoscopy of female pelvis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "264973001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2006934, + "CONCEPT_NAME" : "Diagnostic ultrasound of gravid uterus", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "88.78", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4135437, + "CONCEPT_NAME" : "Dialysis fluid glucose measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "412865006", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37204835, + "CONCEPT_NAME" : "Diazoxide-resistant focal hyperinsulinism due to Kir6.2 deficiency", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "783741006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37204834, + "CONCEPT_NAME" : "Diazoxide-resistant focal hyperinsulinism due to SUR1 deficiency", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "783740007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43021054, + "CONCEPT_NAME" : "Dichorionic diamniotic twin pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "459166009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4211822, + "CONCEPT_NAME" : "Dietary amenorrhea", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57260004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434482, + "CONCEPT_NAME" : "Diethylstilbestrol poisoning", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "66698002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4016060, + "CONCEPT_NAME" : "Difficult to establish feeding", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169947009", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4173784, + "CONCEPT_NAME" : "Difficulty coping with postpartum changes", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "424474002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4314846, + "CONCEPT_NAME" : "Difficulty following postpartum diet", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "424712007", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4313768, + "CONCEPT_NAME" : "Difficulty following postpartum exercise routine", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "423675002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4071864, + "CONCEPT_NAME" : "Difficulty in feeding at breast", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206568009", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4309556, + "CONCEPT_NAME" : "Difficulty with postpartum rest pattern", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "423502007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4149472, + "CONCEPT_NAME" : "Digital evacuation of retained products of conception", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "310603006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004489, + "CONCEPT_NAME" : "Dilation and curettage for termination of pregnancy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "69.01", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4106559, + "CONCEPT_NAME" : "Dilation and curettage for termination of pregnancy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "29682007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4309425, + "CONCEPT_NAME" : "Dilation and curettage of uterus after delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "391998006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4168396, + "CONCEPT_NAME" : "Dilation of cervix uteri and curettage for termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "274973002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4138740, + "CONCEPT_NAME" : "Dilation of cervix uteri and curettage of products of conception from uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "265062002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4074867, + "CONCEPT_NAME" : "Dilation of cervix uteri and curettage of uterus for removal of missed miscarriage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "176833006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4072420, + "CONCEPT_NAME" : "Dilation of cervix uteri and curettage of uterus for removal of mole", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "176832001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4074297, + "CONCEPT_NAME" : "Dilation of cervix uteri and vacuum aspiration of products of conception from uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "176827002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4022096, + "CONCEPT_NAME" : "Direct injection of sperm into cytoplasm of the oocyte", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "225244002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4024589, + "CONCEPT_NAME" : "Direct intraperitoneal insemination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "225247009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4084845, + "CONCEPT_NAME" : "Discharged from hospital within 6 hours of delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "183673002", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757216, + "CONCEPT_NAME" : "Discharge disposition [CARE]", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "52688-9", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Survey" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757177, + "CONCEPT_NAME" : "Discharge Status", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "52523-8", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Survey" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4071597, + "CONCEPT_NAME" : "Dislocation of spine due to birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206221000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 201958, + "CONCEPT_NAME" : "Disorder involving the integument of fetus OR newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "111474003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438815, + "CONCEPT_NAME" : "Disorder of amniotic cavity AND/OR membrane", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72860003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 73546, + "CONCEPT_NAME" : "Disorder of breast associated with childbirth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86196005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 200524, + "CONCEPT_NAME" : "Disorder of digestive system specific to fetus OR newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "42357009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4130161, + "CONCEPT_NAME" : "Disorder of glucose regulation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237597000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 80471, + "CONCEPT_NAME" : "Disorder of lactation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "35046003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 79890, + "CONCEPT_NAME" : "Disorder of pelvic size and disproportion", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237256006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4053583, + "CONCEPT_NAME" : "Disorder of placenta", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "125586008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42537770, + "CONCEPT_NAME" : "Disorder of vein following ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "737332001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42537769, + "CONCEPT_NAME" : "Disorder of vein following miscarriage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "737331008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42537771, + "CONCEPT_NAME" : "Disorder of vein following molar pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "737333006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4195545, + "CONCEPT_NAME" : "Disorder relating to short gestation AND/OR low birthweight", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "67645006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 201091, + "CONCEPT_NAME" : "Disproportion - major pelvic abnormality", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199398004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 198486, + "CONCEPT_NAME" : "Disproportion - major pelvic abnormality - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199400000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4059763, + "CONCEPT_NAME" : "Disproportion - major pelvic abnormality with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199402008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443418, + "CONCEPT_NAME" : "Disruption of cesarean wound in the puerperium", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "361096002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4134722, + "CONCEPT_NAME" : "Disruption of episiotomy wound in the puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "398262004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4282151, + "CONCEPT_NAME" : "Disruption of perineal laceration repair in the puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "66119008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443897, + "CONCEPT_NAME" : "Disruption of perineal wound in the puerperium", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "14918004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432443, + "CONCEPT_NAME" : "Disseminated intravascular coagulation in newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "34417008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4091783, + "CONCEPT_NAME" : "Distress from pain in labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "249196008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437985, + "CONCEPT_NAME" : "Disturbance of temperature regulation of newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "68550008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37017322, + "CONCEPT_NAME" : "Dizygotic twin pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "713575004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2721247, + "CONCEPT_NAME" : "Donor egg cycle, incomplete, case rate", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "S4023", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2721248, + "CONCEPT_NAME" : "Donor services for in vitro fertilization (sperm or embryo), case rate", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "S4025", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2211763, + "CONCEPT_NAME" : "Doppler echocardiography, fetal, pulsed wave and/or continuous wave with spectral display; complete", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "76827", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2211764, + "CONCEPT_NAME" : "Doppler echocardiography, fetal, pulsed wave and/or continuous wave with spectral display; follow-up or repeat study", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "76828", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44807919, + "CONCEPT_NAME" : "Doppler ultrasonography of multiple pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "855031000000109", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2211761, + "CONCEPT_NAME" : "Doppler velocimetry, fetal; middle cerebral artery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "76821", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2211760, + "CONCEPT_NAME" : "Doppler velocimetry, fetal; umbilical artery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "76820", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4149370, + "CONCEPT_NAME" : "Down's screening - blood test", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "268474007", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4201770, + "CONCEPT_NAME" : "Downs screening test", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "315115008", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2784529, + "CONCEPT_NAME" : "Drainage of Amniotic Fluid, Diagnostic from Products of Conception, Open Approach", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10900ZU", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD10PCS", + "CONCEPT_CLASS_ID" : "ICD10PCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2784535, + "CONCEPT_NAME" : "Drainage of Amniotic Fluid, Diagnostic from Products of Conception, Percutaneous Approach", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10903ZU", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD10PCS", + "CONCEPT_CLASS_ID" : "ICD10PCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2784541, + "CONCEPT_NAME" : "Drainage of Amniotic Fluid, Diagnostic from Products of Conception, Percutaneous Endoscopic Approach", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10904ZU", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD10PCS", + "CONCEPT_CLASS_ID" : "ICD10PCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2784547, + "CONCEPT_NAME" : "Drainage of Amniotic Fluid, Diagnostic from Products of Conception, Via Natural or Artificial Opening", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10907ZU", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD10PCS", + "CONCEPT_CLASS_ID" : "ICD10PCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2784553, + "CONCEPT_NAME" : "Drainage of Amniotic Fluid, Diagnostic from Products of Conception, Via Natural or Artificial Opening Endoscopic", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10908ZU", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD10PCS", + "CONCEPT_CLASS_ID" : "ICD10PCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442915, + "CONCEPT_NAME" : "Drug dependence during pregnancy - baby delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199252002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442913, + "CONCEPT_NAME" : "Drug dependence during pregnancy - baby not yet delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199254001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440787, + "CONCEPT_NAME" : "Drug dependence in mother complicating pregnancy, childbirth AND/OR puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "34150001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4029427, + "CONCEPT_NAME" : "Drug-induced hyperinsulinemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237646004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4034969, + "CONCEPT_NAME" : "Drug-induced hypoglycemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237640005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4096804, + "CONCEPT_NAME" : "Drug-induced hypoglycemia without coma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "190448007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435359, + "CONCEPT_NAME" : "Drug reaction AND/OR intoxication specific to newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "34738001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438871, + "CONCEPT_NAME" : "Drug withdrawal syndrome in newborn", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "61628006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4139551, + "CONCEPT_NAME" : "Duffy isoimmunization of the newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "307337003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015420, + "CONCEPT_NAME" : "Duration of first stage of labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169821004", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Observable Entity" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4122728, + "CONCEPT_NAME" : "Duration of labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "289248003", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Observable Entity" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014453, + "CONCEPT_NAME" : "Duration of second stage of labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169822006", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Observable Entity" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015161, + "CONCEPT_NAME" : "Duration of third stage of labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169823001", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Observable Entity" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40259069, + "CONCEPT_NAME" : "Dye test of fallopian tube", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "177006000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443706, + "CONCEPT_NAME" : "Dyscoordinate labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "18606002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4139861, + "CONCEPT_NAME" : "Dysglycemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "426255005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4070773, + "CONCEPT_NAME" : "Dysponderal amenorrhea", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "21669001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4307303, + "CONCEPT_NAME" : "Early neonatal death", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "391181005", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Event" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36713560, + "CONCEPT_NAME" : "Early onset diffuse bleeding diathesis secondary to vitamin K deficient hemorrhagic disease of fetus and newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "717935003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 35622880, + "CONCEPT_NAME" : "Early-onset neonatal sepsis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "765106006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437614, + "CONCEPT_NAME" : "Early onset of delivery", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "270496001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 138813, + "CONCEPT_NAME" : "Early or threatened labor", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "267201003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4040834, + "CONCEPT_NAME" : "Early postpartum state", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16538005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2722250, + "CONCEPT_NAME" : "Echocardiography, fetal, cardiovascular system, real time with image documentation (2D), with or without M-mode recording", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "76825", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2211762, + "CONCEPT_NAME" : "Echocardiography, fetal, cardiovascular system, real time with image documentation (2D), with or without M-mode recording; follow-up or repeat study", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "76826", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4137949, + "CONCEPT_NAME" : "Echography, scan B-mode for fetal growth rate", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "31998007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443700, + "CONCEPT_NAME" : "Eclampsia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15938005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 133816, + "CONCEPT_NAME" : "Eclampsia - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198990007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 138811, + "CONCEPT_NAME" : "Eclampsia - delivered with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198991006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 137613, + "CONCEPT_NAME" : "Eclampsia in pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198992004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4116344, + "CONCEPT_NAME" : "Eclampsia in puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "303063000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4058536, + "CONCEPT_NAME" : "Eclampsia with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198993009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4294771, + "CONCEPT_NAME" : "Ectopic hyperinsulinism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "37703005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4129522, + "CONCEPT_NAME" : "Ectopic IGF-1 hypoglycemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237643007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4029426, + "CONCEPT_NAME" : "Ectopic IGF-2 hypoglycemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237644001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4030181, + "CONCEPT_NAME" : "Ectopic IGF hypoglycemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237642002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437611, + "CONCEPT_NAME" : "Ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "34801009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441412, + "CONCEPT_NAME" : "Edema of newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "78913002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438204, + "CONCEPT_NAME" : "Edema or excessive weight gain in pregnancy without mention of hypertension", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "267202005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443321, + "CONCEPT_NAME" : "Edema or excessive weight gain in pregnancy without mention of hypertension, delivered with mention of postpartum complication", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "199075004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37018717, + "CONCEPT_NAME" : "Education about amino acid-based infant formula", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "713407005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37017708, + "CONCEPT_NAME" : "Education about cow's milk protein free diet", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "714032007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37017183, + "CONCEPT_NAME" : "Education about extensively hydrolyzed infant formula", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "713414007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4207151, + "CONCEPT_NAME" : "Education about feeding neonate", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "438297004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37017710, + "CONCEPT_NAME" : "Education about soy-based infant formula", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "714034008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45770395, + "CONCEPT_NAME" : "Education about weaning for cow's milk protein allergy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "927701000000103", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43527945, + "CONCEPT_NAME" : "EGFR (epidermal growth factor receptor) (eg, non-small cell lung cancer) gene analysis, common variants (eg, exon 19 LREA deletion, L858R, T790M, G719A, G719S, L861Q)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "81235", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441085, + "CONCEPT_NAME" : "Elderly primigravida", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "29399001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440794, + "CONCEPT_NAME" : "Elderly primigravida - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199718001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442442, + "CONCEPT_NAME" : "Elderly primigravida with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199719009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4075182, + "CONCEPT_NAME" : "Elective cesarean section", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177141003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4075161, + "CONCEPT_NAME" : "Elective lower segment cesarean section", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177143000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42536960, + "CONCEPT_NAME" : "Elective lower segment cesarean section with bilateral tubal ligation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "736026009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4075160, + "CONCEPT_NAME" : "Elective upper segment cesarean section", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177142005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42536952, + "CONCEPT_NAME" : "Elective upper segment cesarean section with bilateral tubal ligation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "736018001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4171254, + "CONCEPT_NAME" : "Electrode injury to scalp during birth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276704001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4276942, + "CONCEPT_NAME" : "Electrolyte imbalance following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6509007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4263011, + "CONCEPT_NAME" : "Elevated serum human chorionic gonadotropin level, beta subunit", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "396700001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42539701, + "CONCEPT_NAME" : "Embolism due to and following ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "737324009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42537764, + "CONCEPT_NAME" : "Embolism due to and following molar pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "737325005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440777, + "CONCEPT_NAME" : "Embolism following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "42070007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4327048, + "CONCEPT_NAME" : "Embryo transfer", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "75456002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110275, + "CONCEPT_NAME" : "Embryo transfer, intrauterine", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "58974", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4167089, + "CONCEPT_NAME" : "Emergency cesarean section", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "274130007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4127252, + "CONCEPT_NAME" : "Emergency lower segment cesarean section", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "236985002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42537021, + "CONCEPT_NAME" : "Emergency lower segment cesarean section with bilateral tubal ligation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "736118004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 46270991, + "CONCEPT_NAME" : "Emergency lower segment cesarean section with inverted T incision", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "709004006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4032767, + "CONCEPT_NAME" : "Emergency upper segment cesarean section", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "236986001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42536954, + "CONCEPT_NAME" : "Emergency upper segment cesarean section with bilateral tubal ligation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "736020003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439924, + "CONCEPT_NAME" : "Endocrine AND/OR metabolic disorder specific to the fetus OR newborn", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "22561006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4113994, + "CONCEPT_NAME" : "Endometritis following abortive pregnancy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "198820000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4066014, + "CONCEPT_NAME" : "Endometritis following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "172001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4074443, + "CONCEPT_NAME" : "Endoscopic freeing of adhesions of fallopian tube", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "176994003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4072852, + "CONCEPT_NAME" : "Endoscopic intrafallopian transfer of gamete", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "176996001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4072863, + "CONCEPT_NAME" : "Endoscopic transurethral ultrasound directed oocyte recovery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177038005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4074569, + "CONCEPT_NAME" : "Endoscopic transvesical oocyte recovery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177039002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 80478, + "CONCEPT_NAME" : "Engorgement of breasts associated with childbirth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55613002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4055924, + "CONCEPT_NAME" : "Entire placenta", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "181455002", + "DOMAIN_ID" : "Spec Anatomic Site", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Body Structure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42573076, + "CONCEPT_NAME" : "Enzootic abortion", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "352191000009102", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED Veterinary", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4272812, + "CONCEPT_NAME" : "Episioproctotomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63407004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004766, + "CONCEPT_NAME" : "Episiotomy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "73.6", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "3-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4311671, + "CONCEPT_NAME" : "Episiotomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "85548006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4046551, + "CONCEPT_NAME" : "Episiotomy care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "133907004", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4102125, + "CONCEPT_NAME" : "Episiotomy infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "300927001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110303, + "CONCEPT_NAME" : "Episiotomy or vaginal repair, by other than attending", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59300", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44513763, + "CONCEPT_NAME" : "Episiotomy to facilitate delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "R27.1", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "OPCS4", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530969, + "CONCEPT_NAME" : "Epithelioid trophoblastic tumor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609515005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4009644, + "CONCEPT_NAME" : "Erb-Duchenne palsy as birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "111465000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37109548, + "CONCEPT_NAME" : "Erb Duchenne palsy with neuroma due to birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "722901007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37109547, + "CONCEPT_NAME" : "Erb Duchenne palsy with neuropraxis due to traction birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "722900008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4345685, + "CONCEPT_NAME" : "Erythroderma neonatorum", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "240302002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4059478, + "CONCEPT_NAME" : "Estimated date of delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "161714006", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Observable Entity" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4128833, + "CONCEPT_NAME" : "Estimated date of delivery from last period", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "289206005", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Observable Entity" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3025994, + "CONCEPT_NAME" : "Estriol (E3) [Mass/volume] in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "2251-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3025455, + "CONCEPT_NAME" : "Estriol (E3).unconjugated [Mass/volume] in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "2250-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3005625, + "CONCEPT_NAME" : "Estriol (E3).unconjugated [Multiple of the median] adjusted in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "21264-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3003262, + "CONCEPT_NAME" : "Estriol (E3).unconjugated [Multiple of the median] in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "20466-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4070303, + "CONCEPT_NAME" : "Estriol measurement, serum", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "20563000", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4032621, + "CONCEPT_NAME" : "Evacuation of retained product of conception", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "236883005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4170151, + "CONCEPT_NAME" : "Evacuation of uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "275166002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40756825, + "CONCEPT_NAME" : "Evaluation of cervicovaginal fluid for specific amniotic fluid protein(s) (eg, placental alpha microglobulin-1 [PAMG-1], placental protein 12 [PP12], alpha-fetoprotein), qualitative, each specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84112", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4216768, + "CONCEPT_NAME" : "Exaggerated placental site", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "417150000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434758, + "CONCEPT_NAME" : "Exceptionally large at birth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "38206000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 81636, + "CONCEPT_NAME" : "Excessive fetal growth affecting management of mother", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "22173004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42537763, + "CONCEPT_NAME" : "Excessive hemorrhage due to and following ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "737323003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37206231, + "CONCEPT_NAME" : "Excessive hemorrhage due to and following illegally induced termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "785872000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37206226, + "CONCEPT_NAME" : "Excessive hemorrhage due to and following induced termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "785867009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37206230, + "CONCEPT_NAME" : "Excessive hemorrhage due to and following legally induced termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "785871007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4074426, + "CONCEPT_NAME" : "Excision of ectopic ovarian pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "176928008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40493226, + "CONCEPT_NAME" : "Excision of fallopian tube and surgical removal of ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "445912000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4074427, + "CONCEPT_NAME" : "Excision of ruptured ectopic tubal pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "176929000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004345, + "CONCEPT_NAME" : "Excision or destruction of lesion of fallopian tube", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "66.61", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37396132, + "CONCEPT_NAME" : "Exercise-induced hyperinsulinism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "715830008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4034017, + "CONCEPT_NAME" : "Exercise-related amenorrhea", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237119008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4065745, + "CONCEPT_NAME" : "Exhaustion during labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200164009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40479820, + "CONCEPT_NAME" : "Exposure to rubella in pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "444517009", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Event" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4147858, + "CONCEPT_NAME" : "Expression of retained products of conception", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "310602001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2213361, + "CONCEPT_NAME" : "Extended culture of oocyte(s)/embryo(s), 4-7 days", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "89272", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44790867, + "CONCEPT_NAME" : "Extended glucose tolerance test", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "244911000000109", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4226978, + "CONCEPT_NAME" : "External fetal monitor surveillance during multiple pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87663001", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004769, + "CONCEPT_NAME" : "External version assisting delivery", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "73.91", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4075176, + "CONCEPT_NAME" : "External version of breech", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177122001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4257043, + "CONCEPT_NAME" : "Extra-amniotic termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "408840008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44513450, + "CONCEPT_NAME" : "Extraction of menses", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "Q11.4", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "OPCS4", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4211824, + "CONCEPT_NAME" : "Extraperitoneal cesarean section", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57271003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 38001501, + "CONCEPT_NAME" : "Extreme immaturity or respiratory distress syndrome, neonate", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "790", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "DRG", + "CONCEPT_CLASS_ID" : "MS-DRG" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4173323, + "CONCEPT_NAME" : "Extremely low birth weight infant", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276612004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439128, + "CONCEPT_NAME" : "Extreme prematurity of infant", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276658003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 78210, + "CONCEPT_NAME" : "Face OR brow presentation of fetus", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "37762002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4071437, + "CONCEPT_NAME" : "Face presentation of fetus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "21882006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 377680, + "CONCEPT_NAME" : "Facial nerve injury as birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55712002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060261, + "CONCEPT_NAME" : "Factitious hypoglycemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16966009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4017134, + "CONCEPT_NAME" : "Failed attempted termination of pregnancy with amniotic fluid embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "11454006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 194694, + "CONCEPT_NAME" : "Failed attempted termination of pregnancy with complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59919008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 192380, + "CONCEPT_NAME" : "Failed attempted termination of pregnancy without complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90645002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4281684, + "CONCEPT_NAME" : "Failed attempted termination of pregnancy with urinary tract infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "66892003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45757775, + "CONCEPT_NAME" : "Failed attempted vaginal birth after previous cesarean section", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "38451000119105", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004751, + "CONCEPT_NAME" : "Failed forceps", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "73.3", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "3-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442613, + "CONCEPT_NAME" : "Failed forceps delivery", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "64646001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437622, + "CONCEPT_NAME" : "Failed mechanical induction", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90188009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441924, + "CONCEPT_NAME" : "Failed mechanical induction - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199694005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437341, + "CONCEPT_NAME" : "Failed mechanical induction with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199695006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438491, + "CONCEPT_NAME" : "Failed medical induction of labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "77854008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4196129, + "CONCEPT_NAME" : "Failed minimum access approach", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "313004003", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434436, + "CONCEPT_NAME" : "Failed trial of labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "23332002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443521, + "CONCEPT_NAME" : "Failed trial of labor - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "413339006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4298980, + "CONCEPT_NAME" : "Failure of cervical dilation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7768008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45771070, + "CONCEPT_NAME" : "Failure of cervical dilation due to primary uterine inertia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "88201000119101", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 81088, + "CONCEPT_NAME" : "Failure of lactation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6995000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36715473, + "CONCEPT_NAME" : "Failure of lactation with attachment difficulty", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "721162003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 78224, + "CONCEPT_NAME" : "Failure of lactation with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200436007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4157164, + "CONCEPT_NAME" : "Failure of transfer of passive immunity in newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "370539007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4127892, + "CONCEPT_NAME" : "Fallopian replacement of egg with delayed insemination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "236913003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4001541, + "CONCEPT_NAME" : "Fallopian tube excision", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "120053002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4279380, + "CONCEPT_NAME" : "False knot of umbilical cord", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36697001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4062557, + "CONCEPT_NAME" : "False labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199047001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4089691, + "CONCEPT_NAME" : "Familial neonatal seizures", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "279953009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4156660, + "CONCEPT_NAME" : "Fasting blood glucose measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "271062006", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3035250, + "CONCEPT_NAME" : "Fasting glucose [Mass/volume] in Capillary blood by Glucometer", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "41604-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3037110, + "CONCEPT_NAME" : "Fasting glucose [Mass/volume] in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1558-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40766113, + "CONCEPT_NAME" : "Fasting glucose [Mass/volume] in Urine", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63382-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3037187, + "CONCEPT_NAME" : "Fasting glucose [Mass/volume] in Venous blood", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1557-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 46235168, + "CONCEPT_NAME" : "Fasting glucose [Moles/volume] in Blood", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "76629-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3017703, + "CONCEPT_NAME" : "Fasting glucose [Moles/volume] in Capillary blood by Glucometer", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14770-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3018251, + "CONCEPT_NAME" : "Fasting glucose [Moles/volume] in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14771-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 46236950, + "CONCEPT_NAME" : "Fasting glucose [Moles/volume] in Serum, Plasma or Blood", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "77145-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3041651, + "CONCEPT_NAME" : "Fasting glucose [Moles/volume] in Urine", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "53114-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3025791, + "CONCEPT_NAME" : "Fasting glucose [Presence] in Urine", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16913-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3002574, + "CONCEPT_NAME" : "Fasting glucose [Presence] in Urine by Test strip", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6764-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4320478, + "CONCEPT_NAME" : "Fasting hypoglycemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6974005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3655214, + "CONCEPT_NAME" : "Fat embolism due to and following ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "860687003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3655213, + "CONCEPT_NAME" : "Fat embolism due to and following molar pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "860686007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4310205, + "CONCEPT_NAME" : "Fecal clinitest", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "391330005", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4250134, + "CONCEPT_NAME" : "Fecal glucose level", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "407702002", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060255, + "CONCEPT_NAME" : "Feeding intention - breast", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169643005", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433315, + "CONCEPT_NAME" : "Feeding problems in newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72552008", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3173127, + "CONCEPT_NAME" : "Female periurethral laceration", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6950001000004109", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "Nebraska Lexicon", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530900, + "CONCEPT_NAME" : "Fetal Alcohol Spectrum Disorder", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609437000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4004785, + "CONCEPT_NAME" : "Fetal alcohol syndrome", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "205788004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4150653, + "CONCEPT_NAME" : "Fetal anatomy study", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "271442007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439923, + "CONCEPT_NAME" : "Fetal and newborn blood disorders", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206509003", + "DOMAIN_ID" : "Metadata", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Navi Concept" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 201083, + "CONCEPT_NAME" : "Fetal AND/OR placental disorder affecting management of mother", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "22753004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43022052, + "CONCEPT_NAME" : "Fetal anemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "462166006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44790240, + "CONCEPT_NAME" : "Fetal ascites scan", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "228701000000101", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3026620, + "CONCEPT_NAME" : "Fetal Biophysical profile.body movement US", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "11631-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Clinical Observation" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3028281, + "CONCEPT_NAME" : "Fetal Biophysical profile.sum Derived", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "11634-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Clinical Observation" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2211758, + "CONCEPT_NAME" : "Fetal biophysical profile; with non-stress testing", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "76818", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2211759, + "CONCEPT_NAME" : "Fetal biophysical profile; without non-stress testing", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "76819", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 79146, + "CONCEPT_NAME" : "Fetal blood loss", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206390008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4196670, + "CONCEPT_NAME" : "Fetal blood loss from vasa previa", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "50544004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37310907, + "CONCEPT_NAME" : "Fetal cleft lip", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63061000119104", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43528050, + "CONCEPT_NAME" : "Fetal congenital abnormalities, biochemical assays of five analytes (AFP, uE3, total hCG, hyperglycosylated hCG, DIA) utilizing maternal serum, algorithm reported as a risk score", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "81512", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43527962, + "CONCEPT_NAME" : "Fetal congenital abnormalities, biochemical assays of four analytes (AFP, uE3, hCG [any form], DIA) utilizing maternal serum, algorithm reported as a risk score (may include additional results from previous biochemical testing)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "81511", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43527961, + "CONCEPT_NAME" : "Fetal congenital abnormalities, biochemical assays of three analytes (AFP, uE3, hCG [any form]), utilizing maternal serum, algorithm reported as a risk score", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "81510", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43527960, + "CONCEPT_NAME" : "Fetal congenital abnormalities, biochemical assays of three proteins (PAPP-A, hCG [any form], DIA), utilizing maternal serum, algorithm reported as a risk score", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "81509", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43527959, + "CONCEPT_NAME" : "Fetal congenital abnormalities, biochemical assays of two proteins (PAPP-A, hCG [any form]), utilizing maternal serum, algorithm reported as a risk score", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "81508", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110283, + "CONCEPT_NAME" : "Fetal contraction stress test", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59020", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3001951, + "CONCEPT_NAME" : "Fetal Crown Rump length US", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "11957-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Clinical Observation" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4079844, + "CONCEPT_NAME" : "Fetal death", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276507005", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Event" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 75605, + "CONCEPT_NAME" : "Fetal death, affecting management of mother", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14022007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4071603, + "CONCEPT_NAME" : "Fetal death due to prelabor anoxia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206258000", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Event" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 436228, + "CONCEPT_NAME" : "Fetal death due to termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "67313008", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Event" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442338, + "CONCEPT_NAME" : "Fetal death from asphyxia AND/OR anoxia before onset of labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "44174001", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Event" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443695, + "CONCEPT_NAME" : "Fetal death from asphyxia AND/OR anoxia during labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1762004", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Event" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4178809, + "CONCEPT_NAME" : "Fetal disorder secondary to chemicals", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "363127005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 80165, + "CONCEPT_NAME" : "Fetal disproportion", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "31805001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 73268, + "CONCEPT_NAME" : "Fetal distress affecting management of mother", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12867002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37311827, + "CONCEPT_NAME" : "Fetal distress due to augmentation of labor with oxytocin", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "816967008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435369, + "CONCEPT_NAME" : "Fetal distress, in liveborn infant", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90562004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4216551, + "CONCEPT_NAME" : "Fetal dystocia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7245003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4334808, + "CONCEPT_NAME" : "Fetal echocardiography", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "433235006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4034866, + "CONCEPT_NAME" : "Fetal echocardiography, real time with image documentation (2D) with M-mode recording", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15282006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530902, + "CONCEPT_NAME" : "Fetal effect of maternal toxemia", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "609440000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004809, + "CONCEPT_NAME" : "Fetal EKG (scalp)", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "75.32", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45757059, + "CONCEPT_NAME" : "Fetal exposure to teratogenic substance", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "103031000119101", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4203009, + "CONCEPT_NAME" : "Fetal exsanguination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "52977000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2212334, + "CONCEPT_NAME" : "Fetal fibronectin, cervicovaginal secretions, semi-quantitative", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "82731", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37310859, + "CONCEPT_NAME" : "Fetal gastrointestinal abnormality", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "121801000119105", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4210896, + "CONCEPT_NAME" : "Fetal gestational age", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57036006", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Observable Entity" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4266763, + "CONCEPT_NAME" : "Fetal gestation at delivery - finding", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "364739001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 80204, + "CONCEPT_NAME" : "Fetal growth restriction", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "22033007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4084439, + "CONCEPT_NAME" : "Fetal heart monitoring", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "281568006", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3006722, + "CONCEPT_NAME" : "Fetal Heart Narrative Activity US", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "11616-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Clinical Observation" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437098, + "CONCEPT_NAME" : "Fetal intrauterine distress first noted during labor AND/OR delivery in liveborn infant", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7996008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433311, + "CONCEPT_NAME" : "Fetal intrauterine distress noted before labor in liveborn infant", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "74796005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36716504, + "CONCEPT_NAME" : "Fetal intrauterine intestinal perforation due to in utero intraluminal obstruction", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "722532002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36716503, + "CONCEPT_NAME" : "Fetal intrauterine intestinal perforation due to in utero volvulus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "722531009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42538545, + "CONCEPT_NAME" : "Fetal intrauterine intestinal perforation with congenital atresia of intestinal tract", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "762273001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42538544, + "CONCEPT_NAME" : "Fetal intrauterine intestinal perforation with congenital stenosis of intestinal tract", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "762272006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36715840, + "CONCEPT_NAME" : "Fetal intrauterine perforation of intestine", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "721613002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36715841, + "CONCEPT_NAME" : "Fetal intrauterine perforation of stomach", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "721614008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2212438, + "CONCEPT_NAME" : "Fetal lung maturity assessment; fluorescence polarization", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "83663", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2212439, + "CONCEPT_NAME" : "Fetal lung maturity assessment; lamellar body density", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "83664", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2212436, + "CONCEPT_NAME" : "Fetal lung maturity assessment; lecithin sphingomyelin (L/S) ratio", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "83661", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3032604, + "CONCEPT_NAME" : "Fetal lung maturity in Amniotic fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "35084-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3050978, + "CONCEPT_NAME" : "Fetal lung maturity [Interpretation] in Amniotic fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "47226-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 201366, + "CONCEPT_NAME" : "Fetal-maternal hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "71028008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 193535, + "CONCEPT_NAME" : "Fetal-maternal hemorrhage - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199577000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 196757, + "CONCEPT_NAME" : "Fetal-maternal hemorrhage with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199578005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44790237, + "CONCEPT_NAME" : "Fetal measurement scan", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "232671000000100", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110287, + "CONCEPT_NAME" : "Fetal monitoring during labor by consulting physician (ie, non-attending physician) with written report; interpretation only", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59051", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110286, + "CONCEPT_NAME" : "Fetal monitoring during labor by consulting physician (ie, non-attending physician) with written report; supervision and interpretation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59050", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4146847, + "CONCEPT_NAME" : "Fetal monitoring scalp injury", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "268822004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4145315, + "CONCEPT_NAME" : "Fetal movements felt", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "268470003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40759953, + "CONCEPT_NAME" : "Fetal Narrative Movement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "56834-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Clinical Observation" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3003857, + "CONCEPT_NAME" : "Fetal Narrative Sex US", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "11883-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Clinical Observation" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110284, + "CONCEPT_NAME" : "Fetal non-stress test", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59025", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4271327, + "CONCEPT_NAME" : "Fetal OR intrauterine acidosis first noted during labor AND/OR delivery in liveborn infant", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "63055005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061924, + "CONCEPT_NAME" : "Fetal OR intrauterine anoxia AND/OR hypoxia noted before labor in liveborn infant", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "17082004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4281385, + "CONCEPT_NAME" : "Fetal OR intrauterine asphyxia, not clear if noted before OR after onset of labor in liveborn infant", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "66231000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4142900, + "CONCEPT_NAME" : "Fetal OR intrauterine asphyxia noted before labor in liveborn infant", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "33721007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4314282, + "CONCEPT_NAME" : "Fetal OR intrauterine hypercapnia first noted during labor AND/OR delivery in liveborn infant", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "86664001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438541, + "CONCEPT_NAME" : "Fetal or neonatal effect of abnormality of chorion", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "75592000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36716530, + "CONCEPT_NAME" : "Fetal or neonatal effect of abnormal maternal chemistry", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "722564009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434483, + "CONCEPT_NAME" : "Fetal or neonatal effect of abnormal uterine contraction", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "63254003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4148097, + "CONCEPT_NAME" : "Fetal or neonatal effect of abruptio placentae", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "268803008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433309, + "CONCEPT_NAME" : "Fetal or neonatal effect of alcohol transmitted via placenta and/or breast milk", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "36558000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44784300, + "CONCEPT_NAME" : "Fetal or neonatal effect of anti-infective agent transmitted via placenta", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "698402008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432429, + "CONCEPT_NAME" : "Fetal or neonatal effect of anti-infective agent transmitted via placenta and/or breast milk", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64415008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439129, + "CONCEPT_NAME" : "Fetal or neonatal effect of breech delivery and extraction", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "4787007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439135, + "CONCEPT_NAME" : "Fetal or neonatal effect of cesarean delivery", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "50968003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4071485, + "CONCEPT_NAME" : "Fetal or neonatal effect of cesarean section", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206123007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 436518, + "CONCEPT_NAME" : "Fetal or neonatal effect of chorioamnionitis", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "55730009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36716552, + "CONCEPT_NAME" : "Fetal or neonatal effect of chorionic villous sampling", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "722592004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444464, + "CONCEPT_NAME" : "Fetal or neonatal effect of chronic maternal circulatory disease", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "9069004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 436220, + "CONCEPT_NAME" : "Fetal or neonatal effect of chronic maternal respiratory disease", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "1363007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435927, + "CONCEPT_NAME" : "Fetal or neonatal effect of complication of labor and/or delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "76012002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36717572, + "CONCEPT_NAME" : "Fetal or neonatal effect of complications of fetal surgery", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "722594003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441682, + "CONCEPT_NAME" : "Fetal or neonatal effect of compression of umbilical cord", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86629005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440203, + "CONCEPT_NAME" : "Fetal or neonatal effect of condition of umbilical cord", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "81402009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437975, + "CONCEPT_NAME" : "Fetal or neonatal effect of delivery by vacuum extractor", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "73890002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44784362, + "CONCEPT_NAME" : "Fetal or neonatal effect of disproportion during labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "698497008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435063, + "CONCEPT_NAME" : "Fetal or neonatal effect of ectopic pregnancy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "69693005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4070412, + "CONCEPT_NAME" : "Fetal or neonatal effect of entanglement of cord", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206090002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36716553, + "CONCEPT_NAME" : "Fetal or neonatal effect of fetal blood sampling", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "722593009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435918, + "CONCEPT_NAME" : "Fetal or neonatal effect of forceps delivery", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "28627008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4047718, + "CONCEPT_NAME" : "Fetal or neonatal effect of forceps delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206121009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4070425, + "CONCEPT_NAME" : "Fetal or neonatal effect of hypertonic labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206138008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4070426, + "CONCEPT_NAME" : "Fetal or neonatal effect of hypertonic uterine dysfunction", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206139000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435917, + "CONCEPT_NAME" : "Fetal or neonatal effect of incompetent cervix", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "70898005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42538699, + "CONCEPT_NAME" : "Fetal or neonatal effect of injury of umbilical cord", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "762465007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4070413, + "CONCEPT_NAME" : "Fetal or neonatal effect of knot in cord", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206091003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4048006, + "CONCEPT_NAME" : "Fetal or neonatal effect of long cord", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206100009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44784412, + "CONCEPT_NAME" : "Fetal or neonatal effect of malposition during labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "698554000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 78563, + "CONCEPT_NAME" : "Fetal or neonatal effect of malpresentation before labor", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "30409006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 76521, + "CONCEPT_NAME" : "Fetal or neonatal effect of malpresentation, malposition and/or disproportion during labor and/or delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "5984000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43531708, + "CONCEPT_NAME" : "Fetal or neonatal effect of maternal alcohol addiction", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609438005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44784346, + "CONCEPT_NAME" : "Fetal or neonatal effect of maternal analgesia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "698481003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44784342, + "CONCEPT_NAME" : "Fetal or neonatal effect of maternal anesthesia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "698480002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437976, + "CONCEPT_NAME" : "Fetal or neonatal effect of maternal anesthesia and/or analgesia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "82719008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4048130, + "CONCEPT_NAME" : "Fetal or neonatal effect of maternal exposure to environmental chemical substances", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206156008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36716526, + "CONCEPT_NAME" : "Fetal or neonatal effect of maternal gestational edema and proteinuria without hypertension", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "722559005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433027, + "CONCEPT_NAME" : "Fetal or neonatal effect of maternal hypertensive disease", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "268794002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 436219, + "CONCEPT_NAME" : "Fetal or neonatal effect of maternal infection", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "206005002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438868, + "CONCEPT_NAME" : "Fetal or neonatal effect of maternal injury", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "25932007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434744, + "CONCEPT_NAME" : "Fetal or neonatal effect of maternal medical problem", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "206002004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434745, + "CONCEPT_NAME" : "Fetal or neonatal effect of maternal nutritional disorder", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "67743008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4047585, + "CONCEPT_NAME" : "Fetal or neonatal effect of maternal nutritional disorder", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "206011004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36717570, + "CONCEPT_NAME" : "Fetal or neonatal effect of maternal obesity with adult body mass index 30 or greater but less than 40", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "722562008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36716529, + "CONCEPT_NAME" : "Fetal or neonatal effect of maternal obesity with adult body mass index equal to or greater than 40", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "722563003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36716528, + "CONCEPT_NAME" : "Fetal or neonatal effect of maternal overweight or obesity", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "722561001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36716527, + "CONCEPT_NAME" : "Fetal or neonatal effect of maternal periodontal disease", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "722560000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4118056, + "CONCEPT_NAME" : "Fetal or neonatal effect of maternal premature rupture of membrane", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206037001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435062, + "CONCEPT_NAME" : "Fetal or neonatal effect of maternal renal and/or urinary tract disease", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "81804001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44782462, + "CONCEPT_NAME" : "Fetal or neonatal effect of maternal renal disease", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "698552001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36716731, + "CONCEPT_NAME" : "Fetal or neonatal effect of maternal respiratory disease", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "722896005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4047586, + "CONCEPT_NAME" : "Fetal or neonatal effect of maternal surgical operation", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "206013001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44784411, + "CONCEPT_NAME" : "Fetal or neonatal effect of maternal urinary disease", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "698553006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440211, + "CONCEPT_NAME" : "Fetal or neonatal effect of morphologic abnormality of placenta", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87045002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441680, + "CONCEPT_NAME" : "Fetal or neonatal effect of multiple pregnancy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "18001006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44784612, + "CONCEPT_NAME" : "Fetal or neonatal effect of narcotic transmitted via breast milk", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "698787003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44784611, + "CONCEPT_NAME" : "Fetal or neonatal effect of narcotic transmitted via placenta", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "698786007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 436517, + "CONCEPT_NAME" : "Fetal or neonatal effect of narcotic transmitted via placenta and/or breast milk", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "78302009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440829, + "CONCEPT_NAME" : "Fetal or neonatal effect of noxious influences transmitted via placenta or breast milk", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206153000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437088, + "CONCEPT_NAME" : "Fetal or neonatal effect of oligohydramnios", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "65599008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4047595, + "CONCEPT_NAME" : "Fetal or neonatal effect of placental damage caused by cesarean section", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206070006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44784305, + "CONCEPT_NAME" : "Fetal or neonatal effect of placental hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "698408007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44782664, + "CONCEPT_NAME" : "Fetal or neonatal effect of placental separation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "698407002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 201681, + "CONCEPT_NAME" : "Fetal or neonatal effect of placental separation and/or hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "68961008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441122, + "CONCEPT_NAME" : "Fetal or neonatal effect of placental transfusion syndrome", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "63654005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 201410, + "CONCEPT_NAME" : "Fetal or neonatal effect of placenta previa", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "62048002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4176131, + "CONCEPT_NAME" : "Fetal or neonatal effect of placentitis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "5074003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437668, + "CONCEPT_NAME" : "Fetal or neonatal effect of polyhydramnios", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "66215008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433310, + "CONCEPT_NAME" : "Fetal or neonatal effect of precipitate delivery", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "82587000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433018, + "CONCEPT_NAME" : "Fetal or neonatal effect of prolapsed cord", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206087008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4048003, + "CONCEPT_NAME" : "Fetal or neonatal effect of short cord", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206095007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441684, + "CONCEPT_NAME" : "Fetal or neonatal effect of surgical operation on mother", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "56192002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4048004, + "CONCEPT_NAME" : "Fetal or neonatal effect of thrombosis of umbilical cord", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206096008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4047711, + "CONCEPT_NAME" : "Fetal or neonatal effect of torsion of cord", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206092005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442148, + "CONCEPT_NAME" : "Fetal or neonatal effect of toxic substance transmitted via placenta and/or breast milk", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "89873008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4077736, + "CONCEPT_NAME" : "Fetal or neonatal effect of transverse lie", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "18909006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4047719, + "CONCEPT_NAME" : "Fetal or neonatal effect of vacuum extraction delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206122002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4070414, + "CONCEPT_NAME" : "Fetal or neonatal effect of varices of cord", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206097004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4047712, + "CONCEPT_NAME" : "Fetal or neonatal effect of vasa previa of cord", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206099001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4048005, + "CONCEPT_NAME" : "Fetal or neonatal effect of velamentous insertion of cord", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206098009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433319, + "CONCEPT_NAME" : "Fetal or neonatal effects of maternal complication of pregnancy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "68983007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432734, + "CONCEPT_NAME" : "Fetal OR neonatal hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "111467008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36716545, + "CONCEPT_NAME" : "Fetal or neonatal intracerebral non-traumatic hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "722582007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36716543, + "CONCEPT_NAME" : "Fetal or neonatal intraventricular non-traumatic hemorrhage grade 4", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "722580004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4328890, + "CONCEPT_NAME" : "Fetal OR neonatal jaundice from drugs AND/OR toxins transmitted from mother", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "22067002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4230351, + "CONCEPT_NAME" : "Fetal OR neonatal jaundice from infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "89062002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4067525, + "CONCEPT_NAME" : "Fetal OR neonatal jaundice from polycythemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "21404001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4096143, + "CONCEPT_NAME" : "Fetal OR neonatal jaundice from swallowed maternal blood", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26291002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36716546, + "CONCEPT_NAME" : "Fetal or neonatal non-traumatic hemorrhage of subarachnoid space of brain", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "722583002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36716547, + "CONCEPT_NAME" : "Fetal or neonatal non-traumatic hemorrhage of subdural space of brain", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "722584008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36716544, + "CONCEPT_NAME" : "Fetal or neonatal non-traumatic intraventricular hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "722581000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36717220, + "CONCEPT_NAME" : "Fetal or neonatal vitamin B12 deficiency due to maternal vitamin B12 deficiency", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "722597005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4262288, + "CONCEPT_NAME" : "Fetal RBC determination", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "35793002", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110285, + "CONCEPT_NAME" : "Fetal scalp blood sampling", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59030", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015304, + "CONCEPT_NAME" : "Fetal size accords with dates", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169732009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4318554, + "CONCEPT_NAME" : "Fetal virilism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "95622006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4151412, + "CONCEPT_NAME" : "Fetoplacental hormone measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "269851009", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 436804, + "CONCEPT_NAME" : "Fetus OR newborn affected by premature rupture of membranes", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "38511004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 81360, + "CONCEPT_NAME" : "Fetus papyraceous", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90127001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4047725, + "CONCEPT_NAME" : "Fetus small-for-dates with signs of malnutrition", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206164002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442827, + "CONCEPT_NAME" : "Fetus with central nervous system malformation with antenatal problem", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "199520001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 72697, + "CONCEPT_NAME" : "Fetus with chromosomal abnormality - delivered", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "199526007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 80463, + "CONCEPT_NAME" : "Fetus with chromosomal abnormality with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199527003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4064277, + "CONCEPT_NAME" : "Fetus with damage due to intrauterine contraceptive device", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199558002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4063296, + "CONCEPT_NAME" : "Fetus with damage due to intrauterine contraceptive device - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199560000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4063297, + "CONCEPT_NAME" : "Fetus with damage due to intrauterine contraceptive device with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199561001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060672, + "CONCEPT_NAME" : "Fetus with drug damage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199547006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4064177, + "CONCEPT_NAME" : "Fetus with drug damage - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199549009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4064178, + "CONCEPT_NAME" : "Fetus with drug damage with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199550009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4064169, + "CONCEPT_NAME" : "Fetus with hereditary disease", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199531009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4064171, + "CONCEPT_NAME" : "Fetus with hereditary disease - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199533007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4064172, + "CONCEPT_NAME" : "Fetus with hereditary disease with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199534001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4143204, + "CONCEPT_NAME" : "Fetus with viral damage via mother", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "267254000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4064174, + "CONCEPT_NAME" : "Fetus with viral damage via mother - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199538003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4064175, + "CONCEPT_NAME" : "Fetus with viral damage via mother with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199539006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4129181, + "CONCEPT_NAME" : "Fibrinolysis - postpartum", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237336007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4171110, + "CONCEPT_NAME" : "Fifth day fits", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276597004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4306064, + "CONCEPT_NAME" : "Fimbrial extraction of tubal pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "387616000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4100257, + "CONCEPT_NAME" : "Fimbriectomy of fallopian tube", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25344002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4200202, + "CONCEPT_NAME" : "Finding of Apgar score", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "302083008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4199559, + "CONCEPT_NAME" : "Finding of appearance of umbilical stump", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "302084002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4201383, + "CONCEPT_NAME" : "Finding of birth length", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "302082003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4103472, + "CONCEPT_NAME" : "Finding of birth weight centile", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "301332001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4126735, + "CONCEPT_NAME" : "Finding of color of umbilical stump", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "289324005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4090743, + "CONCEPT_NAME" : "Finding of consistency of lochia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "249213009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 195877, + "CONCEPT_NAME" : "Finding of gravid uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "289675001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4116804, + "CONCEPT_NAME" : "Finding of head circumference", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "301338002", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4124634, + "CONCEPT_NAME" : "Finding of involution of uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "289750007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432441, + "CONCEPT_NAME" : "Finding of length of gestation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "366323009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4116805, + "CONCEPT_NAME" : "Finding of measures of head circumference", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "301339005", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4199560, + "CONCEPT_NAME" : "Finding of moistness of umbilical stump", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "302085001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439156, + "CONCEPT_NAME" : "Finding of neonate", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "118188004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4126738, + "CONCEPT_NAME" : "Finding of odor of umbilical cord stump", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "289328008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4201382, + "CONCEPT_NAME" : "Finding of state at birth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "302079008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4126409, + "CONCEPT_NAME" : "Finding of umbilical cord clamp", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "289334001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4090747, + "CONCEPT_NAME" : "Finding of umbilical stump", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "249229001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 197343, + "CONCEPT_NAME" : "First degree perineal laceration", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57759005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 192978, + "CONCEPT_NAME" : "First degree perineal tear during delivery - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199916005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 199088, + "CONCEPT_NAME" : "First degree perineal tear during delivery with postnatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199917001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3657563, + "CONCEPT_NAME" : "First trimester bleeding", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1323351000000104", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4239938, + "CONCEPT_NAME" : "First trimester pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57630001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4147431, + "CONCEPT_NAME" : "Flaccid newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "34761004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4096531, + "CONCEPT_NAME" : "Flaccid uterus after delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "249202006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4140071, + "CONCEPT_NAME" : "Floppy infant syndrome", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "33010005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42597080, + "CONCEPT_NAME" : "Foaling paralysis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "318771000009109", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED Veterinary", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37399364, + "CONCEPT_NAME" : "Folinic acid responsive seizure syndrome", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "717276003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110274, + "CONCEPT_NAME" : "Follicle puncture for oocyte retrieval, any method", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "58970", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4217642, + "CONCEPT_NAME" : "Footling breech delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72492007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4075187, + "CONCEPT_NAME" : "Forceps cephalic delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177161009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4114637, + "CONCEPT_NAME" : "Forceps delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "302383004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435022, + "CONCEPT_NAME" : "Forceps delivery - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200130005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4032761, + "CONCEPT_NAME" : "Forceps delivery, face to pubes", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "236977006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4324549, + "CONCEPT_NAME" : "Forceps delivery with rotation of fetal head", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "71166009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004711, + "CONCEPT_NAME" : "Forceps rotation of fetal head", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72.4", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "3-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004702, + "CONCEPT_NAME" : "Forceps, vacuum, and breech delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "2-dig nonbill code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 198495, + "CONCEPT_NAME" : "Fourth degree perineal laceration", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "399031001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4059969, + "CONCEPT_NAME" : "Fourth degree perineal laceration involving anal mucosa", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16950007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4143634, + "CONCEPT_NAME" : "Fourth degree perineal laceration involving rectal mucosa", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "34262005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 194429, + "CONCEPT_NAME" : "Fourth degree perineal tear during delivery - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199934009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 198496, + "CONCEPT_NAME" : "Fourth degree perineal tear during delivery with postnatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199935005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 81685, + "CONCEPT_NAME" : "Fracture of clavicle due to birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206209004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4071595, + "CONCEPT_NAME" : "Fracture of femur due to birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206213006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4070316, + "CONCEPT_NAME" : "Fracture of long bone, as birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "20596003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36716537, + "CONCEPT_NAME" : "Fracture of mandible due to birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "722573001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4048135, + "CONCEPT_NAME" : "Fracture of skull due to birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206215004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4273394, + "CONCEPT_NAME" : "Fracture of spine due to birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64728002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4244672, + "CONCEPT_NAME" : "Frank breech delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "38479009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4096237, + "CONCEPT_NAME" : "Free beta human chorionic gonadotrophin measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "250658009", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44807244, + "CONCEPT_NAME" : "Free beta human chorionic gonadotrophin multiple of median measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "816021000000107", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4034159, + "CONCEPT_NAME" : "Fresh stillbirth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237365001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4032737, + "CONCEPT_NAME" : "Frozen embryo transfer", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "236894009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2721243, + "CONCEPT_NAME" : "Frozen embryo transfer procedure cancelled before transfer, case rate", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "S4018", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2721241, + "CONCEPT_NAME" : "Frozen in vitro fertilization cycle, case rate", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "S4016", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4296686, + "CONCEPT_NAME" : "Full postnatal examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "384635005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4003230, + "CONCEPT_NAME" : "Functional hyperinsulinism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12002009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4104821, + "CONCEPT_NAME" : "Furuncle of umbilicus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "29199007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4338674, + "CONCEPT_NAME" : "Galactocele associated with childbirth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87840008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4068274, + "CONCEPT_NAME" : "Galactocele not associated with childbirth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "17413005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 74716, + "CONCEPT_NAME" : "Galactorrhea associated with childbirth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "71639005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061187, + "CONCEPT_NAME" : "Galactorrhea due to non-obstetric cause", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198115002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4066260, + "CONCEPT_NAME" : "Galactorrhea in pregnancy and the puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200444007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 74440, + "CONCEPT_NAME" : "Galactorrhea in pregnancy and the puerperium - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200446009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 74717, + "CONCEPT_NAME" : "Galactorrhea in pregnancy and the puerperium - delivered with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200447000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 76772, + "CONCEPT_NAME" : "Galactorrhea in pregnancy and the puerperium with antenatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200448005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443328, + "CONCEPT_NAME" : "Galactorrhea in pregnancy and the puerperium with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200449002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 79884, + "CONCEPT_NAME" : "Galactorrhea not associated with childbirth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "78622004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4127104, + "CONCEPT_NAME" : "Gamete intrafallopian transfer", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "236912008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4072421, + "CONCEPT_NAME" : "Gamete intrauterine transfer", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "176843009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110276, + "CONCEPT_NAME" : "Gamete, zygote, or embryo intrafallopian transfer, any method", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "58976", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4172870, + "CONCEPT_NAME" : "Gastritis of newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276527006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442777, + "CONCEPT_NAME" : "Generalized infection during labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "66844003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 77052, + "CONCEPT_NAME" : "Generally contracted pelvis - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199405005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 76750, + "CONCEPT_NAME" : "Generally contracted pelvis with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199406006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061522, + "CONCEPT_NAME" : "General practitioner unit delivery booking", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169622009", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4091200, + "CONCEPT_NAME" : "Genital tear resulting from childbirth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "249219008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 196177, + "CONCEPT_NAME" : "Genital tract AND/OR pelvic infection following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "111425004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45768620, + "CONCEPT_NAME" : "Genital tract infection in puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "707089008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 77340, + "CONCEPT_NAME" : "Genitourinary tract infection in pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "267204006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 81357, + "CONCEPT_NAME" : "Genitourinary tract infection in pregnancy - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199106001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 80778, + "CONCEPT_NAME" : "Genitourinary tract infection in pregnancy - delivered with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199107005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 74415, + "CONCEPT_NAME" : "Genitourinary tract infection in pregnancy - not delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199108000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4178165, + "CONCEPT_NAME" : "Gestation 14 - 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428567001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181468, + "CONCEPT_NAME" : "Gestation 9- 13 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428930004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4173324, + "CONCEPT_NAME" : "Gestation abnormality", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276614003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3048230, + "CONCEPT_NAME" : "Gestational age in weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "49051-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Clinical Observation" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3045991, + "CONCEPT_NAME" : "Gestational age of fetus by Amniocentesis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "33901-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40481315, + "CONCEPT_NAME" : "Gestational age unknown", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "441924001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3036844, + "CONCEPT_NAME" : "Gestational age US composite estimate", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "11888-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Clinical Observation" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4221190, + "CONCEPT_NAME" : "Gestational choriocarcinoma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "417570003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3183244, + "CONCEPT_NAME" : "Gestational diabetes during pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "5620001000004106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "Nebraska Lexicon", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4024659, + "CONCEPT_NAME" : "Gestational diabetes mellitus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "11687002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4326434, + "CONCEPT_NAME" : "Gestational diabetes mellitus class A-1", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "75022004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4263902, + "CONCEPT_NAME" : "Gestational diabetes mellitus class A-2", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46894009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37018765, + "CONCEPT_NAME" : "Gestational diabetes mellitus complicating pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40801000119106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443214, + "CONCEPT_NAME" : "Gestational edema", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237285000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442565, + "CONCEPT_NAME" : "Gestational edema without hypertension", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "77376005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4058113, + "CONCEPT_NAME" : "Gestational edema with proteinuria", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199141002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4214186, + "CONCEPT_NAME" : "Gestational trophoblastic disease", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "416402001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530970, + "CONCEPT_NAME" : "Gestational trophoblastic lesion", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609516006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530973, + "CONCEPT_NAME" : "Gestational trophoblastic neoplasia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609519004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181162, + "CONCEPT_NAME" : "Gestation greater than 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429715006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4324063, + "CONCEPT_NAME" : "Gestation less than 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428566005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438542, + "CONCEPT_NAME" : "Gestation less than 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313178001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45770261, + "CONCEPT_NAME" : "Gestation less than 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "925561000000100", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4322726, + "CONCEPT_NAME" : "Gestation less than 9 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428058009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4242241, + "CONCEPT_NAME" : "Gestation period, 10 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "38039008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4174506, + "CONCEPT_NAME" : "Gestation period, 11 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "50367001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4197245, + "CONCEPT_NAME" : "Gestation period, 12 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "79992004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4266517, + "CONCEPT_NAME" : "Gestation period, 13 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "62333002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4248725, + "CONCEPT_NAME" : "Gestation period, 14 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72846000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4283690, + "CONCEPT_NAME" : "Gestation period, 15 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6678005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4049621, + "CONCEPT_NAME" : "Gestation period, 16 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15633004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4277749, + "CONCEPT_NAME" : "Gestation period, 17 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65683006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4097608, + "CONCEPT_NAME" : "Gestation period, 18 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25026004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181751, + "CONCEPT_NAME" : "Gestation period, 19 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54318006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4337360, + "CONCEPT_NAME" : "Gestation period, 1 week", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87178007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4051642, + "CONCEPT_NAME" : "Gestation period, 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "23464008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4185780, + "CONCEPT_NAME" : "Gestation period, 21 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "41438001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4274955, + "CONCEPT_NAME" : "Gestation period, 22 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65035007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336226, + "CONCEPT_NAME" : "Gestation period, 23 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86883006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439922, + "CONCEPT_NAME" : "Gestation period, 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313179009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435640, + "CONCEPT_NAME" : "Gestation period, 25 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72544005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444023, + "CONCEPT_NAME" : "Gestation period, 26 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48688005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432430, + "CONCEPT_NAME" : "Gestation period, 27 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46906003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444461, + "CONCEPT_NAME" : "Gestation period, 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90797000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444417, + "CONCEPT_NAME" : "Gestation period, 29 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45139008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4220085, + "CONCEPT_NAME" : "Gestation period, 2 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "82118009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434484, + "CONCEPT_NAME" : "Gestation period, 30 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "71355009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433864, + "CONCEPT_NAME" : "Gestation period, 31 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64920003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442558, + "CONCEPT_NAME" : "Gestation period, 32 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7707000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441678, + "CONCEPT_NAME" : "Gestation period, 33 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "78395001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443874, + "CONCEPT_NAME" : "Gestation period, 34 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13763000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444267, + "CONCEPT_NAME" : "Gestation period, 35 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84132007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438543, + "CONCEPT_NAME" : "Gestation period, 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57907009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442355, + "CONCEPT_NAME" : "Gestation period, 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43697006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443871, + "CONCEPT_NAME" : "Gestation period, 38 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13798002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435655, + "CONCEPT_NAME" : "Gestation period, 39 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80487005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4326232, + "CONCEPT_NAME" : "Gestation period, 3 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "74952004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442769, + "CONCEPT_NAME" : "Gestation period, 41 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63503002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444067, + "CONCEPT_NAME" : "Gestation period, 42 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36428009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4195157, + "CONCEPT_NAME" : "Gestation period, 4 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "44398003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4290009, + "CONCEPT_NAME" : "Gestation period, 5 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "37005007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4313026, + "CONCEPT_NAME" : "Gestation period, 6 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86801005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4270513, + "CONCEPT_NAME" : "Gestation period, 7 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63110000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4132434, + "CONCEPT_NAME" : "Gestation period, 8 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26690008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4245908, + "CONCEPT_NAME" : "Gestation period, 9 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "931004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 762907, + "CONCEPT_NAME" : "Gestation period greater than or equal to 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "433601000124106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4169089, + "CONCEPT_NAME" : "Glucagon resistance", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48839007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4236507, + "CONCEPT_NAME" : "Glucoglycinuria", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "9111008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4042066, + "CONCEPT_NAME" : "Glucometer blood glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "166900001", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3003994, + "CONCEPT_NAME" : "Glucose-6-Phosphate dehydrogenase [Enzymatic activity/mass] in Red Blood Cells", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "32546-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3037524, + "CONCEPT_NAME" : "Glucose-6-Phosphate dehydrogenase [Enzymatic activity/volume] in Red Blood Cells", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "2357-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2212367, + "CONCEPT_NAME" : "Glucose, blood by glucose monitoring device(s) cleared by the FDA specifically for home use", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "82962", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2212360, + "CONCEPT_NAME" : "Glucose; blood, reagent strip", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "82948", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2212357, + "CONCEPT_NAME" : "Glucose, body fluid, other than blood", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "82945", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4094447, + "CONCEPT_NAME" : "Glucose concentration, test strip measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "250417005", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4017758, + "CONCEPT_NAME" : "Glucose CSF/glucose plasma ratio measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "104685000", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4077514, + "CONCEPT_NAME" : "Glucose in sample", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "275794004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3049746, + "CONCEPT_NAME" : "Glucose.IV [Mass] of Dose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "47621-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4275336, + "CONCEPT_NAME" : "Glucose level - finding", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "365811003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3025893, + "CONCEPT_NAME" : "Glucose [Mass/time] in 10 hour Urine", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "21307-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40762090, + "CONCEPT_NAME" : "Glucose [Mass/time] in 18 hour Urine", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "58997-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40758981, + "CONCEPT_NAME" : "Glucose [Mass/time] in 24 hour Stool", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55860-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3023544, + "CONCEPT_NAME" : "Glucose [Mass/time] in 6 hour Urine", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "18227-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3005943, + "CONCEPT_NAME" : "Glucose [Mass/time] in 8 hour Urine", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "21306-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3016083, + "CONCEPT_NAME" : "Glucose [Mass/volume] in 24 hour Peritoneal dialysis fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12629-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3014014, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Amniotic fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6300-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3031266, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Arterial blood", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "41651-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3048865, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Blood --2 hours post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "49134-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3034530, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Blood --2 hours post meal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6689-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3011424, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Blood by Automated test strip", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "2340-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3014053, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Blood by Test strip manual", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "2341-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36304599, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Blood --post meal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87422-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36303387, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Blood --pre-meal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "88365-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3019210, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Body fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "2344-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3004077, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Capillary blood", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "32016-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3038962, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Capillary blood --baseline", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40858-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3034962, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Capillary blood by Glucometer", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "41653-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3022548, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Cerebral spinal fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "2342-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36031895, + "CONCEPT_NAME" : "Glucose [Mass/volume] in DBS", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "96594-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3023572, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Dialysis fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "2343-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3002436, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Dialysis fluid --2 hour specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12612-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3001346, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Dialysis fluid --4 hour specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12613-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3016680, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Gastric fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14386-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3045908, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Milk --2 hours post meal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43278-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3030618, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Pericardial fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "33405-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3015544, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Peritoneal dialysis fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12628-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3020909, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Peritoneal dialysis fluid --1st specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12630-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3033618, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Peritoneal dialysis fluid --2 hour dwell specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12608-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3011789, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Peritoneal dialysis fluid --2nd specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12631-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3015046, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Peritoneal dialysis fluid --3rd specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12632-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3034466, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Peritoneal dialysis fluid --4 hour dwell specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12609-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40759281, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Peritoneal dialysis fluid --4 hours post peritoneal dialysis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "56160-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3008572, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Peritoneal dialysis fluid --4th specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12633-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3016726, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Peritoneal dialysis fluid --6th specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12635-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3017261, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Peritoneal dialysis fluid --7th specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12636-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3004251, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Peritoneal dialysis fluid --8th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12637-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40763914, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Peritoneal dialysis fluid --baseline", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "61153-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3000607, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Peritoneal dialysis fluid --pre dialysis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12607-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3002240, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Peritoneal fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "2347-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3010075, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Peritoneal fluid --12 hours post peritoneal dialysis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12220-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3049817, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Peritoneal fluid --24 hours post peritoneal dialysis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48787-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3004617, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Peritoneal fluid --2 hours post peritoneal dialysis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12218-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3003462, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Peritoneal fluid --4 hours post peritoneal dialysis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12219-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3003403, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Pleural fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "2346-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3004501, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "2345-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3041015, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --100 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40004-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3039562, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --10.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40259-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3027276, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --105 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "21308-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3043908, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --10.75 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40260-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3026728, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --10 AM specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16165-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3025211, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --10 hours fasting", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10450-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3006760, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --10 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12645-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3017592, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --10 minutes post 0.5 g/kg glucose IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1498-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37020527, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --10 minutes post dose glucagon", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "92819-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3052646, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --10 minutes post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48984-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3026020, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --10 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12654-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3006333, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --10 minutes pre XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12651-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3049496, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --10 PM specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48991-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3032780, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --10th specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "50208-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3036283, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --10th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12622-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3041875, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --110 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40005-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3041757, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --11.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40008-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3012635, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --11 AM specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16166-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3006325, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --11 hour post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26817-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3036807, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --11th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12623-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3044527, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --12.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40009-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3048585, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --12 AM specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48992-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3002009, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --12 hours fasting", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1554-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3007781, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --12 hours post 50 g lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "18354-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3024583, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --12 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12647-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3041863, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --12 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40028-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3048856, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --12 PM specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48988-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3023379, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --12th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12624-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3043648, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --13.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40011-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040375, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --13 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40010-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3039582, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --13 minutes pre XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40261-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3013802, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --13th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12625-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040872, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --14 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40012-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3044252, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --14 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40029-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3014163, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --14th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12626-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3038855, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --15.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40013-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3021232, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --1.5 hours post 0.05-0.15 U insulin/kg IV 12 hours fasting", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1493-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3033778, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --1.5 hours post 0.5 g/kg glucose IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1492-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3012415, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --1.5 hours post 100 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1494-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3008804, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --1.5 hours post 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1496-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37020666, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --1.5 hours post dose cloNIDine", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "92669-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3039397, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --1.5 hours post dose fructose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "51767-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3017053, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --1.5 hours post dose insulin IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1497-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3001975, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --1.5 hours post dose lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26779-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 21494214, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --1.5 hours post meal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80959-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3039851, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --1.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40003-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36660183, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --15 min post meal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "95078-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3029871, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --15 minutes post 0.1 U/kg insulin", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "50751-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3034771, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --15 minutes post 100 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "11142-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 21492336, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --15 minutes post dose arginine+insulin", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "79193-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3025113, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --15 minutes post dose lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12648-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3005787, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --15 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12639-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040739, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --15 minutes pre XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "39999-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3009006, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --15th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12627-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040457, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --16 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40014-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3038995, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --16 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40030-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3038543, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --17.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40015-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3041353, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --18.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40017-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3038958, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --18 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40016-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040694, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --19.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40018-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040940, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --19 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40031-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3043678, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --1 day post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40024-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3009245, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --1 hour post 0.05-0.15 U insulin/kg IV post 12H CFst", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1500-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3017892, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --1 hour post 0.5 g/kg glucose IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1499-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3014716, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --1 hour post 100 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1501-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3008191, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --1 hour post 1.2 g/kg lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "30344-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3016699, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --1 hour post 50 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1504-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3007332, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --1 hour post 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1507-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 21492339, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --1 hour post dose arginine+insulin", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "79196-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37021274, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --1 hour post dose cloNIDine", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "92668-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3050405, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --1 hour post dose fructose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48605-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3010300, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --1 hour post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "20438-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3017345, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --1 hour post dose insulin IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1510-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3002310, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --1 hour post dose lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26778-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3026071, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --1 hour post meal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10449-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3025232, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --1 hour post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12646-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3004723, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --1 minute post 0.5 g/kg glucose IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1512-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40760467, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --1 minute post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57350-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3032986, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --1st specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "50206-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3035125, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --1st specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12615-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3044574, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --20.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40020-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040904, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --20 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40019-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3007820, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --20 minutes post 0.5 g/kg glucose IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1513-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3038316, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --20 minutes post 50 g lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "53928-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37020873, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --20 minutes post dose glucagon", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "92818-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3052659, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --20 minutes post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48985-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3026550, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --20 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12655-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3048282, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --20 minutes pre XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48983-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3041620, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --21.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40021-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40759870, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --2.17 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "56751-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3041009, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --22 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40022-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3043637, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --22 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40032-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3041860, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --23.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40023-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3015930, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --2.5 hours post 100 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "9375-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3000545, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --2.5 hours post 50 g lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13865-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040983, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --2.5 hours post dose fructose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "51766-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3004428, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --2.5 hours post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26554-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36660184, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --2.5 hours post meal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "95103-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3023776, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --2.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "29332-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3043930, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --25 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40037-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3038549, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --25 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40033-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3042343, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --26 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40038-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3041056, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --27 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40039-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3041864, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --27 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40034-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3042329, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --28 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40040-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3041872, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --29 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40041-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040748, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --2 days post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40045-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3006717, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --2 hours post 100 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1514-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3007092, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --2 hours post 1.2 g/kg lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "30345-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3042637, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --2 hours post 50 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "41024-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3025673, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --2 hours post 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1518-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37021474, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --2 hours post dose cloNIDine", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "92670-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3041799, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --2 hours post dose fructose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "51769-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3026300, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --2 hours post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "20436-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3019876, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --2 hours post dose lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26780-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3021737, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --2 hours post meal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1521-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3000845, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --2 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12610-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3022079, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --2 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12652-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3032779, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --2nd specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "50212-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3035352, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --2nd specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12616-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3010044, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --2 PM specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16167-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040420, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --30 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40042-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36660135, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --30 min post meal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "95105-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3025740, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --30 minutes post 0.05-0.15 U insulin/kg IV post 12H CFst", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1523-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3026571, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --30 minutes post 0.1 U/kg insulin", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1524-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3025136, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --30 minutes post 0.5 g/kg glucose IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1522-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3030070, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --30 minutes post 1.2 g/kg lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "33024-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3013604, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --30 minutes post 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1527-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 21492337, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --30 minutes post dose arginine+insulin", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "79194-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37019755, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --30 minutes post dose cloNIDine", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "92667-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3050128, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --30 minutes post dose fructose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48607-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37020288, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --30 minutes post dose glucagon", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "92817-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3028247, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --30 minutes post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "20439-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3010722, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --30 minutes post dose insulin IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1528-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3003412, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --30 minutes post dose lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26777-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3041024, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --30 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40263-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3041720, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --30 minutes pre XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "39998-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3042058, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --31 hour post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40043-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3019013, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --3.5 hours post 100 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "9376-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3003334, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --3.5 hours post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26555-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3007427, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --3.5 hours post dose lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12650-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36659783, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --3.5 hours post meal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "95104-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3002544, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --3.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "29329-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3038570, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --36 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40044-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3053004, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --3 AM specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48993-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3027457, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --3 hours post 100 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1530-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3005996, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --3 hours post 1.2 g/kg lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "30346-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3009582, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --3 hours post 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1533-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3039937, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --3 hours post dose fructose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "51768-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3027198, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --3 hours post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "20437-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3020407, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --3 hours post dose lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26781-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36659954, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --3 hours post meal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "95106-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3014737, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --3 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "18342-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3010118, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --3 minutes post 0.5 g/kg glucose IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1534-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040476, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --3 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40025-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3042431, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --3 minutes pre XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40262-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3010030, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --3 PM specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16168-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3030416, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --3rd specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "50213-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3035858, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --3rd specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12617-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3015323, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --40 minutes post 0.5 g/kg glucose IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1535-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3039166, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --40 minutes post 50 g lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "53929-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3027980, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --40 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12657-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3022574, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --4.5 hours post 100 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "9377-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36660356, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --4.5 hours post meal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "95107-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3038965, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --4.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40035-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3020260, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --45 minutes post 100 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "11143-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 21492338, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --45 minutes post dose arginine+insulin", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "79195-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3023186, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --45 minutes post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26539-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3018998, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --45 minutes post dose insulin IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1536-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3028112, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --45 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "21309-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3003541, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --4 hour specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12611-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3024644, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --4 hours post 50 g lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13607-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3005487, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --4 hours post dose lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26782-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36660344, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --4 hours post meal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "95108-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3021924, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --4 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "29330-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3013145, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --4 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12656-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3032719, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --4th specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "50214-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40761077, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --4th specimen post lactose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57971-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3009397, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --4th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12618-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3013881, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --50 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12658-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3005850, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --5.5 hours post 100 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "9378-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3035415, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --5.5 hours post 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14137-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3039849, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --5.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40036-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3052976, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --5 hours post 50 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48810-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3033312, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --5 hours post 50 g lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13866-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3021860, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --5 hours post 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1542-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3004389, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --5 hours post dose lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26783-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36660564, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --5 hours post meal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "95109-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3023243, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "29331-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3022933, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --5 minutes post 0.5 g/kg glucose IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1543-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040592, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --5 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40001-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3041921, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --5 minutes pre XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40000-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3012792, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --5 PM specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16170-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3028944, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --5th specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "50215-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40761078, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --5th specimen post lactose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57972-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3017083, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --6.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12640-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3050134, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --6 AM specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48994-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3023466, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --6 hours post 100 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1544-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3004681, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --6 hours post 50 g lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "18353-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3022285, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --6 hours post 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6760-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3023125, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --6 hours post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26544-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3004351, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --6 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "29412-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3038687, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --6 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40026-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3050095, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --6 PM specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48989-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3032230, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --6th specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "50216-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3011296, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --70 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12659-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3018151, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --7.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12642-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3008349, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --75 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "21310-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3019431, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --7 hours post meal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12614-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3017328, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --7 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12641-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3031928, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --7th specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "50207-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3041745, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --80 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40002-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3039229, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --8.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40006-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3052381, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --8 AM specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48986-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3024762, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --8 hours fasting", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "17865-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3004766, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --8 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12643-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3025181, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --8 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12653-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3049466, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --8 PM specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48990-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3029014, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --8th specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "50217-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3000931, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --8th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "27432-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3042186, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --9.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40007-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3007864, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --9 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12644-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3038525, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --9 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40027-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3031929, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --9th specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "50218-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3035759, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --9th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12621-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3002666, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --baseline", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1547-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3025866, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --post 50 g glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "20441-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3026536, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --post meal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16915-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3025398, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16914-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3001511, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --pre 0.5 g/kg glucose IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1548-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3020058, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --pre 100 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1549-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3019474, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --pre 12 hour fast", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1550-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3005030, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --pre 50 g lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1551-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3003435, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --pre 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1552-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3049846, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --pre dose fructose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48606-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3002332, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --pre dose insulin IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1553-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3006887, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --pre dose lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12638-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040820, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum or Plasma --pre-meal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "53049-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44816672, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Serum, Plasma or Blood", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "74774-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3042201, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Specimen --1st specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40874-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3041915, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Specimen --3rd specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40875-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3051368, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Stool", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48036-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40760907, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Stool by Post hydrolysis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57797-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3041397, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Total parental nutrition", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "53050-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3020399, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Urine", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "2350-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3020632, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Urine --12 hours fasting", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1555-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3015996, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Urine --1.5 hours post 100 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1495-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3001020, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Urine --1.5 hours post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25678-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3016159, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Urine --1 hour post 100 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1503-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3017222, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Urine --1 hour post 50 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1505-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3027145, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Urine --1 hour post 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1509-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3010115, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Urine --1 hour post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25664-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3032276, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Urine --1 hour post dose lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "42611-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40759245, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Urine --1 hour post meal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "56124-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3024540, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Urine --2 hours post 100 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1516-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3006289, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Urine --2 hours post 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1520-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3022314, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Urine --2 hours post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25667-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3034003, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Urine --2 hours post dose lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "42613-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3037787, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Urine --30 minutes post 100 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1491-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3011088, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Urine --30 minutes post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25670-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3028287, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Urine --3 hours post 100 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1532-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40761076, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Urine --3 hours post 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57970-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3010956, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Urine --3 hours post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26540-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3031651, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Urine --3 hours post dose lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "42604-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3005231, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Urine --4 hours post 100 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1538-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3000272, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Urine --4 hours post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25675-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3031105, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Urine --4 hours post dose lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "42629-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3012009, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Urine --5 hours post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26542-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3032809, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Urine --5 hours post dose lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "42631-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3019571, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Urine --6 hours post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26545-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3029102, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Urine --6 hours post dose lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "42609-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3039896, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Urine by Automated test strip", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "53328-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3024629, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Urine by Test strip", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "5792-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3042145, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Urine by Test strip --1st specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40849-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3039280, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Urine by Test strip --2nd specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40850-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3043210, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Urine by Test strip --3rd specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45204-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3042982, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Urine by Test strip --4th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45205-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3043057, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Urine by Test strip --5th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45206-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3035214, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Urine collected for unspecified duration", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "35662-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3033408, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Venous blood", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "41652-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3004676, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Vitreous fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16903-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757617, + "CONCEPT_NAME" : "Glucose [Mass/volume] in Water", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54486-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 1002230, + "CONCEPT_NAME" : "Glucose [Mass/volume] mean in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "93791-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3005131, + "CONCEPT_NAME" : "Glucose mean value [Mass/volume] in Blood Estimated from glycated hemoglobin", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "27353-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4149519, + "CONCEPT_NAME" : "Glucose measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36048009", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4229586, + "CONCEPT_NAME" : "Glucose measurement, 2 hour post prandial", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "88856000", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4144235, + "CONCEPT_NAME" : "Glucose measurement, blood", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "33747003", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4018315, + "CONCEPT_NAME" : "Glucose measurement, blood, test strip", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "104686004", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4151548, + "CONCEPT_NAME" : "Glucose measurement, body fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "269926009", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4230393, + "CONCEPT_NAME" : "Glucose measurement by monitoring device", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "359776002", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4286945, + "CONCEPT_NAME" : "Glucose measurement, CSF", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "69125006", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4036846, + "CONCEPT_NAME" : "Glucose measurement estimated from glycated hemoglobin", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "117346004", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4182052, + "CONCEPT_NAME" : "Glucose measurement, fasting", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "52302001", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4218282, + "CONCEPT_NAME" : "Glucose measurement, plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72191006", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4017078, + "CONCEPT_NAME" : "Glucose measurement, post glucose dose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "104690002", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4018317, + "CONCEPT_NAME" : "Glucose measurement, quantitative", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "104688003", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4249006, + "CONCEPT_NAME" : "Glucose measurement, random", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "73128004", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4331286, + "CONCEPT_NAME" : "Glucose measurement, serum", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "22569008", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4018316, + "CONCEPT_NAME" : "Glucose measurement, tolbutamide tolerance test", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "104687008", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4149883, + "CONCEPT_NAME" : "Glucose measurement, urine", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "30994003", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40762854, + "CONCEPT_NAME" : "Glucose [Molar concentration difference] in Serum or Plasma --1.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59793-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40762853, + "CONCEPT_NAME" : "Glucose [Molar concentration difference] in Serum or Plasma --1 hour post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59792-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40762855, + "CONCEPT_NAME" : "Glucose [Molar concentration difference] in Serum or Plasma --2 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59794-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40762852, + "CONCEPT_NAME" : "Glucose [Molar concentration difference] in Serum or Plasma --30 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59791-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40762856, + "CONCEPT_NAME" : "Glucose [Molar concentration difference] in Serum or Plasma --3 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59795-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40762857, + "CONCEPT_NAME" : "Glucose [Molar concentration difference] in Serum or Plasma --4 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59796-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40762858, + "CONCEPT_NAME" : "Glucose [Molar concentration difference] in Serum or Plasma --5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59797-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44816584, + "CONCEPT_NAME" : "Glucose [Moles/time] in 12 hour Urine", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "74686-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3042439, + "CONCEPT_NAME" : "Glucose [Moles/time] in 24 hour Body fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40366-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3000361, + "CONCEPT_NAME" : "Glucose [Moles/time] in 24 hour Urine", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15077-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44816585, + "CONCEPT_NAME" : "Glucose [Moles/volume] in 12 hour Urine", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "74687-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3046229, + "CONCEPT_NAME" : "Glucose [Moles/volume] in 24 hour Dialysis fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45297-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3035381, + "CONCEPT_NAME" : "Glucose [Moles/volume] in 24 hour Urine", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25916-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3044242, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Arterial blood", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "39481-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3020491, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Blood", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15074-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43055143, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Blood by Automated test strip", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72516-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040151, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Capillary blood", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "51596-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3021525, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Capillary blood --2 hours post meal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14760-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3001501, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Capillary blood by Glucometer", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14743-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40762874, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Capillary blood by Glucometer --7 AM specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59813-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3020044, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Cerebral spinal fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14744-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 46235203, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Cerebral spinal fluid --1st tube", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "76669-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 46235204, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Cerebral spinal fluid --2nd tube", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "76670-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 46235205, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Cerebral spinal fluid --3rd tube", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "76671-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 46235206, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Cerebral spinal fluid --4th tube", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "76672-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3051101, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Cord blood", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "47995-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3020722, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Dialysis fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15075-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3052839, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Dialysis fluid --2 hour specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46221-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3051873, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Dialysis fluid --4 hour specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46222-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3051002, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Dialysis fluid --overnight", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46223-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040806, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Nonbiological fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "53084-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3042173, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Pericardial fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "39479-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3036257, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Peritoneal dialysis fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14746-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 21491017, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Peritoneal dialysis fluid --2 hour dwell specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "78534-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 21491018, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Peritoneal dialysis fluid --4 hour dwell specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "78535-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 21492444, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Peritoneal dialysis fluid --overnight dwell", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "79264-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3023044, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Peritoneal fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14748-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3036782, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Pleural fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14747-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3013826, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14749-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3038566, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --105 minutes post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40286-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3044548, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --10.75 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40174-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040116, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --10 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40173-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757532, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --10 minutes post dose glucagon", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54401-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3001022, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --10 minutes post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "32359-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3039558, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --10 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40154-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757379, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --10 minutes pre dose glucagon", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54248-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3038565, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --10 minutes pre XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40151-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757524, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --10th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54393-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040402, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --11.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40175-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40762873, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --11 AM specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59812-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 46236371, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --11 hour post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "77681-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757525, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --11th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54394-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3038251, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --12.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40177-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3043536, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --12 AM specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45052-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3041470, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --12 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40176-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3041028, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --12 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40204-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3045291, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --12 PM specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45054-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757526, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --12th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54395-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040937, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --13.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40179-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3003912, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --1.3 hours post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "30265-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757397, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --1.3 hours post dose insulin IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54266-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3041766, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --13 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40178-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3038257, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --13 minutes pre XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40195-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3038390, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --14 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40180-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040594, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --14 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40205-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3038991, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --15.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40181-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757408, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --1.5 hour post dose ornithine alpha-ketoglutarate", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54277-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3036375, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --1.5 hours post 50 g lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14751-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40758480, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --1.5 hours post 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55351-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3039763, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --1.5 hours post dose betaxolol", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "53487-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3036895, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --1.5 hours post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14752-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757398, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --1.5 hours post dose insulin IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54267-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3042216, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --1.5 hours post dose lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40278-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 46234926, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --1.5 hours post dose triple bolus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "75405-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3042995, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --1.5 hours post meal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "44919-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3021258, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --1.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25679-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44786741, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --15 minutes post 50 g lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "74084-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757380, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --15 minutes post dose glucagon", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54249-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3009877, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --15 minutes post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25663-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757391, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --15 minutes post dose insulin IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54260-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43534070, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --15 minutes post dose lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72896-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757402, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --15 minutes post dose ornithine alpha-ketoglutarate", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54271-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3042146, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --15 minutes post dose triple bolus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40319-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3038581, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --15 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40155-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3050625, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --15 minutes pre dose betaxolol", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "53481-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757381, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --15 minutes pre dose glucagon", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54250-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3050771, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --15 minutes pre dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48109-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757392, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --15 minutes pre dose insulin IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54261-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757403, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --15 minutes pre dose ornithine alpha-ketoglutarate", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54272-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3041787, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --15 minutes pre XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40150-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3007619, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --1.6 hours post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "30266-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3044219, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --16 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40182-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040442, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --16 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40206-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3041160, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --17.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40183-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3043956, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --18.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40185-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040673, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --18 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40184-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3041760, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --19.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40186-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3042342, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --19 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40207-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040567, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --1 day post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40192-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3037432, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --1 hour post 100 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14753-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3020869, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --1 hour post 50 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14754-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3011761, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --1 hour post 50 g lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14755-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3039422, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --1 hour post 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "51597-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3051280, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --1 hour post dose betaxolol", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "53486-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3015024, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --1 hour post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14756-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757396, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --1 hour post dose insulin IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54265-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040655, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --1 hour post dose lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40277-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757407, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --1 hour post dose ornithine alpha-ketoglutarate", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54276-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3044516, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --1 hour post dose triple bolus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40322-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040659, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --1 hour post meal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40287-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3015621, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --1 hour post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25665-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757523, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --1st specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54392-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3038672, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --20.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40188-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3038264, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --20 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40187-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42868432, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --20 minutes post 50 g lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "69943-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757382, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --20 minutes post dose glucagon", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54251-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3018582, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --20 minutes post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "30263-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42868430, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --20 minutes post dose lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "69941-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3039826, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --20 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40156-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3041486, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --20 minutes pre XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40194-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3043922, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --21.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40189-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3043635, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --22 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40190-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3041604, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --22 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40208-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3039788, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --23.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40191-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3006520, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --2.3 hours post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "30267-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757401, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --2.5 hour post dose ornithine alpha-ketoglutarate", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54270-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3043514, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --2.5 hours post 50 g lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45298-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40758510, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --2.5 hours post 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55381-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040060, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --2.5 hours post dose betaxolol", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "53480-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3019047, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --2.5 hours post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25666-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757390, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --2.5 hours post dose insulin IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54259-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43534069, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --2.5 hours post dose lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72895-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3041159, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --2.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40161-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040683, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --25 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40214-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040867, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --25 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40209-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3034101, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --2.6 hours post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "30251-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3041140, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --26 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40215-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3042029, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --27 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40216-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3038395, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --27 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40210-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3044269, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --28 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40217-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040870, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --29 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40218-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040366, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --2 days post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40222-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757400, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --2 hour post dose ornithine alpha-ketoglutarate", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54269-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3009154, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --2 hours post 100 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14757-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3016160, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --2 hours post 50 g lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14758-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3017538, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --2 hours post 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14995-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3038621, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --2 hours post dose betaxolol", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "53476-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3016701, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --2 hours post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14759-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757389, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --2 hours post dose insulin IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54258-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3041638, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --2 hours post dose lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40279-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040613, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --2 hours post dose triple bolus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40323-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3012413, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --2 hours post meal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14761-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757383, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --2 minutes post dose glucagon", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54252-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040578, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --2 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40198-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757527, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --2nd specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54396-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040603, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --30 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40219-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3015980, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --30 minutes post 50 g lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14762-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3005793, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --30 minutes post 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "32319-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3039178, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --30 minutes post dose betaxolol", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "53483-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3008799, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --30 minutes post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14763-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757394, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --30 minutes post dose insulin IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54263-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040908, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --30 minutes post dose lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40276-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757405, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --30 minutes post dose ornithine alpha-ketoglutarate", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54274-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3041786, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --30 minutes post dose triple bolus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40320-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3016567, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --30 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25671-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3039739, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --30 minutes pre dose betaxolol", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "53484-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3044550, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --30 minutes pre XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40149-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3038838, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --31 hour post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40220-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3022161, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --3.3 hours post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "30252-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3000992, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --3.5 hours post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25669-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3044555, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --3.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40211-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3013026, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --3.6 hours post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "30253-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3041609, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --36 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40221-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3017048, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --3 hours post 100 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14764-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3017091, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --3 hours post 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "32320-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3038314, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --3 hours post dose betaxolol", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "53482-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3017589, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --3 hours post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14765-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3041489, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --3 hours post dose lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40280-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757404, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --3 hours post dose ornithine alpha-ketoglutarate", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54273-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3041136, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --3 hours post dose triple bolus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40324-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3042487, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --3 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40162-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757393, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --3 hours pre dose insulin IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54262-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3038420, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --3 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40199-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040892, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --3 minutes pre XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40197-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40762876, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --3 PM specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59815-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757528, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --3rd specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54397-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42868433, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --40 minutes post 50 g lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "69944-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3014194, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --40 minutes post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "30264-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42868431, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --40 minutes post dose lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "69942-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040104, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --40 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40157-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3022201, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --4.5 hours post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25672-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3043978, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --4.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40212-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 46235368, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --45 minutes post 50 g lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "75637-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40758481, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --45 minutes post 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55352-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3051231, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --45 minutes post dose betaxolol", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "53485-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3023228, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --45 minutes post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25673-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757395, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --45 minutes post dose insulin IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54264-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3047279, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --45 minutes post dose lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45299-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757406, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --45 minutes post dose ornithine alpha-ketoglutarate", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54275-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3044218, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --45 minutes post dose triple bolus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40321-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3023758, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --45 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25674-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3039997, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --4 AM specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "53474-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3017634, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --4 hours post 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "32321-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3017890, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --4 hours post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14766-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3042489, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --4 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40163-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757384, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --4 minutes post dose glucagon", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54253-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3039807, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --4 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40200-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3045318, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --4 PM specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45055-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757529, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --4th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54398-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3044562, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --50 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40158-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3003824, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --5.5 hours post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25676-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3041490, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --5.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40213-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3018175, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --5 hours post 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "32322-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3004724, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --5 hours post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14767-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040107, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40164-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3049428, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --5 minutes post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "47859-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040634, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --5 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40153-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757385, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --5 minutes pre dose glucagon", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54254-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040641, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --5 minutes pre XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40152-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757627, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --5th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54496-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3041895, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --6.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40166-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3002654, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --6 hours post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25677-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3041454, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --6 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40165-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757386, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --6 minutes post dose glucagon", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54255-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040468, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --6 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40201-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757628, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --6th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54497-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3041763, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --70 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40159-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3039297, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --7.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40168-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3038727, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --75 minutes post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40285-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040099, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --75 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40160-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40762875, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --7 AM specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59814-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3038557, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --7 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40167-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757629, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --7th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54498-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3038422, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --8.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40170-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3045067, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --8 AM specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45053-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3041615, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --8 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40169-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757387, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --8 minutes post dose glucagon", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54256-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3039224, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --8 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40202-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040896, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --8 minutes pre XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40196-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3043032, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --8 PM specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45056-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757630, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --8th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54499-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3041856, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --9.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40172-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3041903, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --9 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40171-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040710, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --9 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40203-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757530, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --9th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54399-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3007821, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --baseline", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14768-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757626, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --post dialysis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54495-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3041930, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --post meal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "53094-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3041971, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "53093-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42868682, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --pre 100 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "70208-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3006669, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --pre 12 hour fast", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14769-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3019765, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --pre 50 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25680-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3004067, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --pre 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14996-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3039439, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --pre dose betaxolol", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "53475-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757531, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --pre dose glucagon", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54400-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3048522, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --pre dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "47622-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757388, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --pre dose insulin IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54257-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40762250, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --pre dose lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59157-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757399, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --pre dose ornithine alpha-ketoglutarate", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54268-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3044522, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --pre dose triple bolus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40318-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3042469, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --pre-meal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40193-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3045105, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --pre or post dose arginine", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "34056-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3045131, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --pre or post dose cloNIDine", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "34057-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3045158, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --pre or post dose glucagon", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "34058-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3045700, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --pre or post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "34059-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3029462, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --pre or post dose insulin", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "34060-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3030745, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --pre or post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "51426-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3038434, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum or Plasma --pre XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40148-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 46236948, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum, Plasma or Blood", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "77135-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 46236367, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Serum, Plasma or Blood --2 hours post meal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "77677-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3006893, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "32318-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3051044, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Stool", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "47620-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3020618, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Synovial fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14750-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3005570, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Urine", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15076-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40762249, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Urine by Automated test strip", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59156-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3008770, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Urine by Test strip", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "22705-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44786994, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Urine collected for unspecified duration", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "74351-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3038515, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Venous blood", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "39480-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040563, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Vitreous fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "39478-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757618, + "CONCEPT_NAME" : "Glucose [Moles/volume] in Water", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54487-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44806589, + "CONCEPT_NAME" : "Glucose output measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "792621000000101", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3018056, + "CONCEPT_NAME" : "Glucose.PO [Mass] of Dose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "4269-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2212361, + "CONCEPT_NAME" : "Glucose; post glucose dose (includes glucose)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "82950", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3007308, + "CONCEPT_NAME" : "Glucose [Presence] in 24 hour Urine", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "32174-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040980, + "CONCEPT_NAME" : "Glucose [Presence] in Stool", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "51595-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3020650, + "CONCEPT_NAME" : "Glucose [Presence] in Urine", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "2349-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3007777, + "CONCEPT_NAME" : "Glucose [Presence] in Urine --1st specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16904-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3006684, + "CONCEPT_NAME" : "Glucose [Presence] in Urine --2nd specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16905-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3028014, + "CONCEPT_NAME" : "Glucose [Presence] in Urine --3rd specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16906-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3023961, + "CONCEPT_NAME" : "Glucose [Presence] in Urine --4th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16907-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3024785, + "CONCEPT_NAME" : "Glucose [Presence] in Urine --5th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16908-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3025622, + "CONCEPT_NAME" : "Glucose [Presence] in Urine --6th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16909-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3007971, + "CONCEPT_NAME" : "Glucose [Presence] in Urine --7th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16910-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3006258, + "CONCEPT_NAME" : "Glucose [Presence] in Urine --8th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16911-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3021752, + "CONCEPT_NAME" : "Glucose [Presence] in Urine --9th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16912-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3009261, + "CONCEPT_NAME" : "Glucose [Presence] in Urine by Test strip", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25428-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3005875, + "CONCEPT_NAME" : "Glucose [Presence] in Urine by Test strip --1.5 hours post 50 g lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6761-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3005589, + "CONCEPT_NAME" : "Glucose [Presence] in Urine by Test strip --1.5 hours post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26553-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3020820, + "CONCEPT_NAME" : "Glucose [Presence] in Urine by Test strip --1 hour post 50 g lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6747-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3021033, + "CONCEPT_NAME" : "Glucose [Presence] in Urine by Test strip --1 hour post 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6748-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3019493, + "CONCEPT_NAME" : "Glucose [Presence] in Urine by Test strip --1 hour post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26546-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3007031, + "CONCEPT_NAME" : "Glucose [Presence] in Urine by Test strip --2.5 hours post 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10966-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3018958, + "CONCEPT_NAME" : "Glucose [Presence] in Urine by Test strip --2.5 hours post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26537-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3009251, + "CONCEPT_NAME" : "Glucose [Presence] in Urine by Test strip --2 hours post 50 g lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6750-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3011355, + "CONCEPT_NAME" : "Glucose [Presence] in Urine by Test strip --2 hours post 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6751-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3004629, + "CONCEPT_NAME" : "Glucose [Presence] in Urine by Test strip --2 hours post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26547-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3023638, + "CONCEPT_NAME" : "Glucose [Presence] in Urine by Test strip --30 minutes post 50 g lactose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6753-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3021635, + "CONCEPT_NAME" : "Glucose [Presence] in Urine by Test strip --30 minutes post 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6754-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3003453, + "CONCEPT_NAME" : "Glucose [Presence] in Urine by Test strip --30 minutes post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26548-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3005851, + "CONCEPT_NAME" : "Glucose [Presence] in Urine by Test strip --3.5 hours post 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10967-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3022233, + "CONCEPT_NAME" : "Glucose [Presence] in Urine by Test strip --3.5 hours post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26538-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3005370, + "CONCEPT_NAME" : "Glucose [Presence] in Urine by Test strip --3 hours post 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6755-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3003201, + "CONCEPT_NAME" : "Glucose [Presence] in Urine by Test strip --3 hours post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26549-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3025876, + "CONCEPT_NAME" : "Glucose [Presence] in Urine by Test strip --4.5 hours post 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10968-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3010617, + "CONCEPT_NAME" : "Glucose [Presence] in Urine by Test strip --4 hours post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26550-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3020455, + "CONCEPT_NAME" : "Glucose [Presence] in Urine by Test strip --5 hours post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26551-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3001283, + "CONCEPT_NAME" : "Glucose [Presence] in Urine by Test strip --6 hours post 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6759-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3020450, + "CONCEPT_NAME" : "Glucose [Presence] in Urine by Test strip --6 hours post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26552-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2212359, + "CONCEPT_NAME" : "Glucose; quantitative, blood (except reagent strip)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "82947", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2212364, + "CONCEPT_NAME" : "Glucose; tolbutamide tolerance test", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "82953", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3003169, + "CONCEPT_NAME" : "Glucose tolerance 2 hours gestational panel - Urine and Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "24353-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3030177, + "CONCEPT_NAME" : "Glucose tolerance [Interpretation] in Serum or Plasma Narrative", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "50667-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4012477, + "CONCEPT_NAME" : "Glucose tolerance test", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "113076002", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44783612, + "CONCEPT_NAME" : "Glucose tolerance test, antenatal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "699731004", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2212363, + "CONCEPT_NAME" : "Glucose; tolerance test, each additional beyond 3 specimens (List separately in addition to code for primary procedure)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "82952", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2212362, + "CONCEPT_NAME" : "Glucose; tolerance test (GTT), 3 specimens (includes glucose)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "82951", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4055679, + "CONCEPT_NAME" : "Glucose tolerance test indicates diabetes mellitus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "166928007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4055678, + "CONCEPT_NAME" : "Glucose tolerance test normal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "166926006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434164, + "CONCEPT_NAME" : "Glycosuria", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45154002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2212633, + "CONCEPT_NAME" : "Gonadotropin, chorionic (hCG); free beta chain", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84704", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2212632, + "CONCEPT_NAME" : "Gonadotropin, chorionic (hCG); qualitative", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84703", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2212631, + "CONCEPT_NAME" : "Gonadotropin, chorionic (hCG); quantitative", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84702", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 372842, + "CONCEPT_NAME" : "Gonococcal conjunctivitis neonatorum", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "28438004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4009879, + "CONCEPT_NAME" : "Good neonatal condition at birth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "102500002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014452, + "CONCEPT_NAME" : "GP unit birth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169814004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437937, + "CONCEPT_NAME" : "Grand multipara", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "18656007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434110, + "CONCEPT_NAME" : "Grand multiparity - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199714004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442441, + "CONCEPT_NAME" : "Grand multiparity with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199715003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4032764, + "CONCEPT_NAME" : "Groin traction at breech delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "236980007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4042068, + "CONCEPT_NAME" : "GTT = renal glycosuria", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "166929004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4084217, + "CONCEPT_NAME" : "Gynecological emergency hospital admission", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "183459001", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4149401, + "CONCEPT_NAME" : "Had umbilical cord around neck", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "268863005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42742312, + "CONCEPT_NAME" : "HBA1/HBA2 (alpha globin 1 and alpha globin 2) (eg, alpha thalassemia, Hb Bart hydrops fetalis syndrome, HbH disease), gene analysis; common deletions or variant (eg, Southeast Asian, Thai, Filipino, Mediterranean, alpha3.7, alpha4.2, alpha20.5, Constant S", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "81257", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 316478, + "CONCEPT_NAME" : "Heart disease in mother complicating pregnancy, childbirth AND/OR puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "78381004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440532, + "CONCEPT_NAME" : "Heavy-for-dates at birth regardless of gestation period", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7293009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 201129, + "CONCEPT_NAME" : "Hematemesis AND/OR melena due to swallowed maternal blood", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "23688003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4085415, + "CONCEPT_NAME" : "Hematoma of anus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "282074002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4155624, + "CONCEPT_NAME" : "Hematoma of female perineum", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "283969002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4152629, + "CONCEPT_NAME" : "Hematoma of male perineum", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "283974005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4161205, + "CONCEPT_NAME" : "Hematoma of obstetric wound", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "371614003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42709943, + "CONCEPT_NAME" : "Hematoma of perianal region", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "449815008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37312073, + "CONCEPT_NAME" : "Hematoma of surgical wound following cesarean section", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "788728009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437922, + "CONCEPT_NAME" : "Hematoma of vulva", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "69385001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4177184, + "CONCEPT_NAME" : "Hematoma of vulva of fetus or newborn as birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "50263004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3004410, + "CONCEPT_NAME" : "Hemoglobin A1c/Hemoglobin.total in Blood", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "4548-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2212391, + "CONCEPT_NAME" : "Hemoglobin; F (fetal), qualitative", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "83033", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2212713, + "CONCEPT_NAME" : "Hemoglobin or RBCs, fetal, for fetomaternal hemorrhage; differential lysis (Kleihauer-Betke)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "85460", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2212714, + "CONCEPT_NAME" : "Hemoglobin or RBCs, fetal, for fetomaternal hemorrhage; rosette", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "85461", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437090, + "CONCEPT_NAME" : "Hemolytic disease of fetus OR newborn due to ABO immunization", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "32858009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440218, + "CONCEPT_NAME" : "Hemolytic disease of fetus OR newborn due to isoimmunization", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "387705004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433603, + "CONCEPT_NAME" : "Hemolytic disease of fetus OR newborn due to RhD isoimmunization", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86986002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36713168, + "CONCEPT_NAME" : "Hemolytic disease of newborn co-occurrent and due to ABO immunization", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "350601000119109", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4009645, + "CONCEPT_NAME" : "Hemolytic disease of the newborn due to non-ABO, non-Rh isoimmunization", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "111469006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438478, + "CONCEPT_NAME" : "Hemorrhage in early pregnancy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "25825004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437935, + "CONCEPT_NAME" : "Hemorrhage in early pregnancy, antepartum", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "30850008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435323, + "CONCEPT_NAME" : "Hemorrhage in early pregnancy, delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "81448000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36716542, + "CONCEPT_NAME" : "Hemorrhage of adrenal gland due to birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "722578005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 436529, + "CONCEPT_NAME" : "Hemorrhage of newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "85539001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4329097, + "CONCEPT_NAME" : "Hemorrhage of skin in neonate", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "431268006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4083118, + "CONCEPT_NAME" : "Hemorrhagic disease of the newborn due to factor II deficiency", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "24149006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435358, + "CONCEPT_NAME" : "Hemorrhagic disease of the newborn due to vitamin K deficiency", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12546009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061471, + "CONCEPT_NAME" : "Hemorrhoids in pregnancy and puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200249004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4066134, + "CONCEPT_NAME" : "Hemorrhoids in pregnancy and the puerperium with antenatal complication", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "200253002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4066135, + "CONCEPT_NAME" : "Hemorrhoids in pregnancy and the puerperium with postnatal complication", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "200254008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4065761, + "CONCEPT_NAME" : "Hemorrhoids in puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200255009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37396771, + "CONCEPT_NAME" : "Hereditary persistence of alpha-fetoprotein", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "716697002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4311256, + "CONCEPT_NAME" : "Herpes gestationis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86081009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4033068, + "CONCEPT_NAME" : "Hexosaminidase A and total hexosaminidase measurement, amniotic fluid cells", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14577005", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4079859, + "CONCEPT_NAME" : "High birth weight", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276613009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44513743, + "CONCEPT_NAME" : "High forceps cephalic delivery NEC", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "R21.2", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "OPCS4", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4075188, + "CONCEPT_NAME" : "High forceps cephalic delivery with rotation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177162002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4231702, + "CONCEPT_NAME" : "High forceps delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "89849000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4035778, + "CONCEPT_NAME" : "High forceps delivery with episiotomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15413009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40480725, + "CONCEPT_NAME" : "High glucose level in blood", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "444780001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442088, + "CONCEPT_NAME" : "High head at term", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199373000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 77615, + "CONCEPT_NAME" : "High head at term - delivered", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "199375007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 72696, + "CONCEPT_NAME" : "High head at term with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199376008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4302252, + "CONCEPT_NAME" : "High risk pregnancy care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "386322007", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37392366, + "CONCEPT_NAME" : "High sensitivity urine pregnancy test", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1003171000000104", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Observable Entity" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4055287, + "CONCEPT_NAME" : "High sensitivity urine pregnancy test", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "167257008", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4075170, + "CONCEPT_NAME" : "High vacuum delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177173009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42739014, + "CONCEPT_NAME" : "History and examination of the normal newborn infant, including the preparation of medical records. (This code should only be used for newborns assessed and discharged from the hospital or birthing room on the same date.)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "99435", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42739011, + "CONCEPT_NAME" : "History and examination of the normal newborn infant, initiation of diagnostic and treatment programs and preparation of hospital records. (This code should also be used for birthing room deliveries.)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "99431", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441630, + "CONCEPT_NAME" : "History of recurrent miscarriage - delivered", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199087006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4062565, + "CONCEPT_NAME" : "History of recurrent miscarriage - not delivered", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199088001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014451, + "CONCEPT_NAME" : "Home birth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169813005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060104, + "CONCEPT_NAME" : "Home delivery booked", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169621002", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4151190, + "CONCEPT_NAME" : "Home delivery planned", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "310586008", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2514576, + "CONCEPT_NAME" : "Home visit for newborn care and assessment", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "99502", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2514575, + "CONCEPT_NAME" : "Home visit for postnatal assessment and follow-up care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "99501", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2514574, + "CONCEPT_NAME" : "Home visit for prenatal monitoring and assessment to include fetal heart rate, non-stress test, uterine monitoring, and gestational diabetes monitoring", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "99500", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44807240, + "CONCEPT_NAME" : "Human chorionic gonadotrophin multiple of median measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "815981000000104", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4285271, + "CONCEPT_NAME" : "Human chorionic gonadotropin measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "67900009", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44806337, + "CONCEPT_NAME" : "Human chorionic gonadotropin output measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "800821000000104", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439083, + "CONCEPT_NAME" : "Hydatidiform mole, benign", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "417044008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44500814, + "CONCEPT_NAME" : "Hydatidiform mole, NOS, of placenta", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "9100/0-C58.9", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "ICDO3", + "CONCEPT_CLASS_ID" : "ICDO Condition" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 73538, + "CONCEPT_NAME" : "Hydrocephalic disproportion - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199427001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 81923, + "CONCEPT_NAME" : "Hydrocephalic disproportion with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199428006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444245, + "CONCEPT_NAME" : "Hydrocephalic fetus causing disproportion", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "111439004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 77662, + "CONCEPT_NAME" : "Hydrops fetalis due to isoimmunization", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15539009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4030872, + "CONCEPT_NAME" : "Hyperemesis gravidarum", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14094001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4098582, + "CONCEPT_NAME" : "Hyperemesis gravidarum before end of 22 week gestation with carbohydrate depletion", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "27152008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4227141, + "CONCEPT_NAME" : "Hyperemesis gravidarum before end of 22 week gestation with dehydration", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87621000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4142340, + "CONCEPT_NAME" : "Hyperemesis gravidarum before end of 22 week gestation with electrolyte imbalance", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "33370009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 436485, + "CONCEPT_NAME" : "Hyperemesis gravidarum with metabolic disturbance", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199025001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 436173, + "CONCEPT_NAME" : "Hyperemesis gravidarum with metabolic disturbance - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199027009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440788, + "CONCEPT_NAME" : "Hyperemesis gravidarum with metabolic disturbance - not delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199028004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37311673, + "CONCEPT_NAME" : "Hyperglycemia due to diabetes mellitus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "822995009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37016348, + "CONCEPT_NAME" : "Hyperglycemia due to type 1 diabetes mellitus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "367991000119101", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37016349, + "CONCEPT_NAME" : "Hyperglycemia due to type 2 diabetes mellitus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "368051000119109", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40480031, + "CONCEPT_NAME" : "Hyperglycemic crisis due to diabetes mellitus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "441656006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4034959, + "CONCEPT_NAME" : "Hyperglycemic disorder", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237598005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4034966, + "CONCEPT_NAME" : "Hyperglycemic disorder in pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237625008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37312344, + "CONCEPT_NAME" : "Hyperinsulinemia due to benign insulinoma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "788492001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37312345, + "CONCEPT_NAME" : "Hyperinsulinemia due to malignant insulinoma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "788491008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4307509, + "CONCEPT_NAME" : "Hyperinsulinism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "83469008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37397460, + "CONCEPT_NAME" : "Hyperinsulinism and hyperammonemia syndrome", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "718106009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37397139, + "CONCEPT_NAME" : "Hyperinsulinism due to deficiency of glucokinase", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "717182006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36713524, + "CONCEPT_NAME" : "Hyperinsulinism due to focal adenomatous hyperplasia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "717888008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36715528, + "CONCEPT_NAME" : "Hyperinsulinism due to HNF1A deficiency", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "721234004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37397034, + "CONCEPT_NAME" : "Hyperinsulinism due to HNF4A deficiency", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "717048002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36715529, + "CONCEPT_NAME" : "Hyperinsulinism due to insulin receptor deficiency", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "721235003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36715530, + "CONCEPT_NAME" : "Hyperinsulinism due to short chain 3-hydroxyacyl-coenzyme A dehydrogenase deficiency", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "721236002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36716024, + "CONCEPT_NAME" : "Hyperinsulinism due to uncoupling protein 2 deficiency", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "721834007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42536603, + "CONCEPT_NAME" : "Hyperosmolar hyperglycemic coma due to diabetes mellitus without ketoacidosis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "735537007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4147719, + "CONCEPT_NAME" : "Hyperosmolar non-ketotic state due to diabetes mellitus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "310505005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4215719, + "CONCEPT_NAME" : "Hyperosmolar non-ketotic state due to type 2 diabetes mellitus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "395204000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 321080, + "CONCEPT_NAME" : "Hypertension complicating pregnancy, childbirth and the puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198941007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 192698, + "CONCEPT_NAME" : "Hypertonic uterine dysfunction", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "34981006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443244, + "CONCEPT_NAME" : "Hypertonic uterine inertia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "267265005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4064834, + "CONCEPT_NAME" : "Hypertonic uterine inertia - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199838008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4064835, + "CONCEPT_NAME" : "Hypertonic uterine inertia with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199839000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433873, + "CONCEPT_NAME" : "Hypocalcemia AND/OR hypomagnesemia of newborn", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "77604004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4267556, + "CONCEPT_NAME" : "Hypocalcemia of puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "400170001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42572837, + "CONCEPT_NAME" : "Hypoglycaemia of piglets", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "342901000009107", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED Veterinary", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44809809, + "CONCEPT_NAME" : "Hypoglycaemic warning absent", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "894741000000107", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44789319, + "CONCEPT_NAME" : "Hypoglycaemic warning good", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198131000000101", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44789318, + "CONCEPT_NAME" : "Hypoglycaemic warning impaired", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198121000000103", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42600315, + "CONCEPT_NAME" : "Hypoglycemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "44621000009101", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED Veterinary", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 24609, + "CONCEPT_NAME" : "Hypoglycemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "302866003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4029423, + "CONCEPT_NAME" : "Hypoglycemia due to diabetes mellitus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237633009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45769876, + "CONCEPT_NAME" : "Hypoglycemia due to type 1 diabetes mellitus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84371000119108", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45757363, + "CONCEPT_NAME" : "Hypoglycemia due to type 2 diabetes mellitus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "120731000119103", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4287549, + "CONCEPT_NAME" : "Hypoglycemia of childhood", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "68581004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3185010, + "CONCEPT_NAME" : "Hypoglycemia secondary to sulfonylurea", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "24370001000004105", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "Nebraska Lexicon", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45772060, + "CONCEPT_NAME" : "Hypoglycemia unawareness due to type 2 diabetes mellitus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "119831000119106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4226798, + "CONCEPT_NAME" : "Hypoglycemic coma due to diabetes mellitus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "421725003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4228112, + "CONCEPT_NAME" : "Hypoglycemic coma due to type 1 diabetes mellitus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "421437000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36714116, + "CONCEPT_NAME" : "Hypoglycemic coma due to type 2 diabetes mellitus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "719216001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 30361, + "CONCEPT_NAME" : "Hypoglycemic disorder", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237630007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4029422, + "CONCEPT_NAME" : "Hypoglycemic event due to diabetes", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237632004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4232212, + "CONCEPT_NAME" : "Hypoglycemic shock", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "360546002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45757362, + "CONCEPT_NAME" : "Hypoglycemic unawareness due to type 1 diabetes mellitus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "120711000119108", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36676692, + "CONCEPT_NAME" : "Hypoinsulinemic hypoglycemia and body hemihypertrophy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "773666007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 436534, + "CONCEPT_NAME" : "Hypothermia of newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13629008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45772056, + "CONCEPT_NAME" : "Hypothyroxinemia of prematurity", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "119181000119104", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4308657, + "CONCEPT_NAME" : "Hypotonic uterine inertia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "387692004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4318803, + "CONCEPT_NAME" : "Hypoxia, in liveborn infant", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "22137006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4153365, + "CONCEPT_NAME" : "Hypoxia with feeding in newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "371105007", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4082045, + "CONCEPT_NAME" : "Hysterectomy for removal of hydatidiform mole", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "24068006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110292, + "CONCEPT_NAME" : "Hysterotomy, abdominal (eg, for hydatidiform mole, abortion)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59100", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4082412, + "CONCEPT_NAME" : "Hysterotomy and termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "18302006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4132295, + "CONCEPT_NAME" : "Hysterotomy with removal of hydatidiform mole", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26578004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4234390, + "CONCEPT_NAME" : "Iatrogenic hyperinsulinism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90054000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37395921, + "CONCEPT_NAME" : "ICCA syndrome", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "715534008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4173187, + "CONCEPT_NAME" : "Idiopathic transient neonatal hyperinsulinemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276563006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444048, + "CONCEPT_NAME" : "Illegal termination of pregnancy complicated by damage to pelvic organs and/or tissues", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "38784004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 193821, + "CONCEPT_NAME" : "Illegal termination of pregnancy complicated by embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26743002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439400, + "CONCEPT_NAME" : "Illegal termination of pregnancy complicated by genital-pelvic infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "373902000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443705, + "CONCEPT_NAME" : "Illegal termination of pregnancy complicated by metabolic disorder", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "18684002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 195600, + "CONCEPT_NAME" : "Illegal termination of pregnancy complicated by renal failure", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "8996006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442596, + "CONCEPT_NAME" : "Illegal termination of pregnancy complicated by shock", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "61752008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439325, + "CONCEPT_NAME" : "Illegal termination of pregnancy, incomplete", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198743003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4143190, + "CONCEPT_NAME" : "Illegal termination of pregnancy with acute renal failure", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "33561005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4138267, + "CONCEPT_NAME" : "Illegal termination of pregnancy with afibrinogenemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "3230006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4185440, + "CONCEPT_NAME" : "Illegal termination of pregnancy with air embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "44101005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4303980, + "CONCEPT_NAME" : "Illegal termination of pregnancy with amniotic fluid embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "38905006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4066227, + "CONCEPT_NAME" : "Illegal termination of pregnancy with blood-clot embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "21604008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4182549, + "CONCEPT_NAME" : "Illegal termination of pregnancy with cardiac arrest AND/OR failure", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "54529009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4223627, + "CONCEPT_NAME" : "Illegal termination of pregnancy with cerebral anoxia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40405003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 436169, + "CONCEPT_NAME" : "Illegal termination of pregnancy with complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "74978008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4264914, + "CONCEPT_NAME" : "Illegal termination of pregnancy with defibrination syndrome", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "61810006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4101477, + "CONCEPT_NAME" : "Illegal termination of pregnancy with electrolyte imbalance", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25404008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4023781, + "CONCEPT_NAME" : "Illegal termination of pregnancy with endometritis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "195005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4107907, + "CONCEPT_NAME" : "Illegal termination of pregnancy with fat embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "29995000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4323434, + "CONCEPT_NAME" : "Illegal termination of pregnancy with intravascular hemolysis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "70823006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4180859, + "CONCEPT_NAME" : "Illegal termination of pregnancy with laceration of bladder", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "53247006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4066994, + "CONCEPT_NAME" : "Illegal termination of pregnancy with laceration of bowel", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "17335003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4105762, + "CONCEPT_NAME" : "Illegal termination of pregnancy with laceration of broad ligament", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "29583006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4077275, + "CONCEPT_NAME" : "Illegal termination of pregnancy with laceration of cervix", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "18872002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4025828, + "CONCEPT_NAME" : "Illegal termination of pregnancy with laceration of periurethral tissue", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "19564003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4229716, + "CONCEPT_NAME" : "Illegal termination of pregnancy with laceration of uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40500006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4249728, + "CONCEPT_NAME" : "Illegal termination of pregnancy with laceration of vagina", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "73280003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4266243, + "CONCEPT_NAME" : "Illegal termination of pregnancy with oliguria", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6134000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4305348, + "CONCEPT_NAME" : "Illegal termination of pregnancy with parametritis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "82204006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4234979, + "CONCEPT_NAME" : "Illegal termination of pregnancy with pelvic peritonitis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90450000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4197900, + "CONCEPT_NAME" : "Illegal termination of pregnancy with perforation of bladder", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80438008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4051784, + "CONCEPT_NAME" : "Illegal termination of pregnancy with perforation of bowel", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "23401002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4195243, + "CONCEPT_NAME" : "Illegal termination of pregnancy with perforation of broad ligament", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6802007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4224143, + "CONCEPT_NAME" : "Illegal termination of pregnancy with perforation of cervix", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84143004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4239192, + "CONCEPT_NAME" : "Illegal termination of pregnancy with perforation of periurethral tissue", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "68189005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4296872, + "CONCEPT_NAME" : "Illegal termination of pregnancy with perforation of uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "77099001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4103148, + "CONCEPT_NAME" : "Illegal termination of pregnancy with perforation of vagina", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25519006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4143018, + "CONCEPT_NAME" : "Illegal termination of pregnancy with postoperative shock", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "34701001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4206453, + "CONCEPT_NAME" : "Illegal termination of pregnancy with pulmonary embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55589000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4195297, + "CONCEPT_NAME" : "Illegal termination of pregnancy with renal tubular necrosis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "4451004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4318662, + "CONCEPT_NAME" : "Illegal termination of pregnancy with salpingitis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "22046002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4313005, + "CONCEPT_NAME" : "Illegal termination of pregnancy with salpingo-oophoritis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "8670007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4034753, + "CONCEPT_NAME" : "Illegal termination of pregnancy with sepsis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "11373009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4324965, + "CONCEPT_NAME" : "Illegal termination of pregnancy with septic embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "71362000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4219608, + "CONCEPT_NAME" : "Illegal termination of pregnancy with septic shock", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "82338001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4183557, + "CONCEPT_NAME" : "Illegal termination of pregnancy with uremia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54155004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4140509, + "CONCEPT_NAME" : "Illegal termination of pregnancy with urinary tract infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "33046001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4030415, + "CONCEPT_NAME" : "Illegitimate pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14080002", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36713470, + "CONCEPT_NAME" : "Immediate postpartum care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "717809003", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4071514, + "CONCEPT_NAME" : "Immediate repair of minor obstetric laceration", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177221004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4069972, + "CONCEPT_NAME" : "Immediate repair of obstetric laceration", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177217006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4071513, + "CONCEPT_NAME" : "Immediate repair of obstetric laceration of perineum and sphincter of anus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177219009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4071641, + "CONCEPT_NAME" : "Immediate repair of obstetric laceration of uterus or cervix uteri", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177218001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4070223, + "CONCEPT_NAME" : "Immediate repair of obstetric laceration of vagina and floor of pelvis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177220003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4247275, + "CONCEPT_NAME" : "Immunoreactive insulin measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "60284007", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4308509, + "CONCEPT_NAME" : "Impaired fasting glycemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "390951007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808373, + "CONCEPT_NAME" : "Impaired glucose regulation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "849171000000106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4311629, + "CONCEPT_NAME" : "Impaired glucose tolerance", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "9414007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4263688, + "CONCEPT_NAME" : "Impaired glucose tolerance associated with drugs", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "60634005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4047260, + "CONCEPT_NAME" : "Impaired glucose tolerance associated with genetic syndrome", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1310004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4251180, + "CONCEPT_NAME" : "Impaired glucose tolerance associated with hormonal etiology", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "73480000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4229140, + "CONCEPT_NAME" : "Impaired glucose tolerance associated with insulin receptor abnormality", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "88512005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4111906, + "CONCEPT_NAME" : "Impaired glucose tolerance associated with pancreatic disease", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1822007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4029951, + "CONCEPT_NAME" : "Impaired glucose tolerance in MODY", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14052004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4136531, + "CONCEPT_NAME" : "Impaired glucose tolerance in nonobese", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "32284009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4045297, + "CONCEPT_NAME" : "Impaired glucose tolerance in obese", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "22910008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4030067, + "CONCEPT_NAME" : "Impaired glucose tolerance in pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237628005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4042067, + "CONCEPT_NAME" : "Impaired glucose tolerance test", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "166927002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4027550, + "CONCEPT_NAME" : "Impaired glucose tolerance with hyperinsulism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "128264007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 133284, + "CONCEPT_NAME" : "Impetigo herpetiformis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65539006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110084, + "CONCEPT_NAME" : "Incision and drainage of vaginal hematoma; obstetrical/postpartum", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57022", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004771, + "CONCEPT_NAME" : "Incision of cervix to assist delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "73.93", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439323, + "CONCEPT_NAME" : "Incomplete illegal termination of pregnancy with damage to pelvic organs or tissues", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198746006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437929, + "CONCEPT_NAME" : "Incomplete illegal termination of pregnancy with delayed or excessive hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198745005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438487, + "CONCEPT_NAME" : "Incomplete illegal termination of pregnancy with embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198750004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439324, + "CONCEPT_NAME" : "Incomplete illegal termination of pregnancy with genital tract or pelvic infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198744009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439321, + "CONCEPT_NAME" : "Incomplete illegal termination of pregnancy with metabolic disorder", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198748007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439322, + "CONCEPT_NAME" : "Incomplete illegal termination of pregnancy with renal failure", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198747002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439320, + "CONCEPT_NAME" : "Incomplete illegal termination of pregnancy with shock", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198749004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45768717, + "CONCEPT_NAME" : "Incomplete induced termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "707207004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45771353, + "CONCEPT_NAME" : "Incomplete induced termination of pregnancy with complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16101000119107", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438211, + "CONCEPT_NAME" : "Incomplete inevitable miscarriage complicated by delayed or excessive hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "307752007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 436748, + "CONCEPT_NAME" : "Incomplete inevitable miscarriage complicated by embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "307746006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437618, + "CONCEPT_NAME" : "Incomplete inevitable miscarriage complicated by genital tract and pelvic infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "307749004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4146775, + "CONCEPT_NAME" : "Incomplete inevitable miscarriage without complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "307748007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439328, + "CONCEPT_NAME" : "Incomplete legal abortion with no mention of complication", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "198715007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37110280, + "CONCEPT_NAME" : "Incomplete legal abortion without complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "724484007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435868, + "CONCEPT_NAME" : "Incomplete legal termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "267193004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434705, + "CONCEPT_NAME" : "Incomplete legal termination of pregnancy with damage to pelvic organs or tissues", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198707009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440453, + "CONCEPT_NAME" : "Incomplete legal termination of pregnancy with delayed or excessive hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198706000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439329, + "CONCEPT_NAME" : "Incomplete legal termination of pregnancy with embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198711003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 193532, + "CONCEPT_NAME" : "Incomplete legal termination of pregnancy with genital tract or pelvic infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198705001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434095, + "CONCEPT_NAME" : "Incomplete legal termination of pregnancy with metabolic disorder", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198709007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439331, + "CONCEPT_NAME" : "Incomplete legal termination of pregnancy with renal failure", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198708004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439330, + "CONCEPT_NAME" : "Incomplete legal termination of pregnancy with shock", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198710002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434689, + "CONCEPT_NAME" : "Incomplete miscarriage", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "16863000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40318617, + "CONCEPT_NAME" : "Incomplete miscarriage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "156072005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434413, + "CONCEPT_NAME" : "Incomplete miscarriage with complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "413338003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437933, + "CONCEPT_NAME" : "Incomplete miscarriage with damage to pelvic organs or tissues", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198646004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440460, + "CONCEPT_NAME" : "Incomplete miscarriage with delayed or excessive hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198645000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437045, + "CONCEPT_NAME" : "Incomplete miscarriage with embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198650006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 195317, + "CONCEPT_NAME" : "Incomplete miscarriage with genital tract or pelvic infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198644001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432689, + "CONCEPT_NAME" : "Incomplete miscarriage with metabolic disorder", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198648003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439688, + "CONCEPT_NAME" : "Incomplete miscarriage with renal failure", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198647008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441631, + "CONCEPT_NAME" : "Incomplete miscarriage with shock", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198649006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42535215, + "CONCEPT_NAME" : "Incomplete spontaneous abortion due to hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16111000119105", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44805020, + "CONCEPT_NAME" : "Incomplete termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "749781000000109", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4171255, + "CONCEPT_NAME" : "Incoordinate swallowing in newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276714005", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4239206, + "CONCEPT_NAME" : "Increased glucose level", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "68256003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038817, + "CONCEPT_NAME" : "Increased human chorionic gonadotropin level", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "131102000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4289543, + "CONCEPT_NAME" : "Increased lactation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "37110009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3198709, + "CONCEPT_NAME" : "Increasing head circumference", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "5340001000004102", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "Nebraska Lexicon", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440161, + "CONCEPT_NAME" : "Indication for care AND/OR intervention in labor AND/OR delivery", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "67480003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2721146, + "CONCEPT_NAME" : "Induced abortion, 17 to 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "S2260", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2721148, + "CONCEPT_NAME" : "Induced abortion, 25 to 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "S2265", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2721149, + "CONCEPT_NAME" : "Induced abortion, 29 to 31 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "S2266", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2721150, + "CONCEPT_NAME" : "Induced abortion, 32 weeks or greater", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "S2267", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110331, + "CONCEPT_NAME" : "Induced abortion, by 1 or more intra-amniotic injections (amniocentesis-injections), including hospital admission and visits, delivery of fetus and secundines", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59850", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110332, + "CONCEPT_NAME" : "Induced abortion, by 1 or more intra-amniotic injections (amniocentesis-injections), including hospital admission and visits, delivery of fetus and secundines; with dilation and curettage and/or evacuation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59851", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110333, + "CONCEPT_NAME" : "Induced abortion, by 1 or more intra-amniotic injections (amniocentesis-injections), including hospital admission and visits, delivery of fetus and secundines; with hysterotomy (failed intra-amniotic injection)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59852", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110334, + "CONCEPT_NAME" : "Induced abortion, by 1 or more vaginal suppositories (eg, prostaglandin) with or without cervical dilation (eg, laminaria), including hospital admission and visits, delivery of fetus and secundines", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59855", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110335, + "CONCEPT_NAME" : "Induced abortion, by 1 or more vaginal suppositories (eg, prostaglandin) with or without cervical dilation (eg, laminaria), including hospital admission and visits, delivery of fetus and secundines; with dilation and curettage and/or evacuation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59856", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110336, + "CONCEPT_NAME" : "Induced abortion, by 1 or more vaginal suppositories (eg, prostaglandin) with or without cervical dilation (eg, laminaria), including hospital admission and visits, delivery of fetus and secundines; with hysterotomy (failed medical evacuation)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59857", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110329, + "CONCEPT_NAME" : "Induced abortion, by dilation and curettage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59840", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110330, + "CONCEPT_NAME" : "Induced abortion, by dilation and evacuation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59841", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37018340, + "CONCEPT_NAME" : "Induced termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "714812005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530913, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by acute necrosis of liver", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609454008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530914, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by acute renal failure", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609455009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530928, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by acute renal failure with oliguria", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609472002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530915, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by afibrinogenemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609456005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530916, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by air embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609457001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43531712, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by amniotic fluid embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609458006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530957, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by bladder damage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609503006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530917, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by blood-clot embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609459003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530958, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by bowel damage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609504000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530959, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by broad ligament damage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609505004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530960, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by cardiac arrest", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609506003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530918, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by cardiac arrest and/or failure", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "609460008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530961, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by cardiac failure", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609507007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530919, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by cerebral anoxia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609461007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530962, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by cervix damage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609508002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530908, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by damage to pelvic organs and/or tissues", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609447002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530920, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by defibrination syndrome", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609462000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43531713, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by electrolyte imbalance", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609463005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43531710, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609449004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530921, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by endometritis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609464004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530922, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by fat embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609465003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530910, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by genital-pelvic infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609450004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530964, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by infectious disease", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609510000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530923, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by intravascular hemolysis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609466002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530952, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by laceration of bladder", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609498008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530924, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by laceration of bowel", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609467006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530925, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by laceration of broad ligament", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609468001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43531714, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by laceration of cervix", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609469009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530953, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by laceration of periurethral tissue", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609499000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530926, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by laceration of uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609470005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530927, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by laceration of vagina", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609471009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530911, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by metabolic disorder", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609451000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530966, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by oliguria", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609512008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530929, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by parametritis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609473007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530948, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by pelvic disorder", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609494005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43531715, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by pelvic peritonitis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609474001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530954, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by perforation of bladder", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609500009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530930, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by perforation of bowel", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609475000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530955, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by perforation of broad ligament", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609501008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530931, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by perforation of cervix", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609476004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530956, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by perforation of periurethral tissue", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609502001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530932, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by perforation of uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609477008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530933, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by perforation of vagina", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609478003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530965, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by periurethral tissue damage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609511001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43531716, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by postoperative shock", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609479006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530934, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by pulmonary embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609480009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530912, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by renal failure", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609452007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530935, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by renal tubular necrosis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609482001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530936, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by salpingitis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609483006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530937, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by salpingo-oophoritis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609484000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530939, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by sepsis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609485004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530940, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by septic embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609486003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530941, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by septic shock", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609487007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43531711, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by shock", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609453002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530943, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by soap embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609489005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530947, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by tetanus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609493004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530944, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by uremia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609490001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530945, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by urinary tract infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609491002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530967, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by uterus damage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609513003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530968, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by vaginal damage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609514009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4200986, + "CONCEPT_NAME" : "Induced termination of pregnancy following intra-amniotic injection with hysterotomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "52660002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44784128, + "CONCEPT_NAME" : "Induced termination of pregnancy under unsafe conditions", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "700041001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4075159, + "CONCEPT_NAME" : "Induction and delivery procedures", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177128002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4032756, + "CONCEPT_NAME" : "Induction of labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "236958009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004745, + "CONCEPT_NAME" : "Induction of labor by artificial rupture of membranes", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "73.01", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37311825, + "CONCEPT_NAME" : "Inefficient uterine activity with oxytocin augmentation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "816969006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4244408, + "CONCEPT_NAME" : "Inevitable miscarriage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59363009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4146772, + "CONCEPT_NAME" : "Inevitable miscarriage complete", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "307733001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4062356, + "CONCEPT_NAME" : "Infant feeding education", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "171053005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014439, + "CONCEPT_NAME" : "Infant feeding method", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169740003", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Observable Entity" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4016479, + "CONCEPT_NAME" : "Infant feeding method at 1 year", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169997008", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Observable Entity" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4231742, + "CONCEPT_NAME" : "Infantile posthemorrhagic hydrocephalus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "359634001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4174423, + "CONCEPT_NAME" : "Infant in poor condition at birth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276707008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37018973, + "CONCEPT_NAME" : "Infant of diabetic mother", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "18311000119109", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4173344, + "CONCEPT_NAME" : "Infant slow to establish respiration", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276708003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4208967, + "CONCEPT_NAME" : "Infant weaning education", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313209004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4152958, + "CONCEPT_NAME" : "Infected insect bite of genitalia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "283352008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4153568, + "CONCEPT_NAME" : "Infected umbilical granuloma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "268837000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4309019, + "CONCEPT_NAME" : "Infection associated with artificial insemination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "213200001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 436180, + "CONCEPT_NAME" : "Infection of amniotic cavity", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10573002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3655611, + "CONCEPT_NAME" : "Infection of breast in neonate caused by Streptococcus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "866076001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444244, + "CONCEPT_NAME" : "Infection of nipple, associated with childbirth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "111459000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36713475, + "CONCEPT_NAME" : "Infection of nipple associated with childbirth with attachment difficulty", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "717816002", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45757187, + "CONCEPT_NAME" : "Infection of nipple associated with lactation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10806041000119104", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4062133, + "CONCEPT_NAME" : "Infection of obstetric surgical wound", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200125006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 74434, + "CONCEPT_NAME" : "Infection of the breast AND/OR nipple associated with childbirth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "19773009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4028781, + "CONCEPT_NAME" : "Infection - perineal wound", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237339000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439139, + "CONCEPT_NAME" : "Infections specific to perinatal period", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206331005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433823, + "CONCEPT_NAME" : "Infectious disease in mother complicating pregnancy, childbirth AND/OR puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40609001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4008083, + "CONCEPT_NAME" : "Infectious neonatal hepatitis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "111892001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433266, + "CONCEPT_NAME" : "Infective/parasitic disease in preg/childbirth/puerperium", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "199153003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42600083, + "CONCEPT_NAME" : "Inflammation of urachus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "41211000009105", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED Veterinary", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4085257, + "CONCEPT_NAME" : "Inhalation anesthesia, machine system, closed, circulation of primary agent", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "24277005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2514556, + "CONCEPT_NAME" : "Initial care, per day, for evaluation and management of normal newborn infant seen in other than hospital or birthing center", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "99461", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2514569, + "CONCEPT_NAME" : "Initial hospital care, per day, for the evaluation and management of the neonate, 28 days of age or younger, who requires intensive observation, frequent interventions, and other intensive care services", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "99477", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2514555, + "CONCEPT_NAME" : "Initial hospital or birthing center care, per day, for evaluation and management of normal newborn infant", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "99460", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2514558, + "CONCEPT_NAME" : "Initial hospital or birthing center care, per day, for evaluation and management of normal newborn infant admitted and discharged on the same date", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "99463", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42739633, + "CONCEPT_NAME" : "Initial inpatient neonatal critical care, per day, for the evaluation and management of a critically ill neonate, 28 days of age or less", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "99295", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2514563, + "CONCEPT_NAME" : "Initial inpatient neonatal critical care, per day, for the evaluation and management of a critically ill neonate, 28 days of age or younger", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "99468", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4161783, + "CONCEPT_NAME" : "Initiation of breastfeeding", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "431868002", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4121775, + "CONCEPT_NAME" : "Injection of amnion for termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "288045002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36716540, + "CONCEPT_NAME" : "Injury of brain stem due to birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "722576009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36716538, + "CONCEPT_NAME" : "Injury of central nervous system due to birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "722574007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36717351, + "CONCEPT_NAME" : "Injury of facial bone due to birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "722572006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36716541, + "CONCEPT_NAME" : "Injury of liver due to birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "722577000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36716740, + "CONCEPT_NAME" : "Injury to abdominal organ due to birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "722910004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 381952, + "CONCEPT_NAME" : "Injury to brachial plexus as birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "53785005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36716733, + "CONCEPT_NAME" : "Injury to external genitalia due to birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "722903005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 77621, + "CONCEPT_NAME" : "Inlet pelvic contraction - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199409004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 79896, + "CONCEPT_NAME" : "Inlet pelvic contraction with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199410009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2213360, + "CONCEPT_NAME" : "Insemination of oocytes", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "89268", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4112315, + "CONCEPT_NAME" : "Insertion of abortifacient suppository", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "285434006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4074301, + "CONCEPT_NAME" : "Insertion of prostaglandin abortifacient suppository", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "176854004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4128031, + "CONCEPT_NAME" : "Instrumental delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "236974004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4071638, + "CONCEPT_NAME" : "Instrumental removal of products of conception from delivered uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177200004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4018336, + "CONCEPT_NAME" : "Insulin challenge tests", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "104754003", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4229110, + "CONCEPT_NAME" : "Insulin C-peptide measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "88705004", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2212419, + "CONCEPT_NAME" : "Insulin; free", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "83527", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3049230, + "CONCEPT_NAME" : "Insulin.free and Insulin.total panel [Units/volume] - Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48615-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4020992, + "CONCEPT_NAME" : "Insulin, free measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "104753009", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3010771, + "CONCEPT_NAME" : "Insulin Free [Units/volume] in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6901-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2212155, + "CONCEPT_NAME" : "Insulin-induced C-peptide suppression panel This panel must include the following: Insulin (83525) C-peptide (84681 x 5) Glucose (82947 x 5)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80432", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3022466, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "3695-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3004648, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --10 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12754-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3004163, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --10 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "17017-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3004325, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --11 hour post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12755-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3011670, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --12 hours fasting", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1573-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3003227, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --12 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12756-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3011496, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --1.5 hours post 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13608-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3020877, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --1.5 hours post dose TOLBUTamide IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1559-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3002800, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --15 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12762-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3035571, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --15 minutes pre XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12758-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40759809, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --16 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "56690-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3001627, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --19 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12763-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40759811, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --1 day post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "56692-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3001583, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --1 hour post dose TOLBUTamide IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1560-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40759810, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --20 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "56691-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3007346, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --20 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "17018-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3000664, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --22 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12764-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3011411, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --2.5 hours post 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13609-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3037545, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --2.5 hours post dose TOLBUTamide IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1562-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3033461, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --2 hours post 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1564-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3038084, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --2 hours post dose TOLBUTamide IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1563-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3037230, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --2 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12759-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3021586, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --2nd specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12739-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3021537, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --30 minutes post dose TOLBUTamide IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1565-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3002053, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --30 minutes pre XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12757-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3019151, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --3.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12747-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3015988, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --3 hours post 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1567-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3012706, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --3 hours post dose TOLBUTamide IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1566-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3024084, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --3rd specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12740-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3037897, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --40 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12765-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3000331, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --4.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12748-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3033587, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --45 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12766-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3008406, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --4 hours post 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1568-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3005615, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --4 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12760-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3024615, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --4th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12741-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3034123, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --50 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12767-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3003339, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --5.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12749-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3017118, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --5 hours post 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1569-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3011462, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --5th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12742-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3011381, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --6th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12743-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3022404, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --70 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12768-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3023151, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --7.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12751-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3013134, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --7 hours post 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10833-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3009446, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --7 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12750-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3018974, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --7th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12744-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3019590, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --8 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12752-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3000005, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --8 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12761-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3022492, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --8th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12745-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3019824, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --9 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12753-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3023517, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --9th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12746-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3034439, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --baseline", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1570-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3029133, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --pre 100 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "42919-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3013373, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --pre 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1572-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3022423, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --pre dose TOLBUTamide IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1571-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3016203, + "CONCEPT_NAME" : "Insulin [Mass/volume] in Serum or Plasma --pre XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12738-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060873, + "CONCEPT_NAME" : "Insulin measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16890009", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3030272, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Body fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "50867-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3016523, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14796-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40758613, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --10 minutes post dose glucose IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55484-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40758512, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --10 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55383-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40758610, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --10 minutes pre dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55481-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3020977, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --10th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25685-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3036942, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --11th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25686-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3037468, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --12th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25687-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3037714, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --13th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25688-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3021224, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --14th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25689-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40758618, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --1.5 hours post dose glucagon", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55489-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40758612, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --1.5 hours post dose glucose IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55483-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3038241, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --1.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40290-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40758628, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --15 minutes post dose glucose IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55499-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40758514, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --15 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55385-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3001558, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --15th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25690-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43534076, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --1 hour post 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72902-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40758617, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --1 hour post dose glucagon", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55488-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40758614, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --1 hour post dose glucose IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55485-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3038723, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --1 hour post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40289-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40758615, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --1 minute post dose glucose IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55486-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40758521, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --1 minute post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55392-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3019094, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --1st specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25691-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40758563, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --20 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55434-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40758616, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --2.5 hours post dose glucose IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55487-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3039233, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --2.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40292-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43534075, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --2 hours post 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72901-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40758620, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --2 hours post dose glucagon", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55491-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40758625, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --2 hours post dose glucose IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55496-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3038693, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --2 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40291-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40758515, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --2 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55386-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3037840, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --2nd specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25692-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40758629, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --30 minutes post dose glucagon", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55500-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40758621, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --30 minutes post dose glucose IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55492-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3041156, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --30 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40288-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43534074, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --3 hours post 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72900-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40758622, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --3 hours post dose glucose IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55493-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3042046, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --3 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40293-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40758626, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --3 minutes post dose glucose IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55497-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40758513, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --3 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55384-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3038142, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --3rd specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25693-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40758619, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --45 minutes post dose glucagon", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55490-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40758624, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --45 minutes post dose glucose IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55495-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40758516, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --45 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55387-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40758611, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --4 hours post dose glucose IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55482-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40758517, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --4 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55388-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40758520, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --4 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55391-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3033522, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --4th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25694-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40758518, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55389-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40758623, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --5 minutes post dose glucose IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55494-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40758511, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --5 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55382-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40758609, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --5 minutes pre dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55480-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3022114, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --5th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25695-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40758519, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --6 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55390-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3012701, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --7.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25696-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40758608, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --7 minutes post dose glucose IV", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55479-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40758627, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --7 minutes pre dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55498-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3015720, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --7th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25697-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3008465, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --8th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25698-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3017410, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --9th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25699-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3033929, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --baseline", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14293-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40762271, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --fasting", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59179-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 1001918, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --post meal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "93727-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040755, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --pre or post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40294-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3029373, + "CONCEPT_NAME" : "Insulin [Moles/volume] in Serum or Plasma --pre or post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "51427-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3046092, + "CONCEPT_NAME" : "Insulin [Presence] in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "44396-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3019840, + "CONCEPT_NAME" : "Insulin [Presence] in Unknown substance", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "18234-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45769875, + "CONCEPT_NAME" : "Insulin reactive hypoglycemia due to type 2 diabetes mellitus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84361000119102", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 35622016, + "CONCEPT_NAME" : "Insulin resistance", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "763325000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4129524, + "CONCEPT_NAME" : "Insulin resistance - type A", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237651005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4129525, + "CONCEPT_NAME" : "Insulin resistance - type B", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237652003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2212418, + "CONCEPT_NAME" : "Insulin; total", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "83525", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4017196, + "CONCEPT_NAME" : "Insulin, total measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "104752004", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3010058, + "CONCEPT_NAME" : "Insulin [Units/volume] in Body fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "29238-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3016244, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "20448-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3049445, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --10 minutes post dose glucagon", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "47653-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3048476, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --10 minutes post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "47654-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3019544, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --10 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "32360-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3049768, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --10 minutes pre dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48116-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3043439, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --10th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "33809-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3045444, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --11th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "33810-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40771051, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --1.25 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "68464-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3011873, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --12 hours fasting", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "30363-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40759701, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --12 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "56581-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3046035, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --12th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "33811-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3017375, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --1.3 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "30256-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3046568, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --13th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "33812-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3046591, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --14th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "33813-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3008358, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --1.5 hours post 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "27834-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3052952, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --1.5 hours post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "47658-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36659792, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --1.5 hours post meal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "95111-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3027077, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --1.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "27330-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36660450, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --15 min post meal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "95079-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3049491, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --15 minutes post dose glucagon", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "47655-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3011621, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --15 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "30254-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3046621, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --15th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "33814-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3017922, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --1.6 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "30257-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40771052, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --1.75 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "68465-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3033462, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --1 hour post 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "27830-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3051708, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --1 hour post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "47657-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36660139, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --1 hour post meal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "95112-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3016036, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --1 hour post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "27379-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3052582, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --1 minute post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "47656-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3029720, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --1st specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "50501-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3046287, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --1st specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "33815-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3048483, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --20 minutes post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "47661-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3036251, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --20 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "27372-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3018509, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --2.3 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "30258-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3049493, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --2.5 hours post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "47660-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36660352, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --2.5 hours post meal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "95113-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3024067, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --2.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "27863-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3004884, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --2.6 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "30259-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40759907, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --28 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "56788-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40760065, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --2 days post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "56946-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3026145, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --2 hours post 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "27860-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3049164, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --2 hours post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "47659-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36660132, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --2 hours post meal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "95114-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3012064, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --2 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "27826-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3029908, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --2nd specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "50502-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3046308, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --2nd specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "33816-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36659993, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --30 min post meal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "95116-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3052011, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --30 minutes post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "47663-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3015089, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --30 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "27827-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40759908, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --32 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "56789-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3012529, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --3.3 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "30260-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36660726, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --3.5 hours post meal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "95115-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3017496, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --3.5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "30261-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3018344, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --3.6 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "30262-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40759909, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --36 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "56790-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40760063, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --3 days post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "56944-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3051067, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --3 hours post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "47662-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36659716, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --3 hours post meal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "95117-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3009167, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --3 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "27828-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3053266, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --3 minutes post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "47664-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3030827, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --3rd specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "50503-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3045998, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --3rd specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "33817-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40760068, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --40 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "56949-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3036529, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --40 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "27444-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40760067, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --44 hour post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "56948-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43055438, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --4.5 hours post 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72604-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36660594, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --4.5 hours post meal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "95118-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3016818, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --45 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "30255-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36660526, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --4 hours post meal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "95119-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3027834, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --4 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "29378-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3029056, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --4th specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "50504-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3012719, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --4th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "27832-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40760126, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --52 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57007-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40760064, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --56 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "56945-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36660177, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --5 hours post meal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "95120-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3006570, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --5 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "27852-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3052901, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --5 minutes post dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "47665-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40760468, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --5 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57353-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3049177, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --5 minutes pre dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "47666-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3030826, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --5th specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "50505-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3023123, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --5th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "27874-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40760066, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --60 hour post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "56947-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40760061, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --64 hour post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "56942-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40760062, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --68 hour post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "56943-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3012007, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --6 hours post 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "27872-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3028357, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --6 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "29379-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3051418, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --6 minutes post dose glucagon", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "47667-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40759613, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --6 minutes post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "56492-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3030984, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --6th specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "50506-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3019569, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --6th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "27875-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3015678, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --7 hours post 75 g glucose PO", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "27833-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3029665, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --7th specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "50507-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3018957, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --7th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "27867-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40760060, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --8 hours post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "56941-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3031012, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --8th specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "50508-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3028877, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --8th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "33818-6", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3028902, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --9th specimen post XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "33819-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40759603, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --baseline", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "56482-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3009413, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --fasting", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "27873-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3048519, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --post meal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "47862-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3049462, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --pre dose glucagon", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "47669-7", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3050108, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --pre dose glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "47668-9", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3052941, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --pre-meal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "47670-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3029043, + "CONCEPT_NAME" : "Insulin [Units/volume] in Serum or Plasma --pre XXX challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "49897-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 1002121, + "CONCEPT_NAME" : "Insulin [Units/volume] mean in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "93793-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4254200, + "CONCEPT_NAME" : "Intermittent fetal heart monitoring during labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "408805007", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004750, + "CONCEPT_NAME" : "Internal and combined version with extraction", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "73.22", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004749, + "CONCEPT_NAME" : "Internal and combined version without extraction", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "73.21", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4217602, + "CONCEPT_NAME" : "Internal fetal monitoring during labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "81855008", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4197403, + "CONCEPT_NAME" : "Intervillous thrombosis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80256005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37117767, + "CONCEPT_NAME" : "Intestinal obstruction in newborn due to guanylate cyclase 2C deficiency", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "733447005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4023420, + "CONCEPT_NAME" : "Intra-amniotic infection of fetus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "11618000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4072715, + "CONCEPT_NAME" : "Intracervical artificial insemination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "176844003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36716736, + "CONCEPT_NAME" : "Intracranial hemorrhage due to birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "722906002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36716735, + "CONCEPT_NAME" : "Intracranial laceration due to birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "722905003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4149029, + "CONCEPT_NAME" : "Intraligamentous pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "35656003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4303420, + "CONCEPT_NAME" : "Intrapartal care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "386337006", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4298274, + "CONCEPT_NAME" : "Intrapartal care: high-risk delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "386338001", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4149939, + "CONCEPT_NAME" : "Intrapartum cardiotochogram monitoring", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "309877008", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4242238, + "CONCEPT_NAME" : "Intrapartum hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "38010008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37110285, + "CONCEPT_NAME" : "Intrapartum hemorrhage co-occurrent and due to obstructed labor with uterine rupture", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "724490006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37205799, + "CONCEPT_NAME" : "Intrapartum hemorrhage due to leiomyoma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "785341006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4065747, + "CONCEPT_NAME" : "Intrapartum hemorrhage with coagulation defect", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200173001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45773593, + "CONCEPT_NAME" : "Intrapartum stillbirth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "921611000000101", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4030829, + "CONCEPT_NAME" : "Intraperitoneal insemination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "238312005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4066151, + "CONCEPT_NAME" : "Intraperitoneal pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "17285009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4138741, + "CONCEPT_NAME" : "Intrauterine artificial insemination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "265064001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 74162, + "CONCEPT_NAME" : "Intrauterine asphyxia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276641008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060687, + "CONCEPT_NAME" : "Intrauterine death - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199607009", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Event" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4063309, + "CONCEPT_NAME" : "Intrauterine death with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199608004", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Event" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4139858, + "CONCEPT_NAME" : "Intrauterine insemination using donor sperm", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "426250000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4139060, + "CONCEPT_NAME" : "Intrauterine insemination using partner sperm", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "426389008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4137390, + "CONCEPT_NAME" : "Intrauterine insemination with controlled ovarian hyperstimulation using donor sperm", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "425644009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4145843, + "CONCEPT_NAME" : "Intrauterine insemination with controlled ovarian hyperstimulation using partner sperm", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "426968007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 197031, + "CONCEPT_NAME" : "Intrauterine pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65727000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4020898, + "CONCEPT_NAME" : "Intravaginal artificial insemination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "225250007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2721255, + "CONCEPT_NAME" : "INTRAVAGINAL CULTURE (IVC)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "S4036", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4063939, + "CONCEPT_NAME" : "Intravascular hemolysis following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "20084001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4107728, + "CONCEPT_NAME" : "Intravenous induction of labor", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "180221005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4180743, + "CONCEPT_NAME" : "Intraventricular hemorrhage of fetus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428241007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4079972, + "CONCEPT_NAME" : "Intraventricular hemorrhage of prematurity", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276648002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434155, + "CONCEPT_NAME" : "Intraventricular (nontraumatic) hemorrhage, grade 3, of fetus and newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206397006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4215504, + "CONCEPT_NAME" : "Invasive hydatidiform mole", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "416669000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44500947, + "CONCEPT_NAME" : "Invasive hydatidiform mole of placenta", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "9100/1-C58.9", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "ICDO3", + "CONCEPT_CLASS_ID" : "ICDO Condition" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 195329, + "CONCEPT_NAME" : "Inversion of uterus during delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "23885003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4199599, + "CONCEPT_NAME" : "In vitro fertilization", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "52637005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2788842, + "CONCEPT_NAME" : "In Vitro Fertilization", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "8E0ZXY1", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD10PCS", + "CONCEPT_CLASS_ID" : "ICD10PCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2721237, + "CONCEPT_NAME" : "In vitro fertilization; including but not limited to identification and incubation of mature oocytes, fertilization with sperm, incubation of embryo(s), and subsequent visualization for determination of development", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "S4011", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3049700, + "CONCEPT_NAME" : "In vitro fertilization pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "47224-1", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Clinical Observation" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2721245, + "CONCEPT_NAME" : "In vitro fertilization procedure cancelled after aspiration, case rate", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "S4021", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2721244, + "CONCEPT_NAME" : "In vitro fertilization procedure cancelled before aspiration, case rate", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "S4020", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4138627, + "CONCEPT_NAME" : "In vitro fertilization using donor eggs", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "425866000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 46273065, + "CONCEPT_NAME" : "In vitro fertilization with surrogacy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "711544002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4058246, + "CONCEPT_NAME" : "Iron deficiency anemia of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199248002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4079751, + "CONCEPT_NAME" : "Iron supplement in pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "182947002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4184274, + "CONCEPT_NAME" : "Irregular uterine contractions", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54212005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3655631, + "CONCEPT_NAME" : "Ischemic alopecia due to birth injury", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "866100005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442772, + "CONCEPT_NAME" : "Isoimmunization from non-ABO, non-Rh blood-group incompatibility affecting pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "66958002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061672, + "CONCEPT_NAME" : "IUD failure - pregnant", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169488004", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4145664, + "CONCEPT_NAME" : "IVF - In vitro fertilization using donor sperm", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "427664000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4138633, + "CONCEPT_NAME" : "IVF - In vitro fertilization with intracytoplasmic sperm injection (ICSI)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "425901007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4141534, + "CONCEPT_NAME" : "IVF - In vitro fertilization with intracytoplasmic sperm injection (ICSI) and donor egg", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "426914002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4142402, + "CONCEPT_NAME" : "IVF - In vitro fertilization with pre-implantation genetic diagnosis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "426417003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4198705, + "CONCEPT_NAME" : "Jittery newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "51402000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3030662, + "CONCEPT_NAME" : "Karyotype [Identifier] in Amniotic fluid Nominal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "33773-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3044819, + "CONCEPT_NAME" : "Karyotype [Identifier] in Chorionic villus sample Nominal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "33774-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4122929, + "CONCEPT_NAME" : "Kell isoimmunization of the newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "234380002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437681, + "CONCEPT_NAME" : "Kernicterus due to isoimmunization", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "359007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442216, + "CONCEPT_NAME" : "Kernicterus not due to isoimmunization", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "206478005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439770, + "CONCEPT_NAME" : "Ketoacidosis due to type 1 diabetes mellitus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "420270002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443734, + "CONCEPT_NAME" : "Ketoacidosis due to type 2 diabetes mellitus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "421750000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4095288, + "CONCEPT_NAME" : "Ketoacidotic coma due to diabetes mellitus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26298008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4224254, + "CONCEPT_NAME" : "Ketoacidotic coma due to type 1 diabetes mellitus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "421075007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4228443, + "CONCEPT_NAME" : "Ketoacidotic coma due to type 2 diabetes mellitus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "421847006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3035350, + "CONCEPT_NAME" : "Ketones [Presence] in Urine by Test strip", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "2514-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4049629, + "CONCEPT_NAME" : "Ketotic hypoglycemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "20825002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4139552, + "CONCEPT_NAME" : "Kidd isoimmunization of the newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "307338008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4305334, + "CONCEPT_NAME" : "Klumpke-Dejerine paralysis as birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "81774005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4129837, + "CONCEPT_NAME" : "Knot in umbilical cord", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237309005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530880, + "CONCEPT_NAME" : "Known or suspected fetal abnormality", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "609414006", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 77335, + "CONCEPT_NAME" : "Known OR suspected fetal abnormality affecting management of mother", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "66064007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42742323, + "CONCEPT_NAME" : "KRAS (Kirsten rat sarcoma viral oncogene homolog) (eg, carcinoma) gene analysis; variants in exon 2 (eg, codons 12 and 13)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "81275", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4091790, + "CONCEPT_NAME" : "Labial tear", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "249221003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3195953, + "CONCEPT_NAME" : "labile blood sugars", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14340001000004105", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "Nebraska Lexicon", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37311826, + "CONCEPT_NAME" : "Labor and birth support", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "816968003", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40760193, + "CONCEPT_NAME" : "Labor and delivery process Narrative", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57074-7", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Clinical Observation" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4041698, + "CONCEPT_NAME" : "Laboratory blood glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "166896004", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4250609, + "CONCEPT_NAME" : "Labor care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "409005001", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014719, + "CONCEPT_NAME" : "Labor details", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169960003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4106999, + "CONCEPT_NAME" : "Laceration of anus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "282077009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 199089, + "CONCEPT_NAME" : "Laceration of cervix - obstetric", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199972004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 194709, + "CONCEPT_NAME" : "Laceration of female perineum", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "283970001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4154571, + "CONCEPT_NAME" : "Laceration of male perineum", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "283975006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4152967, + "CONCEPT_NAME" : "Laceration of perineum", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "283380005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4112304, + "CONCEPT_NAME" : "Laceration of skin of penis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "285398006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4034018, + "CONCEPT_NAME" : "Lactational amenorrhea", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237122005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4218738, + "CONCEPT_NAME" : "Lactation tetany", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "81677009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 436167, + "CONCEPT_NAME" : "Lactocele", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "42385006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40347147, + "CONCEPT_NAME" : "Laparoscopic", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "260508005", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Qualifier Value" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40378260, + "CONCEPT_NAME" : "Laparoscopic approach", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "180627003", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Qualifier Value" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42872572, + "CONCEPT_NAME" : "Laparoscopic excision of ectopic ovarian pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "450563004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42872571, + "CONCEPT_NAME" : "Laparoscopic excision of ruptured ectopic tubal pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "450562009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4319321, + "CONCEPT_NAME" : "Laparoscopic lysis of adhesions", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "9540004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40490893, + "CONCEPT_NAME" : "Laparoscopic lysis of adhesions of ovary and fallopian tube", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "447077004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4144415, + "CONCEPT_NAME" : "Laparoscopic oocyte recovery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "265082003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40259107, + "CONCEPT_NAME" : "Laparoscopic oocyte recovery (& NEC)", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "177040000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4190526, + "CONCEPT_NAME" : "Laparoscopic total abdominal hysterectomy and bilateral salpingo-oophorectomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "414575003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110299, + "CONCEPT_NAME" : "Laparoscopic treatment of ectopic pregnancy; without salpingectomy and/or oophorectomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59150", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110300, + "CONCEPT_NAME" : "Laparoscopic treatment of ectopic pregnancy; with salpingectomy and/or oophorectomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59151", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4251314, + "CONCEPT_NAME" : "Laparoscopy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "73632009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40480864, + "CONCEPT_NAME" : "Laparoscopy assisted vaginal hysterectomy with bilateral salpingo-oophorectomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "441820006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4032749, + "CONCEPT_NAME" : "Laparoscopy of fallopian tube", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "236938008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110240, + "CONCEPT_NAME" : "Laparoscopy, surgical; with removal of adnexal structures (partial or total oophorectomy and/or salpingectomy)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "58661", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2722205, + "CONCEPT_NAME" : "Laparoscopy, surgical; with removal of adnexal structures (partial or total oophorectomy and/or salpingectomy). (Deprecated)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "56307", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110245, + "CONCEPT_NAME" : "Laparoscopy, surgical; with salpingostomy (salpingoneostomy)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "58673", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2722217, + "CONCEPT_NAME" : "Laparoscopy, surgical; with salpingostomy (salpingoneostomy). (Deprecated)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "56343", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4030430, + "CONCEPT_NAME" : "Large baby of diabetic mother", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "129599004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 80782, + "CONCEPT_NAME" : "Large fetus causing disproportion - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199422007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 78818, + "CONCEPT_NAME" : "Large fetus causing disproportion with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199423002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36712932, + "CONCEPT_NAME" : "Large for gestational age newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15635491000119102", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4344633, + "CONCEPT_NAME" : "Laryngeal injury due to birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "240316007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2106488, + "CONCEPT_NAME" : "Laryngoscopy direct, with or without tracheoscopy; diagnostic, newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "31520", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4058439, + "CONCEPT_NAME" : "Last menstrual period -1st day", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "161713000", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Observable Entity" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4340777, + "CONCEPT_NAME" : "Late dumping syndrome", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "235667000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4163996, + "CONCEPT_NAME" : "Late fetal death affecting management of mother", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "399363000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434474, + "CONCEPT_NAME" : "Late metabolic acidosis of newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "9635004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061791, + "CONCEPT_NAME" : "Late onset antenatal care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169594005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36713562, + "CONCEPT_NAME" : "Late onset diffuse bleeding diathesis secondary to vitamin K deficient hemorrhagic disease of fetus and newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "717937006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 35622881, + "CONCEPT_NAME" : "Late-onset neonatal sepsis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "765107002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4206624, + "CONCEPT_NAME" : "Late postpartum state", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "56026007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441082, + "CONCEPT_NAME" : "Late pregnancy vomiting - delivered", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "199032005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443325, + "CONCEPT_NAME" : "Late pregnancy vomiting - not delivered", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "199033000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439880, + "CONCEPT_NAME" : "Late vomiting of pregnancy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "38331001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3035904, + "CONCEPT_NAME" : "Lecithin/Sphingomyelin [Ratio] in Amniotic fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14976-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4074877, + "CONCEPT_NAME" : "Left salpingectomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "176917009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4074876, + "CONCEPT_NAME" : "Left salpingo-oophorectomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "176915001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4113976, + "CONCEPT_NAME" : "Legally induced abortion NOS", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "198729008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444077, + "CONCEPT_NAME" : "Legal termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "39406005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 192379, + "CONCEPT_NAME" : "Legal termination of pregnancy complicated by damage to pelvic organ and/or tissues", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "111431001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 197617, + "CONCEPT_NAME" : "Legal termination of pregnancy complicated by delayed and/or excessive hemorrhage", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "58071009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442346, + "CONCEPT_NAME" : "Legal termination of pregnancy complicated by embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57734001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439883, + "CONCEPT_NAME" : "Legal termination of pregnancy complicated by genital-pelvic infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "373901007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 436474, + "CONCEPT_NAME" : "Legal termination of pregnancy complicated by metabolic disorder", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "3634007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 195595, + "CONCEPT_NAME" : "Legal termination of pregnancy complicated by renal failure", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "4576001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 197333, + "CONCEPT_NAME" : "Legal termination of pregnancy complicated by shock", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "27169005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181114, + "CONCEPT_NAME" : "Legal termination of pregnancy with acute renal failure", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "52342006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4147533, + "CONCEPT_NAME" : "Legal termination of pregnancy with afibrinogenemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "30479005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4009642, + "CONCEPT_NAME" : "Legal termination of pregnancy with air embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "111432008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4098441, + "CONCEPT_NAME" : "Legal termination of pregnancy with amniotic fluid embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "27015006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4292089, + "CONCEPT_NAME" : "Legal termination of pregnancy with blood-clot embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "37787009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4025639, + "CONCEPT_NAME" : "Legal termination of pregnancy with cardiac arrest and/or failure", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "12095001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4077454, + "CONCEPT_NAME" : "Legal termination of pregnancy with cerebral anoxia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "18894005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441349, + "CONCEPT_NAME" : "Legal termination of pregnancy with complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48433002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4280224, + "CONCEPT_NAME" : "Legal termination of pregnancy with defibrination syndrome", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6647006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4214233, + "CONCEPT_NAME" : "Legal termination of pregnancy with electrolyte imbalance", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "39239006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4294829, + "CONCEPT_NAME" : "Legal termination of pregnancy with endometritis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "75947000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4328084, + "CONCEPT_NAME" : "Legal termination of pregnancy with fat embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "75825001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4046510, + "CONCEPT_NAME" : "Legal termination of pregnancy with intravascular hemolysis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12296009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4243658, + "CONCEPT_NAME" : "Legal termination of pregnancy with laceration of bladder", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59859005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4183680, + "CONCEPT_NAME" : "Legal termination of pregnancy with laceration of bowel", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "5577003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4216436, + "CONCEPT_NAME" : "Legal termination of pregnancy with laceration of broad ligament", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "41806003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4324695, + "CONCEPT_NAME" : "Legal termination of pregnancy with laceration of cervix", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7166002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4324672, + "CONCEPT_NAME" : "Legal termination of pregnancy with laceration of periurethral tissue", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "71216006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4045581, + "CONCEPT_NAME" : "Legal termination of pregnancy with laceration of uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13100007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4204231, + "CONCEPT_NAME" : "Legal termination of pregnancy with laceration of vagina", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54044001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4269450, + "CONCEPT_NAME" : "Legal termination of pregnancy with oliguria", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36473002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 436747, + "CONCEPT_NAME" : "Legal termination of pregnancy without complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "34500003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4049453, + "CONCEPT_NAME" : "Legal termination of pregnancy with parametritis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15511008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4094081, + "CONCEPT_NAME" : "Legal termination of pregnancy with pelvic peritonitis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26010008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4271203, + "CONCEPT_NAME" : "Legal termination of pregnancy with perforation of bladder", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "62888008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4184150, + "CONCEPT_NAME" : "Legal termination of pregnancy with perforation of bowel", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55933000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4198404, + "CONCEPT_NAME" : "Legal termination of pregnancy with perforation of broad ligament", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "51953009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4312358, + "CONCEPT_NAME" : "Legal termination of pregnancy with perforation of cervix", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "85652000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4296459, + "CONCEPT_NAME" : "Legal termination of pregnancy with perforation of periurethral tissue", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "76472002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4068253, + "CONCEPT_NAME" : "Legal termination of pregnancy with perforation of uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "20216003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4327321, + "CONCEPT_NAME" : "Legal termination of pregnancy with perforation of vagina", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "75013000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4058932, + "CONCEPT_NAME" : "Legal termination of pregnancy with postoperative shock", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "21280005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4178578, + "CONCEPT_NAME" : "Legal termination of pregnancy with pulmonary embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "51096002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4070939, + "CONCEPT_NAME" : "Legal termination of pregnancy with renal tubular necrosis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "20483002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4204206, + "CONCEPT_NAME" : "Legal termination of pregnancy with salpingitis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "53098006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4197681, + "CONCEPT_NAME" : "Legal termination of pregnancy with salpingo-oophoritis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "51707007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4188764, + "CONCEPT_NAME" : "Legal termination of pregnancy with sepsis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "39246002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4106892, + "CONCEPT_NAME" : "Legal termination of pregnancy with septic embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "29950007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4105063, + "CONCEPT_NAME" : "Legal termination of pregnancy with septic shock", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25691001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4225572, + "CONCEPT_NAME" : "Legal termination of pregnancy with uremia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "8468007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4245041, + "CONCEPT_NAME" : "Legal termination of pregnancy with urinary tract infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "5945005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4006979, + "CONCEPT_NAME" : "Leprechaunism syndrome", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "111307005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4128988, + "CONCEPT_NAME" : "Lesion of umbilical stump", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "289330005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4268175, + "CONCEPT_NAME" : "Leucine-induced hypoglycemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "62151007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110236, + "CONCEPT_NAME" : "Ligation or transection of fallopian tube(s), abdominal or vaginal approach, postpartum, unilateral or bilateral, during same hospitalization (separate procedure)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "58605", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 74469, + "CONCEPT_NAME" : "Light-for-dates without fetal malnutrition", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "189445003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 72726, + "CONCEPT_NAME" : "Light-for-dates with signs of fetal malnutrition", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64177003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36716536, + "CONCEPT_NAME" : "Linear fracture of skull due to birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "722571004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4238207, + "CONCEPT_NAME" : "Listeria miscarriage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57420002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4092289, + "CONCEPT_NAME" : "Livebirth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "281050002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4307044, + "CONCEPT_NAME" : "Live birth surviving more than one year", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "390959009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40482735, + "CONCEPT_NAME" : "Liveborn born in hospital", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "442311008", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40483126, + "CONCEPT_NAME" : "Liveborn born in hospital by cesarean section", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "442365008", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 194699, + "CONCEPT_NAME" : "Liver disorder in pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15230009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 196170, + "CONCEPT_NAME" : "Liver disorder in pregnancy - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199117000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443292, + "CONCEPT_NAME" : "Liver disorder in pregnancy - not delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199118005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4047865, + "CONCEPT_NAME" : "Liver rupture due to birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206245001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4047863, + "CONCEPT_NAME" : "Liver subcapsular hematoma due to birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206242003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4127042, + "CONCEPT_NAME" : "Lochia abnormal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "289586006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4129167, + "CONCEPT_NAME" : "Lochia absent", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "289578006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42709955, + "CONCEPT_NAME" : "Lochia alba", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "449827006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4127039, + "CONCEPT_NAME" : "Lochia ceased", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "289579003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4096534, + "CONCEPT_NAME" : "Lochia finding", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "249211006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4127040, + "CONCEPT_NAME" : "Lochia heavy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "289580000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4127041, + "CONCEPT_NAME" : "Lochia minimal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "289582008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4124480, + "CONCEPT_NAME" : "Lochia normal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "289585005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4129166, + "CONCEPT_NAME" : "Lochia present", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "289576005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4127038, + "CONCEPT_NAME" : "Lochia reducing", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "289577001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4175536, + "CONCEPT_NAME" : "Lochia rubra", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "278072004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4129168, + "CONCEPT_NAME" : "Lochia scanty", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "289581001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42709956, + "CONCEPT_NAME" : "Lochia serosa", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "449828001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4126720, + "CONCEPT_NAME" : "Lochia thick", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "289584009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4126719, + "CONCEPT_NAME" : "Lochia watery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "289583003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4171116, + "CONCEPT_NAME" : "Long fetal gestation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276616001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4091785, + "CONCEPT_NAME" : "Loss of fundal mass after delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "249203001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4016047, + "CONCEPT_NAME" : "Loss of hypoglycemic warning due to diabetes mellitus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "170766006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4171115, + "CONCEPT_NAME" : "Low birth weight infant", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276610007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004786, + "CONCEPT_NAME" : "Low cervical cesarean section", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "74.1", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "3-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4161944, + "CONCEPT_NAME" : "Low cervical cesarean section", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "398307005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37312440, + "CONCEPT_NAME" : "Lower uterine segment cesarean section", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "788180009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44513746, + "CONCEPT_NAME" : "Low forceps cephalic delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "R21.5", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "OPCS4", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4088084, + "CONCEPT_NAME" : "Low forceps delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "18625004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4075735, + "CONCEPT_NAME" : "Low forceps delivery with episiotomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "17860005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004703, + "CONCEPT_NAME" : "Low forceps operation", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72.0", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "3-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004704, + "CONCEPT_NAME" : "Low forceps operation with episiotomy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72.1", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "3-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4075191, + "CONCEPT_NAME" : "Low vacuum delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177174003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4165508, + "CONCEPT_NAME" : "Lucey-Driscoll syndrome", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "47444008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4153112, + "CONCEPT_NAME" : "Lunch time blood glucose measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "271063001", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4239200, + "CONCEPT_NAME" : "Lymphangitis of breast associated with childbirth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "68214002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4214980, + "CONCEPT_NAME" : "Lysis of adhesions", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "39270003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4130310, + "CONCEPT_NAME" : "Macdonald's cervical cerclage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "236946009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4028787, + "CONCEPT_NAME" : "Macerated stillbirth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237366000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4093584, + "CONCEPT_NAME" : "Major depressive disorder, single episode with postpartum onset", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25922000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37394500, + "CONCEPT_NAME" : "Major postpartum haemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1033591000000101", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440473, + "CONCEPT_NAME" : "Major puerperal infection", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "40125005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36403113, + "CONCEPT_NAME" : "Malignant placental site trophoblastic tumor of placenta", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "9104/3-C58.9", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "ICDO3", + "CONCEPT_CLASS_ID" : "ICDO Condition" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4096041, + "CONCEPT_NAME" : "Malnutrition-related diabetes mellitus with ketoacidosis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "190406000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 77338, + "CONCEPT_NAME" : "Malposition and malpresentation of fetus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "270498000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4071505, + "CONCEPT_NAME" : "Manipulative cephalic vaginal delivery with abnormal presentation of head at delivery without instrument", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177180006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004845, + "CONCEPT_NAME" : "Manual exploration of uterine cavity, postpartum", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "75.7", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "3-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4170533, + "CONCEPT_NAME" : "Manual postpartum exploration of uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "49149002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4069969, + "CONCEPT_NAME" : "Manual removal of placenta from delivered uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177204008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4069968, + "CONCEPT_NAME" : "Manual removal of products of conception from delivered uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177203002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4151385, + "CONCEPT_NAME" : "Manual removal of retained placenta", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "28233006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004826, + "CONCEPT_NAME" : "Manual removal of retained placenta", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "75.4", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "3-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004764, + "CONCEPT_NAME" : "Manual rotation of fetal head", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "73.51", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4338977, + "CONCEPT_NAME" : "Marginal placenta previa with intrapartum hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87814002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37205103, + "CONCEPT_NAME" : "Massive epicranial subaponeurotic hematoma due to birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "784407005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4070523, + "CONCEPT_NAME" : "Massive subgaleal hemorrhage due to birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206202008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4048281, + "CONCEPT_NAME" : "Massive umbilical hemorrhage of newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206403000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44784126, + "CONCEPT_NAME" : "Mastitis associated with lactation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "700038005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4016059, + "CONCEPT_NAME" : "Maternal alcohol abuse", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "169942003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443295, + "CONCEPT_NAME" : "Maternal care for diminished fetal movements", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "200473005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4066354, + "CONCEPT_NAME" : "Maternal care for poor fetal growth", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "200474004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4091196, + "CONCEPT_NAME" : "Maternal condition during puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "249197004", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Observable Entity" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432977, + "CONCEPT_NAME" : "Maternal distress with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200101003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4062131, + "CONCEPT_NAME" : "Maternal distress with postnatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200102005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4197085, + "CONCEPT_NAME" : "Maternal dystocia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "79748007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441081, + "CONCEPT_NAME" : "Maternal gonorrhea during pregnancy - baby not yet delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199165004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443054, + "CONCEPT_NAME" : "Maternal gonorrhea during pregnancy, childbirth and the puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199161008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 314432, + "CONCEPT_NAME" : "Maternal hypotension syndrome", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "88887003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 313829, + "CONCEPT_NAME" : "Maternal hypotension syndrome - delivered with postnatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200112003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 315327, + "CONCEPT_NAME" : "Maternal hypotension syndrome with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200113008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4066002, + "CONCEPT_NAME" : "Maternal hypotension syndrome with postnatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200114002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443016, + "CONCEPT_NAME" : "Maternal malaria during pregnancy, childbirth and the puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199183007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443015, + "CONCEPT_NAME" : "Maternal malaria in the puerperium - baby delivered during current episode of care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199186004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443014, + "CONCEPT_NAME" : "Maternal malaria in the puerperium - baby delivered during previous episode of care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199188003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42872398, + "CONCEPT_NAME" : "Maternal obesity complicating pregnancy, childbirth and the puerperium, antepartum", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "171000119107", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439893, + "CONCEPT_NAME" : "Maternal obesity syndrome", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "44772007", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4297233, + "CONCEPT_NAME" : "Maternal postnatal 6 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "384636006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40485049, + "CONCEPT_NAME" : "Maternal postnatal examination done", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "444136005", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40483251, + "CONCEPT_NAME" : "Maternal postnatal examination not attended", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "443788002", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40485007, + "CONCEPT_NAME" : "Maternal postnatal examination offered", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "444099004", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40484589, + "CONCEPT_NAME" : "Maternal postnatal examination refused", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "444020006", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434105, + "CONCEPT_NAME" : "Maternal pyrexia during labor", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "37141005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4143214, + "CONCEPT_NAME" : "Maternal pyrexia in labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "267340006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438206, + "CONCEPT_NAME" : "Maternal rubella during pregnancy - baby delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199192005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435606, + "CONCEPT_NAME" : "Maternal syphilis during pregnancy - baby delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199156006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438205, + "CONCEPT_NAME" : "Maternal syphilis during pregnancy - baby not yet delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199158007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443020, + "CONCEPT_NAME" : "Maternal syphilis in the puerperium - baby delivered during previous episode of care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199159004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434697, + "CONCEPT_NAME" : "Maternal tobacco abuse", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169940006", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4197402, + "CONCEPT_NAME" : "Maternal transfer neutropenia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80255009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443018, + "CONCEPT_NAME" : "Maternal tuberculosis in the puerperium - baby delivered during current episode of care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199179007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40478936, + "CONCEPT_NAME" : "Measurement of alpha fetoprotein and analysis of chromosomes in amniotic fluid specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "444311009", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40483704, + "CONCEPT_NAME" : "Measurement of alpha fetoprotein and human chorionic gonadotropin and unconjugated estriol in serum or plasma specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "443883001", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40480870, + "CONCEPT_NAME" : "Measurement of alpha fetoprotein as marker for malignant neoplasm", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "441825001", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40483600, + "CONCEPT_NAME" : "Measurement of alpha fetoprotein in second trimester", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "442495004", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40481772, + "CONCEPT_NAME" : "Measurement of fasting glucose in urine specimen using dipstick", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "442033004", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40482677, + "CONCEPT_NAME" : "Measurement of glucose 1 hour after glucose challenge for glucose tolerance test", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "442260000", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4176733, + "CONCEPT_NAME" : "Measurement of glucose 2 hours after glucose challenge for glucose tolerance test", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "49167009", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4027514, + "CONCEPT_NAME" : "Measurement of glucose 3 hours after glucose challenge for glucose tolerance test", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13165004", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40482666, + "CONCEPT_NAME" : "Measurement of glucose 4 hours after glucose challenge for glucose tolerance test", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "442250009", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4143633, + "CONCEPT_NAME" : "Measurement of glucose 5 hours after glucose challenge for glucose tolerance test", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "34259007", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4232703, + "CONCEPT_NAME" : "Measurement of pregnancy associated plasma protein A concentration", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "440090009", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439934, + "CONCEPT_NAME" : "Meconium aspiration syndrome", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206292002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 193591, + "CONCEPT_NAME" : "Meconium ileus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206523001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4241979, + "CONCEPT_NAME" : "Meconium in amniotic fluid, not clear if noted before OR after onset of labor in liveborn infant", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59534005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4058519, + "CONCEPT_NAME" : "Meconium in amniotic fluid noted before labor in liveborn infant", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "2132004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4238980, + "CONCEPT_NAME" : "Meconium peritonitis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57341009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4315046, + "CONCEPT_NAME" : "Meconium pneumonitis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86649001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44807900, + "CONCEPT_NAME" : "Medical evacuation of retained products of conception using prostaglandin", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "854611000000109", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004762, + "CONCEPT_NAME" : "Medical induction of labor", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "73.4", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "3-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2721012, + "CONCEPT_NAME" : "Medically induced abortion by oral ingestion of medication including all associated services and supplies (e.g., patient counseling, office visits, confirmation of pregnancy by hcg, ultrasound to confirm duration of pregnancy, ultrasound to confirm com...", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "S0199", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4115153, + "CONCEPT_NAME" : "Medical termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "285409006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40487510, + "CONCEPT_NAME" : "Medical termination of pregnancy using prostaglandin", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "447972007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44784273, + "CONCEPT_NAME" : "Melena of newborn due to swallowed maternal blood", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "698318003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4112952, + "CONCEPT_NAME" : "Membranous pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198624007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442920, + "CONCEPT_NAME" : "Mental disorder during pregnancy - baby delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199259006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442918, + "CONCEPT_NAME" : "Mental disorder during pregnancy - baby not yet delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199261002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442919, + "CONCEPT_NAME" : "Mental disorder in the puerperium - baby delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199260001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442917, + "CONCEPT_NAME" : "Mental disorder in the puerperium - baby delivered during previous episode of care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199262009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060424, + "CONCEPT_NAME" : "Mental disorders during pregnancy, childbirth and the puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199257008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4113218, + "CONCEPT_NAME" : "Mesenteric pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198626009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432371, + "CONCEPT_NAME" : "Metabolic disorder following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "35208003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4029421, + "CONCEPT_NAME" : "Metabolic stress hyperglycemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237624007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3000034, + "CONCEPT_NAME" : "Microalbumin [Mass/volume] in Urine", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14957-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44513745, + "CONCEPT_NAME" : "Mid forceps cephalic delivery NEC", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "R21.4", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "OPCS4", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4075189, + "CONCEPT_NAME" : "Midforceps cephalic delivery with rotation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177164001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4266683, + "CONCEPT_NAME" : "Mid forceps delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "62508004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4093774, + "CONCEPT_NAME" : "Mid forceps delivery with episiotomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25828002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4143647, + "CONCEPT_NAME" : "Midforceps delivery without rotation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "265639000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004706, + "CONCEPT_NAME" : "Mid forceps operation with episiotomy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72.21", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4179832, + "CONCEPT_NAME" : "Mid postpartum state", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "42814007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44790206, + "CONCEPT_NAME" : "Mid trimester scan", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "228551000000105", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42535817, + "CONCEPT_NAME" : "Mid vacuum delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "734276001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4305717, + "CONCEPT_NAME" : "Midwife unit delivery booking", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "390782000", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4079970, + "CONCEPT_NAME" : "Mild birth asphyxia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276643006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4121760, + "CONCEPT_NAME" : "Mild birth asphyxia, APGAR 4-7", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "287986009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 436166, + "CONCEPT_NAME" : "Mild hyperemesis gravidarum", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "19569008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435023, + "CONCEPT_NAME" : "Mild hyperemesis-not delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199023008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4129842, + "CONCEPT_NAME" : "Mild postnatal depression", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237349002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4028783, + "CONCEPT_NAME" : "Mild postnatal psychosis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237351003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 314090, + "CONCEPT_NAME" : "Mild pre-eclampsia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "41114007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434759, + "CONCEPT_NAME" : "Mild to moderate birth asphyxia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "77362009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4173176, + "CONCEPT_NAME" : "Mild transient tachypnea of newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276531000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37394499, + "CONCEPT_NAME" : "Minor postpartum haemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1033571000000100", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4067106, + "CONCEPT_NAME" : "Miscarriage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "17369002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4087102, + "CONCEPT_NAME" : "Miscarriage at 8 to 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "184339009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 192678, + "CONCEPT_NAME" : "Miscarriage complicated by damage to pelvic organs and/or tissues", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "58990004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 195594, + "CONCEPT_NAME" : "Miscarriage complicated by delayed and/or excessive hemorrhage", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "2781009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 194704, + "CONCEPT_NAME" : "Miscarriage complicated by embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43306002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437920, + "CONCEPT_NAME" : "Miscarriage complicated by genital-pelvic infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "373896005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441348, + "CONCEPT_NAME" : "Miscarriage complicated by metabolic disorder", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13384007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 193820, + "CONCEPT_NAME" : "Miscarriage complicated by renal failure", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10697004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 196746, + "CONCEPT_NAME" : "Miscarriage complicated by shock", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "34270000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4323612, + "CONCEPT_NAME" : "Miscarriage due to Brucella abortus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428508008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4051244, + "CONCEPT_NAME" : "Miscarriage due to Leptospira", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16038004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4078393, + "CONCEPT_NAME" : "Miscarriage in first trimester", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "19169002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4224646, + "CONCEPT_NAME" : "Miscarriage in second trimester", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "85116003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4167685, + "CONCEPT_NAME" : "Miscarriage in third trimester", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48485000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530979, + "CONCEPT_NAME" : "Miscarriage of tubal ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609525000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4224597, + "CONCEPT_NAME" : "Miscarriage with acute necrosis of liver", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40444006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4211863, + "CONCEPT_NAME" : "Miscarriage with acute renal failure", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57469000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4064536, + "CONCEPT_NAME" : "Miscarriage with afibrinogenemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "21360006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4247270, + "CONCEPT_NAME" : "Miscarriage with air embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "60265009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4003276, + "CONCEPT_NAME" : "Miscarriage with amniotic fluid embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10058006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4209126, + "CONCEPT_NAME" : "Miscarriage with blood-clot embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55976003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4175137, + "CONCEPT_NAME" : "Miscarriage with cardiac arrest and/or cardiac failure", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48739004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4047775, + "CONCEPT_NAME" : "Miscarriage with cerebral anoxia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12394009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434094, + "CONCEPT_NAME" : "Miscarriage with complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "34614007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4179796, + "CONCEPT_NAME" : "Miscarriage with defibrination syndrome", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "50770000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4274315, + "CONCEPT_NAME" : "Miscarriage with electrolyte imbalance", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64814003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4149423, + "CONCEPT_NAME" : "Miscarriage with endometritis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "30806007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4278107, + "CONCEPT_NAME" : "Miscarriage with fat embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "66131005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4170457, + "CONCEPT_NAME" : "Miscarriage with heavy bleeding", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "275421004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4180568, + "CONCEPT_NAME" : "Miscarriage with intravascular hemolysis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "53183006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4194113, + "CONCEPT_NAME" : "Miscarriage with laceration of bladder", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "39199000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4041728, + "CONCEPT_NAME" : "Miscarriage with laceration of bowel", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16714009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4309780, + "CONCEPT_NAME" : "Miscarriage with laceration of broad ligament", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "85331004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4130670, + "CONCEPT_NAME" : "Miscarriage with laceration of cervix", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "127009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4261327, + "CONCEPT_NAME" : "Miscarriage with laceration of periurethral tissue", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "44814008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4302162, + "CONCEPT_NAME" : "Miscarriage with laceration of uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7809009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4311698, + "CONCEPT_NAME" : "Miscarriage with laceration of vagina", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "85632001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4217670, + "CONCEPT_NAME" : "Miscarriage with oliguria", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72613009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 436176, + "CONCEPT_NAME" : "Miscarriage without complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "23793007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4221853, + "CONCEPT_NAME" : "Miscarriage with parametritis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "83922009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4313166, + "CONCEPT_NAME" : "Miscarriage with pelvic peritonitis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "85991008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4310654, + "CONCEPT_NAME" : "Miscarriage with perforation of bladder", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "85467007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4216342, + "CONCEPT_NAME" : "Miscarriage with perforation of bowel", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "8071005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4031837, + "CONCEPT_NAME" : "Miscarriage with perforation of broad ligament", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14136000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4253804, + "CONCEPT_NAME" : "Miscarriage with perforation of cervix", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "74369005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4200070, + "CONCEPT_NAME" : "Miscarriage with perforation of periurethral tissue", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "51954003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4049891, + "CONCEPT_NAME" : "Miscarriage with perforation of uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15809008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4339107, + "CONCEPT_NAME" : "Miscarriage with perforation of vagina", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87967003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4168445, + "CONCEPT_NAME" : "Miscarriage with postoperative shock", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "47537002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4219469, + "CONCEPT_NAME" : "Miscarriage with pulmonary embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "82153002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4001856, + "CONCEPT_NAME" : "Miscarriage with renal tubular necrosis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "11026009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4195406, + "CONCEPT_NAME" : "Miscarriage with salpingitis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7910003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4189350, + "CONCEPT_NAME" : "Miscarriage with salpingo-oophoritis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "61568004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4285746, + "CONCEPT_NAME" : "Miscarriage with sepsis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "67465009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4244261, + "CONCEPT_NAME" : "Miscarriage with septic embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59204004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4085627, + "CONCEPT_NAME" : "Miscarriage with septic shock", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "18613002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4006806, + "CONCEPT_NAME" : "Miscarriage with uremia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "11109001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4033096, + "CONCEPT_NAME" : "Miscarriage with urinary tract infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1469007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 76482, + "CONCEPT_NAME" : "Missed miscarriage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16607004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4063183, + "CONCEPT_NAME" : "Mixed feto-pelvic disproportion", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199416003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 72970, + "CONCEPT_NAME" : "Mixed feto-pelvic disproportion - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199418002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 78817, + "CONCEPT_NAME" : "Mixed feto-pelvic disproportion with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199419005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4278101, + "CONCEPT_NAME" : "Mixed hypoglycemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "66095000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42539560, + "CONCEPT_NAME" : "Mixed neonatal apnea", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "762287001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4030429, + "CONCEPT_NAME" : "Moderate hyperemesis gravidarum", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "129597002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4034094, + "CONCEPT_NAME" : "Moderate proteinuric hypertension of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237281009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36675173, + "CONCEPT_NAME" : "Moderate to late prematurity of infant", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "771507004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37016955, + "CONCEPT_NAME" : "Monitoring fetal development", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "713117007", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4146288, + "CONCEPT_NAME" : "Monitoring of lochia by sanitary pad count", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "427406007", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43021951, + "CONCEPT_NAME" : "Monochorionic diamniotic twin pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "459168005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43021952, + "CONCEPT_NAME" : "Monochorionic monoamniotic twin pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "459171002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4199931, + "CONCEPT_NAME" : "Morning sickness", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "51885006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433260, + "CONCEPT_NAME" : "Mother delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "289256000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437041, + "CONCEPT_NAME" : "Mother not delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "289257009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4310471, + "CONCEPT_NAME" : "MS alpha-fetoprotein level", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "391516001", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110337, + "CONCEPT_NAME" : "Multifetal pregnancy reduction(s) (MPR)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59866", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4163851, + "CONCEPT_NAME" : "Multiple birth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45384004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4063163, + "CONCEPT_NAME" : "Multiple delivery, all by cesarean section", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199331008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4063162, + "CONCEPT_NAME" : "Multiple delivery, all by forceps and vacuum extractor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199330009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4059751, + "CONCEPT_NAME" : "Multiple delivery, all spontaneous", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199329004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 75015, + "CONCEPT_NAME" : "Multiple gestation with one OR more fetal malpresentations", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80224003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42539267, + "CONCEPT_NAME" : "Multiple liveborn in hospital by vaginal delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16089691000119102", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36713468, + "CONCEPT_NAME" : "Multiple liveborn other than twins born in hospital", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "717807001", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3045823, + "CONCEPT_NAME" : "Multiple pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45371-2", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Clinical Observation" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432969, + "CONCEPT_NAME" : "Multiple pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16356006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442082, + "CONCEPT_NAME" : "Multiple pregnancy with malpresentation - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199380003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4063175, + "CONCEPT_NAME" : "Multiple pregnancy with malpresentation with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199381004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4178154, + "CONCEPT_NAME" : "Multiple pregnancy with one fetal loss", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428511009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42599849, + "CONCEPT_NAME" : "Mycotic abortion", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "360061000009103", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED Veterinary", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3000119, + "CONCEPT_NAME" : "Narrative Fetal presentation US", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "18850-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Clinical Observation" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 201957, + "CONCEPT_NAME" : "Necrotizing enterocolitis in fetus OR newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "2707005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37311912, + "CONCEPT_NAME" : "Necrotizing enterocolitis of newborn, stage 1A", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "788986004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37311911, + "CONCEPT_NAME" : "Necrotizing enterocolitis of newborn, stage 1B", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "788987008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37311910, + "CONCEPT_NAME" : "Necrotizing enterocolitis of newborn, stage 2A", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "788988003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37311909, + "CONCEPT_NAME" : "Necrotizing enterocolitis of newborn, stage 2B", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "788989006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37311908, + "CONCEPT_NAME" : "Necrotizing enterocolitis of newborn, stage 3A", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "788990002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37311907, + "CONCEPT_NAME" : "Necrotizing enterocolitis of newborn, Stage 3B", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "788991003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4172307, + "CONCEPT_NAME" : "Neonatal acne", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "49706007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 765023, + "CONCEPT_NAME" : "Neonatal adrenal hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16060511000119104", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4319457, + "CONCEPT_NAME" : "Neonatal apneic attack", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "95616002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433589, + "CONCEPT_NAME" : "Neonatal aspiration of amniotic fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276540001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 252442, + "CONCEPT_NAME" : "Neonatal aspiration of blood", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206294001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437374, + "CONCEPT_NAME" : "Neonatal aspiration of meconium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "278927005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4172995, + "CONCEPT_NAME" : "Neonatal aspiration of milk", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276542009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434154, + "CONCEPT_NAME" : "Neonatal aspiration syndromes", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276533002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4171248, + "CONCEPT_NAME" : "Neonatal bacterial conjunctivitis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276680000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443522, + "CONCEPT_NAME" : "Neonatal bradycardia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "413341007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440840, + "CONCEPT_NAME" : "Neonatal candidiasis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "414821002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4070650, + "CONCEPT_NAME" : "Neonatal candidiasis of intestine", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206358003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4070651, + "CONCEPT_NAME" : "Neonatal candidiasis of lung", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206359006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4070648, + "CONCEPT_NAME" : "Neonatal candidiasis of perineum", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206356004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4106274, + "CONCEPT_NAME" : "Neonatal cardiac arrest", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "180906006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4110550, + "CONCEPT_NAME" : "Neonatal cardiorespiratory arrest", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "181869007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 761919, + "CONCEPT_NAME" : "Neonatal cerebral hematoma due to birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "194091000119102", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4129290, + "CONCEPT_NAME" : "Neonatal cerebral hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "261808007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4173173, + "CONCEPT_NAME" : "Neonatal chloridorrhea", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "276524004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36674511, + "CONCEPT_NAME" : "Neonatal clicking hip", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "778014002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4269452, + "CONCEPT_NAME" : "Neonatal condition - finding", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "364737004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36717459, + "CONCEPT_NAME" : "Neonatal conjunctivitis and dacrocystitis caused by Neisseria gonorrhoeae", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "721281003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4173019, + "CONCEPT_NAME" : "Neonatal cord dry", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276401008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4170953, + "CONCEPT_NAME" : "Neonatal cord moist", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276402001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4173020, + "CONCEPT_NAME" : "Neonatal cord sticky", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276403006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 373870, + "CONCEPT_NAME" : "Neonatal dacryocystitis and conjunctivitis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206345004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4210315, + "CONCEPT_NAME" : "Neonatal death of female (within 4 weeks, USA)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "56102008", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Event" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4206035, + "CONCEPT_NAME" : "Neonatal death of female (within 7 days, WHO)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55225009", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Event" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4239540, + "CONCEPT_NAME" : "Neonatal death of male (within 4 weeks, USA)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "91519006", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Event" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4244718, + "CONCEPT_NAME" : "Neonatal death of male (within 7 days, WHO)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "60257006", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Event" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4291447, + "CONCEPT_NAME" : "Neonatal dermatosis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "402795001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 193323, + "CONCEPT_NAME" : "Neonatal diabetes mellitus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "49817004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36716761, + "CONCEPT_NAME" : "Neonatal difficulty in feeding at breast", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "722934009", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42537680, + "CONCEPT_NAME" : "Neonatal disorder of oral mucosa", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "737211006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44784276, + "CONCEPT_NAME" : "Neonatal effect of alcohol transmitted via breast milk", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "698321001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44784301, + "CONCEPT_NAME" : "Neonatal effect of anti-infective agent transmitted via breast milk", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "698403003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44784360, + "CONCEPT_NAME" : "Neonatal effect of maternal intrauterine infection", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "698495000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36717269, + "CONCEPT_NAME" : "Neonatal effect of maternal postpartum depression", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "11047971000119109", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4050236, + "CONCEPT_NAME" : "Neonatal effect of noxious substance transmitted via breast milk", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "20952006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4025181, + "CONCEPT_NAME" : "Neonatal enamel hypoplasia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "196279002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36715839, + "CONCEPT_NAME" : "Neonatal eosinophilic esophagitis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "721612007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36716750, + "CONCEPT_NAME" : "Neonatal epistaxis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "722922001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36717488, + "CONCEPT_NAME" : "Neonatal esophagitis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "721611000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3188843, + "CONCEPT_NAME" : "Neonatal exposure to Hepatitis B in mother", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "9300001000004101", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "Nebraska Lexicon", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3175980, + "CONCEPT_NAME" : "Neonatal exposure to HIV in mother", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "9330001000004109", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "Nebraska Lexicon", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3173911, + "CONCEPT_NAME" : "Neonatal exposure to syphilis in mother", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "9310001000004104", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "Nebraska Lexicon", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4173004, + "CONCEPT_NAME" : "Neonatal facial petechiae", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276619008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44792481, + "CONCEPT_NAME" : "Neonatal feeding education", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "352641000000101", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36712969, + "CONCEPT_NAME" : "Neonatal gastroesophageal reflux", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15749591000119107", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4180181, + "CONCEPT_NAME" : "Neonatal gastrointestinal disorder", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "363219007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37109016, + "CONCEPT_NAME" : "Neonatal gastrointestinal hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16055151000119105", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4243042, + "CONCEPT_NAME" : "Neonatal Graves' disease", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59957008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42538558, + "CONCEPT_NAME" : "Neonatal hemorrhage of bladder", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "762289003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42538557, + "CONCEPT_NAME" : "Neonatal hemorrhage of kidney", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "762288006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42536722, + "CONCEPT_NAME" : "Neonatal hemorrhage of liver", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "735677007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36717593, + "CONCEPT_NAME" : "Neonatal hemorrhage of spleen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "722921008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42538559, + "CONCEPT_NAME" : "Neonatal hemorrhage of uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "762290007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4320490, + "CONCEPT_NAME" : "Neonatal hepatitis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "69800000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4318835, + "CONCEPT_NAME" : "Neonatal hepatocellular damage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "95555006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4214373, + "CONCEPT_NAME" : "Neonatal hepatosplenomegaly", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80378000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4132505, + "CONCEPT_NAME" : "Neonatal herpes simplex virus conjunctivitis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "410507001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 23034, + "CONCEPT_NAME" : "Neonatal hypoglycemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "52767006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36716745, + "CONCEPT_NAME" : "Neonatal hypotonia of hypopharynx", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "722916005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443618, + "CONCEPT_NAME" : "Neonatal hypoxemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "431335002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4174302, + "CONCEPT_NAME" : "Neonatal infection of the eye", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276675009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 76221, + "CONCEPT_NAME" : "Neonatal infective mastitis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "3468005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36676688, + "CONCEPT_NAME" : "Neonatal inflammatory skin and bowel disease", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "773662009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42536730, + "CONCEPT_NAME" : "Neonatal intestinal perforation co-occurrent and due to intestinal atresia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "735719008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42536732, + "CONCEPT_NAME" : "Neonatal intestinal perforation due to in utero intestinal volvulus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "735721003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42536731, + "CONCEPT_NAME" : "Neonatal intestinal perforation with congenital intestinal stenosis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "735720002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42539039, + "CONCEPT_NAME" : "Neonatal intestinal perforation with in utero intraluminal obstruction", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "735722005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37399026, + "CONCEPT_NAME" : "Neonatal intrahepatic cholestasis due to citrin deficiency", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "717155003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42536733, + "CONCEPT_NAME" : "Neonatal isolated ileal perforation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "735723000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435656, + "CONCEPT_NAME" : "Neonatal jaundice", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "387712008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440847, + "CONCEPT_NAME" : "Neonatal jaundice associated with preterm delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "73749009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4170445, + "CONCEPT_NAME" : "Neonatal jaundice due to deficiency of enzyme system for bilirubin conjugation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "275360003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439137, + "CONCEPT_NAME" : "Neonatal jaundice due to delayed conjugation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "17140000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4221399, + "CONCEPT_NAME" : "Neonatal jaundice due to delayed conjugation from breast milk inhibitor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "82696006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4239658, + "CONCEPT_NAME" : "Neonatal jaundice due to delayed conjugation from delayed development of conjugating system", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "69347004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4071740, + "CONCEPT_NAME" : "Neonatal jaundice with Crigler-Najjar syndrome", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206454000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4048614, + "CONCEPT_NAME" : "Neonatal jaundice with Gilbert's syndrome", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206456003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4071080, + "CONCEPT_NAME" : "Neonatal jaundice with porphyria", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206458002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4048294, + "CONCEPT_NAME" : "Neonatal jaundice with Rotor's syndrome", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206459005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42536729, + "CONCEPT_NAME" : "Neonatal malabsorption with gastrointestinal hormone-secreting endocrine tumor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "735718000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36716886, + "CONCEPT_NAME" : "Neonatal mass of hypopharynx", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "723111007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4048608, + "CONCEPT_NAME" : "Neonatal melena", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206424005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36717505, + "CONCEPT_NAME" : "Neonatal mucocutaneous infection caused by Candida", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "721795001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4308227, + "CONCEPT_NAME" : "Neonatal necrotizing enterocolitis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206525008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42535103, + "CONCEPT_NAME" : "Neonatal non-traumatic intraventricular hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15985031000119102", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 761782, + "CONCEPT_NAME" : "Neonatal nontraumatic subarachnoid hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15985111000119106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37116437, + "CONCEPT_NAME" : "Neonatal obstruction of intestine", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "733145007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42538263, + "CONCEPT_NAME" : "Neonatal oral candidiasis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "746223006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42536564, + "CONCEPT_NAME" : "Neonatal perforation of intestine caused by drug", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "735493006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439140, + "CONCEPT_NAME" : "Neonatal polycythemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "32984002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42537679, + "CONCEPT_NAME" : "Neonatal polycythemia due to intra-uterine growth retardation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "737210007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42537678, + "CONCEPT_NAME" : "Neonatal polycythemia due to placental insufficiency", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "737209002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3182078, + "CONCEPT_NAME" : "Neonatal potential for methadone withdrawal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "20290001000004109", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "Nebraska Lexicon", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 257375, + "CONCEPT_NAME" : "Neonatal pulmonary hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "414822009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4048286, + "CONCEPT_NAME" : "Neonatal rectal hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206425006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4316374, + "CONCEPT_NAME" : "Neonatal respiratory acidosis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "95612000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4316375, + "CONCEPT_NAME" : "Neonatal respiratory alkalosis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "95613005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 318856, + "CONCEPT_NAME" : "Neonatal respiratory arrest", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "95634003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36715567, + "CONCEPT_NAME" : "Neonatal sepsis caused by Malassezia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "721278008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 761851, + "CONCEPT_NAME" : "Neonatal sepsis caused by Staphylococcus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16060271000119109", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 761852, + "CONCEPT_NAME" : "Neonatal sepsis caused by Streptococcus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16060311000119109", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4298866, + "CONCEPT_NAME" : "Neonatal staphylococcal scalded skin syndrome", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "402967005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4300236, + "CONCEPT_NAME" : "Neonatal systemic candidiasis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "403000003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443523, + "CONCEPT_NAME" : "Neonatal tachycardia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "413342000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4264166, + "CONCEPT_NAME" : "Neonatal thrombocytopenia due to idiopathic maternal thrombocytopenia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "61744005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 137099, + "CONCEPT_NAME" : "Neonatal thyrotoxicosis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13795004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4243198, + "CONCEPT_NAME" : "Neonatal tooth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "58748004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4210115, + "CONCEPT_NAME" : "Neonatal tracheobronchial hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "312858004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36717571, + "CONCEPT_NAME" : "Neonatal traumatic hemorrhage of trachea following procedure on lower respiratory tract", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "722579002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4047937, + "CONCEPT_NAME" : "Neonatal urinary tract infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12301009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 194598, + "CONCEPT_NAME" : "Neoplasm of uncertain behavior of placenta", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "95005005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2101016, + "CONCEPT_NAME" : "Neuraxial analgesia/anesthesia for labor ending in a cesarean delivery (includes any repeat subarachnoid needle placement and drug injection and/or any necessary replacement of an epidural catheter during labor) (Deprecated)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "00857", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2101813, + "CONCEPT_NAME" : "Neuraxial labor analgesia/anesthesia for planned vaginal delivery (this includes any repeat subarachnoid needle placement and drug injection and/or any necessary replacement of an epidural catheter during labor)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "01967", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4034967, + "CONCEPT_NAME" : "Neuroglycopenia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237631006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4171104, + "CONCEPT_NAME" : "Neutropenia of the small for gestational age baby", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276576000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4173513, + "CONCEPT_NAME" : "Neville-Barnes forceps delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "275168001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 46284810, + "CONCEPT_NAME" : "New birth examination completed by other healthcare provider", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "955251000000102", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4079843, + "CONCEPT_NAME" : "Newborn death", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276506001", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Event" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4173194, + "CONCEPT_NAME" : "Newborn drug intoxication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276582002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4173193, + "CONCEPT_NAME" : "Newborn drug reaction", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276581009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4171092, + "CONCEPT_NAME" : "Newborn environmental hypothermia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276529009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4079846, + "CONCEPT_NAME" : "Newborn ingestion of maternal blood", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276539003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3200880, + "CONCEPT_NAME" : "Newborn metabolic screen finding abnormal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "9100001000004106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "Nebraska Lexicon", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2721181, + "CONCEPT_NAME" : "Newborn metabolic screening panel, includes test kit, postage and the laboratory tests specified by the state for inclusion in this panel (e.g., galactose; hemoglobin, electrophoresis; hydroxyprogesterone, 17-d; phenylalanine (pku); and thyroxine, total)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "S3620", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4173180, + "CONCEPT_NAME" : "Newborn physiological jaundice", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276549000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4207827, + "CONCEPT_NAME" : "Newborn regurgitation of food", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55331005", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42739015, + "CONCEPT_NAME" : "Newborn resuscitation: provision of positive pressure ventilation and/or chest compressions in the presence of acute inadequate ventilation and/or cardiac output", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "99440", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4129520, + "CONCEPT_NAME" : "Nocturnal hypoglycemia due to diabetes mellitus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237635002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4127831, + "CONCEPT_NAME" : "No further involution of the uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "289753009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3655876, + "CONCEPT_NAME" : "Noma neonatorum", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "870353004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4029424, + "CONCEPT_NAME" : "Non-diabetic hypoglycemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237637005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 76533, + "CONCEPT_NAME" : "Non-immune hydrops fetalis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276509008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37017029, + "CONCEPT_NAME" : "Non immune hydrops in newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "713204000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36715842, + "CONCEPT_NAME" : "Non-infective neonatal diarrhea", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "721615009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4176715, + "CONCEPT_NAME" : "Non-involution of uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "4907004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4071630, + "CONCEPT_NAME" : "Non-manipulative cephalic vaginal delivery with abnormal presentation of head at delivery without instrument", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177181005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4275443, + "CONCEPT_NAME" : "Non-pregnancy related A-G syndrome", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64678009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442573, + "CONCEPT_NAME" : "Nonpurulent mastitis associated with childbirth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "78697003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36713477, + "CONCEPT_NAME" : "Nonpurulent mastitis associated with childbirth with attachment difficulty", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "717818001", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45757111, + "CONCEPT_NAME" : "Nonpurulent mastitis associated with lactation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10750411000119102", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4127248, + "CONCEPT_NAME" : "Nonrotational forceps delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "236975003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44790222, + "CONCEPT_NAME" : "Non routine obstetric scan for fetal observations", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "228691000000101", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4080067, + "CONCEPT_NAME" : "Non-urgent obstetric admission", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "183494008", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4171058, + "CONCEPT_NAME" : "Nonvenomous insect bite of anus with infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "42089007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4148533, + "CONCEPT_NAME" : "Nonvenomous insect bite of penis with infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "35057008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4149402, + "CONCEPT_NAME" : "Nonvenomous insect bite of perineum with infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "30818003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4187237, + "CONCEPT_NAME" : "Nonvenomous insect bite of scrotum with infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "47027001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4201764, + "CONCEPT_NAME" : "Nonvenomous insect bite of vulva with infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "53706009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014720, + "CONCEPT_NAME" : "Normal birth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169961004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4080889, + "CONCEPT_NAME" : "Normal birth weight", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276712009", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4063160, + "CONCEPT_NAME" : "Normal delivery but ante- or post- natal conditions present", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199314001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4070222, + "CONCEPT_NAME" : "Normal delivery of placenta", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "177212000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4071507, + "CONCEPT_NAME" : "Normal delivery procedure", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177184002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4009404, + "CONCEPT_NAME" : "Normal glucose level", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "102659003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42739012, + "CONCEPT_NAME" : "Normal newborn care in other than hospital or birthing room setting, including physical examination of baby and conference(s) with parent(s)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "99432", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4217975, + "CONCEPT_NAME" : "Normal pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72892002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45765512, + "CONCEPT_NAME" : "Normogonadotropic amenorrhea", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "702466002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4028938, + "CONCEPT_NAME" : "Normoprolactinemic galactorrhea", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237801002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4186424, + "CONCEPT_NAME" : "Nuchal ultrasound scan", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "414880004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3002549, + "CONCEPT_NAME" : "Number of fetuses by US", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "11878-6", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Clinical Observation" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442051, + "CONCEPT_NAME" : "Obstetric air pulmonary embolism with antenatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200290001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442050, + "CONCEPT_NAME" : "Obstetric air pulmonary embolism with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200291002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 314107, + "CONCEPT_NAME" : "Obstetrical cardiac complication of anesthesia AND/OR sedation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64171002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432976, + "CONCEPT_NAME" : "Obstetrical complication of anesthesia AND/OR sedation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "29847008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442294, + "CONCEPT_NAME" : "Obstetrical pulmonary complication of anesthesia AND/OR sedation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "51154004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45757105, + "CONCEPT_NAME" : "Obstetric anesthesia with cardiac complication in childbirth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10749691000119103", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4064980, + "CONCEPT_NAME" : "Obstetric anesthesia with cardiac complications with postnatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200059007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45757106, + "CONCEPT_NAME" : "Obstetric anesthesia with central nervous system complication in childbirth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10749811000119108", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4065091, + "CONCEPT_NAME" : "Obstetric anesthesia with central nervous system complication with postnatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200066008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4064979, + "CONCEPT_NAME" : "Obstetric anesthesia with pulmonary complications with postnatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200052003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442053, + "CONCEPT_NAME" : "Obstetric blood-clot pulmonary embolism - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200301007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433545, + "CONCEPT_NAME" : "Obstetric blood-clot pulmonary embolism with antenatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200303005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437060, + "CONCEPT_NAME" : "Obstetric blood-clot pulmonary embolism with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200304004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443263, + "CONCEPT_NAME" : "Obstetric breast abscess", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "270502007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 74433, + "CONCEPT_NAME" : "Obstetric breast abscess - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200374003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 78494, + "CONCEPT_NAME" : "Obstetric breast abscess - delivered with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200375002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 78218, + "CONCEPT_NAME" : "Obstetric breast abscess with antenatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200376001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443293, + "CONCEPT_NAME" : "Obstetric breast abscess with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200377005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4063697, + "CONCEPT_NAME" : "Obstetric breast infections", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200364001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 75326, + "CONCEPT_NAME" : "Obstetric damage to pelvic joints and ligaments - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199990003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442079, + "CONCEPT_NAME" : "Obstetric damage to pelvic joints and ligaments with postnatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199991004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4084521, + "CONCEPT_NAME" : "Obstetric D.V. done", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "183760007", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4080059, + "CONCEPT_NAME" : "Obstetric emergency hospital admission", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "183460006", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038747, + "CONCEPT_NAME" : "Obstetric examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "163497009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 192979, + "CONCEPT_NAME" : "Obstetric high vaginal laceration", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199977005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 193269, + "CONCEPT_NAME" : "Obstetric high vaginal laceration - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199979008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 200472, + "CONCEPT_NAME" : "Obstetric high vaginal laceration with postnatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199980006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 197048, + "CONCEPT_NAME" : "Obstetric inversion of uterus - delivered with postnatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199969006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442080, + "CONCEPT_NAME" : "Obstetric laceration of cervix - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199974003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442083, + "CONCEPT_NAME" : "Obstetric laceration of cervix with postnatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199975002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4140250, + "CONCEPT_NAME" : "Obstetric monitoring", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "265642006", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441925, + "CONCEPT_NAME" : "Obstetric nipple infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "267289003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441926, + "CONCEPT_NAME" : "Obstetric nipple infection with antenatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200369006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433837, + "CONCEPT_NAME" : "Obstetric nipple infection with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200370007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 79897, + "CONCEPT_NAME" : "Obstetric non-purulent mastitis - delivered with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200382003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 76491, + "CONCEPT_NAME" : "Obstetric non-purulent mastitis with antenatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200383008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 76771, + "CONCEPT_NAME" : "Obstetric non-purulent mastitis with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200385001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2212094, + "CONCEPT_NAME" : "Obstetric panel This panel must include the following: Blood count, complete (CBC), automated and automated differential WBC count (85025 or 85027 and 85004) OR Blood count, complete (CBC), automated (85027) and appropriate manual differential WBC count (", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80055", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 201368, + "CONCEPT_NAME" : "Obstetric pelvic hematoma - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199995008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 193271, + "CONCEPT_NAME" : "Obstetric pelvic hematoma - delivered with postnatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199996009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060178, + "CONCEPT_NAME" : "Obstetric pelvic hematoma with postnatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199997000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4129839, + "CONCEPT_NAME" : "Obstetric pelvic joint damage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237328003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4034149, + "CONCEPT_NAME" : "Obstetric pelvic ligament damage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237327008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 194439, + "CONCEPT_NAME" : "Obstetric perineal wound disruption", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "397752008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 192387, + "CONCEPT_NAME" : "Obstetric perineal wound disruption - delivered with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200342005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442417, + "CONCEPT_NAME" : "Obstetric perineal wound disruption with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200343000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435026, + "CONCEPT_NAME" : "Obstetric pulmonary embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200284000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433832, + "CONCEPT_NAME" : "Obstetric pulmonary thromboembolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200299000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439380, + "CONCEPT_NAME" : "Obstetric pyemic and septic pulmonary embolism with antenatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200310004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439379, + "CONCEPT_NAME" : "Obstetric pyemic and septic pulmonary embolism with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200311000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4081774, + "CONCEPT_NAME" : "Obstetric self-referral", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "183695003", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 195025, + "CONCEPT_NAME" : "Obstetric shock - delivered with postnatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200106008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442071, + "CONCEPT_NAME" : "Obstetric shock with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200107004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4065635, + "CONCEPT_NAME" : "Obstetric shock with postnatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200108009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004846, + "CONCEPT_NAME" : "Obstetric tamponade of uterus or vagina", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "75.8", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "3-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 76763, + "CONCEPT_NAME" : "Obstetric trauma damaging pelvic joints and ligaments", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "267271004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44790279, + "CONCEPT_NAME" : "Obstetric ultrasound monitoring", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "228921000000108", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4059051, + "CONCEPT_NAME" : "Obstetric X-ray - fetus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "168760000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4085285, + "CONCEPT_NAME" : "Obstetric X-ray - placenta", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "241059000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 193827, + "CONCEPT_NAME" : "Obstructed labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199746004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 197051, + "CONCEPT_NAME" : "Obstructed labor caused by bony pelvis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199757009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 199087, + "CONCEPT_NAME" : "Obstructed labor caused by bony pelvis - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199759007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 193273, + "CONCEPT_NAME" : "Obstructed labor caused by bony pelvis with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199760002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 192694, + "CONCEPT_NAME" : "Obstructed labor caused by pelvic soft tissues", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199767004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 196182, + "CONCEPT_NAME" : "Obstructed labor caused by pelvic soft tissues - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199769001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442440, + "CONCEPT_NAME" : "Obstructed labor caused by pelvic soft tissues with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199770000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061852, + "CONCEPT_NAME" : "Obstructed labor due to abnormality of maternal pelvic organs", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199765007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 46269810, + "CONCEPT_NAME" : "Obstructed labor due to abnormality of maternal pelvis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10751631000119101", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060036, + "CONCEPT_NAME" : "Obstructed labor due to breech presentation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199751005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060037, + "CONCEPT_NAME" : "Obstructed labor due to brow presentation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199753008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4064819, + "CONCEPT_NAME" : "Obstructed labor due to compound presentation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199755001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37310898, + "CONCEPT_NAME" : "Obstructed labor due to deep transverse arrest and persistent occipitoposterior position", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "31041000119106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4064821, + "CONCEPT_NAME" : "Obstructed labor due to deformed pelvis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199761003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45757117, + "CONCEPT_NAME" : "Obstructed labor due to disproportion between fetus and pelvis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10751581000119104", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061850, + "CONCEPT_NAME" : "Obstructed labor due to face presentation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199752003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37396169, + "CONCEPT_NAME" : "Obstructed labor due to fetal abnormality", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "715880002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 194100, + "CONCEPT_NAME" : "Obstructed labor due to fetal malposition", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199747008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 194711, + "CONCEPT_NAME" : "Obstructed labor due to fetal malposition - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199749006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 193831, + "CONCEPT_NAME" : "Obstructed labor due to fetal malposition with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199750006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060039, + "CONCEPT_NAME" : "Obstructed labor due to generally contracted pelvis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199762005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45772074, + "CONCEPT_NAME" : "Obstructed labor due to incomplete rotation of fetal head", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10751511000119105", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4064423, + "CONCEPT_NAME" : "Obstructed labor due to pelvic inlet contraction", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199763000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4064424, + "CONCEPT_NAME" : "Obstructed labor due to pelvic outlet and mid-cavity contraction", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199764006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42536563, + "CONCEPT_NAME" : "Obstructed labor due to shoulder dystocia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "735492001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060038, + "CONCEPT_NAME" : "Obstructed labor due to shoulder presentation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199754002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4064437, + "CONCEPT_NAME" : "Obstructed labor due to unusually large fetus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199806003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4300773, + "CONCEPT_NAME" : "Obstruction by bony pelvis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "77563000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444404, + "CONCEPT_NAME" : "Obstruction caused by position of fetus at onset of labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "20625004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 252305, + "CONCEPT_NAME" : "Obstructive apnea of newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276545006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3655849, + "CONCEPT_NAME" : "Ocular hypertension due to birth injury", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "870324000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4091789, + "CONCEPT_NAME" : "Odor of lochia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "249215002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038420, + "CONCEPT_NAME" : "O/E - breech presentation", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163514003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038571, + "CONCEPT_NAME" : "O/E - fetal heart 120-160", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163548002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038945, + "CONCEPT_NAME" : "O/E - fetal heart heard", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163542001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4039088, + "CONCEPT_NAME" : "O/E - fetal heart not heard", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163543006", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038943, + "CONCEPT_NAME" : "O/E - fetal movement diminished", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163540009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038942, + "CONCEPT_NAME" : "O/E - fetal movements", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163535001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038426, + "CONCEPT_NAME" : "O/E - fetal movements felt", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163538004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4039610, + "CONCEPT_NAME" : "O/E - fetal movements seen", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163537009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4150948, + "CONCEPT_NAME" : "O/E - fetal presentation", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "268952006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038938, + "CONCEPT_NAME" : "O/E -fetal presentation unsure", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163518000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038760, + "CONCEPT_NAME" : "O/E - fetus very active", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163539007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038418, + "CONCEPT_NAME" : "O/E - fundal size = dates", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163510007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038749, + "CONCEPT_NAME" : "O/E - fundus 12-16 week size", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163499007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038751, + "CONCEPT_NAME" : "O/E - fundus 16-20 week size", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163500003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038932, + "CONCEPT_NAME" : "O/E - fundus 20-24 week size", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163501004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4039602, + "CONCEPT_NAME" : "O/E - fundus 24-28 week size", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163502006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038753, + "CONCEPT_NAME" : "O/E - fundus 28-32 week size", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163504007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038754, + "CONCEPT_NAME" : "O/E - fundus 32-34 week size", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163505008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038755, + "CONCEPT_NAME" : "O/E - fundus 34-36 week size", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163506009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038934, + "CONCEPT_NAME" : "O/E - fundus 36-38 week size", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163507000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038756, + "CONCEPT_NAME" : "O/E -fundus 38 weeks-term size", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163508005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4255282, + "CONCEPT_NAME" : "O/E - fundus not adequately seen", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "408314005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038935, + "CONCEPT_NAME" : "O/E - fundus = term size", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163509002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038748, + "CONCEPT_NAME" : "O/E - gravid uterus size", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163498004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4039609, + "CONCEPT_NAME" : "O/E - no fetal movements", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163536000", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038759, + "CONCEPT_NAME" : "O/E - partial engagement - 3/5", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163531005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4175225, + "CONCEPT_NAME" : "O/E - PP free - not engaged", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "275968002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038424, + "CONCEPT_NAME" : "O/E - presentation engaged-1/5", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163533008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4171428, + "CONCEPT_NAME" : "O/E - presenting part engaged", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "275969005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4039608, + "CONCEPT_NAME" : "O/E - presenting part free-4/5", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163530006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038941, + "CONCEPT_NAME" : "O/E - presenting part free-5/5", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163529001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038939, + "CONCEPT_NAME" : "O/E - presenting part position", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163520002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038937, + "CONCEPT_NAME" : "O/E - transverse lie", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163516001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038573, + "CONCEPT_NAME" : "O/E - VE for pelvic assessment", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163555000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4039603, + "CONCEPT_NAME" : "O/E - vertex presentation", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163513009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4194143, + "CONCEPT_NAME" : "O/E - viable fetus", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "312354009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4173013, + "CONCEPT_NAME" : "Offensive lochia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276375002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 196159, + "CONCEPT_NAME" : "Old laceration of muscles of pelvic floor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "467003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434111, + "CONCEPT_NAME" : "Oligohydramnios", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59566000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433274, + "CONCEPT_NAME" : "Oligohydramnios - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199653002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432386, + "CONCEPT_NAME" : "Oligohydramnios with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199654008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4107071, + "CONCEPT_NAME" : "Oliguria following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "29908007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4034650, + "CONCEPT_NAME" : "Omphalitis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "239095007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 201136, + "CONCEPT_NAME" : "Omphalitis of newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "42052009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4073719, + "CONCEPT_NAME" : "On maternity leave", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "224457004", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2213351, + "CONCEPT_NAME" : "Oocyte identification from follicular fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "89254", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4072862, + "CONCEPT_NAME" : "Oocyte recovery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177037000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004767, + "CONCEPT_NAME" : "Operations on fetus to facilitate delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "73.8", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "3-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4119975, + "CONCEPT_NAME" : "Operative termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "302375005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004746, + "CONCEPT_NAME" : "Other artificial rupture of membranes", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "73.09", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004802, + "CONCEPT_NAME" : "Other cesarean section of unspecified type", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "74.99", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004822, + "CONCEPT_NAME" : "Other diagnostic procedures on fetus and amnion", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "75.35", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004811, + "CONCEPT_NAME" : "Other fetal monitoring", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "75.34", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 46232934, + "CONCEPT_NAME" : "Other introduction of gametes into uterine cavity", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "Q21", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "OPCS4", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004765, + "CONCEPT_NAME" : "Other manually assisted delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "73.59", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004707, + "CONCEPT_NAME" : "Other mid forceps operation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72.29", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004862, + "CONCEPT_NAME" : "Other obstetric operations", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "75.99", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004783, + "CONCEPT_NAME" : "Other operations assisting delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "73.99", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004768, + "CONCEPT_NAME" : "Other operations assisting delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "73.9", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "3-dig nonbill code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004724, + "CONCEPT_NAME" : "Other partial breech extraction", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72.52", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004348, + "CONCEPT_NAME" : "Other partial salpingectomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "66.69", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4191809, + "CONCEPT_NAME" : "Other procedures inducing or assisting delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "73", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "2-dig nonbill code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44513736, + "CONCEPT_NAME" : "Other specified breech extraction delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "R19.8", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "OPCS4", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44513756, + "CONCEPT_NAME" : "Other specified cephalic vaginal delivery with abnormal presentation of head at delivery without instrument", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "R23.8", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "OPCS4", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44513729, + "CONCEPT_NAME" : "Other specified elective caesarean delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "R17.8", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "OPCS4", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44513747, + "CONCEPT_NAME" : "Other specified forceps cephalic delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "R21.8", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "OPCS4", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004731, + "CONCEPT_NAME" : "Other specified instrumental delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72.8", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "3-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44513476, + "CONCEPT_NAME" : "Other specified introduction of abortifacient into uterine cavity", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "Q14.8", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "OPCS4", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44513468, + "CONCEPT_NAME" : "Other specified introduction of gametes into uterine cavity", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "Q13.8", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "OPCS4", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44517168, + "CONCEPT_NAME" : "Other specified in vitro fertilisation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "Y96.8", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "OPCS4", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44513799, + "CONCEPT_NAME" : "Other specified non-routine obstetric scan for fetal observations", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "R37.8", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "OPCS4", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44513812, + "CONCEPT_NAME" : "Other specified obstetric Doppler ultrasound", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "R42.8", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "OPCS4", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4075024, + "CONCEPT_NAME" : "Other specified oocyte recovery", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "177043003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44513634, + "CONCEPT_NAME" : "Other specified oocyte recovery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "Q48.8", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "OPCS4", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44513740, + "CONCEPT_NAME" : "Other specified other breech delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "R20.8", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "OPCS4", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44513733, + "CONCEPT_NAME" : "Other specified other caesarean delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "R18.8", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "OPCS4", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44513516, + "CONCEPT_NAME" : "Other specified other introduction of gametes into uterine cavity", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "Q21.8", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "OPCS4", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44513803, + "CONCEPT_NAME" : "Other specified other non-routine obstetric scan", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "R38.8", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "OPCS4", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44513791, + "CONCEPT_NAME" : "Other specified routine obstetric scan", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "R36.8", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "OPCS4", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44513816, + "CONCEPT_NAME" : "Other specified ultrasound monitoring", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "R43.8", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "OPCS4", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44513752, + "CONCEPT_NAME" : "Other specified vacuum delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "R22.8", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "OPCS4", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004747, + "CONCEPT_NAME" : "Other surgical induction of labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "73.1", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "3-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004726, + "CONCEPT_NAME" : "Other total breech extraction", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72.54", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004730, + "CONCEPT_NAME" : "Other vacuum extraction", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72.79", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4145318, + "CONCEPT_NAME" : "Outcome of delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "268475008", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Observable Entity" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4127249, + "CONCEPT_NAME" : "Outlet forceps delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "236976002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 73824, + "CONCEPT_NAME" : "Outlet pelvic contraction - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199413006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 72378, + "CONCEPT_NAME" : "Outlet pelvic contraction with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199414000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42535816, + "CONCEPT_NAME" : "Outlet vacuum delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "734275002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 200153, + "CONCEPT_NAME" : "Ovarian pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "9899009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4049041, + "CONCEPT_NAME" : "Overfeeding in newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206567004", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443323, + "CONCEPT_NAME" : "Papyraceous fetus - not delivered", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "199070009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4159154, + "CONCEPT_NAME" : "Paralysis from birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "371129000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4319461, + "CONCEPT_NAME" : "Paralytic ileus of the newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "95625008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336392, + "CONCEPT_NAME" : "Parametritis following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87169001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4079236, + "CONCEPT_NAME" : "Parenchymatous mastitis associated with childbirth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "18237006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4234421, + "CONCEPT_NAME" : "Partial breech delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "359943008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4023797, + "CONCEPT_NAME" : "Partial breech delivery with forceps to aftercoming head", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "19390001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4267567, + "CONCEPT_NAME" : "Partial salpingectomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "62692004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4248080, + "CONCEPT_NAME" : "Parturient hemorrhage associated with afibrinogenemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "9442009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4145439, + "CONCEPT_NAME" : "Parturient hemorrhage associated with hyperfibrinolysis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "34327003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4296604, + "CONCEPT_NAME" : "Parturient hemorrhage associated with hypofibrinogenemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "76771005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4231407, + "CONCEPT_NAME" : "Parturient paresis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "405256006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 195075, + "CONCEPT_NAME" : "Passage of meconium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "249529000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4211227, + "CONCEPT_NAME" : "Pathologic amenorrhea", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "56561006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4025199, + "CONCEPT_NAME" : "Pelvic dystocia AND/OR uterine disorder", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "106010004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 198221, + "CONCEPT_NAME" : "Pelvic hematoma during delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "5740008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4314877, + "CONCEPT_NAME" : "Pelvic peritonitis following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86709000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442829, + "CONCEPT_NAME" : "Pelvic soft tissue abnormality in pregnancy, childbirth and the puerperium - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199511005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 195019, + "CONCEPT_NAME" : "Pelvic soft tissue abnormality in pregnancy, childbirth and the puerperium with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199513008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4285751, + "CONCEPT_NAME" : "Pelvic thrombophlebitis in puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "67486009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4172869, + "CONCEPT_NAME" : "Peptic ulcer of newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276525003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4073428, + "CONCEPT_NAME" : "Percutaneous sampling of chorionic villus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177107006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36716687, + "CONCEPT_NAME" : "Perforation of intestine co-occurrent and due to meconium ileus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "722841004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37204732, + "CONCEPT_NAME" : "Perilipin 1 related familial partial lipodystrophy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "783616005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4306199, + "CONCEPT_NAME" : "Perinatal anemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "387702001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 374748, + "CONCEPT_NAME" : "Perinatal anoxic-ischemic brain injury", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "126945001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4321550, + "CONCEPT_NAME" : "Perinatal apneic spells", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "70073005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36716757, + "CONCEPT_NAME" : "Perinatal arterial ischemic stroke", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "722929005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4084442, + "CONCEPT_NAME" : "Perinatal asphyxia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "281578009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 260212, + "CONCEPT_NAME" : "Perinatal atelectasis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54959009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4080888, + "CONCEPT_NAME" : "Perinatal cerebral ischemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276706004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 135370, + "CONCEPT_NAME" : "Perinatal cutaneous hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "18503002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 134760, + "CONCEPT_NAME" : "Perinatal cyanotic attacks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "38593000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4187201, + "CONCEPT_NAME" : "Perinatal disorder", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "415073005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4079851, + "CONCEPT_NAME" : "Perinatal disorder of electrolytes", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276569005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4173002, + "CONCEPT_NAME" : "Perinatal disorder of growth and/or development", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276603001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4171097, + "CONCEPT_NAME" : "Perinatal disorders of glucose regulation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276555005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4173179, + "CONCEPT_NAME" : "Perinatal disorders of liver and/or biliary system", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276548008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4173198, + "CONCEPT_NAME" : "Perinatal falx laceration", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276593000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4300467, + "CONCEPT_NAME" : "Perinatal forceps injury", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "403848003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 194158, + "CONCEPT_NAME" : "Perinatal gastrointestinal hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48729005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439931, + "CONCEPT_NAME" : "Perinatal hemolytic jaundice", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "288279008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42872438, + "CONCEPT_NAME" : "Perinatal hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "450429004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42536566, + "CONCEPT_NAME" : "Perinatal hemorrhage of lung due to traumatic injury", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "735495004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4171096, + "CONCEPT_NAME" : "Perinatal hepatitis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276551001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4173181, + "CONCEPT_NAME" : "Perinatal hepatocellular damage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276552008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4105262, + "CONCEPT_NAME" : "Perinatal hypoxia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "281579001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4171102, + "CONCEPT_NAME" : "Perinatal hypoxia and asphyxia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276570006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42536745, + "CONCEPT_NAME" : "Perinatal infection caused by Human herpes simplex virus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "735737009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 258564, + "CONCEPT_NAME" : "Perinatal interstitial emphysema", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "60125001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4171091, + "CONCEPT_NAME" : "Perinatal intestinal obstruction", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276521007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 199925, + "CONCEPT_NAME" : "Perinatal intestinal perforation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65390006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4174299, + "CONCEPT_NAME" : "Perinatal intracranial hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276647007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4173000, + "CONCEPT_NAME" : "Perinatal intracranial laceration", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276588003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 436519, + "CONCEPT_NAME" : "Perinatal intraventricular hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "70611002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4071743, + "CONCEPT_NAME" : "Perinatal jaundice due to cystic fibrosis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206471004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 195064, + "CONCEPT_NAME" : "Perinatal jaundice due to hepatocellular damage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10877007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438869, + "CONCEPT_NAME" : "Perinatal jaundice due to hereditary hemolytic anemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "56921004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4071737, + "CONCEPT_NAME" : "Perinatal jaundice from bleeding", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206448001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4071735, + "CONCEPT_NAME" : "Perinatal jaundice from bruising", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206442000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433029, + "CONCEPT_NAME" : "Perinatal jaundice from excessive hemolysis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "24911006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4048292, + "CONCEPT_NAME" : "Perinatal jaundice from infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206444004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4071076, + "CONCEPT_NAME" : "Perinatal jaundice from maternal transmission of drug or toxin", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206443005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4071736, + "CONCEPT_NAME" : "Perinatal jaundice from polycythemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206446002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4048610, + "CONCEPT_NAME" : "Perinatal jaundice from swallowed maternal blood", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206447006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3663236, + "CONCEPT_NAME" : "Perinatal lethal Gaucher disease", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "870313002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4071717, + "CONCEPT_NAME" : "Perinatal lung intra-alveolar hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206303001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4048282, + "CONCEPT_NAME" : "Perinatal melena", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206407004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3655840, + "CONCEPT_NAME" : "Perinatal mucocutaneous infection caused by Human herpesvirus 3", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "870310004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4287783, + "CONCEPT_NAME" : "Perinatal necrotizing enterocolitis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "397729009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4079855, + "CONCEPT_NAME" : "Perinatal nonspecific brain dysfunction", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276595007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4173197, + "CONCEPT_NAME" : "Perinatal occipital diastasis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276592005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4006329, + "CONCEPT_NAME" : "Perinatal partial atelectasis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "111466004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4278842, + "CONCEPT_NAME" : "Perinatal pulmonary collapse", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "66151009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4263343, + "CONCEPT_NAME" : "Perinatal pulmonary fibroplasia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "361194002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43021073, + "CONCEPT_NAME" : "Perinatal pulmonary hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "472857006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 313590, + "CONCEPT_NAME" : "Perinatal respiratory failure", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "91581004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4171108, + "CONCEPT_NAME" : "Perinatal rupture of superficial cerebral vein", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276594006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4243494, + "CONCEPT_NAME" : "Perinatal secondary atelectasis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59113005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4048166, + "CONCEPT_NAME" : "Perinatal sensorineural hearing loss", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "232331006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37017557, + "CONCEPT_NAME" : "Perinatal sepsis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "713854001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37017566, + "CONCEPT_NAME" : "Perinatal sepsis caused by Escherichia coli", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "713866007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37019087, + "CONCEPT_NAME" : "Perinatal sepsis caused by Streptococcus agalactiae", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "713865006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4071198, + "CONCEPT_NAME" : "Perinatal skin and temperature regulation disorders", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206537005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4301414, + "CONCEPT_NAME" : "Perinatal skin trauma due to obstetric injury", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "403847008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4080885, + "CONCEPT_NAME" : "Perinatal skull defect", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276698001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 260841, + "CONCEPT_NAME" : "Perinatal subarachnoid hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "21202004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4079973, + "CONCEPT_NAME" : "Perinatal subependymal hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276650005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4171123, + "CONCEPT_NAME" : "Perinatal subependymal hemorrhage with intraventricular and intracerebral extension", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276652002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4173332, + "CONCEPT_NAME" : "Perinatal subependymal hemorrhage with intraventricular extension", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276651009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4173001, + "CONCEPT_NAME" : "Perinatal tentorial laceration", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276589006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4166754, + "CONCEPT_NAME" : "Perinatal thrombocytopenia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "273986001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4171100, + "CONCEPT_NAME" : "Perinatal thyroid disorder", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276564000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4048607, + "CONCEPT_NAME" : "Perinatal transient vaginal bleeding", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206422009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 197349, + "CONCEPT_NAME" : "Perineal hematoma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237331002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4307825, + "CONCEPT_NAME" : "Perineal hematoma during delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "83094001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439390, + "CONCEPT_NAME" : "Perineal laceration during delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "398019008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4187920, + "CONCEPT_NAME" : "Perineal laceration involving fourchette", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46311005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4272706, + "CONCEPT_NAME" : "Perineal laceration involving hymen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36796001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4296470, + "CONCEPT_NAME" : "Perineal laceration involving labia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "76658000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4002900, + "CONCEPT_NAME" : "Perineal laceration involving pelvic floor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "11942004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4239205, + "CONCEPT_NAME" : "Perineal laceration involving rectovaginal septum", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6825008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4311670, + "CONCEPT_NAME" : "Perineal laceration involving skin", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "85542007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4032920, + "CONCEPT_NAME" : "Perineal laceration involving vagina", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14825005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4242693, + "CONCEPT_NAME" : "Perineal laceration involving vaginal muscles", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "38450002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4197221, + "CONCEPT_NAME" : "Perineal laceration involving vulva", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "79839005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 197608, + "CONCEPT_NAME" : "Peripheral neuritis in pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "17787002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 199086, + "CONCEPT_NAME" : "Peripheral neuritis in pregnancy - not delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199095005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4062566, + "CONCEPT_NAME" : "Peripheral neuritis in pregnancy with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199096006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 372435, + "CONCEPT_NAME" : "Periventricular leukomalacia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "230769007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43531641, + "CONCEPT_NAME" : "Permanent neonatal diabetes mellitus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609565001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37110041, + "CONCEPT_NAME" : "Permanent neonatal diabetes mellitus with cerebellar agenesis syndrome", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "724067006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 197970, + "CONCEPT_NAME" : "Persistent fetal circulation", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "206597007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444374, + "CONCEPT_NAME" : "Persistent occipitoposterior position", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "70068004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 317941, + "CONCEPT_NAME" : "Phlebitis AND/OR thrombosis complicating pregnancy AND/OR puerperium", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "26850007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4129183, + "CONCEPT_NAME" : "Phlebitis in puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237343001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4269051, + "CONCEPT_NAME" : "Phlegmasia alba dolens in puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "62583006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3013297, + "CONCEPT_NAME" : "Phosphatidylglycerol [Presence] in Amniotic fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "2785-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4103235, + "CONCEPT_NAME" : "Phrenic nerve paralysis as birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "28778005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42537765, + "CONCEPT_NAME" : "Physiological shock due to and following molar pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "737326006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4261326, + "CONCEPT_NAME" : "Physiologic amenorrhea", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "44811000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4073438, + "CONCEPT_NAME" : "Piper forceps delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177170007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4016476, + "CONCEPT_NAME" : "Placenta incomplete", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "169958000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014718, + "CONCEPT_NAME" : "Placental abnormality", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169957005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 198488, + "CONCEPT_NAME" : "Placental abruption", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "415105001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 193539, + "CONCEPT_NAME" : "Placental abruption - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198910006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 201350, + "CONCEPT_NAME" : "Placental abruption - not delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198911005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2721184, + "CONCEPT_NAME" : "Placental alpha microglobulin-1 rapid immunoassay for detection of rupture of fetal membranes", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "S3628", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 200784, + "CONCEPT_NAME" : "Placental condition affecting management of mother", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "111447004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014716, + "CONCEPT_NAME" : "Placental finding", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169952004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4034100, + "CONCEPT_NAME" : "Placental insufficiency", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237292005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4064854, + "CONCEPT_NAME" : "Placental localization", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "164817009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4217071, + "CONCEPT_NAME" : "Placental site nodule", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "417364008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4028645, + "CONCEPT_NAME" : "Placental site trophoblastic tumor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237252008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44502733, + "CONCEPT_NAME" : "Placental site trophoblastic tumor of placenta", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "9104/1-C58.9", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "ICDO3", + "CONCEPT_CLASS_ID" : "ICDO Condition" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42600135, + "CONCEPT_NAME" : "Placental subinvolution", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "42211000009104", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED Veterinary", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4016475, + "CONCEPT_NAME" : "Placenta normal O/E", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "169954003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4284028, + "CONCEPT_NAME" : "Placenta previa", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36813001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4172142, + "CONCEPT_NAME" : "Placenta previa found before labor AND delivery by cesarean section without hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48888007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 196751, + "CONCEPT_NAME" : "Placenta previa with hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198903000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 193264, + "CONCEPT_NAME" : "Placenta previa with hemorrhage - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198905007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 200149, + "CONCEPT_NAME" : "Placenta previa with hemorrhage - not delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198906008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 194710, + "CONCEPT_NAME" : "Placenta previa without hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7792000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 201359, + "CONCEPT_NAME" : "Placenta previa without hemorrhage - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198899007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 192372, + "CONCEPT_NAME" : "Placenta previa without hemorrhage - not delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198900002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014292, + "CONCEPT_NAME" : "Place of birth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169812000", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Observable Entity" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4041726, + "CONCEPT_NAME" : "Plasma 2-hr post-prandial glucose measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "167097002", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4210719, + "CONCEPT_NAME" : "Plasma alpha-fetoprotein multiple of median measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313867006", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4041725, + "CONCEPT_NAME" : "Plasma fasting glucose measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "167096006", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4210721, + "CONCEPT_NAME" : "Plasma free beta human chorionic gonadotrophin measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313871009", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44812174, + "CONCEPT_NAME" : "Plasma human chorionic gonadotrophin concentration measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "911491000000101", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4210718, + "CONCEPT_NAME" : "Plasma human chorionic gonadotropin multiple of median measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313865003", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4269036, + "CONCEPT_NAME" : "Plasma insulin C-peptide level", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "401124003", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4268422, + "CONCEPT_NAME" : "Plasma insulin measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "401151000", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4041724, + "CONCEPT_NAME" : "Plasma random glucose measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "167095005", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4305235, + "CONCEPT_NAME" : "Polycythemia due to donor twin transfusion", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "38697006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4297988, + "CONCEPT_NAME" : "Polycythemia due to maternal-fetal transfusion", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "76873001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36716548, + "CONCEPT_NAME" : "Polycythemia neonatorum due to inherited disorder of erythropoietin production", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "722585009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36716549, + "CONCEPT_NAME" : "Polycythemia neonatorum following blood transfusion", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "722586005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4278356, + "CONCEPT_NAME" : "Polygalactia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65377004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437623, + "CONCEPT_NAME" : "Polyhydramnios", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86203003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434427, + "CONCEPT_NAME" : "Polyhydramnios - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199646006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433540, + "CONCEPT_NAME" : "Polyhydramnios with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199647002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4173347, + "CONCEPT_NAME" : "Poor feeding of newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276717003", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 72693, + "CONCEPT_NAME" : "Poor fetal growth affecting management", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "397949005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 75639, + "CONCEPT_NAME" : "Poor fetal nutrition", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276608005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 196764, + "CONCEPT_NAME" : "Post-delivery acute renal failure - delivered with postnatal problem", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "200117009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4056338, + "CONCEPT_NAME" : "Post gastrointestinal tract surgery hypoglycemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "197483008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437369, + "CONCEPT_NAME" : "Postmature infancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16207008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4245166, + "CONCEPT_NAME" : "Postmaturity", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59634004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440833, + "CONCEPT_NAME" : "Postmaturity of fetus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "433145001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014156, + "CONCEPT_NAME" : "Postnatal care from general practitioner", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169756008", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015415, + "CONCEPT_NAME" : "Postnatal care greater than 48 hours after birth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169775003", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015152, + "CONCEPT_NAME" : "Postnatal care less than 48 hours after birth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169774004", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015410, + "CONCEPT_NAME" : "Postnatal care provider", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169754006", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014446, + "CONCEPT_NAME" : "Postnatal data", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169786001", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Observable Entity" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435031, + "CONCEPT_NAME" : "Postnatal deep vein thrombosis - delivered with postnatal complication", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "200237000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4062264, + "CONCEPT_NAME" : "Postnatal deep vein thrombosis with postnatal complication", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "200238005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4215564, + "CONCEPT_NAME" : "Postnatal depression counseling", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "395072006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015413, + "CONCEPT_NAME" : "Postnatal - eighth day visit", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169770008", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4055488, + "CONCEPT_NAME" : "Postnatal enamel hypoplasia", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "196280004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014445, + "CONCEPT_NAME" : "Postnatal examination minor problem found", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169783009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015154, + "CONCEPT_NAME" : "Postnatal examination normal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169784003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014281, + "CONCEPT_NAME" : "Postnatal - fifth day visit", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169767009", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014280, + "CONCEPT_NAME" : "Postnatal - first day visit", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169763008", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014443, + "CONCEPT_NAME" : "Postnatal - fourth day visit", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169766000", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4075295, + "CONCEPT_NAME" : "Postnatal infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "178280004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44811076, + "CONCEPT_NAME" : "Postnatal listening visits offered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "882371000000109", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4297232, + "CONCEPT_NAME" : "Postnatal maternal examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "384634009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015414, + "CONCEPT_NAME" : "Postnatal - ninth day visit", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169771007", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014442, + "CONCEPT_NAME" : "Postnatal - second day visit", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169764002", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015412, + "CONCEPT_NAME" : "Postnatal - seventh day visit", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169769007", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014282, + "CONCEPT_NAME" : "Postnatal - sixth day visit", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169768004", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4062362, + "CONCEPT_NAME" : "Postnatal support group", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "171067001", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015151, + "CONCEPT_NAME" : "Postnatal - tenth day visit", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169772000", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015150, + "CONCEPT_NAME" : "Postnatal - third day visit", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169765001", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4034146, + "CONCEPT_NAME" : "Postnatal vaginal discomfort", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237315005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015149, + "CONCEPT_NAME" : "Postnatal visit", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169762003", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4151029, + "CONCEPT_NAME" : "Postnatal visit status", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "310370000", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4182691, + "CONCEPT_NAME" : "Postobstetric urethral stricture", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "53212003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4023382, + "CONCEPT_NAME" : "Postoperative shock following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "11669000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4295363, + "CONCEPT_NAME" : "Postpancreatectomy hyperglycemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "37814003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37116834, + "CONCEPT_NAME" : "Postpartum acute renal failure", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "733839001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4006327, + "CONCEPT_NAME" : "Postpartum afibrinogenemia with hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "111452009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336810, + "CONCEPT_NAME" : "Postpartum alopecia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87038002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4225411, + "CONCEPT_NAME" : "Postpartum amenorrhea-galactorrhea syndrome", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "85039006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 312383, + "CONCEPT_NAME" : "Postpartum cardiomyopathy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "62377009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4047392, + "CONCEPT_NAME" : "Postpartum care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "133906008", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110314, + "CONCEPT_NAME" : "Postpartum care only (separate procedure)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59430", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4113199, + "CONCEPT_NAME" : "Postpartum cicatrix of cervix", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198347000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 436483, + "CONCEPT_NAME" : "Postpartum coagulation defects", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "267272006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441363, + "CONCEPT_NAME" : "Postpartum coagulation defects - delivered with postnatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200030007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061341, + "CONCEPT_NAME" : "Postpartum coagulation defects with postnatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200031006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4169890, + "CONCEPT_NAME" : "Postpartum coagulation defect with hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "49177006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4239471, + "CONCEPT_NAME" : "Postpartum depression", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "58703003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4203918, + "CONCEPT_NAME" : "Postpartum education", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54070000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45773073, + "CONCEPT_NAME" : "Postpartum episiotomy pain", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72771000119107", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4266066, + "CONCEPT_NAME" : "Postpartum fibrinolysis with hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "62410004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4041280, + "CONCEPT_NAME" : "Postpartum finding", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "118213005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45757789, + "CONCEPT_NAME" : "Postpartum gestational diabetes mellitus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40791000119105", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4012240, + "CONCEPT_NAME" : "Postpartum headache", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "103008008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443929, + "CONCEPT_NAME" : "Postpartum hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "47821001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37110289, + "CONCEPT_NAME" : "Postpartum hemorrhage co-occurrent and due to uterine rupture following obstructed labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "724496000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37108740, + "CONCEPT_NAME" : "Postpartum hemorrhage due to total placenta previa", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "119891000119105", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4158274, + "CONCEPT_NAME" : "Postpartum hypopituitarism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "290653008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4162754, + "CONCEPT_NAME" : "Postpartum intrapituitary hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "291665000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42534817, + "CONCEPT_NAME" : "Postpartum major depression in remission", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "104851000119103", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4253057, + "CONCEPT_NAME" : "Postpartum neurosis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "73972002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4146731, + "CONCEPT_NAME" : "Postpartum period, 1 day", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "30118000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4169742, + "CONCEPT_NAME" : "Postpartum period, 2 days", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "49071005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4273241, + "CONCEPT_NAME" : "Postpartum period, 3 days", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64541000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4028024, + "CONCEPT_NAME" : "Postpartum period, 4 days", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13273002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4185531, + "CONCEPT_NAME" : "Postpartum period, 5 days", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55861007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4011238, + "CONCEPT_NAME" : "Postpartum period, 6 days", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1124005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4228830, + "CONCEPT_NAME" : "Postpartum period, 7 days", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "88387008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 35622939, + "CONCEPT_NAME" : "Postpartum pre-eclampsia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "765182005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45757788, + "CONCEPT_NAME" : "Postpartum pregnancy-induced hypertension", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40521000119100", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4057246, + "CONCEPT_NAME" : "Postpartum psychosis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "18260003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42535649, + "CONCEPT_NAME" : "Postpartum psychosis in remission", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "60401000119104", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440465, + "CONCEPT_NAME" : "Postpartum state", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86569001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4035468, + "CONCEPT_NAME" : "Postpartum state, 2 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15100005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4104354, + "CONCEPT_NAME" : "Postpartum state, 3 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "29123003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4007389, + "CONCEPT_NAME" : "Postpartum state, 4 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10152009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4300708, + "CONCEPT_NAME" : "Postpartum state, 5 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "38802008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4278355, + "CONCEPT_NAME" : "Postpartum state, 6 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65375007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4222573, + "CONCEPT_NAME" : "Postpartum state, 7 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40156002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4318816, + "CONCEPT_NAME" : "Postpartum state, 8 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "22178008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4174510, + "CONCEPT_NAME" : "Postpartum state, 9 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "50404009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4199437, + "CONCEPT_NAME" : "Postpartum thyroiditis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "52772002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4325457, + "CONCEPT_NAME" : "Postpartum uterine hypertrophy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "71612002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4091199, + "CONCEPT_NAME" : "Postpartum vulval hematoma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "249218000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4321231, + "CONCEPT_NAME" : "Postparturient hemoglobinuria", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "70964000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4219015, + "CONCEPT_NAME" : "Postpill amenorrhea", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "39931000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4116187, + "CONCEPT_NAME" : "Post-prandial blood glucose measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "302788006", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4126074, + "CONCEPT_NAME" : "Post-term infant - 42 weeks plus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "288270007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441128, + "CONCEPT_NAME" : "Post-term infant, not heavy-for-dates", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "79995002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432695, + "CONCEPT_NAME" : "Post-term pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90968009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439894, + "CONCEPT_NAME" : "Post-term pregnancy - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199063009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434695, + "CONCEPT_NAME" : "Post-term pregnancy - not delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199064003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45773507, + "CONCEPT_NAME" : "Post-term pregnancy of 40 to 42 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "22281000119101", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4096468, + "CONCEPT_NAME" : "Potential abnormality of glucose tolerance", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26254008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433542, + "CONCEPT_NAME" : "Precipitate labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "51920004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438220, + "CONCEPT_NAME" : "Precipitate labor - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199833004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435024, + "CONCEPT_NAME" : "Precipitate labor with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199834005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439393, + "CONCEPT_NAME" : "Pre-eclampsia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "398254007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 141084, + "CONCEPT_NAME" : "Pre-eclampsia or eclampsia with pre-existing hypertension", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198997005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 135601, + "CONCEPT_NAME" : "Pre-eclampsia or eclampsia with pre-existing hypertension - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198999008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 134414, + "CONCEPT_NAME" : "Pre-eclampsia or eclampsia with pre-existing hypertension - delivered with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199000005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 136743, + "CONCEPT_NAME" : "Pre-eclampsia or eclampsia with pre-existing hypertension - not delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199002002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4146816, + "CONCEPT_NAME" : "Pre-existing hypertension complicating AND/OR reason for care during childbirth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "34694006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4277110, + "CONCEPT_NAME" : "Pre-existing hypertension complicating AND/OR reason for care during pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65402008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4151903, + "CONCEPT_NAME" : "Pre-existing hypertension complicating AND/OR reason for care during puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "31407004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 321074, + "CONCEPT_NAME" : "Pre-existing hypertension complicating pregnancy, childbirth and puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199005000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4219466, + "CONCEPT_NAME" : "Pregestational diabetes mellitus AND/OR impaired glucose tolerance, modified White class A", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "82141001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4146514, + "CONCEPT_NAME" : "Pregestational diabetes mellitus AND/OR impaired glucose tolerance, modified White class B", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "34818008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4242853, + "CONCEPT_NAME" : "Pregestational diabetes mellitus AND/OR impaired glucose tolerance, modified White class C", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "38063000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4144221, + "CONCEPT_NAME" : "Pregestational diabetes mellitus AND/OR impaired glucose tolerance, modified White class D", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "33669002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4182243, + "CONCEPT_NAME" : "Pregestational diabetes mellitus AND/OR impaired glucose tolerance, modified White class F", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "4307007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4220981, + "CONCEPT_NAME" : "Pregestational diabetes mellitus AND/OR impaired glucose tolerance, modified White class FR", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "82701004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4305491, + "CONCEPT_NAME" : "Pregestational diabetes mellitus AND/OR impaired glucose tolerance, modified White class R", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "82260000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 762490, + "CONCEPT_NAME" : "Pregnancy and lactation education", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "423011000124102", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4129519, + "CONCEPT_NAME" : "Pregnancy and type 2 diabetes mellitus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237627000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3051741, + "CONCEPT_NAME" : "Pregnancy associated plasma protein A [Mass/volume] in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48407-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3014064, + "CONCEPT_NAME" : "Pregnancy associated plasma protein A [Multiple of the median] in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "32123-2", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2212548, + "CONCEPT_NAME" : "Pregnancy-associated plasma protein-A (PAPP-A)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84163", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3021584, + "CONCEPT_NAME" : "Pregnancy associated plasma protein A [Units/volume] in Serum or Plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "32046-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4148890, + "CONCEPT_NAME" : "Pregnancy benefits", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "270471004", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Qualifier Value" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438209, + "CONCEPT_NAME" : "Pregnancy care of habitual aborter", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "199089009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4062674, + "CONCEPT_NAME" : "Pregnancy complication NOS", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "199152008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439348, + "CONCEPT_NAME" : "Pregnancy complications", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "198881004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4250175, + "CONCEPT_NAME" : "Pregnancy detection examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "74036000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4167493, + "CONCEPT_NAME" : "Pregnancy-induced hypertension", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48194001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4062574, + "CONCEPT_NAME" : "Pregnancy-related glycosuria", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199132007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4094910, + "CONCEPT_NAME" : "Pregnancy test positive", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "250423000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061785, + "CONCEPT_NAME" : "Pregnancy unplanned and unwanted", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169567006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060237, + "CONCEPT_NAME" : "Pregnancy unplanned but wanted", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169566002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4157329, + "CONCEPT_NAME" : "Pregnancy with abnormal glucose tolerance test", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "372048000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4299535, + "CONCEPT_NAME" : "Pregnant", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "77386006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4059982, + "CONCEPT_NAME" : "Pregnant - blood test confirms", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169561007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061686, + "CONCEPT_NAME" : "Pregnant - on history", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169563005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4059984, + "CONCEPT_NAME" : "Pregnant - planned", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169565003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061411, + "CONCEPT_NAME" : "Pregnant, sheath failure", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169508004", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4059981, + "CONCEPT_NAME" : "Pregnant - urine test confirms", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169560008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3174212, + "CONCEPT_NAME" : "Premature 28 week quadruplet", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7550001000004101", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "Nebraska Lexicon", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4097427, + "CONCEPT_NAME" : "Premature birth of fraternal twins, both living", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25192009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4222915, + "CONCEPT_NAME" : "Premature birth of fraternal twins, both stillborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84382006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4147043, + "CONCEPT_NAME" : "Premature birth of fraternal twins, one living, one stillborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "30165006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4142021, + "CONCEPT_NAME" : "Premature birth of identical twins, both living", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "34100008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4242724, + "CONCEPT_NAME" : "Premature birth of identical twins, both stillborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "3798002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4310910, + "CONCEPT_NAME" : "Premature birth of identical twins, one living, one stillborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "39213008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4069200, + "CONCEPT_NAME" : "Premature birth of multiple newborns", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "20272009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4145125, + "CONCEPT_NAME" : "Premature birth of newborn quadruplets", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "34089005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4082863, + "CONCEPT_NAME" : "Premature birth of newborn quintuplets", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "24146004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4008884, + "CONCEPT_NAME" : "Premature birth of newborn sextuplets", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "112075006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4107401, + "CONCEPT_NAME" : "Premature birth of newborn triplets", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "29997008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4029786, + "CONCEPT_NAME" : "Premature birth of newborn twins", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13859001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4184594, + "CONCEPT_NAME" : "Premature birth of stillborn twins", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54650005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4086393, + "CONCEPT_NAME" : "Premature delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "282020008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4125778, + "CONCEPT_NAME" : "Premature/false labor", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "287979001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4217564, + "CONCEPT_NAME" : "Premature infant", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "395507008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4147874, + "CONCEPT_NAME" : "Premature infant 28-37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "310661005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4273560, + "CONCEPT_NAME" : "Premature labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6383007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4175637, + "CONCEPT_NAME" : "Premature pregnancy delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "49550006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 194702, + "CONCEPT_NAME" : "Premature rupture of membranes", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "44223004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 200160, + "CONCEPT_NAME" : "Premature rupture of membranes - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199658006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4064709, + "CONCEPT_NAME" : "Premature rupture of membranes, labor delayed by therapy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199661007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 200468, + "CONCEPT_NAME" : "Premature rupture of membranes with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199659003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4058403, + "CONCEPT_NAME" : "Premature separation of placenta with coagulation defect", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198912003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440519, + "CONCEPT_NAME" : "Premature - weight 1000g-2499g or gestation of 28-37weeks", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "206169007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440525, + "CONCEPT_NAME" : "Prematurity of fetus", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "44247006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36675035, + "CONCEPT_NAME" : "Prematurity of infant", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "771299009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4138554, + "CONCEPT_NAME" : "Premenopausal amenorrhea", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "32590007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2618150, + "CONCEPT_NAME" : "Prenatal care, at-risk assessment", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "H1000", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2618151, + "CONCEPT_NAME" : "Prenatal care, at-risk enhanced service; antepartum management", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "H1001", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2618152, + "CONCEPT_NAME" : "Prenatal care, at risk enhanced service; care coordination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "H1002", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2618154, + "CONCEPT_NAME" : "Prenatal care, at-risk enhanced service; follow-up home visit", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "H1004", + "DOMAIN_ID" : "Visit", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2618155, + "CONCEPT_NAME" : "Prenatal care, at-risk enhanced service package (includes h1001-h1004)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "H1005", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4176966, + "CONCEPT_NAME" : "Prenatal education", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "363266006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4112701, + "CONCEPT_NAME" : "Prenatal examination and care of mother", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "18114009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4311447, + "CONCEPT_NAME" : "Prenatal initial visit", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "424441002", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4172038, + "CONCEPT_NAME" : "Prenatal supplemental visit", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "422808006", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4313474, + "CONCEPT_NAME" : "Prenatal visit", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "424619006", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2213352, + "CONCEPT_NAME" : "Preparation of embryo for transfer (any method)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "89255", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4129040, + "CONCEPT_NAME" : "Presentation of cord", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237305004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37110284, + "CONCEPT_NAME" : "Preterm delivery following Cesarean section", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "724489002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37110283, + "CONCEPT_NAME" : "Preterm delivery following induction of labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "724488005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45757175, + "CONCEPT_NAME" : "Preterm labor in second trimester with preterm delivery in second trimester", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10761141000119107", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45757176, + "CONCEPT_NAME" : "Preterm labor in third trimester with preterm delivery in third trimester", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10761191000119104", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36712702, + "CONCEPT_NAME" : "Preterm labor with preterm delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10761241000119104", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44784550, + "CONCEPT_NAME" : "Preterm spontaneous labor with preterm delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "698716002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44784551, + "CONCEPT_NAME" : "Preterm spontaneous labor with term delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "698717006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4098718, + "CONCEPT_NAME" : "Previous abnormality of glucose tolerance", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "2725003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40318194, + "CONCEPT_NAME" : "Primary amenorrhea", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "156035004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 314479, + "CONCEPT_NAME" : "Primary apnea in the newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "430335007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 258554, + "CONCEPT_NAME" : "Primary atelectasis, in perinatal period", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "42908004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37311892, + "CONCEPT_NAME" : "Primary central sleep apnea of prematurity", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "789009003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4300387, + "CONCEPT_NAME" : "Primary hypotonic uterine dysfunction", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "387696001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 201516, + "CONCEPT_NAME" : "Primary malignant neoplasm of placenta", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "93965008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37204277, + "CONCEPT_NAME" : "Primary microcephaly, epilepsy, permanent neonatal diabetes syndrome", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "782825008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4230947, + "CONCEPT_NAME" : "Primary physiologic amenorrhea", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "8913004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4262580, + "CONCEPT_NAME" : "Primary sleep apnea of newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "361208003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443435, + "CONCEPT_NAME" : "Primary uterine inertia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "387699008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 196762, + "CONCEPT_NAME" : "Primary uterine inertia - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199819004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 196759, + "CONCEPT_NAME" : "Primary uterine inertia with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199821009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4133029, + "CONCEPT_NAME" : "Primigravida", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "127364007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060105, + "CONCEPT_NAME" : "Private home delivery booking", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169624005", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4120303, + "CONCEPT_NAME" : "Progressive congenital rubella encephalomyelitis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "302811004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4230252, + "CONCEPT_NAME" : "Progressive post hemorrhagic ventricular dilatation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "359629000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 72692, + "CONCEPT_NAME" : "Prolapsed arm - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199384007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4058679, + "CONCEPT_NAME" : "Prolapse of anterior lip of cervix obstructing labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "19729005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440476, + "CONCEPT_NAME" : "Prolapse of cord", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "270500004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441645, + "CONCEPT_NAME" : "Prolapse of cord - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199869007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435883, + "CONCEPT_NAME" : "Prolapse of cord with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199870008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4171094, + "CONCEPT_NAME" : "Prolonged apnea of newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276546007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440475, + "CONCEPT_NAME" : "Prolonged first stage - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199847000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441362, + "CONCEPT_NAME" : "Prolonged first stage of labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "33627001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434435, + "CONCEPT_NAME" : "Prolonged first stage with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199848005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440167, + "CONCEPT_NAME" : "Prolonged labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "53443007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4308660, + "CONCEPT_NAME" : "Prolonged latent phase of labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "387700009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3189930, + "CONCEPT_NAME" : "Prolonged neonatal intensive care history", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "9320001000004107", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "Nebraska Lexicon", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4171095, + "CONCEPT_NAME" : "Prolonged newborn physiological jaundice", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276550000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 192972, + "CONCEPT_NAME" : "Prolonged rupture of membranes", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12729009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434431, + "CONCEPT_NAME" : "Prolonged second stage - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199857004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434714, + "CONCEPT_NAME" : "Prolonged second stage of labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "77259008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37017049, + "CONCEPT_NAME" : "Prolonged second stage of labor due to poor maternal effort", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "713232009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437620, + "CONCEPT_NAME" : "Prolonged second stage with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199858009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757377, + "CONCEPT_NAME" : "Protein and Glucose panel [Mass/volume] - Body fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54246-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3043821, + "CONCEPT_NAME" : "Protein and Glucose panel - Urine by Test strip", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45060-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45770185, + "CONCEPT_NAME" : "Provision of information about extensively hydrolysed infant formula", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "924431000000105", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4082504, + "CONCEPT_NAME" : "Pruritus of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "239102001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4150734, + "CONCEPT_NAME" : "Pseudomonas ophthalmia neonatorum", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "278930003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442419, + "CONCEPT_NAME" : "Puerperal cerebrovascular disorder - delivered", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "200330000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442418, + "CONCEPT_NAME" : "Puerperal cerebrovascular disorder - delivered with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200331001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 313272, + "CONCEPT_NAME" : "Puerperal cerebrovascular disorder with antenatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200332008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 313833, + "CONCEPT_NAME" : "Puerperal cerebrovascular disorder with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200333003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4328870, + "CONCEPT_NAME" : "Puerperal endometritis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "22399000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4065749, + "CONCEPT_NAME" : "Puerperal endometritis - delivered with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200181000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061463, + "CONCEPT_NAME" : "Puerperal endometritis with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200182007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4024972, + "CONCEPT_NAME" : "Puerperal pelvic cellulitis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12062007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4297611, + "CONCEPT_NAME" : "Puerperal pelvic sepsis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "77206006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4339312, + "CONCEPT_NAME" : "Puerperal peritonitis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "88178009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4062259, + "CONCEPT_NAME" : "Puerperal peritonitis with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200191006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4034154, + "CONCEPT_NAME" : "Puerperal pyrexia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237348005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435028, + "CONCEPT_NAME" : "Puerperal pyrexia of unknown origin", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200277008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434713, + "CONCEPT_NAME" : "Puerperal pyrexia of unknown origin - delivered with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200280009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432389, + "CONCEPT_NAME" : "Puerperal pyrexia of unknown origin with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200281008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4050255, + "CONCEPT_NAME" : "Puerperal salpingitis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "20932005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4062257, + "CONCEPT_NAME" : "Puerperal salpingitis with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200187001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4102318, + "CONCEPT_NAME" : "Puerperal sepsis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "2858002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4065753, + "CONCEPT_NAME" : "Puerperal sepsis with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200196001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3655209, + "CONCEPT_NAME" : "Pulmonary embolism due to and following ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "860680001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3655210, + "CONCEPT_NAME" : "Pulmonary embolism due to and following molar pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "860681002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4263344, + "CONCEPT_NAME" : "Pulmonary fibroplasia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "361195001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42600161, + "CONCEPT_NAME" : "Pulmonary nodular fibroplasia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "42661000009100", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED Veterinary", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4272315, + "CONCEPT_NAME" : "Purulent mastitis associated with childbirth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63662002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45765500, + "CONCEPT_NAME" : "Quadruplet birth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "702452007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442594, + "CONCEPT_NAME" : "Quadruplet pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "60810003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438481, + "CONCEPT_NAME" : "Quadruplet pregnancy - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199325005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440466, + "CONCEPT_NAME" : "Quadruplet pregnancy with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199326006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45757166, + "CONCEPT_NAME" : "Quadruplets, all live born", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10760701000119102", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45773428, + "CONCEPT_NAME" : "Quadruplets, some live born", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10760741000119100", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42539377, + "CONCEPT_NAME" : "Quadruplets with all four stillborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "762612009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40479425, + "CONCEPT_NAME" : "Quantitative measurement of concentration of glucose in peritoneal dialysis fluid at 4 hours postperitoneal dialysis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "444450007", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40484115, + "CONCEPT_NAME" : "Quantitative measurement of glucose in 1 hour postprandial urine specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "443924005", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40485034, + "CONCEPT_NAME" : "Quantitative measurement of glucose in 24 hour urine specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "444122000", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40479799, + "CONCEPT_NAME" : "Quantitative measurement of glucose in first peritoneal dialysis fluid specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "444499006", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40484114, + "CONCEPT_NAME" : "Quantitative measurement of glucose in pericardial fluid specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "443923004", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40484139, + "CONCEPT_NAME" : "Quantitative measurement of glucose in peritoneal dialysis fluid specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "443946002", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40485040, + "CONCEPT_NAME" : "Quantitative measurement of glucose in pleural fluid specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "444128001", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40479401, + "CONCEPT_NAME" : "Quantitative measurement of glucose in predialysis peritoneal dialysis fluid specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "444423002", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40483242, + "CONCEPT_NAME" : "Quantitative measurement of glucose in serum or plasma specimen 120 minutes after 75 gram oral glucose challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "443780009", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40484576, + "CONCEPT_NAME" : "Quantitative measurement of glucose in serum or plasma specimen 6 hours after glucose challenge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "444008003", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40484575, + "CONCEPT_NAME" : "Quantitative measurement of glucose in synovial fluid specimen", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "444007008", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40485039, + "CONCEPT_NAME" : "Quantitative measurement of mass concentration of glucose in postcalorie fasting serum or plasma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "444127006", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40483659, + "CONCEPT_NAME" : "Quantitative measurement of substance rate of glucose excretion in urine", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "443842004", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4182146, + "CONCEPT_NAME" : "Quantity of lochia - finding", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "366299003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061423, + "CONCEPT_NAME" : "Questionable if pregnancy was planned", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169569009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45765501, + "CONCEPT_NAME" : "Quintuplet birth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "702453002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45757167, + "CONCEPT_NAME" : "Quintuplets, all live born", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10760781000119105", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45757168, + "CONCEPT_NAME" : "Quintuplets, some live born", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10760821000119100", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42538805, + "CONCEPT_NAME" : "Quintuplets with all five stillborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "762613004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3046853, + "CONCEPT_NAME" : "Race", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "32624-9", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Clinical Observation" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40484021, + "CONCEPT_NAME" : "Random blood glucose abnormal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "442545002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4153111, + "CONCEPT_NAME" : "Random blood glucose measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "271061004", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4042065, + "CONCEPT_NAME" : "Random blood sugar low", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "166891009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4042725, + "CONCEPT_NAME" : "Random blood sugar normal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "166890005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4055671, + "CONCEPT_NAME" : "Random blood sugar raised", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "166892002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40481539, + "CONCEPT_NAME" : "Random glucose level abnormal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "444925004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4149994, + "CONCEPT_NAME" : "Readmission for abortive pregnancy (NHS codes)", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "267195006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4113503, + "CONCEPT_NAME" : "Readmission for retained products of conception, legal termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198862007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4114280, + "CONCEPT_NAME" : "Readmission for retained products of conception, spontaneous abortion", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198861000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4150401, + "CONCEPT_NAME" : "Reason for termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "310506006", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Observable Entity" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4173350, + "CONCEPT_NAME" : "Recurrent apnea of newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276725001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 764688, + "CONCEPT_NAME" : "Red-green tinged lochia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "5361000124103", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 764646, + "CONCEPT_NAME" : "Red or brown-green tinged lochia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "4971000124107", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 77619, + "CONCEPT_NAME" : "Reduced fetal movement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276369006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4190767, + "CONCEPT_NAME" : "Referral for termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "415262008", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4081292, + "CONCEPT_NAME" : "Referral to antenatal clinic", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "183860003", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 46272536, + "CONCEPT_NAME" : "Referral to breastfeeding education class during prenatal period", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "710916001", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4084693, + "CONCEPT_NAME" : "Referral to obstetrics service", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "183548008", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4214930, + "CONCEPT_NAME" : "Refer to early pregnancy unit", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "417577000", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040000, + "CONCEPT_NAME" : "Reliability of last menstrual period observation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "53661-5", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Clinical Observation" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004342, + "CONCEPT_NAME" : "Removal of both fallopian tubes at same operative episode", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "66.51", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004546, + "CONCEPT_NAME" : "Removal of cerclage material from cervix", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "69.96", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110339, + "CONCEPT_NAME" : "Removal of cerclage suture under anesthesia (other than local)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59871", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4308664, + "CONCEPT_NAME" : "Removal of ectopic fetus from abdominal cavity", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "387709005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4227423, + "CONCEPT_NAME" : "Removal of ectopic fetus from fallopian tube without salpingectomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "88362001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4247895, + "CONCEPT_NAME" : "Removal of ectopic fetus from ovary without oophorectomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "73341009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004788, + "CONCEPT_NAME" : "Removal of extratubal ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "74.3", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "3-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4300391, + "CONCEPT_NAME" : "Removal of extrauterine ectopic fetus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "387710000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4309622, + "CONCEPT_NAME" : "Removal of hydatidiform mole", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "216209009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4153287, + "CONCEPT_NAME" : "Removal of products of conception from fallopian tube", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "271415006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004343, + "CONCEPT_NAME" : "Removal of remaining fallopian tube", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "66.52", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 192679, + "CONCEPT_NAME" : "Renal disease in pregnancy AND/OR puerperium without hypertension", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "75150001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45757120, + "CONCEPT_NAME" : "Renal failure after ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10752771000119100", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 195014, + "CONCEPT_NAME" : "Renal failure following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43629001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42537766, + "CONCEPT_NAME" : "Renal failure following molar pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "737327002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 197930, + "CONCEPT_NAME" : "Renal hypertension complicating pregnancy, childbirth and the puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198949009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 200157, + "CONCEPT_NAME" : "Renal hypertension complicating pregnancy, childbirth and the puerperium - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198951008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 192684, + "CONCEPT_NAME" : "Renal hypertension complicating pregnancy, childbirth and the puerperium - not delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198953006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4095115, + "CONCEPT_NAME" : "Renal tubular necrosis following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26235008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2109484, + "CONCEPT_NAME" : "Repair, initial inguinal hernia, preterm infant (younger than 37 weeks gestation at birth), performed from birth up to 50 weeks postconception age, with or without hydrocelectomy; incarcerated or strangulated", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "49492", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2109483, + "CONCEPT_NAME" : "Repair, initial inguinal hernia, preterm infant (younger than 37 weeks gestation at birth), performed from birth up to 50 weeks postconception age, with or without hydrocelectomy; reducible", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "49491", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004842, + "CONCEPT_NAME" : "Repair of current obstetric laceration of bladder and urethra", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "75.61", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004829, + "CONCEPT_NAME" : "Repair of current obstetric laceration of cervix", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "75.51", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004830, + "CONCEPT_NAME" : "Repair of current obstetric laceration of corpus uteri", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "75.52", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4230535, + "CONCEPT_NAME" : "Repair of current obstetric laceration of rectum and sphincter ani", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "359946000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004843, + "CONCEPT_NAME" : "Repair of current obstetric laceration of rectum and sphincter ani", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "75.62", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4319897, + "CONCEPT_NAME" : "Repair of current obstetric laceration of uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "9724000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004828, + "CONCEPT_NAME" : "Repair of current obstetric laceration of uterus, not otherwise specified", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "75.50", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4071642, + "CONCEPT_NAME" : "Repair of episiotomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177222006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4172666, + "CONCEPT_NAME" : "Repair of obstetric laceration of bladder and urethra", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "42390009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4135477, + "CONCEPT_NAME" : "Repair of obstetric laceration of cervix", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "31939001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004844, + "CONCEPT_NAME" : "Repair of other current obstetric laceration", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "75.69", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004831, + "CONCEPT_NAME" : "Repair of other current obstetric laceration", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "75.6", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "3-dig nonbill code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4033994, + "CONCEPT_NAME" : "Repair of right mediolateral episiotomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237025009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4086797, + "CONCEPT_NAME" : "Requests pregnancy termination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "184005004", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40482435, + "CONCEPT_NAME" : "Residual trophoblastic disease", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "445149007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 319138, + "CONCEPT_NAME" : "Respiratory condition of fetus OR newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "17849001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 258866, + "CONCEPT_NAME" : "Respiratory distress syndrome in the newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46775006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4173177, + "CONCEPT_NAME" : "Respiratory insufficiency syndrome of newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276536005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4318553, + "CONCEPT_NAME" : "Respiratory tract hemorrhage of the newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "95621004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4109090, + "CONCEPT_NAME" : "Resuture of episiotomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "285416007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4115155, + "CONCEPT_NAME" : "Resuture of episiotomy dehiscence", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "285417003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4003030, + "CONCEPT_NAME" : "Retained placenta", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "109894007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4129038, + "CONCEPT_NAME" : "Retained placenta and membranes", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "237294006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44782606, + "CONCEPT_NAME" : "Retained placenta due to morbidly adherent placenta", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "699949009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4003031, + "CONCEPT_NAME" : "Retained placental fragment", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "109895008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4150001, + "CONCEPT_NAME" : "Retained placenta or membranes with no hemorrhage", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "267273001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442078, + "CONCEPT_NAME" : "Retained placenta with no hemorrhage - delivered with postnatal problem", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "200037005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 200792, + "CONCEPT_NAME" : "Retained placenta with no hemorrhage with postnatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200038000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 200789, + "CONCEPT_NAME" : "Retained placenta, without hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "111453004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4064977, + "CONCEPT_NAME" : "Retained portion of placenta or membranes with no hemorrhage", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "200040005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 201642, + "CONCEPT_NAME" : "Retained portions of placenta AND/OR membranes without hemorrhage", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "111454005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4170121, + "CONCEPT_NAME" : "Retained products after miscarriage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "275425008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4062112, + "CONCEPT_NAME" : "Retained products with no hemorrhage with postnatal problem", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "200043007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 373766, + "CONCEPT_NAME" : "Retinopathy of prematurity", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "415297005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36684687, + "CONCEPT_NAME" : "Retinopathy of prematurity of left eye", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "338021000119106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36684686, + "CONCEPT_NAME" : "Retinopathy of prematurity of left eye stage 1 - demarcation line", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "338001000119102", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36684685, + "CONCEPT_NAME" : "Retinopathy of prematurity of left eye stage 2 - intraretinal ridge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "337991000119106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36684684, + "CONCEPT_NAME" : "Retinopathy of prematurity of left eye stage 3 - ridge with extraretinal fibrovascular proliferation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "337981000119108", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36684624, + "CONCEPT_NAME" : "Retinopathy of prematurity of right eye", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "332411000119108", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36684623, + "CONCEPT_NAME" : "Retinopathy of prematurity of right eye stage 1 - demarcation line", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "332391000119108", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36684622, + "CONCEPT_NAME" : "Retinopathy of prematurity of right eye stage 2 - intraretinal ridge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "332381000119105", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36684621, + "CONCEPT_NAME" : "Retinopathy of prematurity of right eye stage 3 - ridge with extraretinal fibrovascular proliferation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "332371000119107", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45772079, + "CONCEPT_NAME" : "Retinopathy of prematurity stage 0", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "124111000119102", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 375250, + "CONCEPT_NAME" : "Retinopathy of prematurity stage 1 - demarcation line", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "408847006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 375251, + "CONCEPT_NAME" : "Retinopathy of prematurity stage 2 - intraretinal ridge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "408848001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 379009, + "CONCEPT_NAME" : "Retinopathy of prematurity stage 3 - ridge with extraretinal fibrovascular proliferation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "408849009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443519, + "CONCEPT_NAME" : "Retinopathy of prematurity stage 4 - subtotal retinal detachment", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "408850009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443520, + "CONCEPT_NAME" : "Retinopathy of prematurity stage 5 - total retinal detachment", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "408851008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442549, + "CONCEPT_NAME" : "Retracted nipple associated with childbirth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "74955002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36713478, + "CONCEPT_NAME" : "Retracted nipple associated with childbirth with attachment difficulty", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "717819009", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437061, + "CONCEPT_NAME" : "Retracted nipple in pregnancy, the puerperium or lactation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200402001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435612, + "CONCEPT_NAME" : "Retracted nipple in pregnancy, the puerperium or lactation - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200404000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438823, + "CONCEPT_NAME" : "Retracted nipple in pregnancy, the puerperium or lactation with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200407007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45757159, + "CONCEPT_NAME" : "Retraction of nipple associated with lactation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10760301000119103", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45757160, + "CONCEPT_NAME" : "Retraction of nipple in pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10760341000119101", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4194811, + "CONCEPT_NAME" : "Retraction ring dystocia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "79414005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40490338, + "CONCEPT_NAME" : "Retrieval of oocyte by transabdominal approach", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "446934006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4035336, + "CONCEPT_NAME" : "Retromammary abscess associated with childbirth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15406009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4232323, + "CONCEPT_NAME" : "Retromammary mastitis associated with childbirth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "89672000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 196484, + "CONCEPT_NAME" : "Retroverted incarcerated gravid uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199466009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 198216, + "CONCEPT_NAME" : "Retroverted incarcerated gravid uterus - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199468005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 196486, + "CONCEPT_NAME" : "Retroverted incarcerated gravid uterus with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199470001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060560, + "CONCEPT_NAME" : "Retroverted incarcerated gravid uterus with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199471002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44790242, + "CONCEPT_NAME" : "Rhesus detailed scan", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "228711000000104", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 199891, + "CONCEPT_NAME" : "Rhesus isoimmunization affecting pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "44795003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 195878, + "CONCEPT_NAME" : "Rhesus isoimmunization - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199582007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 192376, + "CONCEPT_NAME" : "Rhesus isoimmunization with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199583002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061158, + "CONCEPT_NAME" : "Rhesus screening - 1st pregnancy sample", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169676009", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061159, + "CONCEPT_NAME" : "Rhesus screening - 2nd pregnancy sample", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169677000", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061806, + "CONCEPT_NAME" : "Rhesus screening - 3rd pregnancy sample", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169678005", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3023524, + "CONCEPT_NAME" : "Rh immune globulin screen [interpretation]", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1314-4", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4127253, + "CONCEPT_NAME" : "Right mediolateral episiotomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "236992007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4074424, + "CONCEPT_NAME" : "Right salpingectomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "176916000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4072837, + "CONCEPT_NAME" : "Right salpingo-oophorectomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "176914002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4047564, + "CONCEPT_NAME" : "Routine antenatal care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "134435003", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4121924, + "CONCEPT_NAME" : "Routine episiotomy and repair", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "288194000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110315, + "CONCEPT_NAME" : "Routine obstetric care including antepartum care, cesarean delivery, and postpartum care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59510", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110322, + "CONCEPT_NAME" : "Routine obstetric care including antepartum care, cesarean delivery, and postpartum care, following attempted vaginal delivery after previous cesarean delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59618", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110307, + "CONCEPT_NAME" : "Routine obstetric care including antepartum care, vaginal delivery (with or without episiotomy, and/or forceps) and postpartum care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59400", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110319, + "CONCEPT_NAME" : "Routine obstetric care including antepartum care, vaginal delivery (with or without episiotomy, and/or forceps) and postpartum care, after previous cesarean delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59610", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44790189, + "CONCEPT_NAME" : "Routine obstetric scan", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "228471000000102", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36713471, + "CONCEPT_NAME" : "Routine postpartum follow-up", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "717810008", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4102697, + "CONCEPT_NAME" : "Rubella cataract", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "253227001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4275129, + "CONCEPT_NAME" : "Rubella myocarditis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64190005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4338888, + "CONCEPT_NAME" : "Rubella retinopathy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "231985001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4049040, + "CONCEPT_NAME" : "Rumination in newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206565007", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4304587, + "CONCEPT_NAME" : "Ruptured Descemet membrane due to birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "419743001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4323287, + "CONCEPT_NAME" : "Rupture of cord", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "70603007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 198816, + "CONCEPT_NAME" : "Rupture of uterus before labor - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199960005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 192699, + "CONCEPT_NAME" : "Rupture of uterus during and after labor - delivered", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "199964001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4064960, + "CONCEPT_NAME" : "Rupture of uterus during and after labor - delivered with postnatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199965000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 194106, + "CONCEPT_NAME" : "Rupture of uterus during AND/OR after labor", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "69270005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45757588, + "CONCEPT_NAME" : "Rupture of uterus during labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "23431000119106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110247, + "CONCEPT_NAME" : "Salpingectomy, complete or partial, unilateral or bilateral (separate procedure)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "58700", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4032000, + "CONCEPT_NAME" : "Salpingectomy of remaining fallopian tube", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "14353000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004346, + "CONCEPT_NAME" : "Salpingectomy with removal of tubal pregnancy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "66.62", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4316051, + "CONCEPT_NAME" : "Salpingitis following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "9516007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4021363, + "CONCEPT_NAME" : "Salpingo-oophorectomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "116028008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4073272, + "CONCEPT_NAME" : "Salpingo-oophorectomy of remaining solitary fallopian tube and ovary", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "176909001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4239009, + "CONCEPT_NAME" : "Salpingo-oophoritis following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57468008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004351, + "CONCEPT_NAME" : "Salpingo-oophorostomy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "66.72", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004362, + "CONCEPT_NAME" : "Salpingo-salpingostomy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "66.73", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004308, + "CONCEPT_NAME" : "Salpingostomy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "66.02", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4263669, + "CONCEPT_NAME" : "Salpingostomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "60463004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110253, + "CONCEPT_NAME" : "Salpingostomy (salpingoneostomy)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "58770", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004307, + "CONCEPT_NAME" : "Salpingotomy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "66.01", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004306, + "CONCEPT_NAME" : "Salpingotomy and salpingostomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "66.0", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "3-dig nonbill code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4174422, + "CONCEPT_NAME" : "Sampling injury to scalp during birth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276705000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4120817, + "CONCEPT_NAME" : "Sampling of chorionic villus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "303720006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4071592, + "CONCEPT_NAME" : "Scalp abrasions due to birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206203003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4047853, + "CONCEPT_NAME" : "Scalp bruising due to birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206204009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 133028, + "CONCEPT_NAME" : "Scalp injuries due to birth trauma", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "206199003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4301415, + "CONCEPT_NAME" : "Scalp injury due to vacuum extraction", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "403849006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 136530, + "CONCEPT_NAME" : "Sclerema neonatorum", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206539008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4174577, + "CONCEPT_NAME" : "Secondary abdominal pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276881003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40318195, + "CONCEPT_NAME" : "Secondary amenorrhea", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "156036003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37206228, + "CONCEPT_NAME" : "Secondary hemorrhage due to and following illegally induced termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "785869007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37206227, + "CONCEPT_NAME" : "Secondary hemorrhage due to and following induced termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "785868004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37206229, + "CONCEPT_NAME" : "Secondary hemorrhage due to and following legally induced termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "785870008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4173636, + "CONCEPT_NAME" : "Secondary perineal tear in the puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "42537006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4312727, + "CONCEPT_NAME" : "Secondary physiologic amenorrhea", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86030004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4065618, + "CONCEPT_NAME" : "Secondary postpartum hemorrhage - delivered with postnatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200025008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 192974, + "CONCEPT_NAME" : "Secondary uterine inertia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43715006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 192384, + "CONCEPT_NAME" : "Secondary uterine inertia - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199824001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 197346, + "CONCEPT_NAME" : "Secondary uterine inertia with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199825000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 198492, + "CONCEPT_NAME" : "Second degree perineal laceration", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6234006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 198499, + "CONCEPT_NAME" : "Second degree perineal tear during delivery - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199925004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 197337, + "CONCEPT_NAME" : "Second degree perineal tear during delivery with postnatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199926003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4327745, + "CONCEPT_NAME" : "Second trimester bleeding", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "430881000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4244438, + "CONCEPT_NAME" : "Second trimester pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59466002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3049229, + "CONCEPT_NAME" : "Second trimester quad maternal screen [Interpretation] in Serum or Plasma Narrative", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "49092-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4083415, + "CONCEPT_NAME" : "Seen in antenatal clinic", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "185226003", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4260976, + "CONCEPT_NAME" : "Seen in fetal medicine clinic", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "440580005", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4089029, + "CONCEPT_NAME" : "Seen in postnatal clinic", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "185266004", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4186827, + "CONCEPT_NAME" : "Seizures complicating infection in the newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "372441001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4159149, + "CONCEPT_NAME" : "Seizures complicating intracranial hemorrhage in the newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "371107004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 762709, + "CONCEPT_NAME" : "Seizures in the newborn, non-refractory", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "430871000124109", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 762579, + "CONCEPT_NAME" : "Seizures in the newborn, refractory", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429171000124105", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4096674, + "CONCEPT_NAME" : "Self-induced hyperinsulinemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "190429008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4147409, + "CONCEPT_NAME" : "Self-monitoring of blood and urine glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "308115004", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4146454, + "CONCEPT_NAME" : "Self-monitoring of blood glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "308113006", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4147408, + "CONCEPT_NAME" : "Self-monitoring of urine glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "308114000", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4091293, + "CONCEPT_NAME" : "Sensitive pregnancy test", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "252161000", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4264738, + "CONCEPT_NAME" : "Separation of symphysis pubis during delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "61007003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4009954, + "CONCEPT_NAME" : "Sepsis during labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1125006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060807, + "CONCEPT_NAME" : "Sepsis during labor with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199711007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4187090, + "CONCEPT_NAME" : "Sepsis following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46848006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37116435, + "CONCEPT_NAME" : "Sepsis following obstructed labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "733142005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42536689, + "CONCEPT_NAME" : "Sepsis of neonate caused by Streptococcus pyogenes", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "735637004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4048275, + "CONCEPT_NAME" : "Sepsis of newborn due to anaerobes", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206380000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 46270041, + "CONCEPT_NAME" : "Sepsis of newborn due to group B Streptococcus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "127091000119100", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 763027, + "CONCEPT_NAME" : "Sepsis of newborn due to Streptococcus agalactiae", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "435181000124108", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4071063, + "CONCEPT_NAME" : "Sepsis of the newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206376005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3655212, + "CONCEPT_NAME" : "Septic embolism due to and following ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "860683004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3655211, + "CONCEPT_NAME" : "Septic embolism due to and following molar pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "860682009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 137371, + "CONCEPT_NAME" : "Septicemia of newborn", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "41229001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4080587, + "CONCEPT_NAME" : "Septic shock following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "24051007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4042760, + "CONCEPT_NAME" : "Serum 2-hr post-prandial glucose measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "167088001", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4161969, + "CONCEPT_NAME" : "Serum alpha-fetoprotein level elevated", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "399643001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4275335, + "CONCEPT_NAME" : "Serum alpha-fetoprotein level - finding", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "365804002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4195345, + "CONCEPT_NAME" : "Serum alpha-fetoprotein multiple of median measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313868001", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4041723, + "CONCEPT_NAME" : "Serum fasting glucose measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "167087006", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4210722, + "CONCEPT_NAME" : "Serum free beta human chorionic gonadotrophin measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313872002", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4195509, + "CONCEPT_NAME" : "Serum free beta human chorionic gonadotropin multiple of median measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "314070003", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4198892, + "CONCEPT_NAME" : "Serum human chorionic gonadotropin multiple of median measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313866002", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4156811, + "CONCEPT_NAME" : "Serum insulin - C-polypeptide measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "271227006", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4150492, + "CONCEPT_NAME" : "Serum insulin measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "271226002", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4041161, + "CONCEPT_NAME" : "Serum pregnancy test (B-HCG)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "166434005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4042412, + "CONCEPT_NAME" : "Serum pregnancy test positive", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "166437003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4042759, + "CONCEPT_NAME" : "Serum random glucose measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "167086002", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4042751, + "CONCEPT_NAME" : "Serum total HCG measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "167037004", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432427, + "CONCEPT_NAME" : "Severe birth asphyxia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57284007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4121417, + "CONCEPT_NAME" : "Severe birth asphyxia, APGAR 0-3", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "287985008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4153452, + "CONCEPT_NAME" : "Severe birth asphyxia - apgar score less than 4 at 1 minute", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "268829008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4032345, + "CONCEPT_NAME" : "Severe hyperemesis gravidarum", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "129598007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4029420, + "CONCEPT_NAME" : "Severe hyperglycemia due to diabetes mellitus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237621004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36675039, + "CONCEPT_NAME" : "Severe neonatal onset encephalopathy with microcephaly", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "771303004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4129184, + "CONCEPT_NAME" : "Severe postnatal depression", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237350002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4129843, + "CONCEPT_NAME" : "Severe postnatal psychosis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237352005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433536, + "CONCEPT_NAME" : "Severe pre-eclampsia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46764007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438490, + "CONCEPT_NAME" : "Severe pre-eclampsia - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198983002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439077, + "CONCEPT_NAME" : "Severe pre-eclampsia - delivered with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198984008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 132685, + "CONCEPT_NAME" : "Severe pre-eclampsia - not delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198985009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4057976, + "CONCEPT_NAME" : "Severe pre-eclampsia with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198986005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4172871, + "CONCEPT_NAME" : "Severe transient tachypnea of newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276532007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4092760, + "CONCEPT_NAME" : "Sex of baby at delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "281053000", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Observable Entity" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45765502, + "CONCEPT_NAME" : "Sextuplet birth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "702454008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45772082, + "CONCEPT_NAME" : "Sextuplets, all live born", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10760861000119105", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45757169, + "CONCEPT_NAME" : "Sextuplets, some live born", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10760901000119104", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42538806, + "CONCEPT_NAME" : "Sextuplets with all six stillborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "762614005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4127241, + "CONCEPT_NAME" : "Shirodkar's cervical cerclage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "236947000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442271, + "CONCEPT_NAME" : "Shock following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "69344006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438226, + "CONCEPT_NAME" : "Short cord", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59795007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435020, + "CONCEPT_NAME" : "Short cord - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199889008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437946, + "CONCEPT_NAME" : "Short cord with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199890004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 80474, + "CONCEPT_NAME" : "Shoulder dystocia - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199783004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 75608, + "CONCEPT_NAME" : "Shoulder dystocia with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199784005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 72377, + "CONCEPT_NAME" : "Shoulder girdle dystocia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "89700002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4170152, + "CONCEPT_NAME" : "Simpson's forceps delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "275169009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014295, + "CONCEPT_NAME" : "Single live birth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169826009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40483521, + "CONCEPT_NAME" : "Single liveborn born in hospital by cesarean section", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "442423001", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36713074, + "CONCEPT_NAME" : "Single liveborn born in hospital by vaginal delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "17561000119102", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014454, + "CONCEPT_NAME" : "Single stillbirth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169827000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36713465, + "CONCEPT_NAME" : "Singleton liveborn born in hospital", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "717803002", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 257370, + "CONCEPT_NAME" : "Skeletal injury due to birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "240314005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4122747, + "CONCEPT_NAME" : "Skin surrounding umbilical cord stump pink", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "289326007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4126736, + "CONCEPT_NAME" : "Skin surrounding umbilical cord stump red", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "289325006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 46284319, + "CONCEPT_NAME" : "Skull injury due to birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "944051000000105", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4166847, + "CONCEPT_NAME" : "Slipped umbilical ligature with hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45549002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4087113, + "CONCEPT_NAME" : "Slow fetal growth AND/OR fetal malnutrition", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "18471004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4174056, + "CONCEPT_NAME" : "Slow slope active phase of labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "49279000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3174052, + "CONCEPT_NAME" : "Slow transition to extrauterine life", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "9270001000004104", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "Nebraska Lexicon", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4064286, + "CONCEPT_NAME" : "Small-for-dates baby", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199612005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4150640, + "CONCEPT_NAME" : "Snuffles in newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "271375003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4162239, + "CONCEPT_NAME" : "Somogyi phenomenon", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "398140007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3050414, + "CONCEPT_NAME" : "Sonographer name", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "49088-8", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Clinical Observation" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4318858, + "CONCEPT_NAME" : "Spastic ileus of the newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "95626009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4165092, + "CONCEPT_NAME" : "Spastic paralysis due to birth injury", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40980002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4102446, + "CONCEPT_NAME" : "Spastic paralysis due to intracranial birth injury", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "28534004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4194977, + "CONCEPT_NAME" : "Spastic paralysis due to spinal birth injury", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "79591004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2213358, + "CONCEPT_NAME" : "Sperm isolation; complex prep (eg, Percoll gradient, albumin gradient) for insemination or diagnosis with semen analysis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "89261", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2213357, + "CONCEPT_NAME" : "Sperm isolation; simple prep (eg, sperm wash and swim-up) for insemination or diagnosis with semen analysis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "89260", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110198, + "CONCEPT_NAME" : "Sperm washing for artificial insemination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "58323", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44784365, + "CONCEPT_NAME" : "Spinal cord injury due to birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "698500002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4047857, + "CONCEPT_NAME" : "Spinal cord laceration due to birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206223002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4070526, + "CONCEPT_NAME" : "Spinal cord rupture due to birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206224008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44784364, + "CONCEPT_NAME" : "Spine injury due to birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "698499006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 77679, + "CONCEPT_NAME" : "Spine or spinal cord injury due to birth trauma", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "206220004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4169992, + "CONCEPT_NAME" : "Spleen injury due to birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "275364007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4150803, + "CONCEPT_NAME" : "Spleen rupture due to birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "268826001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4073422, + "CONCEPT_NAME" : "Spontaneous breech delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177157003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4008578, + "CONCEPT_NAME" : "Spontaneous hypoglycemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "111559003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 761781, + "CONCEPT_NAME" : "Spontaneous intracerebral hemorrhage in neonate", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15984991000119103", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4309364, + "CONCEPT_NAME" : "Spontaneous onset of labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84457005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015143, + "CONCEPT_NAME" : "Spontaneous rupture of fetal membranes", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169734005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4167497, + "CONCEPT_NAME" : "Spontaneous unassisted delivery, medical personnel present", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48204000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4205240, + "CONCEPT_NAME" : "Spontaneous vertex delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "309469004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 198212, + "CONCEPT_NAME" : "Spotting per vagina in pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "284075002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4091461, + "CONCEPT_NAME" : "Standard pregnancy test", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "252160004", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4298015, + "CONCEPT_NAME" : "Staphylococcal omphalitis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "403841009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40406337, + "CONCEPT_NAME" : "Stillbirth", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "206581002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443213, + "CONCEPT_NAME" : "Stillbirth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237364002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4287409, + "CONCEPT_NAME" : "Stillbirth of immature female (500-999 gms.)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "68509000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4217655, + "CONCEPT_NAME" : "Stillbirth of immature fetus, sex undetermined (500-999 gms.)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72543004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4261819, + "CONCEPT_NAME" : "Stillbirth of immature male (500-999 gms.)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "35608009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4321563, + "CONCEPT_NAME" : "Stillbirth of mature female (2500 gms. or more)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "70112005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4301269, + "CONCEPT_NAME" : "Stillbirth of mature male (2500 gms. or more)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7860005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4103876, + "CONCEPT_NAME" : "Stillbirth of premature female (1000-2499 gms.)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "28996007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4300979, + "CONCEPT_NAME" : "Stillbirth of premature male (1000-2499 gms.)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "77814006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443463, + "CONCEPT_NAME" : "Stillbirth - unknown if fetal death intrapartum or prior to labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "408796008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2721254, + "CONCEPT_NAME" : "Stimulated intrauterine insemination (iui), case rate", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "S4035", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4301412, + "CONCEPT_NAME" : "Streptococcal omphalitis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "403843007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4168056, + "CONCEPT_NAME" : "Stroke in the puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "275434003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4174198, + "CONCEPT_NAME" : "Subareolar abscess associated with childbirth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "49364005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4047868, + "CONCEPT_NAME" : "Subcutaneous fat necrosis due to birth injury", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206254003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 378544, + "CONCEPT_NAME" : "Subdural and cerebral hemorrhage due to birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206188000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4130539, + "CONCEPT_NAME" : "Subdural hemorrhage due to birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "126941005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4095178, + "CONCEPT_NAME" : "Subdural hemorrhage due to intrapartum anoxia AND/OR hypoxia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25004000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4183593, + "CONCEPT_NAME" : "Subdural hemorrhage in fetus or newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43602006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42538556, + "CONCEPT_NAME" : "Subgaleal epicranial subaponeurotic hemorrhage due to birth injury", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "762286005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4030259, + "CONCEPT_NAME" : "Sub-involution of uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13842006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4063159, + "CONCEPT_NAME" : "Subluxation of symphysis pubis in pregnancy, childbirth and the puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199308008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4205437, + "CONCEPT_NAME" : "Submammary abscess associated with childbirth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55472006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4300419, + "CONCEPT_NAME" : "Submammary mastitis associated with childbirth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "77913004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42739013, + "CONCEPT_NAME" : "Subsequent hospital care, for the evaluation and management of a normal newborn, per day", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "99433", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2514557, + "CONCEPT_NAME" : "Subsequent hospital care, per day, for evaluation and management of normal newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "99462", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42739550, + "CONCEPT_NAME" : "Subsequent inpatient neonatal critical care, per day, for the evaluation and management of a critically ill neonate, 28 days of age or less", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "99296", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2514564, + "CONCEPT_NAME" : "Subsequent inpatient neonatal critical care, per day, for the evaluation and management of a critically ill neonate, 28 days of age or younger", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "99469", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2514572, + "CONCEPT_NAME" : "Subsequent intensive care, per day, for the evaluation and management of the recovering infant (present body weight of 2501-5000 grams)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "99480", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42740403, + "CONCEPT_NAME" : "Subsequent intensive care, per day, for the evaluation and management of the recovering low birth weight infant (present body weight of 1500-2500 g)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "99299", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2514571, + "CONCEPT_NAME" : "Subsequent intensive care, per day, for the evaluation and management of the recovering low birth weight infant (present body weight of 1500-2500 grams)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "99479", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42739401, + "CONCEPT_NAME" : "Subsequent intensive care, per day, for the evaluation and management of the recovering very low birth weight infant (present body weight less than 1500 g)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "99298", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2514570, + "CONCEPT_NAME" : "Subsequent intensive care, per day, for the evaluation and management of the recovering very low birth weight infant (present body weight less than 1500 grams)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "99478", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2101831, + "CONCEPT_NAME" : "Subsequent prenatal care visit (Prenatal) [Excludes: patients who are seen for a condition unrelated to pregnancy or prenatal care (eg, an upper respiratory infection; patients seen for consultation only, not for continuing care)]", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "0502F", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110318, + "CONCEPT_NAME" : "Subtotal or total hysterectomy after cesarean delivery (List separately in addition to code for primary procedure)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59525", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4022098, + "CONCEPT_NAME" : "Subzonal insemination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "225249007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4150538, + "CONCEPT_NAME" : "Suction evacuation of retained products of conception", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "310604000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4027161, + "CONCEPT_NAME" : "Superficial hematoma in fetus OR newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10742003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442058, + "CONCEPT_NAME" : "Superficial thrombophlebitis in pregnancy and the puerperium", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "200222004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439094, + "CONCEPT_NAME" : "Superficial thrombophlebitis in pregnancy and the puerperium - delivered", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "200224003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439095, + "CONCEPT_NAME" : "Superficial thrombophlebitis in pregnancy and the puerperium - delivered with postnatal complication", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "267283002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435331, + "CONCEPT_NAME" : "Superficial thrombophlebitis in pregnancy and the puerperium with antenatal complication", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "200226001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435332, + "CONCEPT_NAME" : "Superficial thrombophlebitis in pregnancy and the puerperium with postnatal complication", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "200227005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4143293, + "CONCEPT_NAME" : "Superficial thrombophlebitis in puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "308137006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4150337, + "CONCEPT_NAME" : "Supper time blood glucose measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "271064007", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 79098, + "CONCEPT_NAME" : "Suppressed lactation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "30506002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 76770, + "CONCEPT_NAME" : "Suppressed lactation with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200442006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3017439, + "CONCEPT_NAME" : "Surfactant/Albumin [Mass Ratio] in Amniotic fluid", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "30562-3", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4073432, + "CONCEPT_NAME" : "Surgical induction of labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177129005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110295, + "CONCEPT_NAME" : "Surgical treatment of ectopic pregnancy; abdominal pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59130", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110298, + "CONCEPT_NAME" : "Surgical treatment of ectopic pregnancy; cervical, with evacuation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59140", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110296, + "CONCEPT_NAME" : "Surgical treatment of ectopic pregnancy; interstitial, uterine pregnancy requiring total hysterectomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59135", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110297, + "CONCEPT_NAME" : "Surgical treatment of ectopic pregnancy; interstitial, uterine pregnancy with partial resection of uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59136", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110293, + "CONCEPT_NAME" : "Surgical treatment of ectopic pregnancy; tubal or ovarian, requiring salpingectomy and/or oophorectomy, abdominal or vaginal approach", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59120", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110294, + "CONCEPT_NAME" : "Surgical treatment of ectopic pregnancy; tubal or ovarian, without salpingectomy and/or oophorectomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59121", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530886, + "CONCEPT_NAME" : "Suspected fetal damage from disease in the mother", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609420007", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530888, + "CONCEPT_NAME" : "Suspected fetal damage from radiation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609422004", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434480, + "CONCEPT_NAME" : "Syndrome of infant of diabetic mother", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "21584002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42538560, + "CONCEPT_NAME" : "Syndrome of infant of mother with gestational diabetes", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "762291006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 436171, + "CONCEPT_NAME" : "Syphilis in mother complicating pregnancy, childbirth AND/OR puerperium", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "34242002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4129023, + "CONCEPT_NAME" : "Teenage pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237240001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4079854, + "CONCEPT_NAME" : "Tentorial laceration - acute syndrome", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276590002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4171107, + "CONCEPT_NAME" : "Tentorial laceration - subacute syndrome", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276591003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4227728, + "CONCEPT_NAME" : "Term birth of fraternal twins, both living", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87662006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4306288, + "CONCEPT_NAME" : "Term birth of fraternal twins, both stillborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "83121003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4330570, + "CONCEPT_NAME" : "Term birth of fraternal twins, one living, one stillborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "22514005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4049333, + "CONCEPT_NAME" : "Term birth of identical twins, both living", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15467003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4192641, + "CONCEPT_NAME" : "Term birth of identical twins, both stillborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "75697004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4243026, + "CONCEPT_NAME" : "Term birth of identical twins, one living, one stillborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "38257001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4066292, + "CONCEPT_NAME" : "Term birth of multiple newborns", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "17333005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4193224, + "CONCEPT_NAME" : "Term birth of newborn quadruplets", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7888004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336090, + "CONCEPT_NAME" : "Term birth of newborn quintuplets", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86803008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4199146, + "CONCEPT_NAME" : "Term birth of newborn sextuplets", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "52483005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4307237, + "CONCEPT_NAME" : "Term birth of newborn triplets", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "8333008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4178275, + "CONCEPT_NAME" : "Term birth of newborn twins", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "50758004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4203001, + "CONCEPT_NAME" : "Term birth of stillborn twins", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "52942000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4297250, + "CONCEPT_NAME" : "Termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "386639001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4240605, + "CONCEPT_NAME" : "Termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57797005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43020954, + "CONCEPT_NAME" : "Termination of pregnancy after first trimester", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "472839005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40258875, + "CONCEPT_NAME" : "Termination of pregnancy NEC", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "176831008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530907, + "CONCEPT_NAME" : "Termination of pregnancy with complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609446006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4212260, + "CONCEPT_NAME" : "Term infant", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57891003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336958, + "CONCEPT_NAME" : "Term pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87527008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4296038, + "CONCEPT_NAME" : "Tetanus complicating ectopic AND/OR molar pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "76843005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 133024, + "CONCEPT_NAME" : "Tetanus neonatorum", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43424001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4189561, + "CONCEPT_NAME" : "Therapeutic termination of pregnancy by aspiration curettage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "391896006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4030009, + "CONCEPT_NAME" : "Therapeutic termination of pregnancy by insertion of laminaria", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10763001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4299609, + "CONCEPT_NAME" : "Therapeutic termination of pregnancy procedure", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "386641000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 193830, + "CONCEPT_NAME" : "Third degree perineal laceration", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10217006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 193275, + "CONCEPT_NAME" : "Third degree perineal tear during delivery - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199930000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 199097, + "CONCEPT_NAME" : "Third degree perineal tear during delivery with postnatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199931001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 197625, + "CONCEPT_NAME" : "Third stage hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "47236005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37311704, + "CONCEPT_NAME" : "Third stage hemorrhage due to retention of placenta", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "820947007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 200469, + "CONCEPT_NAME" : "Third-stage postpartum hemorrhage - delivered with postnatal problem", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "200015003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060183, + "CONCEPT_NAME" : "Third-stage postpartum hemorrhage with postnatal problem", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "200016002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4142581, + "CONCEPT_NAME" : "Third trimester bleeding", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "427139004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4218813, + "CONCEPT_NAME" : "Third trimester pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "41587001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4180111, + "CONCEPT_NAME" : "Third trimester pregnancy less than 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429240000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444082, + "CONCEPT_NAME" : "Threatened labor, without delivery", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "37486004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440457, + "CONCEPT_NAME" : "Threatened miscarriage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54048003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4252252, + "CONCEPT_NAME" : "Threatened miscarriage in first trimester", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "73790007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4294259, + "CONCEPT_NAME" : "Threatened miscarriage in second trimester", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "75933004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4032055, + "CONCEPT_NAME" : "Threatened miscarriage in third trimester", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10884004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3186670, + "CONCEPT_NAME" : "Threatened premature labor - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "480001000004104", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "Nebraska Lexicon", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 139888, + "CONCEPT_NAME" : "Threatened premature labor - not delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199049003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36713271, + "CONCEPT_NAME" : "Three dimensional obstetric ultrasonography", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "5231000179108", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36713272, + "CONCEPT_NAME" : "Three dimensional obstetric ultrasonography in third trimester", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "5241000179100", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4222152, + "CONCEPT_NAME" : "Thrombophlebitis in puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "83916000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442300, + "CONCEPT_NAME" : "Thyroid disease in mother complicating pregnancy, childbirth AND/OR puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59136001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 136755, + "CONCEPT_NAME" : "Thyroid dysfunction during pregnancy - baby delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199237009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 138479, + "CONCEPT_NAME" : "Thyroid dysfunction during pregnancy - baby not yet delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199239007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 139895, + "CONCEPT_NAME" : "Thyroid dysfunction during pregnancy, childbirth and the puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199235001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 138207, + "CONCEPT_NAME" : "Thyroid dysfunction in the puerperium - baby delivered during current episode of care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199238004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 138484, + "CONCEPT_NAME" : "Thyroid dysfunction in the puerperium - baby delivered during previous episode of care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199240009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2213255, + "CONCEPT_NAME" : "Tissue culture for non-neoplastic disorders; amniotic fluid or chorionic villus cells", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "88235", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4019096, + "CONCEPT_NAME" : "Total abdominal hysterectomy with bilateral salpingo-oophorectomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "116144002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4214677, + "CONCEPT_NAME" : "Total beta human chorionic gonadotrophin level", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "394721004", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004331, + "CONCEPT_NAME" : "Total bilateral salpingectomy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "66.5", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "3-dig nonbill code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4204679, + "CONCEPT_NAME" : "Total breech delivery with forceps to aftercoming head", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54973000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44789306, + "CONCEPT_NAME" : "Total human chorionic gonadotropin measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "195261000000107", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004330, + "CONCEPT_NAME" : "Total unilateral salpingectomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "66.4", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "3-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 141370, + "CONCEPT_NAME" : "Toxic erythema", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "58767000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061350, + "CONCEPT_NAME" : "Toxic reaction to local anesthesia during the puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200070000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110288, + "CONCEPT_NAME" : "Transabdominal amnioinfusion, including ultrasound guidance", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59070", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4169966, + "CONCEPT_NAME" : "Transabdominal chorionic villus biopsy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "275223004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4169965, + "CONCEPT_NAME" : "Transcervical sampling of chorionic villus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "275222009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44790511, + "CONCEPT_NAME" : "Transfer of embryo to uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "233111000000108", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441922, + "CONCEPT_NAME" : "Transient hypertension of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237279007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 137940, + "CONCEPT_NAME" : "Transient hypertension of pregnancy - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198965005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 141639, + "CONCEPT_NAME" : "Transient hypertension of pregnancy - delivered with postnatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198966006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 136760, + "CONCEPT_NAME" : "Transient hypertension of pregnancy - not delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198967002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4173327, + "CONCEPT_NAME" : "Transient hypothyroxinemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276629001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4079845, + "CONCEPT_NAME" : "Transient neonatal colitis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276523005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4129378, + "CONCEPT_NAME" : "Transient neonatal diabetes mellitus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237603002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433604, + "CONCEPT_NAME" : "Transient neonatal disorder of coagulation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "32605001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42536567, + "CONCEPT_NAME" : "Transient neonatal hypoglycemia due to hyperinsulinemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "735496003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439149, + "CONCEPT_NAME" : "Transient neonatal neutropenia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55444004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36716753, + "CONCEPT_NAME" : "Transient neonatal neutropenia due to congenital viral infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "722925004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36716754, + "CONCEPT_NAME" : "Transient neonatal neutropenia due to neonatal bacterial sepsis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "722926003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4033200, + "CONCEPT_NAME" : "Transient neonatal pustulosis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "239092005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435076, + "CONCEPT_NAME" : "Transient neonatal thrombocytopenia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "23205009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4048930, + "CONCEPT_NAME" : "Transient neonatal thrombocytopenia due to exchange transfusion", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206510008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4049028, + "CONCEPT_NAME" : "Transient neonatal thrombocytopenia due to idiopathic maternal thrombocytopenia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206511007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4048742, + "CONCEPT_NAME" : "Transient neonatal thrombocytopenia due to isoimmunization", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206512000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42536568, + "CONCEPT_NAME" : "Transitory iatrogenic neonatal hypoglycemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "735497007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 198870, + "CONCEPT_NAME" : "Transitory ileus of newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "82368005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4173172, + "CONCEPT_NAME" : "Transitory ileus of prematurity", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276520008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 436234, + "CONCEPT_NAME" : "Transitory neonatal electrolyte disturbance", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12901004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433314, + "CONCEPT_NAME" : "Transitory neonatal endocrine AND/OR metabolic disorder", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "111472004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4071744, + "CONCEPT_NAME" : "Transitory neonatal hyperkalemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206491006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4048620, + "CONCEPT_NAME" : "Transitory neonatal hypernatremia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206489003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4171099, + "CONCEPT_NAME" : "Transitory neonatal hypoglycemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276561008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 321683, + "CONCEPT_NAME" : "Transitory tachypnea of newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7550008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40490447, + "CONCEPT_NAME" : "Transmyometrial transfer of embryo to uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "448543003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4324606, + "CONCEPT_NAME" : "Transvaginal nuchal ultrasonography", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "430063002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4335250, + "CONCEPT_NAME" : "Transvaginal obstetric doppler ultrasonography", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "432246004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4324607, + "CONCEPT_NAME" : "Transvaginal obstetric ultrasonography", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "430064008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4073406, + "CONCEPT_NAME" : "Transvaginal oocyte recovery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177042008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40490322, + "CONCEPT_NAME" : "Transvaginal ultrasonography to determine the estimated date of confinement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "446920006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4063171, + "CONCEPT_NAME" : "Transverse lie - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199362007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 81358, + "CONCEPT_NAME" : "Transverse OR oblique presentation of fetus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "11914001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4104199, + "CONCEPT_NAME" : "Trapped placenta", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "29171003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4174854, + "CONCEPT_NAME" : "Trauma from instrument during delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "42599006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4267072, + "CONCEPT_NAME" : "Traumatic extension of episiotomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36497006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4071600, + "CONCEPT_NAME" : "Traumatic glaucoma due to birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206248004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36716539, + "CONCEPT_NAME" : "Traumatic hemorrhage of cerebellum due to birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "722575008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36716739, + "CONCEPT_NAME" : "Traumatic hemorrhage of intracranial epidural space due to birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "722909009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439093, + "CONCEPT_NAME" : "Traumatic lesion during delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64229006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42536749, + "CONCEPT_NAME" : "Traumatic subluxation of spine due to birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "735743006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432975, + "CONCEPT_NAME" : "Trauma to perineum and/or vulva during delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "267268007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4161678, + "CONCEPT_NAME" : "Trauma to perineum during delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "397952002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3655718, + "CONCEPT_NAME" : "Trauma to urethra and bladder during delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "866229004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4134431, + "CONCEPT_NAME" : "Trauma to vagina during delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "128077009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4326563, + "CONCEPT_NAME" : "Trauma to vulva during delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7504005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2111055, + "CONCEPT_NAME" : "Treatment of extensive or progressive retinopathy, 1 or more sessions, preterm infant (less than 37 weeks gestation at birth), performed from birth up to 1 year of age (eg, retinopathy of prematurity), photocoagulation or cryotherapy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "67229", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110325, + "CONCEPT_NAME" : "Treatment of incomplete abortion, any trimester, completed surgically", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59812", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110326, + "CONCEPT_NAME" : "Treatment of missed abortion, completed surgically; first trimester", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59820", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110327, + "CONCEPT_NAME" : "Treatment of missed abortion, completed surgically; second trimester", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59821", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110328, + "CONCEPT_NAME" : "Treatment of septic abortion, completed surgically", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59830", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4290245, + "CONCEPT_NAME" : "Trial forceps delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "69422002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4073424, + "CONCEPT_NAME" : "Trial of vacuum delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177176001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4094046, + "CONCEPT_NAME" : "Triplet birth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "281052005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4078287, + "CONCEPT_NAME" : "Triple test", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "275835005", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014290, + "CONCEPT_NAME" : "Triple test not wanted", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169795009", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42539210, + "CONCEPT_NAME" : "Triplet liveborn in hospital by cesarean section", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16089571000119102", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432375, + "CONCEPT_NAME" : "Triplet pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64254006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440462, + "CONCEPT_NAME" : "Triplet pregnancy - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199321001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437931, + "CONCEPT_NAME" : "Triplet pregnancy with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199322008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014456, + "CONCEPT_NAME" : "Triplets - all live born", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169831006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015422, + "CONCEPT_NAME" : "Triplets - one live and two stillborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169833009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45757165, + "CONCEPT_NAME" : "Triplets, some live born", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10760661000119109", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015163, + "CONCEPT_NAME" : "Triplets - three stillborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169834003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015421, + "CONCEPT_NAME" : "Triplets - two live and one stillborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169832004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3051868, + "CONCEPT_NAME" : "Trisomy 21 risk based on maternal age+Alpha-1-Fetoprotein+Choriogonadotropin+Estriol.unconjugated [Likelihood] in Fetus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "47222-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Lab Test" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44499531, + "CONCEPT_NAME" : "Trophoblastic tumor, epithelioid of placenta", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "9105/3-C58.9", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "ICDO3", + "CONCEPT_CLASS_ID" : "ICDO Condition" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4101082, + "CONCEPT_NAME" : "True knot of umbilical cord", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "27696007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4127106, + "CONCEPT_NAME" : "Tubal embryo transfer", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "236915005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 199076, + "CONCEPT_NAME" : "Tubal pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "79586000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4030182, + "CONCEPT_NAME" : "Tumor-induced hypoglycemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237645000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 196758, + "CONCEPT_NAME" : "Tumor of body of uterus affecting pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "223003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 196181, + "CONCEPT_NAME" : "Tumor of uterine body - baby delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "267221002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 197049, + "CONCEPT_NAME" : "Tumor of uterine body - baby delivered with postpartum complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "267222009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 192385, + "CONCEPT_NAME" : "Tumor of uterine body complicating antenatal care, baby not yet delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "267223004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4101844, + "CONCEPT_NAME" : "Twin birth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "28030000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40483084, + "CONCEPT_NAME" : "Twin liveborn born in hospital", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "442327001", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40483101, + "CONCEPT_NAME" : "Twin liveborn born in hospital by cesarean section", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "442342003", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42535052, + "CONCEPT_NAME" : "Twin live born in hospital by vaginal delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "151441000119105", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441919, + "CONCEPT_NAME" : "Twin pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65147003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435018, + "CONCEPT_NAME" : "Twin pregnancy - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199317008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434097, + "CONCEPT_NAME" : "Twin pregnancy with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199318003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014296, + "CONCEPT_NAME" : "Twins - both live born", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169828005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015162, + "CONCEPT_NAME" : "Twins - both stillborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169830007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014455, + "CONCEPT_NAME" : "Twins - one still and one live born", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169829002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42709935, + "CONCEPT_NAME" : "Type 3a third degree laceration of perineum", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "449807005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42709936, + "CONCEPT_NAME" : "Type 3b third degree laceration of perineum", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "449808000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42709937, + "CONCEPT_NAME" : "Type 3c third degree laceration of perineum", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "449809008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4279146, + "CONCEPT_NAME" : "Ultrasonic guidance for amniocentesis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65388005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2211785, + "CONCEPT_NAME" : "Ultrasonic guidance for amniocentesis, imaging supervision and interpretation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "76946", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2211784, + "CONCEPT_NAME" : "Ultrasonic guidance for chorionic villus sampling, imaging supervision and interpretation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "76945", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2211782, + "CONCEPT_NAME" : "Ultrasonic guidance for intrauterine fetal transfusion or cordocentesis, imaging supervision and interpretation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "76941", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37397735, + "CONCEPT_NAME" : "Ultrasonography for amniotic fluid index", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "718475004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4082534, + "CONCEPT_NAME" : "Ultrasonography for antepartum monitoring of fetus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "241491007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42535558, + "CONCEPT_NAME" : "Ultrasonography for fetal biophysical profile with non-stress testing", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "394211000119109", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42535559, + "CONCEPT_NAME" : "Ultrasonography for fetal biophysical profile without non-stress testing", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "394221000119102", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42535553, + "CONCEPT_NAME" : "Ultrasonography for qualitative amniotic fluid volume", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "391131000119106", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42535246, + "CONCEPT_NAME" : "Ultrasonography for qualitative deepest pocket amniotic fluid volume", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16437531000119105", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40488298, + "CONCEPT_NAME" : "Ultrasonography in first trimester", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "446522006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40486918, + "CONCEPT_NAME" : "Ultrasonography in second trimester", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "446208007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40487413, + "CONCEPT_NAME" : "Ultrasonography in third trimester", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "446353007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45773218, + "CONCEPT_NAME" : "Ultrasonography of fetal ductus venosus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "700442004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 46271899, + "CONCEPT_NAME" : "Ultrasonography of fetal head", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "710165007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45765925, + "CONCEPT_NAME" : "Ultrasonography of fetal shunt", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "702985005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44807918, + "CONCEPT_NAME" : "Ultrasonography of multiple pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "855021000000107", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40492794, + "CONCEPT_NAME" : "Ultrasonography of multiple pregnancy for fetal anomaly", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "445866007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40489798, + "CONCEPT_NAME" : "Ultrasonography of multiple pregnancy for fetal nuchal translucency", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "446810002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42690777, + "CONCEPT_NAME" : "Ultrasonography of retained products of conception", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1076861000000103", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3031159, + "CONCEPT_NAME" : "Ultrasound date", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "34970-4", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Clinical Observation" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40756968, + "CONCEPT_NAME" : "Ultrasound, limited, joint or other nonvascular extremity structure(s) (eg, joint space, peri-articular tendon[s], muscle[s], nerve[s], other soft-tissue structure[s], or soft-tissue mass[es]), real-time with image documentation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "76882", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44790261, + "CONCEPT_NAME" : "Ultrasound monitoring of early pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "228881000000102", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2211750, + "CONCEPT_NAME" : "Ultrasound, pregnant uterus, real time with image documentation, fetal and maternal evaluation, after first trimester (> or = 14 weeks 0 days), transabdominal approach; each additional gestation (List separately in addition to code for primary procedure)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "76810", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2211749, + "CONCEPT_NAME" : "Ultrasound, pregnant uterus, real time with image documentation, fetal and maternal evaluation, after first trimester (> or = 14 weeks 0 days), transabdominal approach; single or first gestation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "76805", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2211748, + "CONCEPT_NAME" : "Ultrasound, pregnant uterus, real time with image documentation, fetal and maternal evaluation, first trimester (< 14 weeks 0 days), transabdominal approach; each additional gestation (List separately in addition to code for primary procedure)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "76802", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2211747, + "CONCEPT_NAME" : "Ultrasound, pregnant uterus, real time with image documentation, fetal and maternal evaluation, first trimester (< 14 weeks 0 days), transabdominal approach; single or first gestation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "76801", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2211752, + "CONCEPT_NAME" : "Ultrasound, pregnant uterus, real time with image documentation, fetal and maternal evaluation plus detailed fetal anatomic examination, transabdominal approach; each additional gestation (List separately in addition to code for primary procedure)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "76812", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2211751, + "CONCEPT_NAME" : "Ultrasound, pregnant uterus, real time with image documentation, fetal and maternal evaluation plus detailed fetal anatomic examination, transabdominal approach; single or first gestation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "76811", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2211754, + "CONCEPT_NAME" : "Ultrasound, pregnant uterus, real time with image documentation, first trimester fetal nuchal translucency measurement, transabdominal or transvaginal approach; each additional gestation (List separately in addition to code for primary procedure)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "76814", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2211753, + "CONCEPT_NAME" : "Ultrasound, pregnant uterus, real time with image documentation, first trimester fetal nuchal translucency measurement, transabdominal or transvaginal approach; single or first gestation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "76813", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2211756, + "CONCEPT_NAME" : "Ultrasound, pregnant uterus, real time with image documentation, follow-up (eg, re-evaluation of fetal size by measuring standard growth parameters and amniotic fluid volume, re-evaluation of organ system(s) suspected or confirmed to be abnormal on a prev", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "76816", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2211755, + "CONCEPT_NAME" : "Ultrasound, pregnant uterus, real time with image documentation, limited (eg, fetal heart beat, placental location, fetal position and/or qualitative amniotic fluid volume), 1 or more fetuses", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "76815", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2211757, + "CONCEPT_NAME" : "Ultrasound, pregnant uterus, real time with image documentation, transvaginal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "76817", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3657421, + "CONCEPT_NAME" : "Ultrasound scan for chorionicity", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1167981000000101", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4237338, + "CONCEPT_NAME" : "Ultrasound scan for fetal anomaly", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "408814002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4082672, + "CONCEPT_NAME" : "Ultrasound scan for fetal growth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "241493005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4237339, + "CONCEPT_NAME" : "Ultrasound scan for fetal nuchal translucency", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "408815001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060624, + "CONCEPT_NAME" : "Ultrasound scan for fetal presentation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169228004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060626, + "CONCEPT_NAME" : "Ultrasound scan for fetal viability", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169230002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4152021, + "CONCEPT_NAME" : "Ultrasound scan - obstetric", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "268445003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4028775, + "CONCEPT_NAME" : "Umbilical cord around body", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237307007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441646, + "CONCEPT_NAME" : "Umbilical cord around neck", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "302929008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4126410, + "CONCEPT_NAME" : "Umbilical cord clamp left on", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "289337008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4126742, + "CONCEPT_NAME" : "Umbilical cord clamp needs removing", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "289336004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4122872, + "CONCEPT_NAME" : "Umbilical cord clamp off", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "289338003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4126741, + "CONCEPT_NAME" : "Umbilical cord clamp secure", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "289335000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435325, + "CONCEPT_NAME" : "Umbilical cord complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48287005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4122742, + "CONCEPT_NAME" : "Umbilical cord entangled around baby's limbs", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "289312003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4126740, + "CONCEPT_NAME" : "Umbilical cord stump base inflamed", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "289332002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4126737, + "CONCEPT_NAME" : "Umbilical cord stump black", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "289327003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4122745, + "CONCEPT_NAME" : "Umbilical cord stump clean", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "289319007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4126408, + "CONCEPT_NAME" : "Umbilical cord stump not healing", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "289318004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4126734, + "CONCEPT_NAME" : "Umbilical cord stump oozing", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "289323004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36675671, + "CONCEPT_NAME" : "Umbilical cord stump separated", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "772131003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4126739, + "CONCEPT_NAME" : "Umbilical cord stump smells offensive", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "289329000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45769826, + "CONCEPT_NAME" : "Umbilical cord three times around neck", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "71151000119105", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060157, + "CONCEPT_NAME" : "Umbilical cord tight around neck - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199874004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061971, + "CONCEPT_NAME" : "Umbilical cord tight around neck with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199875003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438259, + "CONCEPT_NAME" : "Umbilical hemorrhage after birth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "82986004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4079860, + "CONCEPT_NAME" : "Umbilical polyp of newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276618000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4098631, + "CONCEPT_NAME" : "Unconjugated estriol measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "250663008", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336229, + "CONCEPT_NAME" : "Unilateral salpingectomy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "86894005", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4301905, + "CONCEPT_NAME" : "Unilateral salpingo-oophorectomy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "78698008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110340, + "CONCEPT_NAME" : "Unlisted fetal invasive procedure, including ultrasound guidance, when performed", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59897", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110342, + "CONCEPT_NAME" : "Unlisted procedure, maternity care and delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59899", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4307820, + "CONCEPT_NAME" : "Unplanned pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "83074005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4059985, + "CONCEPT_NAME" : "Unplanned pregnancy unknown if child is wanted", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169568001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4113986, + "CONCEPT_NAME" : "Unspecified abortion complete", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "198793004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4113983, + "CONCEPT_NAME" : "Unspecified abortion incomplete", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "198781008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004742, + "CONCEPT_NAME" : "Unspecified instrumental delivery", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72.9", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "3-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4113036, + "CONCEPT_NAME" : "Unspecified legal abortion with no mention of complication", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "198702003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4112954, + "CONCEPT_NAME" : "Unspecified spontaneous abortion without mention of complication", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "198642002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 79091, + "CONCEPT_NAME" : "Unstable lie", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86356004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 79889, + "CONCEPT_NAME" : "Unstable lie - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199344003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 72374, + "CONCEPT_NAME" : "Unstable lie with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199345002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4239301, + "CONCEPT_NAME" : "Unwanted pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "58532003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40483205, + "CONCEPT_NAME" : "Urea, electrolytes and glucose measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "443746006", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4151214, + "CONCEPT_NAME" : "Uremia following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "28196006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4129178, + "CONCEPT_NAME" : "Urethra injury - obstetric", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237329006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4289453, + "CONCEPT_NAME" : "Urinalysis, glucose, qualitative", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "69376001", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2212169, + "CONCEPT_NAME" : "Urinalysis; qualitative or semiquantitative, except immunoassays", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "81005", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 46269813, + "CONCEPT_NAME" : "Urinary tract infection due to incomplete miscarriage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10812041000119103", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4062569, + "CONCEPT_NAME" : "Urinary tract infection following delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199111004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4242401, + "CONCEPT_NAME" : "Urinary tract infection following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "38176009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4146482, + "CONCEPT_NAME" : "Urinary tract infection in pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "307534009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4055426, + "CONCEPT_NAME" : "Urine chorionic gonadotrophin measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "167376008", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4192542, + "CONCEPT_NAME" : "Urine clinitest", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "391480003", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4151414, + "CONCEPT_NAME" : "Urine dipstick for glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "269879003", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4055970, + "CONCEPT_NAME" : "Urine glucose chemical titer measurement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "167523004", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4055823, + "CONCEPT_NAME" : "Urine glucose test = +", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "167264005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4042238, + "CONCEPT_NAME" : "Urine glucose test = ++", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "167265006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4042239, + "CONCEPT_NAME" : "Urine glucose test = +++", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "167266007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4055289, + "CONCEPT_NAME" : "Urine glucose test = ++++", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "167267003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4055822, + "CONCEPT_NAME" : "Urine glucose test negative", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "167261002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4055288, + "CONCEPT_NAME" : "Urine glucose test = trace", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "167262009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4055954, + "CONCEPT_NAME" : "Urine HCG 24 hour assay", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "167391005", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37392365, + "CONCEPT_NAME" : "Urine pregnancy test", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1003161000000106", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Observable Entity" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4055285, + "CONCEPT_NAME" : "Urine pregnancy test", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "167252002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2212173, + "CONCEPT_NAME" : "Urine pregnancy test, by visual color comparison methods", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "81025", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014769, + "CONCEPT_NAME" : "Urine pregnancy test, by visual color comparison methods", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "104405006", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4041878, + "CONCEPT_NAME" : "Urine pregnancy test positive", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "167256004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4149386, + "CONCEPT_NAME" : "Urine screening for glucose", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "268556000", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4174400, + "CONCEPT_NAME" : "Urticaria neonatorum", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "4244005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4170107, + "CONCEPT_NAME" : "US obstetric doppler", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "418090003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060623, + "CONCEPT_NAME" : "US obstetric scan abnormal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169222003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060622, + "CONCEPT_NAME" : "US obstetric scan normal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169221005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061129, + "CONCEPT_NAME" : "US obstetric scan requested", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169220006", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061130, + "CONCEPT_NAME" : "US scan - fetal cephalometry", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169224002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4059697, + "CONCEPT_NAME" : "US scan - fetal maturity", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169225001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4254201, + "CONCEPT_NAME" : "Uterine contraction monitoring using intrauterine pressure catheter", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "408810006", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110338, + "CONCEPT_NAME" : "Uterine evacuation and curettage for hydatidiform mole", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59870", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4064145, + "CONCEPT_NAME" : "Uterine evacuation and curettage of hydatidiform mole", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "215192006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4053158, + "CONCEPT_NAME" : "Uterine incoordination, first degree", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "23508005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4286205, + "CONCEPT_NAME" : "Uterine incoordination, second degree", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6891008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 197938, + "CONCEPT_NAME" : "Uterine inertia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26158002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45757158, + "CONCEPT_NAME" : "Uterine laceration during delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10760261000119106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 194101, + "CONCEPT_NAME" : "Uterine size for dates discrepancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "430933008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3023791, + "CONCEPT_NAME" : "Uterus Fundal height Tape measure", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "11881-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Clinical Observation" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4128172, + "CONCEPT_NAME" : "Uterus involuted", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "289752004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4127208, + "CONCEPT_NAME" : "Uterus involuting", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "289751006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44790180, + "CONCEPT_NAME" : "Vacuum aspiration of products of conception from uterus using flexible cannula", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "229761000000107", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44790181, + "CONCEPT_NAME" : "Vacuum aspiration of products of conception from uterus using rigid cannula", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "229801000000102", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4075171, + "CONCEPT_NAME" : "Vacuum delivery before full dilation of cervix", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177175002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004729, + "CONCEPT_NAME" : "Vacuum extraction with episiotomy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72.71", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442069, + "CONCEPT_NAME" : "Vacuum extractor delivery - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200138003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 193544, + "CONCEPT_NAME" : "Vaginal abnormality - baby delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "267240008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37109810, + "CONCEPT_NAME" : "Vaginal bleeding complicating early pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "723665008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4228344, + "CONCEPT_NAME" : "Vaginal cesarean section", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "89053004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4331179, + "CONCEPT_NAME" : "Vaginal delivery, medical personnel present", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "22633006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44784097, + "CONCEPT_NAME" : "Vaginal delivery of fetus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "700000006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110320, + "CONCEPT_NAME" : "Vaginal delivery only, after previous cesarean delivery (with or without episiotomy and/or forceps)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59612", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110321, + "CONCEPT_NAME" : "Vaginal delivery only, after previous cesarean delivery (with or without episiotomy and/or forceps); including postpartum care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59614", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110308, + "CONCEPT_NAME" : "Vaginal delivery only (with or without episiotomy and/or forceps)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59409", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110309, + "CONCEPT_NAME" : "Vaginal delivery only (with or without episiotomy and/or forceps); including postpartum care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59410", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4167018, + "CONCEPT_NAME" : "Vaginal delivery with forceps including postpartum care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45718005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4145316, + "CONCEPT_NAME" : "Vaginal show", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "268471004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4096535, + "CONCEPT_NAME" : "Vaginal tear resulting from childbirth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "249220002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4147415, + "CONCEPT_NAME" : "Varicose veins of genitalia in puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "308135003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442290, + "CONCEPT_NAME" : "Varicose veins of legs complicating pregnancy AND/OR puerperium", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "5626004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441644, + "CONCEPT_NAME" : "Varicose veins of legs in pregnancy and the puerperium", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "200204002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442059, + "CONCEPT_NAME" : "Varicose veins of legs in pregnancy and the puerperium - delivered", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "200206000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434712, + "CONCEPT_NAME" : "Varicose veins of legs in pregnancy and the puerperium with antenatal complication", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "200208004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4143292, + "CONCEPT_NAME" : "Varicose veins of legs in the puerperium", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "308134004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443242, + "CONCEPT_NAME" : "Varicose veins of perineum and vulva in pregnancy and the puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "267282007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435610, + "CONCEPT_NAME" : "Varicose veins of perineum and vulva in pregnancy and the puerperium - delivered", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "200215007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441929, + "CONCEPT_NAME" : "Varicose veins of perineum and vulva in pregnancy and the puerperium with antenatal complication", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "200217004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432701, + "CONCEPT_NAME" : "Varicose veins of perineum and vulva in pregnancy and the puerperium with postnatal complication", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "200218009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4147395, + "CONCEPT_NAME" : "Varicose veins of vagina in puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "308187004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435609, + "CONCEPT_NAME" : "Vasa previa - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199895009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435021, + "CONCEPT_NAME" : "Vasa previa with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199896005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 321367, + "CONCEPT_NAME" : "Vascular lesions of cord - delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199900008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 315884, + "CONCEPT_NAME" : "Vascular lesions of cord with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199901007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4300078, + "CONCEPT_NAME" : "Velamentous insertion of umbilical cord", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "77278008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440158, + "CONCEPT_NAME" : "Venereal disease in mother complicating pregnancy, childbirth AND/OR puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "27075004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 313543, + "CONCEPT_NAME" : "Venous complication of pregnancy and/or puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "267280004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530951, + "CONCEPT_NAME" : "Venous complication of puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609497003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4009180, + "CONCEPT_NAME" : "Venous thrombosis in puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "111458008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4079858, + "CONCEPT_NAME" : "Very low birth weight infant", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276611006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435925, + "CONCEPT_NAME" : "Very premature - less than 1000g or less than 28 weeks", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "268817004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4149523, + "CONCEPT_NAME" : "Very preterm maturity of infant", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "268868001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4129027, + "CONCEPT_NAME" : "Viable fetus in abdominal pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237253003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435604, + "CONCEPT_NAME" : "Viral disease in mother complicating pregnancy, childbirth AND/OR puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "31516002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42742355, + "CONCEPT_NAME" : "VKORC1 (vitamin K epoxide reductase complex, subunit 1) (eg, warfarin metabolism), gene analysis, common variant(s) (eg, -1639G>A, c.173+1000C>T)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "81355", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 35625971, + "CONCEPT_NAME" : "Vomiting during third trimester of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "769087009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4169915, + "CONCEPT_NAME" : "Vomiting in newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48000002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440785, + "CONCEPT_NAME" : "Vomiting of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90325002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40525252, + "CONCEPT_NAME" : "[V]Other specified antenatal screening", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "315975002", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40519557, + "CONCEPT_NAME" : "[V]Other unwanted pregnancy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "316385002", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40524819, + "CONCEPT_NAME" : "[V]Postpartum care and examination", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "315919003", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40517216, + "CONCEPT_NAME" : "[V]Pregnancy examination and test", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "308165008", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40524802, + "CONCEPT_NAME" : "[V]Pregnant state, incidental", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "315903005", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443246, + "CONCEPT_NAME" : "Vulval abnormality - baby delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "267247006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441087, + "CONCEPT_NAME" : "Vulval and/or perineal hematoma during delivery - delivered", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "199944006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438214, + "CONCEPT_NAME" : "Vulval and/or perineal hematoma during delivery with postnatal problem", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "199945007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4071599, + "CONCEPT_NAME" : "Vulval hematoma due to birth trauma", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206244002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4031282, + "CONCEPT_NAME" : "Vulval hematoma during delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10950002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4091198, + "CONCEPT_NAME" : "Vulval hematoma in labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "249217005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4034153, + "CONCEPT_NAME" : "Vulval obstetric varicose veins", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "237346009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40525253, + "CONCEPT_NAME" : "[V]Unspecified antenatal screening", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "315976001", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40524805, + "CONCEPT_NAME" : "[V]Unspecified pregnant state", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "315906002", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4131031, + "CONCEPT_NAME" : "Ward urine dip stick testing for sugar", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26542009", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4071632, + "CONCEPT_NAME" : "Water birth delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177185001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4132649, + "CONCEPT_NAME" : "Well child visit", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "410620009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4259640, + "CONCEPT_NAME" : "Well child visit, 10 years", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "410642005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4132657, + "CONCEPT_NAME" : "Well child visit, 11 years", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "410643000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4256500, + "CONCEPT_NAME" : "Well child visit, 12 month", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "410629005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4132658, + "CONCEPT_NAME" : "Well child visit, 12 years", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "410644006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4132659, + "CONCEPT_NAME" : "Well child visit, 13 years", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "410645007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4259641, + "CONCEPT_NAME" : "Well child visit, 14 years", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "410646008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4259638, + "CONCEPT_NAME" : "Well child visit, 15 month", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "410631001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4256502, + "CONCEPT_NAME" : "Well child visit, 15 years", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "410647004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4253755, + "CONCEPT_NAME" : "Well child visit, 16 years", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "410648009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4259642, + "CONCEPT_NAME" : "Well child visit, 17 years", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "410649001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4256501, + "CONCEPT_NAME" : "Well child visit, 18 month", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "410632008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4253756, + "CONCEPT_NAME" : "Well child visit, 18 years", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "410650001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4256497, + "CONCEPT_NAME" : "Well child visit, 2 month", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "410624000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4256496, + "CONCEPT_NAME" : "Well child visit, 2 week", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "410623006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4259639, + "CONCEPT_NAME" : "Well child visit, 2 years", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "410633003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4253753, + "CONCEPT_NAME" : "Well child visit, 3 years", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "410634009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4256498, + "CONCEPT_NAME" : "Well child visit, 4 month", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "410626003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4132652, + "CONCEPT_NAME" : "Well child visit, 4 years", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "410636006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4132653, + "CONCEPT_NAME" : "Well child visit, 5 years", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "410637002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4253752, + "CONCEPT_NAME" : "Well child visit, 6 month", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "410627007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4132654, + "CONCEPT_NAME" : "Well child visit, 6 years", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "410638007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4253754, + "CONCEPT_NAME" : "Well child visit, 7 years", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "410639004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4132655, + "CONCEPT_NAME" : "Well child visit, 8 years", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "410640002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4256499, + "CONCEPT_NAME" : "Well child visit, 9 month", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "410628002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4132656, + "CONCEPT_NAME" : "Well child visit, 9 years", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "410641003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4259636, + "CONCEPT_NAME" : "Well child visit, newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "410621008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 765764, + "CONCEPT_NAME" : "Well child visit, newborn 8 to 28 days old", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "446381000124104", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 763782, + "CONCEPT_NAME" : "Well child visit, newborn less than 8 days old", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "446301000124108", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4010343, + "CONCEPT_NAME" : "Well female newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "102502005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4010841, + "CONCEPT_NAME" : "Well male newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "102501003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4010843, + "CONCEPT_NAME" : "Well premature female newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "102505007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4010842, + "CONCEPT_NAME" : "Well premature male newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "102504006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4010344, + "CONCEPT_NAME" : "Well premature newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "102503000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 765794, + "CONCEPT_NAME" : "White or yellow-green tinged lochia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "4961000124100", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40394878, + "CONCEPT_NAME" : "[X]Delivery", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "200548008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40514773, + "CONCEPT_NAME" : "[X]Infection of cesarian section wound following delivery", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "309743009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40388780, + "CONCEPT_NAME" : "[X]Mental and behavioral disorders associated with the puerperium, not elsewhere classified", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "192474006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40356741, + "CONCEPT_NAME" : "[X]Mild mental and behavioral disorders associated with the puerperium, not elsewhere classified", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "268725005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40394902, + "CONCEPT_NAME" : "[X]Vaginitis following delivery", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "200570006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4020897, + "CONCEPT_NAME" : "Zona drilling", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "225248004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4127105, + "CONCEPT_NAME" : "Zygote intrafallopian transfer", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "236914009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444098, + "CONCEPT_NAME" : "Gestation period, 40 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46230007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 62, + "name" : "Spontaneous abortion (SA)", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 436477, + "CONCEPT_NAME" : "Abnormal products of conception", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "39804004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444365, + "CONCEPT_NAME" : "Abortion", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "70317007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42597053, + "CONCEPT_NAME" : "Abortion associated with Equine arteritis virus infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "318481000009103", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED Veterinary", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42597052, + "CONCEPT_NAME" : "Abortion associated with Equine herpesvirus infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "318471000009100", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED Veterinary", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42597051, + "CONCEPT_NAME" : "Abortion associated with umbilical torsion", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "318461000009109", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED Veterinary", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 201076, + "CONCEPT_NAME" : "Abortion complicated by damage to pelvic organs AND/OR tissues", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "373908001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 197612, + "CONCEPT_NAME" : "Abortion complicated by delayed AND/OR excessive hemorrhage", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "111426003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438812, + "CONCEPT_NAME" : "Abortion complicated by genital-pelvic infection", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "373891000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 195319, + "CONCEPT_NAME" : "Abortion complicated by renal failure", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "10123006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42599848, + "CONCEPT_NAME" : "Abortion due to Brucella canis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "360051000009101", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED Veterinary", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2721147, + "CONCEPT_NAME" : "ABORTION FOR MATERNAL INDICATION", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "S2262", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2784560, + "CONCEPT_NAME" : "Abortion of Products of Conception, Abortifacient, Via Natural or Artificial Opening", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10A07ZX", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD10PCS", + "CONCEPT_CLASS_ID" : "ICD10PCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2784559, + "CONCEPT_NAME" : "Abortion of Products of Conception, Laminaria, Via Natural or Artificial Opening", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10A07ZW", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD10PCS", + "CONCEPT_CLASS_ID" : "ICD10PCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2784555, + "CONCEPT_NAME" : "Abortion of Products of Conception, Open Approach", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10A00ZZ", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD10PCS", + "CONCEPT_CLASS_ID" : "ICD10PCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2784556, + "CONCEPT_NAME" : "Abortion of Products of Conception, Percutaneous Approach", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10A03ZZ", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD10PCS", + "CONCEPT_CLASS_ID" : "ICD10PCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2784557, + "CONCEPT_NAME" : "Abortion of Products of Conception, Percutaneous Endoscopic Approach", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10A04ZZ", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD10PCS", + "CONCEPT_CLASS_ID" : "ICD10PCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2784558, + "CONCEPT_NAME" : "Abortion of Products of Conception, Vacuum, Via Natural or Artificial Opening", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10A07Z6", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD10PCS", + "CONCEPT_CLASS_ID" : "ICD10PCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2784561, + "CONCEPT_NAME" : "Abortion of Products of Conception, Via Natural or Artificial Opening", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10A07ZZ", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD10PCS", + "CONCEPT_CLASS_ID" : "ICD10PCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2784562, + "CONCEPT_NAME" : "Abortion of Products of Conception, Via Natural or Artificial Opening Endoscopic", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10A08ZZ", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD10PCS", + "CONCEPT_CLASS_ID" : "ICD10PCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440776, + "CONCEPT_NAME" : "Abortion with complication", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "371332008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440454, + "CONCEPT_NAME" : "Abortion without complication", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "51830007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42739743, + "CONCEPT_NAME" : "Anesthesia for abortion procedures (Deprecated)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "01964", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2101811, + "CONCEPT_NAME" : "Anesthesia for incomplete or missed abortion procedures", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "01965", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2101812, + "CONCEPT_NAME" : "Anesthesia for induced abortion procedures", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "01966", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004526, + "CONCEPT_NAME" : "Aspiration curettage following delivery or abortion", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "69.52", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4212941, + "CONCEPT_NAME" : "Aspiration curettage of uterus for termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "391897002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004525, + "CONCEPT_NAME" : "Aspiration curettage of uterus for termination of pregnancy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "69.51", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4028644, + "CONCEPT_NAME" : "Biochemical pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237243004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4262136, + "CONCEPT_NAME" : "Blighted ovum", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "35999006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4261479, + "CONCEPT_NAME" : "Carneous mole", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "44979007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40482050, + "CONCEPT_NAME" : "Chemical pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "445086005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437046, + "CONCEPT_NAME" : "Complete abortion", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "69124005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439085, + "CONCEPT_NAME" : "Complete inevitable miscarriage complicated by delayed or excessive hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "307735008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441629, + "CONCEPT_NAME" : "Complete inevitable miscarriage complicated by embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "307750004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441921, + "CONCEPT_NAME" : "Complete inevitable miscarriage complicated by genital tract and pelvic infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "307734007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4146774, + "CONCEPT_NAME" : "Complete inevitable miscarriage without complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "307738005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441073, + "CONCEPT_NAME" : "Complete legal termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "267194005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438196, + "CONCEPT_NAME" : "Complete legal termination of pregnancy with delayed or excessive hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198719001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40318618, + "CONCEPT_NAME" : "Complete miscarriage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "156073000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441910, + "CONCEPT_NAME" : "Complete miscarriage with damage to pelvic organs or tissues", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198657009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432682, + "CONCEPT_NAME" : "Complete miscarriage with delayed or excessive hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198656000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441632, + "CONCEPT_NAME" : "Complete miscarriage with embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198663000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435318, + "CONCEPT_NAME" : "Complete miscarriage with genital tract or pelvic infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198655001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435000, + "CONCEPT_NAME" : "Complete miscarriage with metabolic disorder", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198660002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 436742, + "CONCEPT_NAME" : "Complete miscarriage with renal failure", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198659007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438805, + "CONCEPT_NAME" : "Complete miscarriage with shock", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198661003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4113352, + "CONCEPT_NAME" : "Complete spontaneous abortion NOS", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "198667004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45757769, + "CONCEPT_NAME" : "Continuing triplet pregnancy after spontaneous abortion of one or more fetuses", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36801000119105", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42537759, + "CONCEPT_NAME" : "Delayed hemorrhage due to and following miscarriage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "737318003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4114265, + "CONCEPT_NAME" : "Delayed or excessive hemorrhage following abortive pregnancy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "198827002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4149472, + "CONCEPT_NAME" : "Digital evacuation of retained products of conception", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "310603006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4106559, + "CONCEPT_NAME" : "Dilation and curettage for termination of pregnancy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "29682007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004489, + "CONCEPT_NAME" : "Dilation and curettage for termination of pregnancy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "69.01", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4168396, + "CONCEPT_NAME" : "Dilation of cervix uteri and curettage for termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "274973002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4138740, + "CONCEPT_NAME" : "Dilation of cervix uteri and curettage of products of conception from uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "265062002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4074867, + "CONCEPT_NAME" : "Dilation of cervix uteri and curettage of uterus for removal of missed miscarriage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "176833006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4074297, + "CONCEPT_NAME" : "Dilation of cervix uteri and vacuum aspiration of products of conception from uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "176827002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42537769, + "CONCEPT_NAME" : "Disorder of vein following miscarriage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "737331008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4113994, + "CONCEPT_NAME" : "Endometritis following abortive pregnancy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "198820000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42573076, + "CONCEPT_NAME" : "Enzootic abortion", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "352191000009102", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED Veterinary", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4032621, + "CONCEPT_NAME" : "Evacuation of retained product of conception", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "236883005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4170151, + "CONCEPT_NAME" : "Evacuation of uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "275166002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37206231, + "CONCEPT_NAME" : "Excessive hemorrhage due to and following illegally induced termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "785872000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37206226, + "CONCEPT_NAME" : "Excessive hemorrhage due to and following induced termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "785867009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37206230, + "CONCEPT_NAME" : "Excessive hemorrhage due to and following legally induced termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "785871007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4147858, + "CONCEPT_NAME" : "Expression of retained products of conception", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "310602001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4257043, + "CONCEPT_NAME" : "Extra-amniotic termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "408840008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44513450, + "CONCEPT_NAME" : "Extraction of menses", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "Q11.4", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "OPCS4", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4017134, + "CONCEPT_NAME" : "Failed attempted termination of pregnancy with amniotic fluid embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "11454006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 194694, + "CONCEPT_NAME" : "Failed attempted termination of pregnancy with complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59919008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4281684, + "CONCEPT_NAME" : "Failed attempted termination of pregnancy with urinary tract infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "66892003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 75605, + "CONCEPT_NAME" : "Fetal death, affecting management of mother", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14022007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 436228, + "CONCEPT_NAME" : "Fetal death due to termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "67313008", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Event" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110292, + "CONCEPT_NAME" : "Hysterotomy, abdominal (eg, for hydatidiform mole, abortion)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59100", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4082412, + "CONCEPT_NAME" : "Hysterotomy and termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "18302006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444048, + "CONCEPT_NAME" : "Illegal termination of pregnancy complicated by damage to pelvic organs and/or tissues", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "38784004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 193821, + "CONCEPT_NAME" : "Illegal termination of pregnancy complicated by embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26743002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439400, + "CONCEPT_NAME" : "Illegal termination of pregnancy complicated by genital-pelvic infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "373902000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443705, + "CONCEPT_NAME" : "Illegal termination of pregnancy complicated by metabolic disorder", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "18684002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 195600, + "CONCEPT_NAME" : "Illegal termination of pregnancy complicated by renal failure", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "8996006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442596, + "CONCEPT_NAME" : "Illegal termination of pregnancy complicated by shock", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "61752008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439325, + "CONCEPT_NAME" : "Illegal termination of pregnancy, incomplete", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198743003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4143190, + "CONCEPT_NAME" : "Illegal termination of pregnancy with acute renal failure", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "33561005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4138267, + "CONCEPT_NAME" : "Illegal termination of pregnancy with afibrinogenemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "3230006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4185440, + "CONCEPT_NAME" : "Illegal termination of pregnancy with air embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "44101005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4303980, + "CONCEPT_NAME" : "Illegal termination of pregnancy with amniotic fluid embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "38905006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4066227, + "CONCEPT_NAME" : "Illegal termination of pregnancy with blood-clot embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "21604008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4182549, + "CONCEPT_NAME" : "Illegal termination of pregnancy with cardiac arrest AND/OR failure", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "54529009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4223627, + "CONCEPT_NAME" : "Illegal termination of pregnancy with cerebral anoxia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40405003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 436169, + "CONCEPT_NAME" : "Illegal termination of pregnancy with complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "74978008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4264914, + "CONCEPT_NAME" : "Illegal termination of pregnancy with defibrination syndrome", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "61810006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4101477, + "CONCEPT_NAME" : "Illegal termination of pregnancy with electrolyte imbalance", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25404008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4023781, + "CONCEPT_NAME" : "Illegal termination of pregnancy with endometritis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "195005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4107907, + "CONCEPT_NAME" : "Illegal termination of pregnancy with fat embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "29995000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4323434, + "CONCEPT_NAME" : "Illegal termination of pregnancy with intravascular hemolysis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "70823006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4180859, + "CONCEPT_NAME" : "Illegal termination of pregnancy with laceration of bladder", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "53247006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4066994, + "CONCEPT_NAME" : "Illegal termination of pregnancy with laceration of bowel", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "17335003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4105762, + "CONCEPT_NAME" : "Illegal termination of pregnancy with laceration of broad ligament", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "29583006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4077275, + "CONCEPT_NAME" : "Illegal termination of pregnancy with laceration of cervix", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "18872002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4025828, + "CONCEPT_NAME" : "Illegal termination of pregnancy with laceration of periurethral tissue", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "19564003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4229716, + "CONCEPT_NAME" : "Illegal termination of pregnancy with laceration of uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40500006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4249728, + "CONCEPT_NAME" : "Illegal termination of pregnancy with laceration of vagina", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "73280003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4266243, + "CONCEPT_NAME" : "Illegal termination of pregnancy with oliguria", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6134000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4305348, + "CONCEPT_NAME" : "Illegal termination of pregnancy with parametritis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "82204006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4234979, + "CONCEPT_NAME" : "Illegal termination of pregnancy with pelvic peritonitis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90450000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4197900, + "CONCEPT_NAME" : "Illegal termination of pregnancy with perforation of bladder", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80438008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4051784, + "CONCEPT_NAME" : "Illegal termination of pregnancy with perforation of bowel", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "23401002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4195243, + "CONCEPT_NAME" : "Illegal termination of pregnancy with perforation of broad ligament", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6802007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4224143, + "CONCEPT_NAME" : "Illegal termination of pregnancy with perforation of cervix", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84143004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4239192, + "CONCEPT_NAME" : "Illegal termination of pregnancy with perforation of periurethral tissue", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "68189005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4296872, + "CONCEPT_NAME" : "Illegal termination of pregnancy with perforation of uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "77099001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4103148, + "CONCEPT_NAME" : "Illegal termination of pregnancy with perforation of vagina", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25519006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4143018, + "CONCEPT_NAME" : "Illegal termination of pregnancy with postoperative shock", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "34701001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4206453, + "CONCEPT_NAME" : "Illegal termination of pregnancy with pulmonary embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55589000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4195297, + "CONCEPT_NAME" : "Illegal termination of pregnancy with renal tubular necrosis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "4451004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4318662, + "CONCEPT_NAME" : "Illegal termination of pregnancy with salpingitis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "22046002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4313005, + "CONCEPT_NAME" : "Illegal termination of pregnancy with salpingo-oophoritis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "8670007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4034753, + "CONCEPT_NAME" : "Illegal termination of pregnancy with sepsis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "11373009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4324965, + "CONCEPT_NAME" : "Illegal termination of pregnancy with septic embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "71362000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4219608, + "CONCEPT_NAME" : "Illegal termination of pregnancy with septic shock", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "82338001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4183557, + "CONCEPT_NAME" : "Illegal termination of pregnancy with uremia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54155004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4140509, + "CONCEPT_NAME" : "Illegal termination of pregnancy with urinary tract infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "33046001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439323, + "CONCEPT_NAME" : "Incomplete illegal termination of pregnancy with damage to pelvic organs or tissues", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198746006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437929, + "CONCEPT_NAME" : "Incomplete illegal termination of pregnancy with delayed or excessive hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198745005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438487, + "CONCEPT_NAME" : "Incomplete illegal termination of pregnancy with embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198750004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439324, + "CONCEPT_NAME" : "Incomplete illegal termination of pregnancy with genital tract or pelvic infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198744009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439321, + "CONCEPT_NAME" : "Incomplete illegal termination of pregnancy with metabolic disorder", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198748007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439322, + "CONCEPT_NAME" : "Incomplete illegal termination of pregnancy with renal failure", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198747002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439320, + "CONCEPT_NAME" : "Incomplete illegal termination of pregnancy with shock", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198749004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45768717, + "CONCEPT_NAME" : "Incomplete induced termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "707207004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45771353, + "CONCEPT_NAME" : "Incomplete induced termination of pregnancy with complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16101000119107", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438211, + "CONCEPT_NAME" : "Incomplete inevitable miscarriage complicated by delayed or excessive hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "307752007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 436748, + "CONCEPT_NAME" : "Incomplete inevitable miscarriage complicated by embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "307746006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437618, + "CONCEPT_NAME" : "Incomplete inevitable miscarriage complicated by genital tract and pelvic infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "307749004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4146775, + "CONCEPT_NAME" : "Incomplete inevitable miscarriage without complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "307748007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439328, + "CONCEPT_NAME" : "Incomplete legal abortion with no mention of complication", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "198715007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37110280, + "CONCEPT_NAME" : "Incomplete legal abortion without complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "724484007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435868, + "CONCEPT_NAME" : "Incomplete legal termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "267193004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434705, + "CONCEPT_NAME" : "Incomplete legal termination of pregnancy with damage to pelvic organs or tissues", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198707009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440453, + "CONCEPT_NAME" : "Incomplete legal termination of pregnancy with delayed or excessive hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198706000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439329, + "CONCEPT_NAME" : "Incomplete legal termination of pregnancy with embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198711003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 193532, + "CONCEPT_NAME" : "Incomplete legal termination of pregnancy with genital tract or pelvic infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198705001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434095, + "CONCEPT_NAME" : "Incomplete legal termination of pregnancy with metabolic disorder", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198709007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439331, + "CONCEPT_NAME" : "Incomplete legal termination of pregnancy with renal failure", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198708004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439330, + "CONCEPT_NAME" : "Incomplete legal termination of pregnancy with shock", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198710002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40318617, + "CONCEPT_NAME" : "Incomplete miscarriage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "156072005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434689, + "CONCEPT_NAME" : "Incomplete miscarriage", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "16863000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434413, + "CONCEPT_NAME" : "Incomplete miscarriage with complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "413338003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437933, + "CONCEPT_NAME" : "Incomplete miscarriage with damage to pelvic organs or tissues", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198646004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440460, + "CONCEPT_NAME" : "Incomplete miscarriage with delayed or excessive hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198645000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437045, + "CONCEPT_NAME" : "Incomplete miscarriage with embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198650006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 195317, + "CONCEPT_NAME" : "Incomplete miscarriage with genital tract or pelvic infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198644001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432689, + "CONCEPT_NAME" : "Incomplete miscarriage with metabolic disorder", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198648003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439688, + "CONCEPT_NAME" : "Incomplete miscarriage with renal failure", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198647008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441631, + "CONCEPT_NAME" : "Incomplete miscarriage with shock", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198649006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42535215, + "CONCEPT_NAME" : "Incomplete spontaneous abortion due to hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16111000119105", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44805020, + "CONCEPT_NAME" : "Incomplete termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "749781000000109", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2721146, + "CONCEPT_NAME" : "Induced abortion, 17 to 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "S2260", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2721148, + "CONCEPT_NAME" : "Induced abortion, 25 to 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "S2265", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2721149, + "CONCEPT_NAME" : "Induced abortion, 29 to 31 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "S2266", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2721150, + "CONCEPT_NAME" : "Induced abortion, 32 weeks or greater", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "S2267", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110331, + "CONCEPT_NAME" : "Induced abortion, by 1 or more intra-amniotic injections (amniocentesis-injections), including hospital admission and visits, delivery of fetus and secundines", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59850", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110332, + "CONCEPT_NAME" : "Induced abortion, by 1 or more intra-amniotic injections (amniocentesis-injections), including hospital admission and visits, delivery of fetus and secundines; with dilation and curettage and/or evacuation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59851", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110333, + "CONCEPT_NAME" : "Induced abortion, by 1 or more intra-amniotic injections (amniocentesis-injections), including hospital admission and visits, delivery of fetus and secundines; with hysterotomy (failed intra-amniotic injection)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59852", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110334, + "CONCEPT_NAME" : "Induced abortion, by 1 or more vaginal suppositories (eg, prostaglandin) with or without cervical dilation (eg, laminaria), including hospital admission and visits, delivery of fetus and secundines", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59855", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110335, + "CONCEPT_NAME" : "Induced abortion, by 1 or more vaginal suppositories (eg, prostaglandin) with or without cervical dilation (eg, laminaria), including hospital admission and visits, delivery of fetus and secundines; with dilation and curettage and/or evacuation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59856", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110336, + "CONCEPT_NAME" : "Induced abortion, by 1 or more vaginal suppositories (eg, prostaglandin) with or without cervical dilation (eg, laminaria), including hospital admission and visits, delivery of fetus and secundines; with hysterotomy (failed medical evacuation)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59857", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110329, + "CONCEPT_NAME" : "Induced abortion, by dilation and curettage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59840", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110330, + "CONCEPT_NAME" : "Induced abortion, by dilation and evacuation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59841", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37018340, + "CONCEPT_NAME" : "Induced termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "714812005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530913, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by acute necrosis of liver", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609454008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530914, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by acute renal failure", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609455009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530928, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by acute renal failure with oliguria", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609472002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530915, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by afibrinogenemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609456005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530916, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by air embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609457001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43531712, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by amniotic fluid embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609458006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530957, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by bladder damage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609503006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530917, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by blood-clot embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609459003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530958, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by bowel damage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609504000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530959, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by broad ligament damage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609505004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530960, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by cardiac arrest", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609506003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530918, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by cardiac arrest and/or failure", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "609460008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530961, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by cardiac failure", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609507007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530919, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by cerebral anoxia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609461007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530962, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by cervix damage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609508002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530908, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by damage to pelvic organs and/or tissues", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609447002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530920, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by defibrination syndrome", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609462000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43531713, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by electrolyte imbalance", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609463005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43531710, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609449004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530921, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by endometritis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609464004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530922, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by fat embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609465003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530910, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by genital-pelvic infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609450004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530964, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by infectious disease", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609510000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530923, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by intravascular hemolysis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609466002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530952, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by laceration of bladder", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609498008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530924, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by laceration of bowel", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609467006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530925, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by laceration of broad ligament", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609468001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43531714, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by laceration of cervix", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609469009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530953, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by laceration of periurethral tissue", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609499000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530926, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by laceration of uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609470005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530927, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by laceration of vagina", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609471009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530911, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by metabolic disorder", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609451000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530966, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by oliguria", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609512008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530929, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by parametritis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609473007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530948, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by pelvic disorder", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609494005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43531715, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by pelvic peritonitis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609474001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530954, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by perforation of bladder", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609500009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530930, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by perforation of bowel", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609475000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530955, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by perforation of broad ligament", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609501008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530931, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by perforation of cervix", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609476004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530956, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by perforation of periurethral tissue", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609502001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530932, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by perforation of uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609477008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530933, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by perforation of vagina", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609478003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530965, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by periurethral tissue damage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609511001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43531716, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by postoperative shock", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609479006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530934, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by pulmonary embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609480009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530912, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by renal failure", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609452007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530935, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by renal tubular necrosis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609482001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530936, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by salpingitis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609483006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530937, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by salpingo-oophoritis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609484000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530939, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by sepsis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609485004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530940, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by septic embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609486003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530941, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by septic shock", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609487007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43531711, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by shock", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609453002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530943, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by soap embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609489005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530947, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by tetanus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609493004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530944, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by uremia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609490001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530945, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by urinary tract infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609491002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530967, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by uterus damage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609513003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530968, + "CONCEPT_NAME" : "Induced termination of pregnancy complicated by vaginal damage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609514009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4200986, + "CONCEPT_NAME" : "Induced termination of pregnancy following intra-amniotic injection with hysterotomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "52660002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44784128, + "CONCEPT_NAME" : "Induced termination of pregnancy under unsafe conditions", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "700041001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4244408, + "CONCEPT_NAME" : "Inevitable miscarriage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59363009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4146772, + "CONCEPT_NAME" : "Inevitable miscarriage complete", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "307733001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4121775, + "CONCEPT_NAME" : "Injection of amnion for termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "288045002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4112315, + "CONCEPT_NAME" : "Insertion of abortifacient suppository", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "285434006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4074301, + "CONCEPT_NAME" : "Insertion of prostaglandin abortifacient suppository", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "176854004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4071638, + "CONCEPT_NAME" : "Instrumental removal of products of conception from delivered uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "177200004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4063309, + "CONCEPT_NAME" : "Intrauterine death with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199608004", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Event" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4163996, + "CONCEPT_NAME" : "Late fetal death affecting management of mother", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "399363000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4113976, + "CONCEPT_NAME" : "Legally induced abortion NOS", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "198729008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444077, + "CONCEPT_NAME" : "Legal termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "39406005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 192379, + "CONCEPT_NAME" : "Legal termination of pregnancy complicated by damage to pelvic organ and/or tissues", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "111431001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 197617, + "CONCEPT_NAME" : "Legal termination of pregnancy complicated by delayed and/or excessive hemorrhage", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "58071009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442346, + "CONCEPT_NAME" : "Legal termination of pregnancy complicated by embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57734001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439883, + "CONCEPT_NAME" : "Legal termination of pregnancy complicated by genital-pelvic infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "373901007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 436474, + "CONCEPT_NAME" : "Legal termination of pregnancy complicated by metabolic disorder", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "3634007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 195595, + "CONCEPT_NAME" : "Legal termination of pregnancy complicated by renal failure", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "4576001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 197333, + "CONCEPT_NAME" : "Legal termination of pregnancy complicated by shock", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "27169005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181114, + "CONCEPT_NAME" : "Legal termination of pregnancy with acute renal failure", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "52342006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4147533, + "CONCEPT_NAME" : "Legal termination of pregnancy with afibrinogenemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "30479005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4009642, + "CONCEPT_NAME" : "Legal termination of pregnancy with air embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "111432008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4098441, + "CONCEPT_NAME" : "Legal termination of pregnancy with amniotic fluid embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "27015006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4292089, + "CONCEPT_NAME" : "Legal termination of pregnancy with blood-clot embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "37787009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4025639, + "CONCEPT_NAME" : "Legal termination of pregnancy with cardiac arrest and/or failure", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "12095001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4077454, + "CONCEPT_NAME" : "Legal termination of pregnancy with cerebral anoxia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "18894005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441349, + "CONCEPT_NAME" : "Legal termination of pregnancy with complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48433002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4280224, + "CONCEPT_NAME" : "Legal termination of pregnancy with defibrination syndrome", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6647006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4214233, + "CONCEPT_NAME" : "Legal termination of pregnancy with electrolyte imbalance", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "39239006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4294829, + "CONCEPT_NAME" : "Legal termination of pregnancy with endometritis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "75947000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4328084, + "CONCEPT_NAME" : "Legal termination of pregnancy with fat embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "75825001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4046510, + "CONCEPT_NAME" : "Legal termination of pregnancy with intravascular hemolysis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12296009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4243658, + "CONCEPT_NAME" : "Legal termination of pregnancy with laceration of bladder", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59859005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4183680, + "CONCEPT_NAME" : "Legal termination of pregnancy with laceration of bowel", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "5577003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4216436, + "CONCEPT_NAME" : "Legal termination of pregnancy with laceration of broad ligament", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "41806003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4324695, + "CONCEPT_NAME" : "Legal termination of pregnancy with laceration of cervix", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7166002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4324672, + "CONCEPT_NAME" : "Legal termination of pregnancy with laceration of periurethral tissue", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "71216006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4045581, + "CONCEPT_NAME" : "Legal termination of pregnancy with laceration of uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13100007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4204231, + "CONCEPT_NAME" : "Legal termination of pregnancy with laceration of vagina", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54044001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4269450, + "CONCEPT_NAME" : "Legal termination of pregnancy with oliguria", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36473002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 436747, + "CONCEPT_NAME" : "Legal termination of pregnancy without complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "34500003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4049453, + "CONCEPT_NAME" : "Legal termination of pregnancy with parametritis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15511008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4094081, + "CONCEPT_NAME" : "Legal termination of pregnancy with pelvic peritonitis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26010008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4271203, + "CONCEPT_NAME" : "Legal termination of pregnancy with perforation of bladder", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "62888008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4184150, + "CONCEPT_NAME" : "Legal termination of pregnancy with perforation of bowel", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55933000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4198404, + "CONCEPT_NAME" : "Legal termination of pregnancy with perforation of broad ligament", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "51953009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4312358, + "CONCEPT_NAME" : "Legal termination of pregnancy with perforation of cervix", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "85652000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4296459, + "CONCEPT_NAME" : "Legal termination of pregnancy with perforation of periurethral tissue", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "76472002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4068253, + "CONCEPT_NAME" : "Legal termination of pregnancy with perforation of uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "20216003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4327321, + "CONCEPT_NAME" : "Legal termination of pregnancy with perforation of vagina", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "75013000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4058932, + "CONCEPT_NAME" : "Legal termination of pregnancy with postoperative shock", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "21280005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4178578, + "CONCEPT_NAME" : "Legal termination of pregnancy with pulmonary embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "51096002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4070939, + "CONCEPT_NAME" : "Legal termination of pregnancy with renal tubular necrosis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "20483002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4204206, + "CONCEPT_NAME" : "Legal termination of pregnancy with salpingitis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "53098006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4197681, + "CONCEPT_NAME" : "Legal termination of pregnancy with salpingo-oophoritis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "51707007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4188764, + "CONCEPT_NAME" : "Legal termination of pregnancy with sepsis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "39246002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4106892, + "CONCEPT_NAME" : "Legal termination of pregnancy with septic embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "29950007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4105063, + "CONCEPT_NAME" : "Legal termination of pregnancy with septic shock", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25691001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4225572, + "CONCEPT_NAME" : "Legal termination of pregnancy with uremia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "8468007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4245041, + "CONCEPT_NAME" : "Legal termination of pregnancy with urinary tract infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "5945005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4238207, + "CONCEPT_NAME" : "Listeria miscarriage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57420002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44807900, + "CONCEPT_NAME" : "Medical evacuation of retained products of conception using prostaglandin", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "854611000000109", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2721012, + "CONCEPT_NAME" : "Medically induced abortion by oral ingestion of medication including all associated services and supplies (e.g., patient counseling, office visits, confirmation of pregnancy by hcg, ultrasound to confirm duration of pregnancy, ultrasound to confirm com...", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "S0199", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "HCPCS", + "CONCEPT_CLASS_ID" : "HCPCS" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4115153, + "CONCEPT_NAME" : "Medical termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "285409006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40487510, + "CONCEPT_NAME" : "Medical termination of pregnancy using prostaglandin", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "447972007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4067106, + "CONCEPT_NAME" : "Miscarriage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "17369002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4087102, + "CONCEPT_NAME" : "Miscarriage at 8 to 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "184339009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 192678, + "CONCEPT_NAME" : "Miscarriage complicated by damage to pelvic organs and/or tissues", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "58990004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 195594, + "CONCEPT_NAME" : "Miscarriage complicated by delayed and/or excessive hemorrhage", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "2781009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 194704, + "CONCEPT_NAME" : "Miscarriage complicated by embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43306002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437920, + "CONCEPT_NAME" : "Miscarriage complicated by genital-pelvic infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "373896005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441348, + "CONCEPT_NAME" : "Miscarriage complicated by metabolic disorder", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13384007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 193820, + "CONCEPT_NAME" : "Miscarriage complicated by renal failure", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10697004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 196746, + "CONCEPT_NAME" : "Miscarriage complicated by shock", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "34270000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4323612, + "CONCEPT_NAME" : "Miscarriage due to Brucella abortus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428508008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4051244, + "CONCEPT_NAME" : "Miscarriage due to Leptospira", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16038004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4078393, + "CONCEPT_NAME" : "Miscarriage in first trimester", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "19169002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4224646, + "CONCEPT_NAME" : "Miscarriage in second trimester", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "85116003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4167685, + "CONCEPT_NAME" : "Miscarriage in third trimester", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48485000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4224597, + "CONCEPT_NAME" : "Miscarriage with acute necrosis of liver", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40444006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4211863, + "CONCEPT_NAME" : "Miscarriage with acute renal failure", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57469000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4064536, + "CONCEPT_NAME" : "Miscarriage with afibrinogenemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "21360006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4247270, + "CONCEPT_NAME" : "Miscarriage with air embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "60265009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4003276, + "CONCEPT_NAME" : "Miscarriage with amniotic fluid embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10058006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4209126, + "CONCEPT_NAME" : "Miscarriage with blood-clot embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "55976003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4175137, + "CONCEPT_NAME" : "Miscarriage with cardiac arrest and/or cardiac failure", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48739004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4047775, + "CONCEPT_NAME" : "Miscarriage with cerebral anoxia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12394009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434094, + "CONCEPT_NAME" : "Miscarriage with complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "34614007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4179796, + "CONCEPT_NAME" : "Miscarriage with defibrination syndrome", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "50770000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4274315, + "CONCEPT_NAME" : "Miscarriage with electrolyte imbalance", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64814003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4149423, + "CONCEPT_NAME" : "Miscarriage with endometritis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "30806007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4278107, + "CONCEPT_NAME" : "Miscarriage with fat embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "66131005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4170457, + "CONCEPT_NAME" : "Miscarriage with heavy bleeding", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "275421004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4180568, + "CONCEPT_NAME" : "Miscarriage with intravascular hemolysis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "53183006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4194113, + "CONCEPT_NAME" : "Miscarriage with laceration of bladder", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "39199000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4041728, + "CONCEPT_NAME" : "Miscarriage with laceration of bowel", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16714009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4309780, + "CONCEPT_NAME" : "Miscarriage with laceration of broad ligament", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "85331004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4130670, + "CONCEPT_NAME" : "Miscarriage with laceration of cervix", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "127009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4261327, + "CONCEPT_NAME" : "Miscarriage with laceration of periurethral tissue", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "44814008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4302162, + "CONCEPT_NAME" : "Miscarriage with laceration of uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7809009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4311698, + "CONCEPT_NAME" : "Miscarriage with laceration of vagina", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "85632001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4217670, + "CONCEPT_NAME" : "Miscarriage with oliguria", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72613009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 436176, + "CONCEPT_NAME" : "Miscarriage without complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "23793007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4221853, + "CONCEPT_NAME" : "Miscarriage with parametritis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "83922009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4313166, + "CONCEPT_NAME" : "Miscarriage with pelvic peritonitis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "85991008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4310654, + "CONCEPT_NAME" : "Miscarriage with perforation of bladder", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "85467007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4216342, + "CONCEPT_NAME" : "Miscarriage with perforation of bowel", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "8071005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4031837, + "CONCEPT_NAME" : "Miscarriage with perforation of broad ligament", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14136000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4253804, + "CONCEPT_NAME" : "Miscarriage with perforation of cervix", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "74369005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4200070, + "CONCEPT_NAME" : "Miscarriage with perforation of periurethral tissue", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "51954003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4049891, + "CONCEPT_NAME" : "Miscarriage with perforation of uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15809008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4339107, + "CONCEPT_NAME" : "Miscarriage with perforation of vagina", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87967003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4168445, + "CONCEPT_NAME" : "Miscarriage with postoperative shock", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "47537002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4219469, + "CONCEPT_NAME" : "Miscarriage with pulmonary embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "82153002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4001856, + "CONCEPT_NAME" : "Miscarriage with renal tubular necrosis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "11026009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4195406, + "CONCEPT_NAME" : "Miscarriage with salpingitis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7910003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4189350, + "CONCEPT_NAME" : "Miscarriage with salpingo-oophoritis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "61568004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4285746, + "CONCEPT_NAME" : "Miscarriage with sepsis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "67465009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4244261, + "CONCEPT_NAME" : "Miscarriage with septic embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59204004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4085627, + "CONCEPT_NAME" : "Miscarriage with septic shock", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "18613002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4006806, + "CONCEPT_NAME" : "Miscarriage with uremia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "11109001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4033096, + "CONCEPT_NAME" : "Miscarriage with urinary tract infection", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1469007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 76482, + "CONCEPT_NAME" : "Missed miscarriage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16607004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42599849, + "CONCEPT_NAME" : "Mycotic abortion", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "360061000009103", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED Veterinary", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4119975, + "CONCEPT_NAME" : "Operative termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "302375005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44513476, + "CONCEPT_NAME" : "Other specified introduction of abortifacient into uterine cavity", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "Q14.8", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "OPCS4", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4149994, + "CONCEPT_NAME" : "Readmission for abortive pregnancy (NHS codes)", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "267195006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4113503, + "CONCEPT_NAME" : "Readmission for retained products of conception, legal termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198862007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4114280, + "CONCEPT_NAME" : "Readmission for retained products of conception, spontaneous abortion", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198861000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4150401, + "CONCEPT_NAME" : "Reason for termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "310506006", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Observable Entity" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4190767, + "CONCEPT_NAME" : "Referral for termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "415262008", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4153287, + "CONCEPT_NAME" : "Removal of products of conception from fallopian tube", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "271415006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4086797, + "CONCEPT_NAME" : "Requests pregnancy termination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "184005004", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4170121, + "CONCEPT_NAME" : "Retained products after miscarriage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "275425008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37206228, + "CONCEPT_NAME" : "Secondary hemorrhage due to and following illegally induced termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "785869007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37206227, + "CONCEPT_NAME" : "Secondary hemorrhage due to and following induced termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "785868004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37206229, + "CONCEPT_NAME" : "Secondary hemorrhage due to and following legally induced termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "785870008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4150538, + "CONCEPT_NAME" : "Suction evacuation of retained products of conception", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "310604000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4297250, + "CONCEPT_NAME" : "Termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "386639001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4240605, + "CONCEPT_NAME" : "Termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57797005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43020954, + "CONCEPT_NAME" : "Termination of pregnancy after first trimester", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "472839005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530907, + "CONCEPT_NAME" : "Termination of pregnancy with complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609446006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4189561, + "CONCEPT_NAME" : "Therapeutic termination of pregnancy by aspiration curettage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "391896006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4030009, + "CONCEPT_NAME" : "Therapeutic termination of pregnancy by insertion of laminaria", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10763001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4299609, + "CONCEPT_NAME" : "Therapeutic termination of pregnancy procedure", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "386641000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110325, + "CONCEPT_NAME" : "Treatment of incomplete abortion, any trimester, completed surgically", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59812", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110326, + "CONCEPT_NAME" : "Treatment of missed abortion, completed surgically; first trimester", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59820", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110327, + "CONCEPT_NAME" : "Treatment of missed abortion, completed surgically; second trimester", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59821", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110328, + "CONCEPT_NAME" : "Treatment of septic abortion, completed surgically", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59830", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4113986, + "CONCEPT_NAME" : "Unspecified abortion complete", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "198793004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4113983, + "CONCEPT_NAME" : "Unspecified abortion incomplete", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "198781008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4113036, + "CONCEPT_NAME" : "Unspecified legal abortion with no mention of complication", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "198702003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4112954, + "CONCEPT_NAME" : "Unspecified spontaneous abortion without mention of complication", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "198642002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 46269813, + "CONCEPT_NAME" : "Urinary tract infection due to incomplete miscarriage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10812041000119103", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44790180, + "CONCEPT_NAME" : "Vacuum aspiration of products of conception from uterus using flexible cannula", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "229761000000107", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44790181, + "CONCEPT_NAME" : "Vacuum aspiration of products of conception from uterus using rigid cannula", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "229801000000102", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 63, + "name" : "Gestational age (GEST) gt than 1 week", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4015296, + "CONCEPT_NAME" : "Antenatal 12 weeks examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169712008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014149, + "CONCEPT_NAME" : "Antenatal 16 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169713003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014150, + "CONCEPT_NAME" : "Antenatal 20 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169714009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808979, + "CONCEPT_NAME" : "Antenatal 22 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861281000000109", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015141, + "CONCEPT_NAME" : "Antenatal 24 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169715005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808980, + "CONCEPT_NAME" : "Antenatal 25 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861301000000105", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014151, + "CONCEPT_NAME" : "Antenatal 30 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169717002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808981, + "CONCEPT_NAME" : "Antenatal 31 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861321000000101", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015297, + "CONCEPT_NAME" : "Antenatal 32 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169718007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015298, + "CONCEPT_NAME" : "Antenatal 34 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169719004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014434, + "CONCEPT_NAME" : "Antenatal 35 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169720005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015299, + "CONCEPT_NAME" : "Antenatal 36 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169721009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015142, + "CONCEPT_NAME" : "Antenatal 37 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169722002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014152, + "CONCEPT_NAME" : "Antenatal 38 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169723007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015300, + "CONCEPT_NAME" : "Antenatal 39 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169724001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015301, + "CONCEPT_NAME" : "Antenatal 40 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169725000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015302, + "CONCEPT_NAME" : "Antenatal 41 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169726004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014435, + "CONCEPT_NAME" : "Antenatal 42 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169727008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4178165, + "CONCEPT_NAME" : "Gestation 14 - 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428567001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181468, + "CONCEPT_NAME" : "Gestation 9- 13 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428930004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181162, + "CONCEPT_NAME" : "Gestation greater than 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429715006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4324063, + "CONCEPT_NAME" : "Gestation less than 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428566005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438542, + "CONCEPT_NAME" : "Gestation less than 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313178001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45770261, + "CONCEPT_NAME" : "Gestation less than 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "925561000000100", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4322726, + "CONCEPT_NAME" : "Gestation less than 9 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428058009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4242241, + "CONCEPT_NAME" : "Gestation period, 10 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "38039008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4174506, + "CONCEPT_NAME" : "Gestation period, 11 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "50367001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4197245, + "CONCEPT_NAME" : "Gestation period, 12 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "79992004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4266517, + "CONCEPT_NAME" : "Gestation period, 13 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "62333002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4248725, + "CONCEPT_NAME" : "Gestation period, 14 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72846000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4283690, + "CONCEPT_NAME" : "Gestation period, 15 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6678005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4049621, + "CONCEPT_NAME" : "Gestation period, 16 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15633004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4277749, + "CONCEPT_NAME" : "Gestation period, 17 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65683006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4097608, + "CONCEPT_NAME" : "Gestation period, 18 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25026004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181751, + "CONCEPT_NAME" : "Gestation period, 19 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54318006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4051642, + "CONCEPT_NAME" : "Gestation period, 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "23464008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4185780, + "CONCEPT_NAME" : "Gestation period, 21 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "41438001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4274955, + "CONCEPT_NAME" : "Gestation period, 22 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65035007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336226, + "CONCEPT_NAME" : "Gestation period, 23 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86883006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439922, + "CONCEPT_NAME" : "Gestation period, 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313179009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435640, + "CONCEPT_NAME" : "Gestation period, 25 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72544005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444023, + "CONCEPT_NAME" : "Gestation period, 26 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48688005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432430, + "CONCEPT_NAME" : "Gestation period, 27 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46906003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444461, + "CONCEPT_NAME" : "Gestation period, 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90797000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444417, + "CONCEPT_NAME" : "Gestation period, 29 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45139008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4220085, + "CONCEPT_NAME" : "Gestation period, 2 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "82118009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434484, + "CONCEPT_NAME" : "Gestation period, 30 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "71355009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433864, + "CONCEPT_NAME" : "Gestation period, 31 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64920003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442558, + "CONCEPT_NAME" : "Gestation period, 32 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7707000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441678, + "CONCEPT_NAME" : "Gestation period, 33 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "78395001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443874, + "CONCEPT_NAME" : "Gestation period, 34 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13763000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444267, + "CONCEPT_NAME" : "Gestation period, 35 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84132007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438543, + "CONCEPT_NAME" : "Gestation period, 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57907009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442355, + "CONCEPT_NAME" : "Gestation period, 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43697006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443871, + "CONCEPT_NAME" : "Gestation period, 38 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13798002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435655, + "CONCEPT_NAME" : "Gestation period, 39 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80487005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4326232, + "CONCEPT_NAME" : "Gestation period, 3 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "74952004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442769, + "CONCEPT_NAME" : "Gestation period, 41 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63503002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444067, + "CONCEPT_NAME" : "Gestation period, 42 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36428009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4195157, + "CONCEPT_NAME" : "Gestation period, 4 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "44398003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4290009, + "CONCEPT_NAME" : "Gestation period, 5 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "37005007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4313026, + "CONCEPT_NAME" : "Gestation period, 6 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86801005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4270513, + "CONCEPT_NAME" : "Gestation period, 7 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63110000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4132434, + "CONCEPT_NAME" : "Gestation period, 8 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26690008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4245908, + "CONCEPT_NAME" : "Gestation period, 9 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "931004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 762907, + "CONCEPT_NAME" : "Gestation period greater than or equal to 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "433601000124106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336958, + "CONCEPT_NAME" : "Term pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87527008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4180111, + "CONCEPT_NAME" : "Third trimester pregnancy less than 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429240000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444098, + "CONCEPT_NAME" : "Gestation period, 40 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46230007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 64, + "name" : "Gestational age (GEST) gt than 2 week", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4015296, + "CONCEPT_NAME" : "Antenatal 12 weeks examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169712008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014149, + "CONCEPT_NAME" : "Antenatal 16 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169713003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014150, + "CONCEPT_NAME" : "Antenatal 20 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169714009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808979, + "CONCEPT_NAME" : "Antenatal 22 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861281000000109", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015141, + "CONCEPT_NAME" : "Antenatal 24 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169715005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808980, + "CONCEPT_NAME" : "Antenatal 25 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861301000000105", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014151, + "CONCEPT_NAME" : "Antenatal 30 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169717002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808981, + "CONCEPT_NAME" : "Antenatal 31 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861321000000101", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015297, + "CONCEPT_NAME" : "Antenatal 32 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169718007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015298, + "CONCEPT_NAME" : "Antenatal 34 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169719004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014434, + "CONCEPT_NAME" : "Antenatal 35 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169720005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015299, + "CONCEPT_NAME" : "Antenatal 36 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169721009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015142, + "CONCEPT_NAME" : "Antenatal 37 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169722002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014152, + "CONCEPT_NAME" : "Antenatal 38 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169723007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015300, + "CONCEPT_NAME" : "Antenatal 39 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169724001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015301, + "CONCEPT_NAME" : "Antenatal 40 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169725000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015302, + "CONCEPT_NAME" : "Antenatal 41 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169726004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014435, + "CONCEPT_NAME" : "Antenatal 42 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169727008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4178165, + "CONCEPT_NAME" : "Gestation 14 - 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428567001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181468, + "CONCEPT_NAME" : "Gestation 9- 13 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428930004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181162, + "CONCEPT_NAME" : "Gestation greater than 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429715006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4324063, + "CONCEPT_NAME" : "Gestation less than 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428566005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438542, + "CONCEPT_NAME" : "Gestation less than 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313178001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45770261, + "CONCEPT_NAME" : "Gestation less than 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "925561000000100", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4322726, + "CONCEPT_NAME" : "Gestation less than 9 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428058009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4242241, + "CONCEPT_NAME" : "Gestation period, 10 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "38039008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4174506, + "CONCEPT_NAME" : "Gestation period, 11 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "50367001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4197245, + "CONCEPT_NAME" : "Gestation period, 12 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "79992004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4266517, + "CONCEPT_NAME" : "Gestation period, 13 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "62333002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4248725, + "CONCEPT_NAME" : "Gestation period, 14 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72846000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4283690, + "CONCEPT_NAME" : "Gestation period, 15 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6678005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4049621, + "CONCEPT_NAME" : "Gestation period, 16 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15633004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4277749, + "CONCEPT_NAME" : "Gestation period, 17 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65683006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4097608, + "CONCEPT_NAME" : "Gestation period, 18 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25026004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181751, + "CONCEPT_NAME" : "Gestation period, 19 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54318006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4051642, + "CONCEPT_NAME" : "Gestation period, 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "23464008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4185780, + "CONCEPT_NAME" : "Gestation period, 21 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "41438001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4274955, + "CONCEPT_NAME" : "Gestation period, 22 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65035007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336226, + "CONCEPT_NAME" : "Gestation period, 23 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86883006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439922, + "CONCEPT_NAME" : "Gestation period, 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313179009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435640, + "CONCEPT_NAME" : "Gestation period, 25 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72544005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444023, + "CONCEPT_NAME" : "Gestation period, 26 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48688005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432430, + "CONCEPT_NAME" : "Gestation period, 27 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46906003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444461, + "CONCEPT_NAME" : "Gestation period, 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90797000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444417, + "CONCEPT_NAME" : "Gestation period, 29 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45139008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434484, + "CONCEPT_NAME" : "Gestation period, 30 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "71355009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433864, + "CONCEPT_NAME" : "Gestation period, 31 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64920003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442558, + "CONCEPT_NAME" : "Gestation period, 32 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7707000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441678, + "CONCEPT_NAME" : "Gestation period, 33 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "78395001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443874, + "CONCEPT_NAME" : "Gestation period, 34 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13763000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444267, + "CONCEPT_NAME" : "Gestation period, 35 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84132007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438543, + "CONCEPT_NAME" : "Gestation period, 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57907009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442355, + "CONCEPT_NAME" : "Gestation period, 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43697006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443871, + "CONCEPT_NAME" : "Gestation period, 38 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13798002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435655, + "CONCEPT_NAME" : "Gestation period, 39 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80487005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4326232, + "CONCEPT_NAME" : "Gestation period, 3 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "74952004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442769, + "CONCEPT_NAME" : "Gestation period, 41 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63503002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444067, + "CONCEPT_NAME" : "Gestation period, 42 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36428009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4195157, + "CONCEPT_NAME" : "Gestation period, 4 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "44398003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4290009, + "CONCEPT_NAME" : "Gestation period, 5 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "37005007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4313026, + "CONCEPT_NAME" : "Gestation period, 6 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86801005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4270513, + "CONCEPT_NAME" : "Gestation period, 7 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63110000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4132434, + "CONCEPT_NAME" : "Gestation period, 8 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26690008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4245908, + "CONCEPT_NAME" : "Gestation period, 9 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "931004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 762907, + "CONCEPT_NAME" : "Gestation period greater than or equal to 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "433601000124106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336958, + "CONCEPT_NAME" : "Term pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87527008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4180111, + "CONCEPT_NAME" : "Third trimester pregnancy less than 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429240000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444098, + "CONCEPT_NAME" : "Gestation period, 40 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46230007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 65, + "name" : "Gestational age (GEST) gt than 3 week", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4015296, + "CONCEPT_NAME" : "Antenatal 12 weeks examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169712008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014149, + "CONCEPT_NAME" : "Antenatal 16 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169713003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014150, + "CONCEPT_NAME" : "Antenatal 20 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169714009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808979, + "CONCEPT_NAME" : "Antenatal 22 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861281000000109", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015141, + "CONCEPT_NAME" : "Antenatal 24 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169715005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808980, + "CONCEPT_NAME" : "Antenatal 25 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861301000000105", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014151, + "CONCEPT_NAME" : "Antenatal 30 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169717002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808981, + "CONCEPT_NAME" : "Antenatal 31 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861321000000101", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015297, + "CONCEPT_NAME" : "Antenatal 32 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169718007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015298, + "CONCEPT_NAME" : "Antenatal 34 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169719004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014434, + "CONCEPT_NAME" : "Antenatal 35 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169720005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015299, + "CONCEPT_NAME" : "Antenatal 36 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169721009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015142, + "CONCEPT_NAME" : "Antenatal 37 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169722002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014152, + "CONCEPT_NAME" : "Antenatal 38 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169723007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015300, + "CONCEPT_NAME" : "Antenatal 39 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169724001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015301, + "CONCEPT_NAME" : "Antenatal 40 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169725000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015302, + "CONCEPT_NAME" : "Antenatal 41 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169726004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014435, + "CONCEPT_NAME" : "Antenatal 42 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169727008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4178165, + "CONCEPT_NAME" : "Gestation 14 - 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428567001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181468, + "CONCEPT_NAME" : "Gestation 9- 13 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428930004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181162, + "CONCEPT_NAME" : "Gestation greater than 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429715006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4324063, + "CONCEPT_NAME" : "Gestation less than 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428566005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438542, + "CONCEPT_NAME" : "Gestation less than 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313178001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45770261, + "CONCEPT_NAME" : "Gestation less than 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "925561000000100", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4322726, + "CONCEPT_NAME" : "Gestation less than 9 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428058009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4242241, + "CONCEPT_NAME" : "Gestation period, 10 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "38039008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4174506, + "CONCEPT_NAME" : "Gestation period, 11 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "50367001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4197245, + "CONCEPT_NAME" : "Gestation period, 12 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "79992004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4266517, + "CONCEPT_NAME" : "Gestation period, 13 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "62333002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4248725, + "CONCEPT_NAME" : "Gestation period, 14 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72846000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4283690, + "CONCEPT_NAME" : "Gestation period, 15 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6678005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4049621, + "CONCEPT_NAME" : "Gestation period, 16 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15633004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4277749, + "CONCEPT_NAME" : "Gestation period, 17 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65683006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4097608, + "CONCEPT_NAME" : "Gestation period, 18 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25026004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181751, + "CONCEPT_NAME" : "Gestation period, 19 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54318006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4051642, + "CONCEPT_NAME" : "Gestation period, 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "23464008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4185780, + "CONCEPT_NAME" : "Gestation period, 21 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "41438001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4274955, + "CONCEPT_NAME" : "Gestation period, 22 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65035007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336226, + "CONCEPT_NAME" : "Gestation period, 23 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86883006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439922, + "CONCEPT_NAME" : "Gestation period, 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313179009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435640, + "CONCEPT_NAME" : "Gestation period, 25 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72544005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444023, + "CONCEPT_NAME" : "Gestation period, 26 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48688005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432430, + "CONCEPT_NAME" : "Gestation period, 27 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46906003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444461, + "CONCEPT_NAME" : "Gestation period, 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90797000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444417, + "CONCEPT_NAME" : "Gestation period, 29 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45139008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434484, + "CONCEPT_NAME" : "Gestation period, 30 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "71355009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433864, + "CONCEPT_NAME" : "Gestation period, 31 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64920003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442558, + "CONCEPT_NAME" : "Gestation period, 32 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7707000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441678, + "CONCEPT_NAME" : "Gestation period, 33 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "78395001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443874, + "CONCEPT_NAME" : "Gestation period, 34 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13763000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444267, + "CONCEPT_NAME" : "Gestation period, 35 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84132007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438543, + "CONCEPT_NAME" : "Gestation period, 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57907009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442355, + "CONCEPT_NAME" : "Gestation period, 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43697006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443871, + "CONCEPT_NAME" : "Gestation period, 38 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13798002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435655, + "CONCEPT_NAME" : "Gestation period, 39 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80487005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442769, + "CONCEPT_NAME" : "Gestation period, 41 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63503002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444067, + "CONCEPT_NAME" : "Gestation period, 42 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36428009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4195157, + "CONCEPT_NAME" : "Gestation period, 4 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "44398003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4290009, + "CONCEPT_NAME" : "Gestation period, 5 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "37005007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4313026, + "CONCEPT_NAME" : "Gestation period, 6 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86801005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4270513, + "CONCEPT_NAME" : "Gestation period, 7 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63110000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4132434, + "CONCEPT_NAME" : "Gestation period, 8 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26690008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4245908, + "CONCEPT_NAME" : "Gestation period, 9 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "931004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 762907, + "CONCEPT_NAME" : "Gestation period greater than or equal to 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "433601000124106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336958, + "CONCEPT_NAME" : "Term pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87527008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4180111, + "CONCEPT_NAME" : "Third trimester pregnancy less than 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429240000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444098, + "CONCEPT_NAME" : "Gestation period, 40 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46230007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 66, + "name" : "Gestational age (GEST) gt than 4 week", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4015296, + "CONCEPT_NAME" : "Antenatal 12 weeks examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169712008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014149, + "CONCEPT_NAME" : "Antenatal 16 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169713003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014150, + "CONCEPT_NAME" : "Antenatal 20 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169714009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808979, + "CONCEPT_NAME" : "Antenatal 22 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861281000000109", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015141, + "CONCEPT_NAME" : "Antenatal 24 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169715005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808980, + "CONCEPT_NAME" : "Antenatal 25 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861301000000105", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014151, + "CONCEPT_NAME" : "Antenatal 30 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169717002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808981, + "CONCEPT_NAME" : "Antenatal 31 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861321000000101", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015297, + "CONCEPT_NAME" : "Antenatal 32 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169718007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015298, + "CONCEPT_NAME" : "Antenatal 34 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169719004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014434, + "CONCEPT_NAME" : "Antenatal 35 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169720005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015299, + "CONCEPT_NAME" : "Antenatal 36 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169721009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015142, + "CONCEPT_NAME" : "Antenatal 37 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169722002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014152, + "CONCEPT_NAME" : "Antenatal 38 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169723007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015300, + "CONCEPT_NAME" : "Antenatal 39 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169724001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015301, + "CONCEPT_NAME" : "Antenatal 40 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169725000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015302, + "CONCEPT_NAME" : "Antenatal 41 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169726004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014435, + "CONCEPT_NAME" : "Antenatal 42 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169727008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4178165, + "CONCEPT_NAME" : "Gestation 14 - 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428567001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181468, + "CONCEPT_NAME" : "Gestation 9- 13 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428930004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181162, + "CONCEPT_NAME" : "Gestation greater than 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429715006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4324063, + "CONCEPT_NAME" : "Gestation less than 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428566005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438542, + "CONCEPT_NAME" : "Gestation less than 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313178001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45770261, + "CONCEPT_NAME" : "Gestation less than 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "925561000000100", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4322726, + "CONCEPT_NAME" : "Gestation less than 9 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428058009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4242241, + "CONCEPT_NAME" : "Gestation period, 10 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "38039008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4174506, + "CONCEPT_NAME" : "Gestation period, 11 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "50367001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4197245, + "CONCEPT_NAME" : "Gestation period, 12 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "79992004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4266517, + "CONCEPT_NAME" : "Gestation period, 13 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "62333002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4248725, + "CONCEPT_NAME" : "Gestation period, 14 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72846000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4283690, + "CONCEPT_NAME" : "Gestation period, 15 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6678005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4049621, + "CONCEPT_NAME" : "Gestation period, 16 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15633004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4277749, + "CONCEPT_NAME" : "Gestation period, 17 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65683006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4097608, + "CONCEPT_NAME" : "Gestation period, 18 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25026004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181751, + "CONCEPT_NAME" : "Gestation period, 19 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54318006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4051642, + "CONCEPT_NAME" : "Gestation period, 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "23464008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4185780, + "CONCEPT_NAME" : "Gestation period, 21 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "41438001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4274955, + "CONCEPT_NAME" : "Gestation period, 22 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65035007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336226, + "CONCEPT_NAME" : "Gestation period, 23 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86883006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439922, + "CONCEPT_NAME" : "Gestation period, 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313179009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435640, + "CONCEPT_NAME" : "Gestation period, 25 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72544005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444023, + "CONCEPT_NAME" : "Gestation period, 26 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48688005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432430, + "CONCEPT_NAME" : "Gestation period, 27 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46906003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444461, + "CONCEPT_NAME" : "Gestation period, 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90797000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444417, + "CONCEPT_NAME" : "Gestation period, 29 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45139008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434484, + "CONCEPT_NAME" : "Gestation period, 30 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "71355009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433864, + "CONCEPT_NAME" : "Gestation period, 31 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64920003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442558, + "CONCEPT_NAME" : "Gestation period, 32 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7707000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441678, + "CONCEPT_NAME" : "Gestation period, 33 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "78395001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443874, + "CONCEPT_NAME" : "Gestation period, 34 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13763000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444267, + "CONCEPT_NAME" : "Gestation period, 35 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84132007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438543, + "CONCEPT_NAME" : "Gestation period, 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57907009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442355, + "CONCEPT_NAME" : "Gestation period, 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43697006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443871, + "CONCEPT_NAME" : "Gestation period, 38 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13798002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435655, + "CONCEPT_NAME" : "Gestation period, 39 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80487005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442769, + "CONCEPT_NAME" : "Gestation period, 41 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63503002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444067, + "CONCEPT_NAME" : "Gestation period, 42 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36428009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4290009, + "CONCEPT_NAME" : "Gestation period, 5 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "37005007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4313026, + "CONCEPT_NAME" : "Gestation period, 6 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86801005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4270513, + "CONCEPT_NAME" : "Gestation period, 7 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63110000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4132434, + "CONCEPT_NAME" : "Gestation period, 8 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26690008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4245908, + "CONCEPT_NAME" : "Gestation period, 9 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "931004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 762907, + "CONCEPT_NAME" : "Gestation period greater than or equal to 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "433601000124106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336958, + "CONCEPT_NAME" : "Term pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87527008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4180111, + "CONCEPT_NAME" : "Third trimester pregnancy less than 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429240000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444098, + "CONCEPT_NAME" : "Gestation period, 40 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46230007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 67, + "name" : "Gestational age (GEST) gt than 5 week", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4015296, + "CONCEPT_NAME" : "Antenatal 12 weeks examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169712008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014149, + "CONCEPT_NAME" : "Antenatal 16 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169713003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014150, + "CONCEPT_NAME" : "Antenatal 20 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169714009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808979, + "CONCEPT_NAME" : "Antenatal 22 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861281000000109", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015141, + "CONCEPT_NAME" : "Antenatal 24 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169715005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808980, + "CONCEPT_NAME" : "Antenatal 25 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861301000000105", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014151, + "CONCEPT_NAME" : "Antenatal 30 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169717002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808981, + "CONCEPT_NAME" : "Antenatal 31 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861321000000101", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015297, + "CONCEPT_NAME" : "Antenatal 32 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169718007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015298, + "CONCEPT_NAME" : "Antenatal 34 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169719004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014434, + "CONCEPT_NAME" : "Antenatal 35 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169720005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015299, + "CONCEPT_NAME" : "Antenatal 36 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169721009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015142, + "CONCEPT_NAME" : "Antenatal 37 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169722002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014152, + "CONCEPT_NAME" : "Antenatal 38 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169723007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015300, + "CONCEPT_NAME" : "Antenatal 39 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169724001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015301, + "CONCEPT_NAME" : "Antenatal 40 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169725000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015302, + "CONCEPT_NAME" : "Antenatal 41 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169726004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014435, + "CONCEPT_NAME" : "Antenatal 42 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169727008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4178165, + "CONCEPT_NAME" : "Gestation 14 - 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428567001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181468, + "CONCEPT_NAME" : "Gestation 9- 13 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428930004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181162, + "CONCEPT_NAME" : "Gestation greater than 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429715006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4324063, + "CONCEPT_NAME" : "Gestation less than 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428566005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438542, + "CONCEPT_NAME" : "Gestation less than 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313178001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45770261, + "CONCEPT_NAME" : "Gestation less than 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "925561000000100", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4322726, + "CONCEPT_NAME" : "Gestation less than 9 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428058009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4242241, + "CONCEPT_NAME" : "Gestation period, 10 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "38039008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4174506, + "CONCEPT_NAME" : "Gestation period, 11 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "50367001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4197245, + "CONCEPT_NAME" : "Gestation period, 12 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "79992004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4266517, + "CONCEPT_NAME" : "Gestation period, 13 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "62333002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4248725, + "CONCEPT_NAME" : "Gestation period, 14 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72846000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4283690, + "CONCEPT_NAME" : "Gestation period, 15 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6678005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4049621, + "CONCEPT_NAME" : "Gestation period, 16 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15633004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4277749, + "CONCEPT_NAME" : "Gestation period, 17 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65683006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4097608, + "CONCEPT_NAME" : "Gestation period, 18 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25026004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181751, + "CONCEPT_NAME" : "Gestation period, 19 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54318006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4051642, + "CONCEPT_NAME" : "Gestation period, 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "23464008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4185780, + "CONCEPT_NAME" : "Gestation period, 21 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "41438001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4274955, + "CONCEPT_NAME" : "Gestation period, 22 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65035007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336226, + "CONCEPT_NAME" : "Gestation period, 23 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86883006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439922, + "CONCEPT_NAME" : "Gestation period, 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313179009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435640, + "CONCEPT_NAME" : "Gestation period, 25 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72544005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444023, + "CONCEPT_NAME" : "Gestation period, 26 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48688005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432430, + "CONCEPT_NAME" : "Gestation period, 27 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46906003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444461, + "CONCEPT_NAME" : "Gestation period, 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90797000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444417, + "CONCEPT_NAME" : "Gestation period, 29 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45139008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434484, + "CONCEPT_NAME" : "Gestation period, 30 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "71355009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433864, + "CONCEPT_NAME" : "Gestation period, 31 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64920003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442558, + "CONCEPT_NAME" : "Gestation period, 32 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7707000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441678, + "CONCEPT_NAME" : "Gestation period, 33 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "78395001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443874, + "CONCEPT_NAME" : "Gestation period, 34 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13763000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444267, + "CONCEPT_NAME" : "Gestation period, 35 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84132007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438543, + "CONCEPT_NAME" : "Gestation period, 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57907009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442355, + "CONCEPT_NAME" : "Gestation period, 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43697006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443871, + "CONCEPT_NAME" : "Gestation period, 38 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13798002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435655, + "CONCEPT_NAME" : "Gestation period, 39 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80487005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442769, + "CONCEPT_NAME" : "Gestation period, 41 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63503002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444067, + "CONCEPT_NAME" : "Gestation period, 42 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36428009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4313026, + "CONCEPT_NAME" : "Gestation period, 6 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86801005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4270513, + "CONCEPT_NAME" : "Gestation period, 7 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63110000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4132434, + "CONCEPT_NAME" : "Gestation period, 8 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26690008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4245908, + "CONCEPT_NAME" : "Gestation period, 9 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "931004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 762907, + "CONCEPT_NAME" : "Gestation period greater than or equal to 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "433601000124106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336958, + "CONCEPT_NAME" : "Term pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87527008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4180111, + "CONCEPT_NAME" : "Third trimester pregnancy less than 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429240000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444098, + "CONCEPT_NAME" : "Gestation period, 40 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46230007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 68, + "name" : "Gestational age (GEST) gt than 6 week", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4015296, + "CONCEPT_NAME" : "Antenatal 12 weeks examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169712008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014149, + "CONCEPT_NAME" : "Antenatal 16 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169713003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014150, + "CONCEPT_NAME" : "Antenatal 20 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169714009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808979, + "CONCEPT_NAME" : "Antenatal 22 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861281000000109", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015141, + "CONCEPT_NAME" : "Antenatal 24 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169715005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808980, + "CONCEPT_NAME" : "Antenatal 25 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861301000000105", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014151, + "CONCEPT_NAME" : "Antenatal 30 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169717002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808981, + "CONCEPT_NAME" : "Antenatal 31 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861321000000101", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015297, + "CONCEPT_NAME" : "Antenatal 32 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169718007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015298, + "CONCEPT_NAME" : "Antenatal 34 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169719004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014434, + "CONCEPT_NAME" : "Antenatal 35 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169720005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015299, + "CONCEPT_NAME" : "Antenatal 36 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169721009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015142, + "CONCEPT_NAME" : "Antenatal 37 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169722002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014152, + "CONCEPT_NAME" : "Antenatal 38 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169723007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015300, + "CONCEPT_NAME" : "Antenatal 39 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169724001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015301, + "CONCEPT_NAME" : "Antenatal 40 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169725000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015302, + "CONCEPT_NAME" : "Antenatal 41 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169726004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014435, + "CONCEPT_NAME" : "Antenatal 42 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169727008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4178165, + "CONCEPT_NAME" : "Gestation 14 - 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428567001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181468, + "CONCEPT_NAME" : "Gestation 9- 13 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428930004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181162, + "CONCEPT_NAME" : "Gestation greater than 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429715006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4324063, + "CONCEPT_NAME" : "Gestation less than 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428566005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438542, + "CONCEPT_NAME" : "Gestation less than 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313178001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45770261, + "CONCEPT_NAME" : "Gestation less than 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "925561000000100", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4322726, + "CONCEPT_NAME" : "Gestation less than 9 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428058009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4242241, + "CONCEPT_NAME" : "Gestation period, 10 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "38039008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4174506, + "CONCEPT_NAME" : "Gestation period, 11 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "50367001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4197245, + "CONCEPT_NAME" : "Gestation period, 12 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "79992004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4266517, + "CONCEPT_NAME" : "Gestation period, 13 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "62333002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4248725, + "CONCEPT_NAME" : "Gestation period, 14 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72846000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4283690, + "CONCEPT_NAME" : "Gestation period, 15 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6678005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4049621, + "CONCEPT_NAME" : "Gestation period, 16 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15633004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4277749, + "CONCEPT_NAME" : "Gestation period, 17 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65683006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4097608, + "CONCEPT_NAME" : "Gestation period, 18 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25026004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181751, + "CONCEPT_NAME" : "Gestation period, 19 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54318006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4051642, + "CONCEPT_NAME" : "Gestation period, 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "23464008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4185780, + "CONCEPT_NAME" : "Gestation period, 21 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "41438001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4274955, + "CONCEPT_NAME" : "Gestation period, 22 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65035007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336226, + "CONCEPT_NAME" : "Gestation period, 23 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86883006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439922, + "CONCEPT_NAME" : "Gestation period, 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313179009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435640, + "CONCEPT_NAME" : "Gestation period, 25 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72544005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444023, + "CONCEPT_NAME" : "Gestation period, 26 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48688005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432430, + "CONCEPT_NAME" : "Gestation period, 27 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46906003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444461, + "CONCEPT_NAME" : "Gestation period, 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90797000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444417, + "CONCEPT_NAME" : "Gestation period, 29 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45139008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434484, + "CONCEPT_NAME" : "Gestation period, 30 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "71355009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433864, + "CONCEPT_NAME" : "Gestation period, 31 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64920003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442558, + "CONCEPT_NAME" : "Gestation period, 32 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7707000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441678, + "CONCEPT_NAME" : "Gestation period, 33 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "78395001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443874, + "CONCEPT_NAME" : "Gestation period, 34 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13763000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444267, + "CONCEPT_NAME" : "Gestation period, 35 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84132007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438543, + "CONCEPT_NAME" : "Gestation period, 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57907009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442355, + "CONCEPT_NAME" : "Gestation period, 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43697006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443871, + "CONCEPT_NAME" : "Gestation period, 38 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13798002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435655, + "CONCEPT_NAME" : "Gestation period, 39 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80487005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442769, + "CONCEPT_NAME" : "Gestation period, 41 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63503002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444067, + "CONCEPT_NAME" : "Gestation period, 42 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36428009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4270513, + "CONCEPT_NAME" : "Gestation period, 7 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63110000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4132434, + "CONCEPT_NAME" : "Gestation period, 8 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26690008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4245908, + "CONCEPT_NAME" : "Gestation period, 9 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "931004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 762907, + "CONCEPT_NAME" : "Gestation period greater than or equal to 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "433601000124106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336958, + "CONCEPT_NAME" : "Term pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87527008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4180111, + "CONCEPT_NAME" : "Third trimester pregnancy less than 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429240000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444098, + "CONCEPT_NAME" : "Gestation period, 40 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46230007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 69, + "name" : "Gestational age (GEST) gt than 7 week", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4015296, + "CONCEPT_NAME" : "Antenatal 12 weeks examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169712008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014149, + "CONCEPT_NAME" : "Antenatal 16 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169713003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014150, + "CONCEPT_NAME" : "Antenatal 20 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169714009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808979, + "CONCEPT_NAME" : "Antenatal 22 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861281000000109", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015141, + "CONCEPT_NAME" : "Antenatal 24 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169715005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808980, + "CONCEPT_NAME" : "Antenatal 25 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861301000000105", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014151, + "CONCEPT_NAME" : "Antenatal 30 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169717002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808981, + "CONCEPT_NAME" : "Antenatal 31 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861321000000101", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015297, + "CONCEPT_NAME" : "Antenatal 32 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169718007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015298, + "CONCEPT_NAME" : "Antenatal 34 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169719004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014434, + "CONCEPT_NAME" : "Antenatal 35 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169720005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015299, + "CONCEPT_NAME" : "Antenatal 36 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169721009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015142, + "CONCEPT_NAME" : "Antenatal 37 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169722002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014152, + "CONCEPT_NAME" : "Antenatal 38 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169723007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015300, + "CONCEPT_NAME" : "Antenatal 39 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169724001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015301, + "CONCEPT_NAME" : "Antenatal 40 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169725000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015302, + "CONCEPT_NAME" : "Antenatal 41 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169726004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014435, + "CONCEPT_NAME" : "Antenatal 42 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169727008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4178165, + "CONCEPT_NAME" : "Gestation 14 - 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428567001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181468, + "CONCEPT_NAME" : "Gestation 9- 13 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428930004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181162, + "CONCEPT_NAME" : "Gestation greater than 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429715006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4324063, + "CONCEPT_NAME" : "Gestation less than 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428566005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438542, + "CONCEPT_NAME" : "Gestation less than 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313178001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45770261, + "CONCEPT_NAME" : "Gestation less than 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "925561000000100", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4322726, + "CONCEPT_NAME" : "Gestation less than 9 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428058009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4242241, + "CONCEPT_NAME" : "Gestation period, 10 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "38039008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4174506, + "CONCEPT_NAME" : "Gestation period, 11 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "50367001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4197245, + "CONCEPT_NAME" : "Gestation period, 12 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "79992004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4266517, + "CONCEPT_NAME" : "Gestation period, 13 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "62333002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4248725, + "CONCEPT_NAME" : "Gestation period, 14 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72846000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4283690, + "CONCEPT_NAME" : "Gestation period, 15 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6678005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4049621, + "CONCEPT_NAME" : "Gestation period, 16 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15633004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4277749, + "CONCEPT_NAME" : "Gestation period, 17 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65683006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4097608, + "CONCEPT_NAME" : "Gestation period, 18 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25026004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181751, + "CONCEPT_NAME" : "Gestation period, 19 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54318006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4051642, + "CONCEPT_NAME" : "Gestation period, 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "23464008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4185780, + "CONCEPT_NAME" : "Gestation period, 21 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "41438001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4274955, + "CONCEPT_NAME" : "Gestation period, 22 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65035007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336226, + "CONCEPT_NAME" : "Gestation period, 23 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86883006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439922, + "CONCEPT_NAME" : "Gestation period, 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313179009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435640, + "CONCEPT_NAME" : "Gestation period, 25 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72544005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444023, + "CONCEPT_NAME" : "Gestation period, 26 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48688005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432430, + "CONCEPT_NAME" : "Gestation period, 27 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46906003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444461, + "CONCEPT_NAME" : "Gestation period, 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90797000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444417, + "CONCEPT_NAME" : "Gestation period, 29 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45139008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434484, + "CONCEPT_NAME" : "Gestation period, 30 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "71355009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433864, + "CONCEPT_NAME" : "Gestation period, 31 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64920003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442558, + "CONCEPT_NAME" : "Gestation period, 32 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7707000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441678, + "CONCEPT_NAME" : "Gestation period, 33 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "78395001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443874, + "CONCEPT_NAME" : "Gestation period, 34 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13763000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444267, + "CONCEPT_NAME" : "Gestation period, 35 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84132007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438543, + "CONCEPT_NAME" : "Gestation period, 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57907009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442355, + "CONCEPT_NAME" : "Gestation period, 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43697006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443871, + "CONCEPT_NAME" : "Gestation period, 38 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13798002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435655, + "CONCEPT_NAME" : "Gestation period, 39 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80487005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442769, + "CONCEPT_NAME" : "Gestation period, 41 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63503002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444067, + "CONCEPT_NAME" : "Gestation period, 42 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36428009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4132434, + "CONCEPT_NAME" : "Gestation period, 8 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26690008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4245908, + "CONCEPT_NAME" : "Gestation period, 9 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "931004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 762907, + "CONCEPT_NAME" : "Gestation period greater than or equal to 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "433601000124106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336958, + "CONCEPT_NAME" : "Term pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87527008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4180111, + "CONCEPT_NAME" : "Third trimester pregnancy less than 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429240000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444098, + "CONCEPT_NAME" : "Gestation period, 40 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46230007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 70, + "name" : "Gestational age (GEST) gt than 8 week", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4015296, + "CONCEPT_NAME" : "Antenatal 12 weeks examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169712008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014149, + "CONCEPT_NAME" : "Antenatal 16 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169713003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014150, + "CONCEPT_NAME" : "Antenatal 20 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169714009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808979, + "CONCEPT_NAME" : "Antenatal 22 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861281000000109", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015141, + "CONCEPT_NAME" : "Antenatal 24 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169715005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808980, + "CONCEPT_NAME" : "Antenatal 25 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861301000000105", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014151, + "CONCEPT_NAME" : "Antenatal 30 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169717002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808981, + "CONCEPT_NAME" : "Antenatal 31 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861321000000101", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015297, + "CONCEPT_NAME" : "Antenatal 32 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169718007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015298, + "CONCEPT_NAME" : "Antenatal 34 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169719004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014434, + "CONCEPT_NAME" : "Antenatal 35 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169720005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015299, + "CONCEPT_NAME" : "Antenatal 36 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169721009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015142, + "CONCEPT_NAME" : "Antenatal 37 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169722002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014152, + "CONCEPT_NAME" : "Antenatal 38 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169723007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015300, + "CONCEPT_NAME" : "Antenatal 39 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169724001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015301, + "CONCEPT_NAME" : "Antenatal 40 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169725000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015302, + "CONCEPT_NAME" : "Antenatal 41 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169726004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014435, + "CONCEPT_NAME" : "Antenatal 42 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169727008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4178165, + "CONCEPT_NAME" : "Gestation 14 - 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428567001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181468, + "CONCEPT_NAME" : "Gestation 9- 13 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428930004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181162, + "CONCEPT_NAME" : "Gestation greater than 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429715006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4324063, + "CONCEPT_NAME" : "Gestation less than 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428566005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438542, + "CONCEPT_NAME" : "Gestation less than 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313178001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45770261, + "CONCEPT_NAME" : "Gestation less than 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "925561000000100", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4242241, + "CONCEPT_NAME" : "Gestation period, 10 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "38039008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4174506, + "CONCEPT_NAME" : "Gestation period, 11 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "50367001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4197245, + "CONCEPT_NAME" : "Gestation period, 12 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "79992004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4266517, + "CONCEPT_NAME" : "Gestation period, 13 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "62333002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4248725, + "CONCEPT_NAME" : "Gestation period, 14 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72846000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4283690, + "CONCEPT_NAME" : "Gestation period, 15 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6678005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4049621, + "CONCEPT_NAME" : "Gestation period, 16 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15633004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4277749, + "CONCEPT_NAME" : "Gestation period, 17 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65683006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4097608, + "CONCEPT_NAME" : "Gestation period, 18 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25026004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181751, + "CONCEPT_NAME" : "Gestation period, 19 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54318006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4051642, + "CONCEPT_NAME" : "Gestation period, 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "23464008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4185780, + "CONCEPT_NAME" : "Gestation period, 21 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "41438001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4274955, + "CONCEPT_NAME" : "Gestation period, 22 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65035007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336226, + "CONCEPT_NAME" : "Gestation period, 23 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86883006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439922, + "CONCEPT_NAME" : "Gestation period, 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313179009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435640, + "CONCEPT_NAME" : "Gestation period, 25 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72544005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444023, + "CONCEPT_NAME" : "Gestation period, 26 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48688005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432430, + "CONCEPT_NAME" : "Gestation period, 27 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46906003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444461, + "CONCEPT_NAME" : "Gestation period, 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90797000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444417, + "CONCEPT_NAME" : "Gestation period, 29 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45139008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434484, + "CONCEPT_NAME" : "Gestation period, 30 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "71355009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433864, + "CONCEPT_NAME" : "Gestation period, 31 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64920003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442558, + "CONCEPT_NAME" : "Gestation period, 32 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7707000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441678, + "CONCEPT_NAME" : "Gestation period, 33 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "78395001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443874, + "CONCEPT_NAME" : "Gestation period, 34 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13763000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444267, + "CONCEPT_NAME" : "Gestation period, 35 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84132007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438543, + "CONCEPT_NAME" : "Gestation period, 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57907009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442355, + "CONCEPT_NAME" : "Gestation period, 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43697006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443871, + "CONCEPT_NAME" : "Gestation period, 38 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13798002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435655, + "CONCEPT_NAME" : "Gestation period, 39 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80487005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442769, + "CONCEPT_NAME" : "Gestation period, 41 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63503002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444067, + "CONCEPT_NAME" : "Gestation period, 42 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36428009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4245908, + "CONCEPT_NAME" : "Gestation period, 9 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "931004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 762907, + "CONCEPT_NAME" : "Gestation period greater than or equal to 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "433601000124106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336958, + "CONCEPT_NAME" : "Term pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87527008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4180111, + "CONCEPT_NAME" : "Third trimester pregnancy less than 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429240000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444098, + "CONCEPT_NAME" : "Gestation period, 40 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46230007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 71, + "name" : "Gestational age (GEST) gt than 9 week", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4015296, + "CONCEPT_NAME" : "Antenatal 12 weeks examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169712008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014149, + "CONCEPT_NAME" : "Antenatal 16 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169713003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014150, + "CONCEPT_NAME" : "Antenatal 20 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169714009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808979, + "CONCEPT_NAME" : "Antenatal 22 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861281000000109", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015141, + "CONCEPT_NAME" : "Antenatal 24 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169715005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808980, + "CONCEPT_NAME" : "Antenatal 25 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861301000000105", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014151, + "CONCEPT_NAME" : "Antenatal 30 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169717002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808981, + "CONCEPT_NAME" : "Antenatal 31 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861321000000101", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015297, + "CONCEPT_NAME" : "Antenatal 32 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169718007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015298, + "CONCEPT_NAME" : "Antenatal 34 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169719004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014434, + "CONCEPT_NAME" : "Antenatal 35 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169720005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015299, + "CONCEPT_NAME" : "Antenatal 36 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169721009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015142, + "CONCEPT_NAME" : "Antenatal 37 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169722002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014152, + "CONCEPT_NAME" : "Antenatal 38 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169723007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015300, + "CONCEPT_NAME" : "Antenatal 39 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169724001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015301, + "CONCEPT_NAME" : "Antenatal 40 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169725000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015302, + "CONCEPT_NAME" : "Antenatal 41 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169726004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014435, + "CONCEPT_NAME" : "Antenatal 42 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169727008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4178165, + "CONCEPT_NAME" : "Gestation 14 - 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428567001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181468, + "CONCEPT_NAME" : "Gestation 9- 13 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428930004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181162, + "CONCEPT_NAME" : "Gestation greater than 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429715006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4324063, + "CONCEPT_NAME" : "Gestation less than 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428566005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438542, + "CONCEPT_NAME" : "Gestation less than 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313178001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45770261, + "CONCEPT_NAME" : "Gestation less than 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "925561000000100", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4242241, + "CONCEPT_NAME" : "Gestation period, 10 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "38039008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4174506, + "CONCEPT_NAME" : "Gestation period, 11 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "50367001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4197245, + "CONCEPT_NAME" : "Gestation period, 12 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "79992004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4266517, + "CONCEPT_NAME" : "Gestation period, 13 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "62333002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4248725, + "CONCEPT_NAME" : "Gestation period, 14 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72846000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4283690, + "CONCEPT_NAME" : "Gestation period, 15 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6678005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4049621, + "CONCEPT_NAME" : "Gestation period, 16 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15633004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4277749, + "CONCEPT_NAME" : "Gestation period, 17 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65683006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4097608, + "CONCEPT_NAME" : "Gestation period, 18 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25026004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181751, + "CONCEPT_NAME" : "Gestation period, 19 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54318006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4051642, + "CONCEPT_NAME" : "Gestation period, 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "23464008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4185780, + "CONCEPT_NAME" : "Gestation period, 21 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "41438001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4274955, + "CONCEPT_NAME" : "Gestation period, 22 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65035007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336226, + "CONCEPT_NAME" : "Gestation period, 23 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86883006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439922, + "CONCEPT_NAME" : "Gestation period, 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313179009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435640, + "CONCEPT_NAME" : "Gestation period, 25 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72544005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444023, + "CONCEPT_NAME" : "Gestation period, 26 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48688005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432430, + "CONCEPT_NAME" : "Gestation period, 27 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46906003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444461, + "CONCEPT_NAME" : "Gestation period, 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90797000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444417, + "CONCEPT_NAME" : "Gestation period, 29 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45139008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434484, + "CONCEPT_NAME" : "Gestation period, 30 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "71355009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433864, + "CONCEPT_NAME" : "Gestation period, 31 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64920003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442558, + "CONCEPT_NAME" : "Gestation period, 32 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7707000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441678, + "CONCEPT_NAME" : "Gestation period, 33 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "78395001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443874, + "CONCEPT_NAME" : "Gestation period, 34 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13763000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444267, + "CONCEPT_NAME" : "Gestation period, 35 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84132007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438543, + "CONCEPT_NAME" : "Gestation period, 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57907009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442355, + "CONCEPT_NAME" : "Gestation period, 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43697006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443871, + "CONCEPT_NAME" : "Gestation period, 38 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13798002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435655, + "CONCEPT_NAME" : "Gestation period, 39 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80487005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442769, + "CONCEPT_NAME" : "Gestation period, 41 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63503002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444067, + "CONCEPT_NAME" : "Gestation period, 42 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36428009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 762907, + "CONCEPT_NAME" : "Gestation period greater than or equal to 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "433601000124106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336958, + "CONCEPT_NAME" : "Term pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87527008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4180111, + "CONCEPT_NAME" : "Third trimester pregnancy less than 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429240000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444098, + "CONCEPT_NAME" : "Gestation period, 40 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46230007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 72, + "name" : "Gestational age (GEST) gt than 10 week", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4015296, + "CONCEPT_NAME" : "Antenatal 12 weeks examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169712008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014149, + "CONCEPT_NAME" : "Antenatal 16 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169713003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014150, + "CONCEPT_NAME" : "Antenatal 20 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169714009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808979, + "CONCEPT_NAME" : "Antenatal 22 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861281000000109", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015141, + "CONCEPT_NAME" : "Antenatal 24 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169715005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808980, + "CONCEPT_NAME" : "Antenatal 25 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861301000000105", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014151, + "CONCEPT_NAME" : "Antenatal 30 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169717002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808981, + "CONCEPT_NAME" : "Antenatal 31 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861321000000101", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015297, + "CONCEPT_NAME" : "Antenatal 32 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169718007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015298, + "CONCEPT_NAME" : "Antenatal 34 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169719004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014434, + "CONCEPT_NAME" : "Antenatal 35 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169720005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015299, + "CONCEPT_NAME" : "Antenatal 36 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169721009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015142, + "CONCEPT_NAME" : "Antenatal 37 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169722002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014152, + "CONCEPT_NAME" : "Antenatal 38 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169723007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015300, + "CONCEPT_NAME" : "Antenatal 39 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169724001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015301, + "CONCEPT_NAME" : "Antenatal 40 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169725000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015302, + "CONCEPT_NAME" : "Antenatal 41 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169726004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014435, + "CONCEPT_NAME" : "Antenatal 42 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169727008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4178165, + "CONCEPT_NAME" : "Gestation 14 - 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428567001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181468, + "CONCEPT_NAME" : "Gestation 9- 13 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428930004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181162, + "CONCEPT_NAME" : "Gestation greater than 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429715006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4324063, + "CONCEPT_NAME" : "Gestation less than 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428566005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438542, + "CONCEPT_NAME" : "Gestation less than 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313178001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45770261, + "CONCEPT_NAME" : "Gestation less than 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "925561000000100", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4174506, + "CONCEPT_NAME" : "Gestation period, 11 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "50367001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4197245, + "CONCEPT_NAME" : "Gestation period, 12 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "79992004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4266517, + "CONCEPT_NAME" : "Gestation period, 13 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "62333002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4248725, + "CONCEPT_NAME" : "Gestation period, 14 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72846000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4283690, + "CONCEPT_NAME" : "Gestation period, 15 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6678005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4049621, + "CONCEPT_NAME" : "Gestation period, 16 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15633004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4277749, + "CONCEPT_NAME" : "Gestation period, 17 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65683006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4097608, + "CONCEPT_NAME" : "Gestation period, 18 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25026004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181751, + "CONCEPT_NAME" : "Gestation period, 19 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54318006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4051642, + "CONCEPT_NAME" : "Gestation period, 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "23464008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4185780, + "CONCEPT_NAME" : "Gestation period, 21 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "41438001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4274955, + "CONCEPT_NAME" : "Gestation period, 22 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65035007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336226, + "CONCEPT_NAME" : "Gestation period, 23 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86883006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439922, + "CONCEPT_NAME" : "Gestation period, 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313179009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435640, + "CONCEPT_NAME" : "Gestation period, 25 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72544005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444023, + "CONCEPT_NAME" : "Gestation period, 26 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48688005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432430, + "CONCEPT_NAME" : "Gestation period, 27 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46906003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444461, + "CONCEPT_NAME" : "Gestation period, 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90797000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444417, + "CONCEPT_NAME" : "Gestation period, 29 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45139008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434484, + "CONCEPT_NAME" : "Gestation period, 30 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "71355009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433864, + "CONCEPT_NAME" : "Gestation period, 31 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64920003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442558, + "CONCEPT_NAME" : "Gestation period, 32 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7707000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441678, + "CONCEPT_NAME" : "Gestation period, 33 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "78395001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443874, + "CONCEPT_NAME" : "Gestation period, 34 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13763000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444267, + "CONCEPT_NAME" : "Gestation period, 35 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84132007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438543, + "CONCEPT_NAME" : "Gestation period, 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57907009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442355, + "CONCEPT_NAME" : "Gestation period, 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43697006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443871, + "CONCEPT_NAME" : "Gestation period, 38 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13798002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435655, + "CONCEPT_NAME" : "Gestation period, 39 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80487005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442769, + "CONCEPT_NAME" : "Gestation period, 41 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63503002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444067, + "CONCEPT_NAME" : "Gestation period, 42 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36428009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 762907, + "CONCEPT_NAME" : "Gestation period greater than or equal to 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "433601000124106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336958, + "CONCEPT_NAME" : "Term pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87527008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4180111, + "CONCEPT_NAME" : "Third trimester pregnancy less than 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429240000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444098, + "CONCEPT_NAME" : "Gestation period, 40 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46230007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 73, + "name" : "Gestational age (GEST) gt than 11 week", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4015296, + "CONCEPT_NAME" : "Antenatal 12 weeks examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169712008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014149, + "CONCEPT_NAME" : "Antenatal 16 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169713003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014150, + "CONCEPT_NAME" : "Antenatal 20 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169714009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808979, + "CONCEPT_NAME" : "Antenatal 22 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861281000000109", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015141, + "CONCEPT_NAME" : "Antenatal 24 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169715005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808980, + "CONCEPT_NAME" : "Antenatal 25 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861301000000105", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014151, + "CONCEPT_NAME" : "Antenatal 30 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169717002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808981, + "CONCEPT_NAME" : "Antenatal 31 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861321000000101", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015297, + "CONCEPT_NAME" : "Antenatal 32 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169718007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015298, + "CONCEPT_NAME" : "Antenatal 34 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169719004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014434, + "CONCEPT_NAME" : "Antenatal 35 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169720005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015299, + "CONCEPT_NAME" : "Antenatal 36 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169721009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015142, + "CONCEPT_NAME" : "Antenatal 37 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169722002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014152, + "CONCEPT_NAME" : "Antenatal 38 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169723007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015300, + "CONCEPT_NAME" : "Antenatal 39 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169724001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015301, + "CONCEPT_NAME" : "Antenatal 40 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169725000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015302, + "CONCEPT_NAME" : "Antenatal 41 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169726004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014435, + "CONCEPT_NAME" : "Antenatal 42 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169727008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4178165, + "CONCEPT_NAME" : "Gestation 14 - 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428567001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181468, + "CONCEPT_NAME" : "Gestation 9- 13 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428930004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181162, + "CONCEPT_NAME" : "Gestation greater than 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429715006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4324063, + "CONCEPT_NAME" : "Gestation less than 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428566005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438542, + "CONCEPT_NAME" : "Gestation less than 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313178001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45770261, + "CONCEPT_NAME" : "Gestation less than 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "925561000000100", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4197245, + "CONCEPT_NAME" : "Gestation period, 12 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "79992004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4266517, + "CONCEPT_NAME" : "Gestation period, 13 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "62333002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4248725, + "CONCEPT_NAME" : "Gestation period, 14 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72846000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4283690, + "CONCEPT_NAME" : "Gestation period, 15 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6678005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4049621, + "CONCEPT_NAME" : "Gestation period, 16 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15633004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4277749, + "CONCEPT_NAME" : "Gestation period, 17 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65683006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4097608, + "CONCEPT_NAME" : "Gestation period, 18 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25026004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181751, + "CONCEPT_NAME" : "Gestation period, 19 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54318006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4051642, + "CONCEPT_NAME" : "Gestation period, 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "23464008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4185780, + "CONCEPT_NAME" : "Gestation period, 21 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "41438001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4274955, + "CONCEPT_NAME" : "Gestation period, 22 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65035007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336226, + "CONCEPT_NAME" : "Gestation period, 23 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86883006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439922, + "CONCEPT_NAME" : "Gestation period, 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313179009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435640, + "CONCEPT_NAME" : "Gestation period, 25 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72544005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444023, + "CONCEPT_NAME" : "Gestation period, 26 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48688005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432430, + "CONCEPT_NAME" : "Gestation period, 27 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46906003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444461, + "CONCEPT_NAME" : "Gestation period, 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90797000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444417, + "CONCEPT_NAME" : "Gestation period, 29 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45139008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434484, + "CONCEPT_NAME" : "Gestation period, 30 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "71355009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433864, + "CONCEPT_NAME" : "Gestation period, 31 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64920003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442558, + "CONCEPT_NAME" : "Gestation period, 32 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7707000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441678, + "CONCEPT_NAME" : "Gestation period, 33 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "78395001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443874, + "CONCEPT_NAME" : "Gestation period, 34 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13763000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444267, + "CONCEPT_NAME" : "Gestation period, 35 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84132007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438543, + "CONCEPT_NAME" : "Gestation period, 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57907009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442355, + "CONCEPT_NAME" : "Gestation period, 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43697006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443871, + "CONCEPT_NAME" : "Gestation period, 38 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13798002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435655, + "CONCEPT_NAME" : "Gestation period, 39 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80487005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442769, + "CONCEPT_NAME" : "Gestation period, 41 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63503002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444067, + "CONCEPT_NAME" : "Gestation period, 42 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36428009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 762907, + "CONCEPT_NAME" : "Gestation period greater than or equal to 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "433601000124106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336958, + "CONCEPT_NAME" : "Term pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87527008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4180111, + "CONCEPT_NAME" : "Third trimester pregnancy less than 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429240000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444098, + "CONCEPT_NAME" : "Gestation period, 40 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46230007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 74, + "name" : "Gestational age (GEST) gt than 12 week", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4014149, + "CONCEPT_NAME" : "Antenatal 16 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169713003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014150, + "CONCEPT_NAME" : "Antenatal 20 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169714009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808979, + "CONCEPT_NAME" : "Antenatal 22 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861281000000109", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015141, + "CONCEPT_NAME" : "Antenatal 24 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169715005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808980, + "CONCEPT_NAME" : "Antenatal 25 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861301000000105", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014151, + "CONCEPT_NAME" : "Antenatal 30 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169717002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808981, + "CONCEPT_NAME" : "Antenatal 31 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861321000000101", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015297, + "CONCEPT_NAME" : "Antenatal 32 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169718007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015298, + "CONCEPT_NAME" : "Antenatal 34 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169719004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014434, + "CONCEPT_NAME" : "Antenatal 35 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169720005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015299, + "CONCEPT_NAME" : "Antenatal 36 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169721009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015142, + "CONCEPT_NAME" : "Antenatal 37 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169722002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014152, + "CONCEPT_NAME" : "Antenatal 38 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169723007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015300, + "CONCEPT_NAME" : "Antenatal 39 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169724001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015301, + "CONCEPT_NAME" : "Antenatal 40 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169725000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015302, + "CONCEPT_NAME" : "Antenatal 41 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169726004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014435, + "CONCEPT_NAME" : "Antenatal 42 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169727008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4178165, + "CONCEPT_NAME" : "Gestation 14 - 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428567001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181468, + "CONCEPT_NAME" : "Gestation 9- 13 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428930004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181162, + "CONCEPT_NAME" : "Gestation greater than 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429715006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4324063, + "CONCEPT_NAME" : "Gestation less than 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428566005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438542, + "CONCEPT_NAME" : "Gestation less than 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313178001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45770261, + "CONCEPT_NAME" : "Gestation less than 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "925561000000100", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4266517, + "CONCEPT_NAME" : "Gestation period, 13 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "62333002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4248725, + "CONCEPT_NAME" : "Gestation period, 14 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72846000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4283690, + "CONCEPT_NAME" : "Gestation period, 15 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6678005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4049621, + "CONCEPT_NAME" : "Gestation period, 16 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15633004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4277749, + "CONCEPT_NAME" : "Gestation period, 17 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65683006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4097608, + "CONCEPT_NAME" : "Gestation period, 18 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25026004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181751, + "CONCEPT_NAME" : "Gestation period, 19 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54318006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4051642, + "CONCEPT_NAME" : "Gestation period, 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "23464008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4185780, + "CONCEPT_NAME" : "Gestation period, 21 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "41438001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4274955, + "CONCEPT_NAME" : "Gestation period, 22 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65035007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336226, + "CONCEPT_NAME" : "Gestation period, 23 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86883006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439922, + "CONCEPT_NAME" : "Gestation period, 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313179009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435640, + "CONCEPT_NAME" : "Gestation period, 25 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72544005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444023, + "CONCEPT_NAME" : "Gestation period, 26 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48688005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432430, + "CONCEPT_NAME" : "Gestation period, 27 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46906003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444461, + "CONCEPT_NAME" : "Gestation period, 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90797000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444417, + "CONCEPT_NAME" : "Gestation period, 29 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45139008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434484, + "CONCEPT_NAME" : "Gestation period, 30 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "71355009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433864, + "CONCEPT_NAME" : "Gestation period, 31 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64920003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442558, + "CONCEPT_NAME" : "Gestation period, 32 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7707000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441678, + "CONCEPT_NAME" : "Gestation period, 33 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "78395001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443874, + "CONCEPT_NAME" : "Gestation period, 34 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13763000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444267, + "CONCEPT_NAME" : "Gestation period, 35 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84132007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438543, + "CONCEPT_NAME" : "Gestation period, 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57907009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442355, + "CONCEPT_NAME" : "Gestation period, 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43697006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443871, + "CONCEPT_NAME" : "Gestation period, 38 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13798002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435655, + "CONCEPT_NAME" : "Gestation period, 39 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80487005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442769, + "CONCEPT_NAME" : "Gestation period, 41 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63503002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444067, + "CONCEPT_NAME" : "Gestation period, 42 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36428009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 762907, + "CONCEPT_NAME" : "Gestation period greater than or equal to 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "433601000124106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336958, + "CONCEPT_NAME" : "Term pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87527008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4180111, + "CONCEPT_NAME" : "Third trimester pregnancy less than 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429240000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444098, + "CONCEPT_NAME" : "Gestation period, 40 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46230007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 75, + "name" : "Gestational age (GEST) gt than 13 week", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4014149, + "CONCEPT_NAME" : "Antenatal 16 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169713003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014150, + "CONCEPT_NAME" : "Antenatal 20 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169714009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808979, + "CONCEPT_NAME" : "Antenatal 22 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861281000000109", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015141, + "CONCEPT_NAME" : "Antenatal 24 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169715005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808980, + "CONCEPT_NAME" : "Antenatal 25 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861301000000105", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014151, + "CONCEPT_NAME" : "Antenatal 30 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169717002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808981, + "CONCEPT_NAME" : "Antenatal 31 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861321000000101", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015297, + "CONCEPT_NAME" : "Antenatal 32 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169718007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015298, + "CONCEPT_NAME" : "Antenatal 34 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169719004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014434, + "CONCEPT_NAME" : "Antenatal 35 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169720005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015299, + "CONCEPT_NAME" : "Antenatal 36 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169721009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015142, + "CONCEPT_NAME" : "Antenatal 37 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169722002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014152, + "CONCEPT_NAME" : "Antenatal 38 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169723007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015300, + "CONCEPT_NAME" : "Antenatal 39 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169724001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015301, + "CONCEPT_NAME" : "Antenatal 40 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169725000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015302, + "CONCEPT_NAME" : "Antenatal 41 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169726004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014435, + "CONCEPT_NAME" : "Antenatal 42 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169727008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4178165, + "CONCEPT_NAME" : "Gestation 14 - 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428567001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181162, + "CONCEPT_NAME" : "Gestation greater than 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429715006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4324063, + "CONCEPT_NAME" : "Gestation less than 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428566005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438542, + "CONCEPT_NAME" : "Gestation less than 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313178001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45770261, + "CONCEPT_NAME" : "Gestation less than 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "925561000000100", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4248725, + "CONCEPT_NAME" : "Gestation period, 14 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72846000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4283690, + "CONCEPT_NAME" : "Gestation period, 15 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6678005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4049621, + "CONCEPT_NAME" : "Gestation period, 16 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15633004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4277749, + "CONCEPT_NAME" : "Gestation period, 17 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65683006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4097608, + "CONCEPT_NAME" : "Gestation period, 18 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25026004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181751, + "CONCEPT_NAME" : "Gestation period, 19 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54318006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4051642, + "CONCEPT_NAME" : "Gestation period, 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "23464008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4185780, + "CONCEPT_NAME" : "Gestation period, 21 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "41438001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4274955, + "CONCEPT_NAME" : "Gestation period, 22 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65035007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336226, + "CONCEPT_NAME" : "Gestation period, 23 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86883006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439922, + "CONCEPT_NAME" : "Gestation period, 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313179009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435640, + "CONCEPT_NAME" : "Gestation period, 25 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72544005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444023, + "CONCEPT_NAME" : "Gestation period, 26 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48688005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432430, + "CONCEPT_NAME" : "Gestation period, 27 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46906003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444461, + "CONCEPT_NAME" : "Gestation period, 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90797000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444417, + "CONCEPT_NAME" : "Gestation period, 29 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45139008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434484, + "CONCEPT_NAME" : "Gestation period, 30 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "71355009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433864, + "CONCEPT_NAME" : "Gestation period, 31 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64920003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442558, + "CONCEPT_NAME" : "Gestation period, 32 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7707000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441678, + "CONCEPT_NAME" : "Gestation period, 33 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "78395001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443874, + "CONCEPT_NAME" : "Gestation period, 34 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13763000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444267, + "CONCEPT_NAME" : "Gestation period, 35 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84132007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438543, + "CONCEPT_NAME" : "Gestation period, 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57907009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442355, + "CONCEPT_NAME" : "Gestation period, 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43697006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443871, + "CONCEPT_NAME" : "Gestation period, 38 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13798002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435655, + "CONCEPT_NAME" : "Gestation period, 39 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80487005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442769, + "CONCEPT_NAME" : "Gestation period, 41 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63503002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444067, + "CONCEPT_NAME" : "Gestation period, 42 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36428009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 762907, + "CONCEPT_NAME" : "Gestation period greater than or equal to 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "433601000124106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336958, + "CONCEPT_NAME" : "Term pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87527008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4180111, + "CONCEPT_NAME" : "Third trimester pregnancy less than 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429240000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444098, + "CONCEPT_NAME" : "Gestation period, 40 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46230007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 76, + "name" : "Gestational age (GEST) gt than 14 week", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4014149, + "CONCEPT_NAME" : "Antenatal 16 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169713003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014150, + "CONCEPT_NAME" : "Antenatal 20 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169714009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808979, + "CONCEPT_NAME" : "Antenatal 22 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861281000000109", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015141, + "CONCEPT_NAME" : "Antenatal 24 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169715005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808980, + "CONCEPT_NAME" : "Antenatal 25 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861301000000105", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014151, + "CONCEPT_NAME" : "Antenatal 30 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169717002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808981, + "CONCEPT_NAME" : "Antenatal 31 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861321000000101", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015297, + "CONCEPT_NAME" : "Antenatal 32 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169718007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015298, + "CONCEPT_NAME" : "Antenatal 34 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169719004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014434, + "CONCEPT_NAME" : "Antenatal 35 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169720005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015299, + "CONCEPT_NAME" : "Antenatal 36 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169721009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015142, + "CONCEPT_NAME" : "Antenatal 37 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169722002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014152, + "CONCEPT_NAME" : "Antenatal 38 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169723007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015300, + "CONCEPT_NAME" : "Antenatal 39 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169724001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015301, + "CONCEPT_NAME" : "Antenatal 40 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169725000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015302, + "CONCEPT_NAME" : "Antenatal 41 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169726004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014435, + "CONCEPT_NAME" : "Antenatal 42 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169727008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4178165, + "CONCEPT_NAME" : "Gestation 14 - 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428567001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181162, + "CONCEPT_NAME" : "Gestation greater than 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429715006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4324063, + "CONCEPT_NAME" : "Gestation less than 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428566005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438542, + "CONCEPT_NAME" : "Gestation less than 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313178001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45770261, + "CONCEPT_NAME" : "Gestation less than 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "925561000000100", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4283690, + "CONCEPT_NAME" : "Gestation period, 15 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6678005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4049621, + "CONCEPT_NAME" : "Gestation period, 16 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15633004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4277749, + "CONCEPT_NAME" : "Gestation period, 17 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65683006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4097608, + "CONCEPT_NAME" : "Gestation period, 18 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25026004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181751, + "CONCEPT_NAME" : "Gestation period, 19 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54318006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4051642, + "CONCEPT_NAME" : "Gestation period, 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "23464008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4185780, + "CONCEPT_NAME" : "Gestation period, 21 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "41438001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4274955, + "CONCEPT_NAME" : "Gestation period, 22 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65035007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336226, + "CONCEPT_NAME" : "Gestation period, 23 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86883006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439922, + "CONCEPT_NAME" : "Gestation period, 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313179009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435640, + "CONCEPT_NAME" : "Gestation period, 25 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72544005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444023, + "CONCEPT_NAME" : "Gestation period, 26 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48688005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432430, + "CONCEPT_NAME" : "Gestation period, 27 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46906003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444461, + "CONCEPT_NAME" : "Gestation period, 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90797000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444417, + "CONCEPT_NAME" : "Gestation period, 29 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45139008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434484, + "CONCEPT_NAME" : "Gestation period, 30 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "71355009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433864, + "CONCEPT_NAME" : "Gestation period, 31 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64920003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442558, + "CONCEPT_NAME" : "Gestation period, 32 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7707000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441678, + "CONCEPT_NAME" : "Gestation period, 33 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "78395001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443874, + "CONCEPT_NAME" : "Gestation period, 34 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13763000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444267, + "CONCEPT_NAME" : "Gestation period, 35 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84132007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438543, + "CONCEPT_NAME" : "Gestation period, 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57907009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442355, + "CONCEPT_NAME" : "Gestation period, 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43697006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443871, + "CONCEPT_NAME" : "Gestation period, 38 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13798002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435655, + "CONCEPT_NAME" : "Gestation period, 39 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80487005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442769, + "CONCEPT_NAME" : "Gestation period, 41 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63503002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444067, + "CONCEPT_NAME" : "Gestation period, 42 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36428009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 762907, + "CONCEPT_NAME" : "Gestation period greater than or equal to 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "433601000124106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336958, + "CONCEPT_NAME" : "Term pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87527008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4180111, + "CONCEPT_NAME" : "Third trimester pregnancy less than 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429240000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444098, + "CONCEPT_NAME" : "Gestation period, 40 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46230007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 77, + "name" : "Gestational age (GEST) gt than 15 week", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4014149, + "CONCEPT_NAME" : "Antenatal 16 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169713003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014150, + "CONCEPT_NAME" : "Antenatal 20 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169714009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808979, + "CONCEPT_NAME" : "Antenatal 22 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861281000000109", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015141, + "CONCEPT_NAME" : "Antenatal 24 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169715005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808980, + "CONCEPT_NAME" : "Antenatal 25 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861301000000105", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014151, + "CONCEPT_NAME" : "Antenatal 30 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169717002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808981, + "CONCEPT_NAME" : "Antenatal 31 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861321000000101", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015297, + "CONCEPT_NAME" : "Antenatal 32 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169718007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015298, + "CONCEPT_NAME" : "Antenatal 34 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169719004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014434, + "CONCEPT_NAME" : "Antenatal 35 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169720005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015299, + "CONCEPT_NAME" : "Antenatal 36 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169721009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015142, + "CONCEPT_NAME" : "Antenatal 37 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169722002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014152, + "CONCEPT_NAME" : "Antenatal 38 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169723007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015300, + "CONCEPT_NAME" : "Antenatal 39 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169724001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015301, + "CONCEPT_NAME" : "Antenatal 40 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169725000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015302, + "CONCEPT_NAME" : "Antenatal 41 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169726004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014435, + "CONCEPT_NAME" : "Antenatal 42 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169727008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4178165, + "CONCEPT_NAME" : "Gestation 14 - 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428567001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181162, + "CONCEPT_NAME" : "Gestation greater than 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429715006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4324063, + "CONCEPT_NAME" : "Gestation less than 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428566005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438542, + "CONCEPT_NAME" : "Gestation less than 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313178001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45770261, + "CONCEPT_NAME" : "Gestation less than 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "925561000000100", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4049621, + "CONCEPT_NAME" : "Gestation period, 16 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15633004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4277749, + "CONCEPT_NAME" : "Gestation period, 17 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65683006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4097608, + "CONCEPT_NAME" : "Gestation period, 18 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25026004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181751, + "CONCEPT_NAME" : "Gestation period, 19 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54318006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4051642, + "CONCEPT_NAME" : "Gestation period, 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "23464008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4185780, + "CONCEPT_NAME" : "Gestation period, 21 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "41438001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4274955, + "CONCEPT_NAME" : "Gestation period, 22 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65035007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336226, + "CONCEPT_NAME" : "Gestation period, 23 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86883006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439922, + "CONCEPT_NAME" : "Gestation period, 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313179009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435640, + "CONCEPT_NAME" : "Gestation period, 25 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72544005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444023, + "CONCEPT_NAME" : "Gestation period, 26 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48688005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432430, + "CONCEPT_NAME" : "Gestation period, 27 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46906003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444461, + "CONCEPT_NAME" : "Gestation period, 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90797000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444417, + "CONCEPT_NAME" : "Gestation period, 29 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45139008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434484, + "CONCEPT_NAME" : "Gestation period, 30 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "71355009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433864, + "CONCEPT_NAME" : "Gestation period, 31 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64920003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442558, + "CONCEPT_NAME" : "Gestation period, 32 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7707000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441678, + "CONCEPT_NAME" : "Gestation period, 33 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "78395001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443874, + "CONCEPT_NAME" : "Gestation period, 34 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13763000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444267, + "CONCEPT_NAME" : "Gestation period, 35 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84132007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438543, + "CONCEPT_NAME" : "Gestation period, 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57907009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442355, + "CONCEPT_NAME" : "Gestation period, 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43697006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443871, + "CONCEPT_NAME" : "Gestation period, 38 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13798002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435655, + "CONCEPT_NAME" : "Gestation period, 39 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80487005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442769, + "CONCEPT_NAME" : "Gestation period, 41 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63503002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444067, + "CONCEPT_NAME" : "Gestation period, 42 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36428009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 762907, + "CONCEPT_NAME" : "Gestation period greater than or equal to 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "433601000124106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336958, + "CONCEPT_NAME" : "Term pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87527008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4180111, + "CONCEPT_NAME" : "Third trimester pregnancy less than 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429240000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444098, + "CONCEPT_NAME" : "Gestation period, 40 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46230007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 78, + "name" : "Gestational age (GEST) gt than 41 week", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4014435, + "CONCEPT_NAME" : "Antenatal 42 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169727008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444067, + "CONCEPT_NAME" : "Gestation period, 42 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36428009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 79, + "name" : "Gestational age (GEST) gt than 40 week", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4015302, + "CONCEPT_NAME" : "Antenatal 41 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169726004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014435, + "CONCEPT_NAME" : "Antenatal 42 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169727008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442769, + "CONCEPT_NAME" : "Gestation period, 41 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63503002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444067, + "CONCEPT_NAME" : "Gestation period, 42 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36428009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 80, + "name" : "Gestational age (GEST) gt than 39 week", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4015301, + "CONCEPT_NAME" : "Antenatal 40 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169725000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015302, + "CONCEPT_NAME" : "Antenatal 41 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169726004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014435, + "CONCEPT_NAME" : "Antenatal 42 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169727008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442769, + "CONCEPT_NAME" : "Gestation period, 41 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63503002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444067, + "CONCEPT_NAME" : "Gestation period, 42 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36428009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336958, + "CONCEPT_NAME" : "Term pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87527008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444098, + "CONCEPT_NAME" : "Gestation period, 40 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46230007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 81, + "name" : "Gestational age (GEST) gt than 16 week", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4014150, + "CONCEPT_NAME" : "Antenatal 20 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169714009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808979, + "CONCEPT_NAME" : "Antenatal 22 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861281000000109", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015141, + "CONCEPT_NAME" : "Antenatal 24 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169715005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808980, + "CONCEPT_NAME" : "Antenatal 25 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861301000000105", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014151, + "CONCEPT_NAME" : "Antenatal 30 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169717002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808981, + "CONCEPT_NAME" : "Antenatal 31 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861321000000101", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015297, + "CONCEPT_NAME" : "Antenatal 32 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169718007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015298, + "CONCEPT_NAME" : "Antenatal 34 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169719004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014434, + "CONCEPT_NAME" : "Antenatal 35 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169720005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015299, + "CONCEPT_NAME" : "Antenatal 36 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169721009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015142, + "CONCEPT_NAME" : "Antenatal 37 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169722002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014152, + "CONCEPT_NAME" : "Antenatal 38 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169723007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015300, + "CONCEPT_NAME" : "Antenatal 39 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169724001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015301, + "CONCEPT_NAME" : "Antenatal 40 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169725000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015302, + "CONCEPT_NAME" : "Antenatal 41 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169726004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014435, + "CONCEPT_NAME" : "Antenatal 42 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169727008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4178165, + "CONCEPT_NAME" : "Gestation 14 - 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428567001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181162, + "CONCEPT_NAME" : "Gestation greater than 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429715006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4324063, + "CONCEPT_NAME" : "Gestation less than 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428566005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438542, + "CONCEPT_NAME" : "Gestation less than 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313178001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45770261, + "CONCEPT_NAME" : "Gestation less than 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "925561000000100", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4277749, + "CONCEPT_NAME" : "Gestation period, 17 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65683006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4097608, + "CONCEPT_NAME" : "Gestation period, 18 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25026004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181751, + "CONCEPT_NAME" : "Gestation period, 19 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54318006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4051642, + "CONCEPT_NAME" : "Gestation period, 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "23464008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4185780, + "CONCEPT_NAME" : "Gestation period, 21 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "41438001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4274955, + "CONCEPT_NAME" : "Gestation period, 22 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65035007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336226, + "CONCEPT_NAME" : "Gestation period, 23 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86883006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439922, + "CONCEPT_NAME" : "Gestation period, 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313179009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435640, + "CONCEPT_NAME" : "Gestation period, 25 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72544005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444023, + "CONCEPT_NAME" : "Gestation period, 26 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48688005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432430, + "CONCEPT_NAME" : "Gestation period, 27 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46906003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444461, + "CONCEPT_NAME" : "Gestation period, 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90797000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444417, + "CONCEPT_NAME" : "Gestation period, 29 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45139008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434484, + "CONCEPT_NAME" : "Gestation period, 30 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "71355009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433864, + "CONCEPT_NAME" : "Gestation period, 31 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64920003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442558, + "CONCEPT_NAME" : "Gestation period, 32 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7707000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441678, + "CONCEPT_NAME" : "Gestation period, 33 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "78395001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443874, + "CONCEPT_NAME" : "Gestation period, 34 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13763000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444267, + "CONCEPT_NAME" : "Gestation period, 35 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84132007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438543, + "CONCEPT_NAME" : "Gestation period, 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57907009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442355, + "CONCEPT_NAME" : "Gestation period, 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43697006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443871, + "CONCEPT_NAME" : "Gestation period, 38 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13798002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435655, + "CONCEPT_NAME" : "Gestation period, 39 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80487005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442769, + "CONCEPT_NAME" : "Gestation period, 41 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63503002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444067, + "CONCEPT_NAME" : "Gestation period, 42 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36428009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 762907, + "CONCEPT_NAME" : "Gestation period greater than or equal to 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "433601000124106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336958, + "CONCEPT_NAME" : "Term pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87527008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4180111, + "CONCEPT_NAME" : "Third trimester pregnancy less than 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429240000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444098, + "CONCEPT_NAME" : "Gestation period, 40 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46230007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 82, + "name" : "Gestational age (GEST) gt than 17 week", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4014150, + "CONCEPT_NAME" : "Antenatal 20 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169714009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808979, + "CONCEPT_NAME" : "Antenatal 22 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861281000000109", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015141, + "CONCEPT_NAME" : "Antenatal 24 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169715005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808980, + "CONCEPT_NAME" : "Antenatal 25 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861301000000105", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014151, + "CONCEPT_NAME" : "Antenatal 30 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169717002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808981, + "CONCEPT_NAME" : "Antenatal 31 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861321000000101", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015297, + "CONCEPT_NAME" : "Antenatal 32 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169718007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015298, + "CONCEPT_NAME" : "Antenatal 34 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169719004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014434, + "CONCEPT_NAME" : "Antenatal 35 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169720005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015299, + "CONCEPT_NAME" : "Antenatal 36 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169721009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015142, + "CONCEPT_NAME" : "Antenatal 37 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169722002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014152, + "CONCEPT_NAME" : "Antenatal 38 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169723007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015300, + "CONCEPT_NAME" : "Antenatal 39 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169724001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015301, + "CONCEPT_NAME" : "Antenatal 40 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169725000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015302, + "CONCEPT_NAME" : "Antenatal 41 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169726004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014435, + "CONCEPT_NAME" : "Antenatal 42 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169727008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4178165, + "CONCEPT_NAME" : "Gestation 14 - 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428567001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181162, + "CONCEPT_NAME" : "Gestation greater than 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429715006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4324063, + "CONCEPT_NAME" : "Gestation less than 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428566005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438542, + "CONCEPT_NAME" : "Gestation less than 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313178001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45770261, + "CONCEPT_NAME" : "Gestation less than 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "925561000000100", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4097608, + "CONCEPT_NAME" : "Gestation period, 18 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25026004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181751, + "CONCEPT_NAME" : "Gestation period, 19 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54318006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4051642, + "CONCEPT_NAME" : "Gestation period, 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "23464008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4185780, + "CONCEPT_NAME" : "Gestation period, 21 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "41438001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4274955, + "CONCEPT_NAME" : "Gestation period, 22 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65035007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336226, + "CONCEPT_NAME" : "Gestation period, 23 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86883006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439922, + "CONCEPT_NAME" : "Gestation period, 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313179009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435640, + "CONCEPT_NAME" : "Gestation period, 25 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72544005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444023, + "CONCEPT_NAME" : "Gestation period, 26 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48688005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432430, + "CONCEPT_NAME" : "Gestation period, 27 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46906003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444461, + "CONCEPT_NAME" : "Gestation period, 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90797000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444417, + "CONCEPT_NAME" : "Gestation period, 29 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45139008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434484, + "CONCEPT_NAME" : "Gestation period, 30 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "71355009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433864, + "CONCEPT_NAME" : "Gestation period, 31 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64920003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442558, + "CONCEPT_NAME" : "Gestation period, 32 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7707000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441678, + "CONCEPT_NAME" : "Gestation period, 33 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "78395001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443874, + "CONCEPT_NAME" : "Gestation period, 34 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13763000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444267, + "CONCEPT_NAME" : "Gestation period, 35 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84132007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438543, + "CONCEPT_NAME" : "Gestation period, 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57907009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442355, + "CONCEPT_NAME" : "Gestation period, 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43697006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443871, + "CONCEPT_NAME" : "Gestation period, 38 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13798002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435655, + "CONCEPT_NAME" : "Gestation period, 39 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80487005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442769, + "CONCEPT_NAME" : "Gestation period, 41 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63503002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444067, + "CONCEPT_NAME" : "Gestation period, 42 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36428009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 762907, + "CONCEPT_NAME" : "Gestation period greater than or equal to 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "433601000124106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336958, + "CONCEPT_NAME" : "Term pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87527008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4180111, + "CONCEPT_NAME" : "Third trimester pregnancy less than 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429240000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444098, + "CONCEPT_NAME" : "Gestation period, 40 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46230007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 83, + "name" : "Gestational age (GEST) gt than 18 week", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4014150, + "CONCEPT_NAME" : "Antenatal 20 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169714009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808979, + "CONCEPT_NAME" : "Antenatal 22 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861281000000109", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015141, + "CONCEPT_NAME" : "Antenatal 24 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169715005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808980, + "CONCEPT_NAME" : "Antenatal 25 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861301000000105", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014151, + "CONCEPT_NAME" : "Antenatal 30 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169717002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808981, + "CONCEPT_NAME" : "Antenatal 31 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861321000000101", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015297, + "CONCEPT_NAME" : "Antenatal 32 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169718007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015298, + "CONCEPT_NAME" : "Antenatal 34 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169719004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014434, + "CONCEPT_NAME" : "Antenatal 35 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169720005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015299, + "CONCEPT_NAME" : "Antenatal 36 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169721009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015142, + "CONCEPT_NAME" : "Antenatal 37 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169722002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014152, + "CONCEPT_NAME" : "Antenatal 38 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169723007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015300, + "CONCEPT_NAME" : "Antenatal 39 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169724001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015301, + "CONCEPT_NAME" : "Antenatal 40 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169725000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015302, + "CONCEPT_NAME" : "Antenatal 41 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169726004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014435, + "CONCEPT_NAME" : "Antenatal 42 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169727008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4178165, + "CONCEPT_NAME" : "Gestation 14 - 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428567001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181162, + "CONCEPT_NAME" : "Gestation greater than 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429715006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4324063, + "CONCEPT_NAME" : "Gestation less than 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428566005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438542, + "CONCEPT_NAME" : "Gestation less than 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313178001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45770261, + "CONCEPT_NAME" : "Gestation less than 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "925561000000100", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181751, + "CONCEPT_NAME" : "Gestation period, 19 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54318006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4051642, + "CONCEPT_NAME" : "Gestation period, 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "23464008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4185780, + "CONCEPT_NAME" : "Gestation period, 21 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "41438001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4274955, + "CONCEPT_NAME" : "Gestation period, 22 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65035007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336226, + "CONCEPT_NAME" : "Gestation period, 23 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86883006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439922, + "CONCEPT_NAME" : "Gestation period, 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313179009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435640, + "CONCEPT_NAME" : "Gestation period, 25 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72544005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444023, + "CONCEPT_NAME" : "Gestation period, 26 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48688005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432430, + "CONCEPT_NAME" : "Gestation period, 27 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46906003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444461, + "CONCEPT_NAME" : "Gestation period, 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90797000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444417, + "CONCEPT_NAME" : "Gestation period, 29 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45139008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434484, + "CONCEPT_NAME" : "Gestation period, 30 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "71355009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433864, + "CONCEPT_NAME" : "Gestation period, 31 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64920003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442558, + "CONCEPT_NAME" : "Gestation period, 32 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7707000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441678, + "CONCEPT_NAME" : "Gestation period, 33 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "78395001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443874, + "CONCEPT_NAME" : "Gestation period, 34 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13763000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444267, + "CONCEPT_NAME" : "Gestation period, 35 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84132007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438543, + "CONCEPT_NAME" : "Gestation period, 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57907009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442355, + "CONCEPT_NAME" : "Gestation period, 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43697006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443871, + "CONCEPT_NAME" : "Gestation period, 38 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13798002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435655, + "CONCEPT_NAME" : "Gestation period, 39 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80487005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442769, + "CONCEPT_NAME" : "Gestation period, 41 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63503002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444067, + "CONCEPT_NAME" : "Gestation period, 42 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36428009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 762907, + "CONCEPT_NAME" : "Gestation period greater than or equal to 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "433601000124106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336958, + "CONCEPT_NAME" : "Term pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87527008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4180111, + "CONCEPT_NAME" : "Third trimester pregnancy less than 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429240000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444098, + "CONCEPT_NAME" : "Gestation period, 40 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46230007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 84, + "name" : "Gestational age (GEST) gt than 19 week", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4014150, + "CONCEPT_NAME" : "Antenatal 20 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169714009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808979, + "CONCEPT_NAME" : "Antenatal 22 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861281000000109", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015141, + "CONCEPT_NAME" : "Antenatal 24 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169715005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808980, + "CONCEPT_NAME" : "Antenatal 25 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861301000000105", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014151, + "CONCEPT_NAME" : "Antenatal 30 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169717002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808981, + "CONCEPT_NAME" : "Antenatal 31 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861321000000101", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015297, + "CONCEPT_NAME" : "Antenatal 32 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169718007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015298, + "CONCEPT_NAME" : "Antenatal 34 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169719004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014434, + "CONCEPT_NAME" : "Antenatal 35 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169720005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015299, + "CONCEPT_NAME" : "Antenatal 36 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169721009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015142, + "CONCEPT_NAME" : "Antenatal 37 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169722002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014152, + "CONCEPT_NAME" : "Antenatal 38 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169723007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015300, + "CONCEPT_NAME" : "Antenatal 39 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169724001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015301, + "CONCEPT_NAME" : "Antenatal 40 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169725000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015302, + "CONCEPT_NAME" : "Antenatal 41 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169726004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014435, + "CONCEPT_NAME" : "Antenatal 42 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169727008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4178165, + "CONCEPT_NAME" : "Gestation 14 - 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428567001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181162, + "CONCEPT_NAME" : "Gestation greater than 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429715006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438542, + "CONCEPT_NAME" : "Gestation less than 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313178001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45770261, + "CONCEPT_NAME" : "Gestation less than 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "925561000000100", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4051642, + "CONCEPT_NAME" : "Gestation period, 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "23464008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4185780, + "CONCEPT_NAME" : "Gestation period, 21 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "41438001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4274955, + "CONCEPT_NAME" : "Gestation period, 22 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65035007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336226, + "CONCEPT_NAME" : "Gestation period, 23 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86883006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439922, + "CONCEPT_NAME" : "Gestation period, 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313179009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435640, + "CONCEPT_NAME" : "Gestation period, 25 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72544005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444023, + "CONCEPT_NAME" : "Gestation period, 26 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48688005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432430, + "CONCEPT_NAME" : "Gestation period, 27 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46906003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444461, + "CONCEPT_NAME" : "Gestation period, 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90797000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444417, + "CONCEPT_NAME" : "Gestation period, 29 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45139008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434484, + "CONCEPT_NAME" : "Gestation period, 30 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "71355009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433864, + "CONCEPT_NAME" : "Gestation period, 31 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64920003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442558, + "CONCEPT_NAME" : "Gestation period, 32 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7707000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441678, + "CONCEPT_NAME" : "Gestation period, 33 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "78395001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443874, + "CONCEPT_NAME" : "Gestation period, 34 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13763000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444267, + "CONCEPT_NAME" : "Gestation period, 35 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84132007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438543, + "CONCEPT_NAME" : "Gestation period, 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57907009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442355, + "CONCEPT_NAME" : "Gestation period, 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43697006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443871, + "CONCEPT_NAME" : "Gestation period, 38 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13798002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435655, + "CONCEPT_NAME" : "Gestation period, 39 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80487005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442769, + "CONCEPT_NAME" : "Gestation period, 41 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63503002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444067, + "CONCEPT_NAME" : "Gestation period, 42 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36428009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 762907, + "CONCEPT_NAME" : "Gestation period greater than or equal to 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "433601000124106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336958, + "CONCEPT_NAME" : "Term pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87527008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4180111, + "CONCEPT_NAME" : "Third trimester pregnancy less than 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429240000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444098, + "CONCEPT_NAME" : "Gestation period, 40 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46230007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 85, + "name" : "Gestational age (GEST) gt than 20 week", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 44808979, + "CONCEPT_NAME" : "Antenatal 22 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861281000000109", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015141, + "CONCEPT_NAME" : "Antenatal 24 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169715005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808980, + "CONCEPT_NAME" : "Antenatal 25 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861301000000105", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014151, + "CONCEPT_NAME" : "Antenatal 30 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169717002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808981, + "CONCEPT_NAME" : "Antenatal 31 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861321000000101", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015297, + "CONCEPT_NAME" : "Antenatal 32 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169718007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015298, + "CONCEPT_NAME" : "Antenatal 34 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169719004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014434, + "CONCEPT_NAME" : "Antenatal 35 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169720005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015299, + "CONCEPT_NAME" : "Antenatal 36 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169721009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015142, + "CONCEPT_NAME" : "Antenatal 37 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169722002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014152, + "CONCEPT_NAME" : "Antenatal 38 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169723007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015300, + "CONCEPT_NAME" : "Antenatal 39 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169724001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015301, + "CONCEPT_NAME" : "Antenatal 40 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169725000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015302, + "CONCEPT_NAME" : "Antenatal 41 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169726004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014435, + "CONCEPT_NAME" : "Antenatal 42 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169727008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438542, + "CONCEPT_NAME" : "Gestation less than 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313178001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45770261, + "CONCEPT_NAME" : "Gestation less than 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "925561000000100", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4185780, + "CONCEPT_NAME" : "Gestation period, 21 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "41438001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4274955, + "CONCEPT_NAME" : "Gestation period, 22 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65035007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336226, + "CONCEPT_NAME" : "Gestation period, 23 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86883006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439922, + "CONCEPT_NAME" : "Gestation period, 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313179009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435640, + "CONCEPT_NAME" : "Gestation period, 25 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72544005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444023, + "CONCEPT_NAME" : "Gestation period, 26 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48688005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432430, + "CONCEPT_NAME" : "Gestation period, 27 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46906003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444461, + "CONCEPT_NAME" : "Gestation period, 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90797000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444417, + "CONCEPT_NAME" : "Gestation period, 29 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45139008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434484, + "CONCEPT_NAME" : "Gestation period, 30 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "71355009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433864, + "CONCEPT_NAME" : "Gestation period, 31 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64920003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442558, + "CONCEPT_NAME" : "Gestation period, 32 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7707000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441678, + "CONCEPT_NAME" : "Gestation period, 33 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "78395001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443874, + "CONCEPT_NAME" : "Gestation period, 34 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13763000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444267, + "CONCEPT_NAME" : "Gestation period, 35 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84132007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438543, + "CONCEPT_NAME" : "Gestation period, 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57907009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442355, + "CONCEPT_NAME" : "Gestation period, 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43697006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443871, + "CONCEPT_NAME" : "Gestation period, 38 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13798002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435655, + "CONCEPT_NAME" : "Gestation period, 39 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80487005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442769, + "CONCEPT_NAME" : "Gestation period, 41 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63503002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444067, + "CONCEPT_NAME" : "Gestation period, 42 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36428009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 762907, + "CONCEPT_NAME" : "Gestation period greater than or equal to 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "433601000124106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336958, + "CONCEPT_NAME" : "Term pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87527008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4180111, + "CONCEPT_NAME" : "Third trimester pregnancy less than 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429240000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4181162, + "CONCEPT_NAME" : "Gestation greater than 20 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429715006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444098, + "CONCEPT_NAME" : "Gestation period, 40 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46230007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 86, + "name" : "Gestational age (GEST) gt than 29 week", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4014151, + "CONCEPT_NAME" : "Antenatal 30 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169717002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808981, + "CONCEPT_NAME" : "Antenatal 31 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861321000000101", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015297, + "CONCEPT_NAME" : "Antenatal 32 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169718007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015298, + "CONCEPT_NAME" : "Antenatal 34 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169719004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014434, + "CONCEPT_NAME" : "Antenatal 35 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169720005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015299, + "CONCEPT_NAME" : "Antenatal 36 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169721009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015142, + "CONCEPT_NAME" : "Antenatal 37 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169722002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014152, + "CONCEPT_NAME" : "Antenatal 38 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169723007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015300, + "CONCEPT_NAME" : "Antenatal 39 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169724001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015301, + "CONCEPT_NAME" : "Antenatal 40 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169725000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015302, + "CONCEPT_NAME" : "Antenatal 41 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169726004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014435, + "CONCEPT_NAME" : "Antenatal 42 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169727008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434484, + "CONCEPT_NAME" : "Gestation period, 30 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "71355009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433864, + "CONCEPT_NAME" : "Gestation period, 31 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64920003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442558, + "CONCEPT_NAME" : "Gestation period, 32 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7707000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441678, + "CONCEPT_NAME" : "Gestation period, 33 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "78395001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443874, + "CONCEPT_NAME" : "Gestation period, 34 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13763000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444267, + "CONCEPT_NAME" : "Gestation period, 35 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84132007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438543, + "CONCEPT_NAME" : "Gestation period, 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57907009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442355, + "CONCEPT_NAME" : "Gestation period, 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43697006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443871, + "CONCEPT_NAME" : "Gestation period, 38 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13798002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435655, + "CONCEPT_NAME" : "Gestation period, 39 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80487005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442769, + "CONCEPT_NAME" : "Gestation period, 41 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63503002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444067, + "CONCEPT_NAME" : "Gestation period, 42 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36428009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 762907, + "CONCEPT_NAME" : "Gestation period greater than or equal to 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "433601000124106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336958, + "CONCEPT_NAME" : "Term pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87527008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4180111, + "CONCEPT_NAME" : "Third trimester pregnancy less than 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429240000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444098, + "CONCEPT_NAME" : "Gestation period, 40 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46230007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 87, + "name" : "Gestational age (GEST) gt than 21 week", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 44808979, + "CONCEPT_NAME" : "Antenatal 22 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861281000000109", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015141, + "CONCEPT_NAME" : "Antenatal 24 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169715005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808980, + "CONCEPT_NAME" : "Antenatal 25 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861301000000105", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014151, + "CONCEPT_NAME" : "Antenatal 30 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169717002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808981, + "CONCEPT_NAME" : "Antenatal 31 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861321000000101", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015297, + "CONCEPT_NAME" : "Antenatal 32 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169718007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015298, + "CONCEPT_NAME" : "Antenatal 34 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169719004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014434, + "CONCEPT_NAME" : "Antenatal 35 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169720005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015299, + "CONCEPT_NAME" : "Antenatal 36 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169721009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015142, + "CONCEPT_NAME" : "Antenatal 37 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169722002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014152, + "CONCEPT_NAME" : "Antenatal 38 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169723007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015300, + "CONCEPT_NAME" : "Antenatal 39 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169724001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015301, + "CONCEPT_NAME" : "Antenatal 40 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169725000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015302, + "CONCEPT_NAME" : "Antenatal 41 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169726004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014435, + "CONCEPT_NAME" : "Antenatal 42 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169727008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438542, + "CONCEPT_NAME" : "Gestation less than 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313178001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45770261, + "CONCEPT_NAME" : "Gestation less than 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "925561000000100", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4274955, + "CONCEPT_NAME" : "Gestation period, 22 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65035007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336226, + "CONCEPT_NAME" : "Gestation period, 23 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86883006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439922, + "CONCEPT_NAME" : "Gestation period, 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313179009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435640, + "CONCEPT_NAME" : "Gestation period, 25 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72544005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444023, + "CONCEPT_NAME" : "Gestation period, 26 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48688005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432430, + "CONCEPT_NAME" : "Gestation period, 27 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46906003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444461, + "CONCEPT_NAME" : "Gestation period, 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90797000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444417, + "CONCEPT_NAME" : "Gestation period, 29 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45139008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434484, + "CONCEPT_NAME" : "Gestation period, 30 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "71355009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433864, + "CONCEPT_NAME" : "Gestation period, 31 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64920003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442558, + "CONCEPT_NAME" : "Gestation period, 32 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7707000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441678, + "CONCEPT_NAME" : "Gestation period, 33 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "78395001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443874, + "CONCEPT_NAME" : "Gestation period, 34 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13763000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444267, + "CONCEPT_NAME" : "Gestation period, 35 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84132007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438543, + "CONCEPT_NAME" : "Gestation period, 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57907009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442355, + "CONCEPT_NAME" : "Gestation period, 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43697006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443871, + "CONCEPT_NAME" : "Gestation period, 38 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13798002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435655, + "CONCEPT_NAME" : "Gestation period, 39 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80487005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442769, + "CONCEPT_NAME" : "Gestation period, 41 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63503002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444067, + "CONCEPT_NAME" : "Gestation period, 42 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36428009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 762907, + "CONCEPT_NAME" : "Gestation period greater than or equal to 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "433601000124106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336958, + "CONCEPT_NAME" : "Term pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87527008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4180111, + "CONCEPT_NAME" : "Third trimester pregnancy less than 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429240000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444098, + "CONCEPT_NAME" : "Gestation period, 40 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46230007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 88, + "name" : "Gestational age (GEST) gt than 30 week", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 44808981, + "CONCEPT_NAME" : "Antenatal 31 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861321000000101", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015297, + "CONCEPT_NAME" : "Antenatal 32 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169718007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015298, + "CONCEPT_NAME" : "Antenatal 34 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169719004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014434, + "CONCEPT_NAME" : "Antenatal 35 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169720005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015299, + "CONCEPT_NAME" : "Antenatal 36 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169721009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015142, + "CONCEPT_NAME" : "Antenatal 37 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169722002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014152, + "CONCEPT_NAME" : "Antenatal 38 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169723007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015300, + "CONCEPT_NAME" : "Antenatal 39 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169724001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015301, + "CONCEPT_NAME" : "Antenatal 40 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169725000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015302, + "CONCEPT_NAME" : "Antenatal 41 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169726004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014435, + "CONCEPT_NAME" : "Antenatal 42 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169727008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433864, + "CONCEPT_NAME" : "Gestation period, 31 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64920003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442558, + "CONCEPT_NAME" : "Gestation period, 32 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7707000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441678, + "CONCEPT_NAME" : "Gestation period, 33 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "78395001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443874, + "CONCEPT_NAME" : "Gestation period, 34 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13763000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444267, + "CONCEPT_NAME" : "Gestation period, 35 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84132007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438543, + "CONCEPT_NAME" : "Gestation period, 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57907009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442355, + "CONCEPT_NAME" : "Gestation period, 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43697006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443871, + "CONCEPT_NAME" : "Gestation period, 38 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13798002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435655, + "CONCEPT_NAME" : "Gestation period, 39 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80487005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442769, + "CONCEPT_NAME" : "Gestation period, 41 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63503002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444067, + "CONCEPT_NAME" : "Gestation period, 42 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36428009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 762907, + "CONCEPT_NAME" : "Gestation period greater than or equal to 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "433601000124106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336958, + "CONCEPT_NAME" : "Term pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87527008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4180111, + "CONCEPT_NAME" : "Third trimester pregnancy less than 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429240000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444098, + "CONCEPT_NAME" : "Gestation period, 40 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46230007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 89, + "name" : "Gestational age (GEST) gt than 38 week", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4015300, + "CONCEPT_NAME" : "Antenatal 39 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169724001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015301, + "CONCEPT_NAME" : "Antenatal 40 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169725000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015302, + "CONCEPT_NAME" : "Antenatal 41 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169726004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014435, + "CONCEPT_NAME" : "Antenatal 42 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169727008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435655, + "CONCEPT_NAME" : "Gestation period, 39 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80487005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442769, + "CONCEPT_NAME" : "Gestation period, 41 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63503002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444067, + "CONCEPT_NAME" : "Gestation period, 42 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36428009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336958, + "CONCEPT_NAME" : "Term pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87527008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444098, + "CONCEPT_NAME" : "Gestation period, 40 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46230007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 90, + "name" : "Gestational age (GEST) gt than 37 week", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4014152, + "CONCEPT_NAME" : "Antenatal 38 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169723007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015300, + "CONCEPT_NAME" : "Antenatal 39 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169724001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015301, + "CONCEPT_NAME" : "Antenatal 40 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169725000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015302, + "CONCEPT_NAME" : "Antenatal 41 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169726004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014435, + "CONCEPT_NAME" : "Antenatal 42 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169727008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443871, + "CONCEPT_NAME" : "Gestation period, 38 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13798002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435655, + "CONCEPT_NAME" : "Gestation period, 39 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80487005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442769, + "CONCEPT_NAME" : "Gestation period, 41 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63503002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444067, + "CONCEPT_NAME" : "Gestation period, 42 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36428009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336958, + "CONCEPT_NAME" : "Term pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87527008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444098, + "CONCEPT_NAME" : "Gestation period, 40 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46230007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 91, + "name" : "Gestational age (GEST) gt than 36 week", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4015142, + "CONCEPT_NAME" : "Antenatal 37 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169722002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014152, + "CONCEPT_NAME" : "Antenatal 38 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169723007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015300, + "CONCEPT_NAME" : "Antenatal 39 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169724001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015301, + "CONCEPT_NAME" : "Antenatal 40 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169725000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015302, + "CONCEPT_NAME" : "Antenatal 41 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169726004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014435, + "CONCEPT_NAME" : "Antenatal 42 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169727008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442355, + "CONCEPT_NAME" : "Gestation period, 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43697006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443871, + "CONCEPT_NAME" : "Gestation period, 38 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13798002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435655, + "CONCEPT_NAME" : "Gestation period, 39 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80487005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442769, + "CONCEPT_NAME" : "Gestation period, 41 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63503002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444067, + "CONCEPT_NAME" : "Gestation period, 42 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36428009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 762907, + "CONCEPT_NAME" : "Gestation period greater than or equal to 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "433601000124106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336958, + "CONCEPT_NAME" : "Term pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87527008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444098, + "CONCEPT_NAME" : "Gestation period, 40 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46230007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 92, + "name" : "Gestational age (GEST) gt than 35 week", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4015299, + "CONCEPT_NAME" : "Antenatal 36 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169721009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015142, + "CONCEPT_NAME" : "Antenatal 37 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169722002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014152, + "CONCEPT_NAME" : "Antenatal 38 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169723007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015300, + "CONCEPT_NAME" : "Antenatal 39 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169724001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015301, + "CONCEPT_NAME" : "Antenatal 40 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169725000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015302, + "CONCEPT_NAME" : "Antenatal 41 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169726004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014435, + "CONCEPT_NAME" : "Antenatal 42 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169727008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438543, + "CONCEPT_NAME" : "Gestation period, 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57907009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442355, + "CONCEPT_NAME" : "Gestation period, 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43697006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443871, + "CONCEPT_NAME" : "Gestation period, 38 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13798002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435655, + "CONCEPT_NAME" : "Gestation period, 39 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80487005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442769, + "CONCEPT_NAME" : "Gestation period, 41 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63503002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444067, + "CONCEPT_NAME" : "Gestation period, 42 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36428009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 762907, + "CONCEPT_NAME" : "Gestation period greater than or equal to 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "433601000124106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336958, + "CONCEPT_NAME" : "Term pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87527008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444098, + "CONCEPT_NAME" : "Gestation period, 40 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46230007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 93, + "name" : "Gestational age (GEST) gt than 34 week", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4014434, + "CONCEPT_NAME" : "Antenatal 35 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169720005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015299, + "CONCEPT_NAME" : "Antenatal 36 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169721009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015142, + "CONCEPT_NAME" : "Antenatal 37 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169722002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014152, + "CONCEPT_NAME" : "Antenatal 38 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169723007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015300, + "CONCEPT_NAME" : "Antenatal 39 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169724001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015301, + "CONCEPT_NAME" : "Antenatal 40 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169725000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015302, + "CONCEPT_NAME" : "Antenatal 41 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169726004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014435, + "CONCEPT_NAME" : "Antenatal 42 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169727008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444267, + "CONCEPT_NAME" : "Gestation period, 35 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84132007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438543, + "CONCEPT_NAME" : "Gestation period, 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57907009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442355, + "CONCEPT_NAME" : "Gestation period, 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43697006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443871, + "CONCEPT_NAME" : "Gestation period, 38 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13798002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435655, + "CONCEPT_NAME" : "Gestation period, 39 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80487005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442769, + "CONCEPT_NAME" : "Gestation period, 41 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63503002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444067, + "CONCEPT_NAME" : "Gestation period, 42 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36428009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 762907, + "CONCEPT_NAME" : "Gestation period greater than or equal to 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "433601000124106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336958, + "CONCEPT_NAME" : "Term pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87527008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4180111, + "CONCEPT_NAME" : "Third trimester pregnancy less than 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429240000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444098, + "CONCEPT_NAME" : "Gestation period, 40 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46230007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 94, + "name" : "Gestational age (GEST) gt than 22 week", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4015141, + "CONCEPT_NAME" : "Antenatal 24 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169715005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808980, + "CONCEPT_NAME" : "Antenatal 25 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861301000000105", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014151, + "CONCEPT_NAME" : "Antenatal 30 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169717002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808981, + "CONCEPT_NAME" : "Antenatal 31 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861321000000101", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015297, + "CONCEPT_NAME" : "Antenatal 32 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169718007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015298, + "CONCEPT_NAME" : "Antenatal 34 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169719004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014434, + "CONCEPT_NAME" : "Antenatal 35 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169720005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015299, + "CONCEPT_NAME" : "Antenatal 36 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169721009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015142, + "CONCEPT_NAME" : "Antenatal 37 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169722002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014152, + "CONCEPT_NAME" : "Antenatal 38 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169723007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015300, + "CONCEPT_NAME" : "Antenatal 39 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169724001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015301, + "CONCEPT_NAME" : "Antenatal 40 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169725000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015302, + "CONCEPT_NAME" : "Antenatal 41 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169726004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014435, + "CONCEPT_NAME" : "Antenatal 42 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169727008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438542, + "CONCEPT_NAME" : "Gestation less than 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313178001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45770261, + "CONCEPT_NAME" : "Gestation less than 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "925561000000100", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336226, + "CONCEPT_NAME" : "Gestation period, 23 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86883006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439922, + "CONCEPT_NAME" : "Gestation period, 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313179009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435640, + "CONCEPT_NAME" : "Gestation period, 25 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72544005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444023, + "CONCEPT_NAME" : "Gestation period, 26 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48688005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432430, + "CONCEPT_NAME" : "Gestation period, 27 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46906003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444461, + "CONCEPT_NAME" : "Gestation period, 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90797000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444417, + "CONCEPT_NAME" : "Gestation period, 29 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45139008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434484, + "CONCEPT_NAME" : "Gestation period, 30 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "71355009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433864, + "CONCEPT_NAME" : "Gestation period, 31 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64920003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442558, + "CONCEPT_NAME" : "Gestation period, 32 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7707000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441678, + "CONCEPT_NAME" : "Gestation period, 33 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "78395001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443874, + "CONCEPT_NAME" : "Gestation period, 34 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13763000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444267, + "CONCEPT_NAME" : "Gestation period, 35 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84132007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438543, + "CONCEPT_NAME" : "Gestation period, 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57907009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442355, + "CONCEPT_NAME" : "Gestation period, 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43697006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443871, + "CONCEPT_NAME" : "Gestation period, 38 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13798002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435655, + "CONCEPT_NAME" : "Gestation period, 39 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80487005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442769, + "CONCEPT_NAME" : "Gestation period, 41 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63503002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444067, + "CONCEPT_NAME" : "Gestation period, 42 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36428009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 762907, + "CONCEPT_NAME" : "Gestation period greater than or equal to 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "433601000124106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336958, + "CONCEPT_NAME" : "Term pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87527008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4180111, + "CONCEPT_NAME" : "Third trimester pregnancy less than 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429240000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444098, + "CONCEPT_NAME" : "Gestation period, 40 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46230007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 95, + "name" : "Gestational age (GEST) gt than 23 week", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4015141, + "CONCEPT_NAME" : "Antenatal 24 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169715005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808980, + "CONCEPT_NAME" : "Antenatal 25 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861301000000105", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014151, + "CONCEPT_NAME" : "Antenatal 30 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169717002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808981, + "CONCEPT_NAME" : "Antenatal 31 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861321000000101", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015297, + "CONCEPT_NAME" : "Antenatal 32 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169718007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015298, + "CONCEPT_NAME" : "Antenatal 34 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169719004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014434, + "CONCEPT_NAME" : "Antenatal 35 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169720005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015299, + "CONCEPT_NAME" : "Antenatal 36 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169721009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015142, + "CONCEPT_NAME" : "Antenatal 37 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169722002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014152, + "CONCEPT_NAME" : "Antenatal 38 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169723007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015300, + "CONCEPT_NAME" : "Antenatal 39 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169724001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015301, + "CONCEPT_NAME" : "Antenatal 40 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169725000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015302, + "CONCEPT_NAME" : "Antenatal 41 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169726004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014435, + "CONCEPT_NAME" : "Antenatal 42 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169727008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45770261, + "CONCEPT_NAME" : "Gestation less than 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "925561000000100", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439922, + "CONCEPT_NAME" : "Gestation period, 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "313179009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435640, + "CONCEPT_NAME" : "Gestation period, 25 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72544005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444023, + "CONCEPT_NAME" : "Gestation period, 26 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48688005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432430, + "CONCEPT_NAME" : "Gestation period, 27 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46906003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444461, + "CONCEPT_NAME" : "Gestation period, 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90797000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444417, + "CONCEPT_NAME" : "Gestation period, 29 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45139008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434484, + "CONCEPT_NAME" : "Gestation period, 30 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "71355009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433864, + "CONCEPT_NAME" : "Gestation period, 31 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64920003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442558, + "CONCEPT_NAME" : "Gestation period, 32 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7707000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441678, + "CONCEPT_NAME" : "Gestation period, 33 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "78395001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443874, + "CONCEPT_NAME" : "Gestation period, 34 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13763000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444267, + "CONCEPT_NAME" : "Gestation period, 35 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84132007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438543, + "CONCEPT_NAME" : "Gestation period, 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57907009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442355, + "CONCEPT_NAME" : "Gestation period, 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43697006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443871, + "CONCEPT_NAME" : "Gestation period, 38 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13798002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435655, + "CONCEPT_NAME" : "Gestation period, 39 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80487005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442769, + "CONCEPT_NAME" : "Gestation period, 41 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63503002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444067, + "CONCEPT_NAME" : "Gestation period, 42 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36428009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 762907, + "CONCEPT_NAME" : "Gestation period greater than or equal to 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "433601000124106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336958, + "CONCEPT_NAME" : "Term pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87527008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4180111, + "CONCEPT_NAME" : "Third trimester pregnancy less than 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429240000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444098, + "CONCEPT_NAME" : "Gestation period, 40 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46230007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 96, + "name" : "Gestational age (GEST) gt than 24 week", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 44808980, + "CONCEPT_NAME" : "Antenatal 25 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861301000000105", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014151, + "CONCEPT_NAME" : "Antenatal 30 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169717002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808981, + "CONCEPT_NAME" : "Antenatal 31 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861321000000101", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015297, + "CONCEPT_NAME" : "Antenatal 32 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169718007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015298, + "CONCEPT_NAME" : "Antenatal 34 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169719004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014434, + "CONCEPT_NAME" : "Antenatal 35 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169720005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015299, + "CONCEPT_NAME" : "Antenatal 36 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169721009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015142, + "CONCEPT_NAME" : "Antenatal 37 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169722002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014152, + "CONCEPT_NAME" : "Antenatal 38 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169723007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015300, + "CONCEPT_NAME" : "Antenatal 39 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169724001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015301, + "CONCEPT_NAME" : "Antenatal 40 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169725000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015302, + "CONCEPT_NAME" : "Antenatal 41 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169726004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014435, + "CONCEPT_NAME" : "Antenatal 42 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169727008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45770261, + "CONCEPT_NAME" : "Gestation less than 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "925561000000100", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435640, + "CONCEPT_NAME" : "Gestation period, 25 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72544005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444023, + "CONCEPT_NAME" : "Gestation period, 26 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48688005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432430, + "CONCEPT_NAME" : "Gestation period, 27 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46906003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444461, + "CONCEPT_NAME" : "Gestation period, 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90797000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444417, + "CONCEPT_NAME" : "Gestation period, 29 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45139008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434484, + "CONCEPT_NAME" : "Gestation period, 30 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "71355009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433864, + "CONCEPT_NAME" : "Gestation period, 31 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64920003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442558, + "CONCEPT_NAME" : "Gestation period, 32 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7707000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441678, + "CONCEPT_NAME" : "Gestation period, 33 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "78395001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443874, + "CONCEPT_NAME" : "Gestation period, 34 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13763000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444267, + "CONCEPT_NAME" : "Gestation period, 35 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84132007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438543, + "CONCEPT_NAME" : "Gestation period, 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57907009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442355, + "CONCEPT_NAME" : "Gestation period, 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43697006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443871, + "CONCEPT_NAME" : "Gestation period, 38 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13798002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435655, + "CONCEPT_NAME" : "Gestation period, 39 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80487005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442769, + "CONCEPT_NAME" : "Gestation period, 41 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63503002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444067, + "CONCEPT_NAME" : "Gestation period, 42 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36428009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 762907, + "CONCEPT_NAME" : "Gestation period greater than or equal to 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "433601000124106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336958, + "CONCEPT_NAME" : "Term pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87527008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4180111, + "CONCEPT_NAME" : "Third trimester pregnancy less than 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429240000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444098, + "CONCEPT_NAME" : "Gestation period, 40 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46230007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 97, + "name" : "Gestational age (GEST) gt than 25 week", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4014151, + "CONCEPT_NAME" : "Antenatal 30 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169717002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808981, + "CONCEPT_NAME" : "Antenatal 31 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861321000000101", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015297, + "CONCEPT_NAME" : "Antenatal 32 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169718007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015298, + "CONCEPT_NAME" : "Antenatal 34 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169719004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014434, + "CONCEPT_NAME" : "Antenatal 35 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169720005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015299, + "CONCEPT_NAME" : "Antenatal 36 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169721009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015142, + "CONCEPT_NAME" : "Antenatal 37 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169722002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014152, + "CONCEPT_NAME" : "Antenatal 38 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169723007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015300, + "CONCEPT_NAME" : "Antenatal 39 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169724001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015301, + "CONCEPT_NAME" : "Antenatal 40 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169725000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015302, + "CONCEPT_NAME" : "Antenatal 41 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169726004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014435, + "CONCEPT_NAME" : "Antenatal 42 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169727008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45770261, + "CONCEPT_NAME" : "Gestation less than 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "925561000000100", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444023, + "CONCEPT_NAME" : "Gestation period, 26 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48688005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432430, + "CONCEPT_NAME" : "Gestation period, 27 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46906003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444461, + "CONCEPT_NAME" : "Gestation period, 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90797000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444417, + "CONCEPT_NAME" : "Gestation period, 29 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45139008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434484, + "CONCEPT_NAME" : "Gestation period, 30 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "71355009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433864, + "CONCEPT_NAME" : "Gestation period, 31 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64920003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442558, + "CONCEPT_NAME" : "Gestation period, 32 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7707000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441678, + "CONCEPT_NAME" : "Gestation period, 33 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "78395001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443874, + "CONCEPT_NAME" : "Gestation period, 34 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13763000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444267, + "CONCEPT_NAME" : "Gestation period, 35 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84132007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438543, + "CONCEPT_NAME" : "Gestation period, 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57907009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442355, + "CONCEPT_NAME" : "Gestation period, 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43697006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443871, + "CONCEPT_NAME" : "Gestation period, 38 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13798002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435655, + "CONCEPT_NAME" : "Gestation period, 39 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80487005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442769, + "CONCEPT_NAME" : "Gestation period, 41 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63503002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444067, + "CONCEPT_NAME" : "Gestation period, 42 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36428009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 762907, + "CONCEPT_NAME" : "Gestation period greater than or equal to 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "433601000124106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336958, + "CONCEPT_NAME" : "Term pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87527008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4180111, + "CONCEPT_NAME" : "Third trimester pregnancy less than 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429240000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444098, + "CONCEPT_NAME" : "Gestation period, 40 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46230007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 98, + "name" : "Gestational age (GEST) gt than 26 week", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4014151, + "CONCEPT_NAME" : "Antenatal 30 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169717002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808981, + "CONCEPT_NAME" : "Antenatal 31 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861321000000101", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015297, + "CONCEPT_NAME" : "Antenatal 32 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169718007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015298, + "CONCEPT_NAME" : "Antenatal 34 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169719004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014434, + "CONCEPT_NAME" : "Antenatal 35 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169720005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015299, + "CONCEPT_NAME" : "Antenatal 36 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169721009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015142, + "CONCEPT_NAME" : "Antenatal 37 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169722002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014152, + "CONCEPT_NAME" : "Antenatal 38 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169723007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015300, + "CONCEPT_NAME" : "Antenatal 39 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169724001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015301, + "CONCEPT_NAME" : "Antenatal 40 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169725000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015302, + "CONCEPT_NAME" : "Antenatal 41 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169726004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014435, + "CONCEPT_NAME" : "Antenatal 42 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169727008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45770261, + "CONCEPT_NAME" : "Gestation less than 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "925561000000100", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432430, + "CONCEPT_NAME" : "Gestation period, 27 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46906003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444461, + "CONCEPT_NAME" : "Gestation period, 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90797000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444417, + "CONCEPT_NAME" : "Gestation period, 29 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45139008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434484, + "CONCEPT_NAME" : "Gestation period, 30 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "71355009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433864, + "CONCEPT_NAME" : "Gestation period, 31 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64920003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442558, + "CONCEPT_NAME" : "Gestation period, 32 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7707000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441678, + "CONCEPT_NAME" : "Gestation period, 33 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "78395001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443874, + "CONCEPT_NAME" : "Gestation period, 34 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13763000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444267, + "CONCEPT_NAME" : "Gestation period, 35 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84132007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438543, + "CONCEPT_NAME" : "Gestation period, 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57907009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442355, + "CONCEPT_NAME" : "Gestation period, 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43697006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443871, + "CONCEPT_NAME" : "Gestation period, 38 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13798002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435655, + "CONCEPT_NAME" : "Gestation period, 39 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80487005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442769, + "CONCEPT_NAME" : "Gestation period, 41 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63503002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444067, + "CONCEPT_NAME" : "Gestation period, 42 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36428009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 762907, + "CONCEPT_NAME" : "Gestation period greater than or equal to 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "433601000124106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336958, + "CONCEPT_NAME" : "Term pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87527008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4180111, + "CONCEPT_NAME" : "Third trimester pregnancy less than 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429240000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444098, + "CONCEPT_NAME" : "Gestation period, 40 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46230007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 99, + "name" : "Gestational age (GEST) gt than 27 week", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4014151, + "CONCEPT_NAME" : "Antenatal 30 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169717002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808981, + "CONCEPT_NAME" : "Antenatal 31 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861321000000101", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015297, + "CONCEPT_NAME" : "Antenatal 32 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169718007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015298, + "CONCEPT_NAME" : "Antenatal 34 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169719004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014434, + "CONCEPT_NAME" : "Antenatal 35 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169720005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015299, + "CONCEPT_NAME" : "Antenatal 36 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169721009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015142, + "CONCEPT_NAME" : "Antenatal 37 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169722002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014152, + "CONCEPT_NAME" : "Antenatal 38 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169723007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015300, + "CONCEPT_NAME" : "Antenatal 39 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169724001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015301, + "CONCEPT_NAME" : "Antenatal 40 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169725000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015302, + "CONCEPT_NAME" : "Antenatal 41 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169726004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014435, + "CONCEPT_NAME" : "Antenatal 42 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169727008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444461, + "CONCEPT_NAME" : "Gestation period, 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90797000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444417, + "CONCEPT_NAME" : "Gestation period, 29 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45139008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434484, + "CONCEPT_NAME" : "Gestation period, 30 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "71355009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433864, + "CONCEPT_NAME" : "Gestation period, 31 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64920003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442558, + "CONCEPT_NAME" : "Gestation period, 32 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7707000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441678, + "CONCEPT_NAME" : "Gestation period, 33 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "78395001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443874, + "CONCEPT_NAME" : "Gestation period, 34 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13763000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444267, + "CONCEPT_NAME" : "Gestation period, 35 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84132007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438543, + "CONCEPT_NAME" : "Gestation period, 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57907009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442355, + "CONCEPT_NAME" : "Gestation period, 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43697006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443871, + "CONCEPT_NAME" : "Gestation period, 38 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13798002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435655, + "CONCEPT_NAME" : "Gestation period, 39 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80487005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442769, + "CONCEPT_NAME" : "Gestation period, 41 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63503002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444067, + "CONCEPT_NAME" : "Gestation period, 42 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36428009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 762907, + "CONCEPT_NAME" : "Gestation period greater than or equal to 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "433601000124106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336958, + "CONCEPT_NAME" : "Term pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87527008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4180111, + "CONCEPT_NAME" : "Third trimester pregnancy less than 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429240000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444098, + "CONCEPT_NAME" : "Gestation period, 40 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46230007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 100, + "name" : "Gestational age (GEST) gt than 28 week", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4014151, + "CONCEPT_NAME" : "Antenatal 30 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169717002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44808981, + "CONCEPT_NAME" : "Antenatal 31 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "861321000000101", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015297, + "CONCEPT_NAME" : "Antenatal 32 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169718007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015298, + "CONCEPT_NAME" : "Antenatal 34 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169719004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014434, + "CONCEPT_NAME" : "Antenatal 35 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169720005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015299, + "CONCEPT_NAME" : "Antenatal 36 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169721009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015142, + "CONCEPT_NAME" : "Antenatal 37 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169722002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014152, + "CONCEPT_NAME" : "Antenatal 38 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169723007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015300, + "CONCEPT_NAME" : "Antenatal 39 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169724001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015301, + "CONCEPT_NAME" : "Antenatal 40 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169725000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015302, + "CONCEPT_NAME" : "Antenatal 41 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169726004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014435, + "CONCEPT_NAME" : "Antenatal 42 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169727008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444417, + "CONCEPT_NAME" : "Gestation period, 29 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45139008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434484, + "CONCEPT_NAME" : "Gestation period, 30 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "71355009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433864, + "CONCEPT_NAME" : "Gestation period, 31 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64920003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442558, + "CONCEPT_NAME" : "Gestation period, 32 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7707000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441678, + "CONCEPT_NAME" : "Gestation period, 33 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "78395001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443874, + "CONCEPT_NAME" : "Gestation period, 34 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13763000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444267, + "CONCEPT_NAME" : "Gestation period, 35 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84132007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438543, + "CONCEPT_NAME" : "Gestation period, 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57907009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442355, + "CONCEPT_NAME" : "Gestation period, 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43697006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443871, + "CONCEPT_NAME" : "Gestation period, 38 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13798002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435655, + "CONCEPT_NAME" : "Gestation period, 39 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80487005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442769, + "CONCEPT_NAME" : "Gestation period, 41 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63503002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444067, + "CONCEPT_NAME" : "Gestation period, 42 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36428009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 762907, + "CONCEPT_NAME" : "Gestation period greater than or equal to 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "433601000124106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336958, + "CONCEPT_NAME" : "Term pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87527008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4180111, + "CONCEPT_NAME" : "Third trimester pregnancy less than 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429240000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444098, + "CONCEPT_NAME" : "Gestation period, 40 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46230007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 101, + "name" : "Gestational age (GEST) gt than 31 week", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4015297, + "CONCEPT_NAME" : "Antenatal 32 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169718007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015298, + "CONCEPT_NAME" : "Antenatal 34 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169719004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014434, + "CONCEPT_NAME" : "Antenatal 35 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169720005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015299, + "CONCEPT_NAME" : "Antenatal 36 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169721009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015142, + "CONCEPT_NAME" : "Antenatal 37 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169722002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014152, + "CONCEPT_NAME" : "Antenatal 38 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169723007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015300, + "CONCEPT_NAME" : "Antenatal 39 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169724001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015301, + "CONCEPT_NAME" : "Antenatal 40 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169725000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015302, + "CONCEPT_NAME" : "Antenatal 41 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169726004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014435, + "CONCEPT_NAME" : "Antenatal 42 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169727008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442558, + "CONCEPT_NAME" : "Gestation period, 32 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7707000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441678, + "CONCEPT_NAME" : "Gestation period, 33 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "78395001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443874, + "CONCEPT_NAME" : "Gestation period, 34 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13763000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444267, + "CONCEPT_NAME" : "Gestation period, 35 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84132007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438543, + "CONCEPT_NAME" : "Gestation period, 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57907009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442355, + "CONCEPT_NAME" : "Gestation period, 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43697006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443871, + "CONCEPT_NAME" : "Gestation period, 38 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13798002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435655, + "CONCEPT_NAME" : "Gestation period, 39 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80487005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442769, + "CONCEPT_NAME" : "Gestation period, 41 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63503002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444067, + "CONCEPT_NAME" : "Gestation period, 42 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36428009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 762907, + "CONCEPT_NAME" : "Gestation period greater than or equal to 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "433601000124106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336958, + "CONCEPT_NAME" : "Term pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87527008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4180111, + "CONCEPT_NAME" : "Third trimester pregnancy less than 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429240000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444098, + "CONCEPT_NAME" : "Gestation period, 40 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46230007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 102, + "name" : "Gestational age (GEST) gt than 32 week", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4015298, + "CONCEPT_NAME" : "Antenatal 34 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169719004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014434, + "CONCEPT_NAME" : "Antenatal 35 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169720005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015299, + "CONCEPT_NAME" : "Antenatal 36 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169721009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015142, + "CONCEPT_NAME" : "Antenatal 37 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169722002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014152, + "CONCEPT_NAME" : "Antenatal 38 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169723007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015300, + "CONCEPT_NAME" : "Antenatal 39 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169724001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015301, + "CONCEPT_NAME" : "Antenatal 40 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169725000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015302, + "CONCEPT_NAME" : "Antenatal 41 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169726004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014435, + "CONCEPT_NAME" : "Antenatal 42 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169727008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441678, + "CONCEPT_NAME" : "Gestation period, 33 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "78395001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443874, + "CONCEPT_NAME" : "Gestation period, 34 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13763000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444267, + "CONCEPT_NAME" : "Gestation period, 35 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84132007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438543, + "CONCEPT_NAME" : "Gestation period, 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57907009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442355, + "CONCEPT_NAME" : "Gestation period, 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43697006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443871, + "CONCEPT_NAME" : "Gestation period, 38 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13798002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435655, + "CONCEPT_NAME" : "Gestation period, 39 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80487005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442769, + "CONCEPT_NAME" : "Gestation period, 41 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63503002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444067, + "CONCEPT_NAME" : "Gestation period, 42 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36428009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 762907, + "CONCEPT_NAME" : "Gestation period greater than or equal to 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "433601000124106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336958, + "CONCEPT_NAME" : "Term pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87527008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4180111, + "CONCEPT_NAME" : "Third trimester pregnancy less than 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429240000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444098, + "CONCEPT_NAME" : "Gestation period, 40 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46230007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 103, + "name" : "Gestational age (GEST) gt than 33 week", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4015298, + "CONCEPT_NAME" : "Antenatal 34 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169719004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014434, + "CONCEPT_NAME" : "Antenatal 35 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169720005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015299, + "CONCEPT_NAME" : "Antenatal 36 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169721009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015142, + "CONCEPT_NAME" : "Antenatal 37 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169722002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014152, + "CONCEPT_NAME" : "Antenatal 38 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169723007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015300, + "CONCEPT_NAME" : "Antenatal 39 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169724001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015301, + "CONCEPT_NAME" : "Antenatal 40 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169725000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015302, + "CONCEPT_NAME" : "Antenatal 41 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169726004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014435, + "CONCEPT_NAME" : "Antenatal 42 week examination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169727008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443874, + "CONCEPT_NAME" : "Gestation period, 34 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13763000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444267, + "CONCEPT_NAME" : "Gestation period, 35 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "84132007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438543, + "CONCEPT_NAME" : "Gestation period, 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57907009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442355, + "CONCEPT_NAME" : "Gestation period, 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "43697006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443871, + "CONCEPT_NAME" : "Gestation period, 38 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "13798002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435655, + "CONCEPT_NAME" : "Gestation period, 39 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80487005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442769, + "CONCEPT_NAME" : "Gestation period, 41 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "63503002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444067, + "CONCEPT_NAME" : "Gestation period, 42 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36428009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 762907, + "CONCEPT_NAME" : "Gestation period greater than or equal to 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "433601000124106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336958, + "CONCEPT_NAME" : "Term pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87527008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4180111, + "CONCEPT_NAME" : "Third trimester pregnancy less than 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429240000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444098, + "CONCEPT_NAME" : "Gestation period, 40 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46230007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 104, + "name" : "Ectopic pregnancy (ECT)", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4215648, + "CONCEPT_NAME" : "Acute renal failure following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "71909003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4312095, + "CONCEPT_NAME" : "Afibrinogenemia following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "85796009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3655216, + "CONCEPT_NAME" : "Air embolism due to and following ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "860689000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3655215, + "CONCEPT_NAME" : "Air embolism due to and following molar pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "860688008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3655206, + "CONCEPT_NAME" : "Amniotic fluid embolism due to and following ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "860677002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3655205, + "CONCEPT_NAME" : "Amniotic fluid embolism due to and following molar pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "860676006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4152444, + "CONCEPT_NAME" : "Antenatal ultrasound confirms ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "370382007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45763635, + "CONCEPT_NAME" : "Aspiration of ectopic pregnancy from cornu of fallopian tube", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "700073007", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3655208, + "CONCEPT_NAME" : "Blood clot embolism due to and following ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "860679004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3655207, + "CONCEPT_NAME" : "Blood clot embolism due to and following molar pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "860678007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4147060, + "CONCEPT_NAME" : "Cerebral anoxia following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "30243004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 44783183, + "CONCEPT_NAME" : "Combined intrauterine and ovarian pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "699240001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4135209, + "CONCEPT_NAME" : "Combined pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "31601007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40483581, + "CONCEPT_NAME" : "Combined tubal and intrauterine pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "442478007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440464, + "CONCEPT_NAME" : "Complication following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "2989004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4100193, + "CONCEPT_NAME" : "Damage to bladder following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "27552001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4185718, + "CONCEPT_NAME" : "Damage to bowel following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "44017002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4232953, + "CONCEPT_NAME" : "Damage to broad ligament following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "89573004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4173946, + "CONCEPT_NAME" : "Damage to cervix following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "42294002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42537767, + "CONCEPT_NAME" : "Damage to pelvic organs and tissues following ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "737329004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42537768, + "CONCEPT_NAME" : "Damage to pelvic organs and tissues following molar pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "737330009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4174543, + "CONCEPT_NAME" : "Damage to periurethral tissue following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "42536002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4194053, + "CONCEPT_NAME" : "Damage to uterus following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "79333004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4216382, + "CONCEPT_NAME" : "Damage to vagina following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72209007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4266839, + "CONCEPT_NAME" : "Defibrination syndrome following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "62698000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42537762, + "CONCEPT_NAME" : "Delayed hemorrhage due to and following ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "737322008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42537770, + "CONCEPT_NAME" : "Disorder of vein following ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "737332001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42537771, + "CONCEPT_NAME" : "Disorder of vein following molar pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "737333006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437611, + "CONCEPT_NAME" : "Ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "34801009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4276942, + "CONCEPT_NAME" : "Electrolyte imbalance following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6509007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42539701, + "CONCEPT_NAME" : "Embolism due to and following ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "737324009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42537764, + "CONCEPT_NAME" : "Embolism due to and following molar pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "737325005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4066014, + "CONCEPT_NAME" : "Endometritis following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "172001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42537763, + "CONCEPT_NAME" : "Excessive hemorrhage due to and following ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "737323003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40493226, + "CONCEPT_NAME" : "Excision of fallopian tube and surgical removal of ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "445912000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3655214, + "CONCEPT_NAME" : "Fat embolism due to and following ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "860687003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3655213, + "CONCEPT_NAME" : "Fat embolism due to and following molar pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "860686007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4149029, + "CONCEPT_NAME" : "Intraligamentous pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "35656003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4066151, + "CONCEPT_NAME" : "Intraperitoneal pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "17285009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4063939, + "CONCEPT_NAME" : "Intravascular hemolysis following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "20084001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42872572, + "CONCEPT_NAME" : "Laparoscopic excision of ectopic ovarian pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "450563004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42872571, + "CONCEPT_NAME" : "Laparoscopic excision of ruptured ectopic tubal pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "450562009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4112952, + "CONCEPT_NAME" : "Membranous pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198624007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4113218, + "CONCEPT_NAME" : "Mesenteric pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198626009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530979, + "CONCEPT_NAME" : "Miscarriage of tubal ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609525000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4107071, + "CONCEPT_NAME" : "Oliguria following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "29908007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 200153, + "CONCEPT_NAME" : "Ovarian pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "9899009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336392, + "CONCEPT_NAME" : "Parametritis following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87169001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4314877, + "CONCEPT_NAME" : "Pelvic peritonitis following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86709000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42537765, + "CONCEPT_NAME" : "Physiological shock due to and following molar pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "737326006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4023382, + "CONCEPT_NAME" : "Postoperative shock following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "11669000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3655209, + "CONCEPT_NAME" : "Pulmonary embolism due to and following ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "860680001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3655210, + "CONCEPT_NAME" : "Pulmonary embolism due to and following molar pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "860681002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4308664, + "CONCEPT_NAME" : "Removal of ectopic fetus from abdominal cavity", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "387709005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4227423, + "CONCEPT_NAME" : "Removal of ectopic fetus from fallopian tube without salpingectomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "88362001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4247895, + "CONCEPT_NAME" : "Removal of ectopic fetus from ovary without oophorectomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "73341009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4300391, + "CONCEPT_NAME" : "Removal of extrauterine ectopic fetus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "387710000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45757120, + "CONCEPT_NAME" : "Renal failure after ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10752771000119100", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42537766, + "CONCEPT_NAME" : "Renal failure following molar pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "737327002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4095115, + "CONCEPT_NAME" : "Renal tubular necrosis following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "26235008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4316051, + "CONCEPT_NAME" : "Salpingitis following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "9516007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4239009, + "CONCEPT_NAME" : "Salpingo-oophoritis following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57468008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4174577, + "CONCEPT_NAME" : "Secondary abdominal pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276881003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4187090, + "CONCEPT_NAME" : "Sepsis following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46848006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3655212, + "CONCEPT_NAME" : "Septic embolism due to and following ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "860683004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3655211, + "CONCEPT_NAME" : "Septic embolism due to and following molar pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "860682009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4080587, + "CONCEPT_NAME" : "Septic shock following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "24051007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110295, + "CONCEPT_NAME" : "Surgical treatment of ectopic pregnancy; abdominal pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59130", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110298, + "CONCEPT_NAME" : "Surgical treatment of ectopic pregnancy; cervical, with evacuation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59140", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110297, + "CONCEPT_NAME" : "Surgical treatment of ectopic pregnancy; interstitial, uterine pregnancy with partial resection of uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59136", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4296038, + "CONCEPT_NAME" : "Tetanus complicating ectopic AND/OR molar pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "76843005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 199076, + "CONCEPT_NAME" : "Tubal pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "79586000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4151214, + "CONCEPT_NAME" : "Uremia following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "28196006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4242401, + "CONCEPT_NAME" : "Urinary tract infection following molar AND/OR ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "38176009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4129027, + "CONCEPT_NAME" : "Viable fetus in abdominal pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237253003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 107, + "name" : "Ectopic pregnancy procedure (ECT1 & ECT 2)", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4200678, + "CONCEPT_NAME" : "Abdominal hysterectomy and left salpingo-oophorectomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "302191001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4300368, + "CONCEPT_NAME" : "Aspiration of ectopic pregnancy from fallopian tube", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "387617009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4093429, + "CONCEPT_NAME" : "Bilateral complete salpingectomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25811000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004347, + "CONCEPT_NAME" : "Bilateral partial salpingectomy, not otherwise specified", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "66.63", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4107080, + "CONCEPT_NAME" : "Bilateral salpingectomy with oophorectomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "29827000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4142956, + "CONCEPT_NAME" : "Diagnostic laparoscopy of female pelvis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "264973001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757216, + "CONCEPT_NAME" : "Discharge disposition [CARE]", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "52688-9", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Survey" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40757177, + "CONCEPT_NAME" : "Discharge Status", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "52523-8", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Survey" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40259069, + "CONCEPT_NAME" : "Dye test of fallopian tube", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "177006000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4074443, + "CONCEPT_NAME" : "Endoscopic freeing of adhesions of fallopian tube", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "176994003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4074426, + "CONCEPT_NAME" : "Excision of ectopic ovarian pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "176928008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4074427, + "CONCEPT_NAME" : "Excision of ruptured ectopic tubal pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "176929000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004345, + "CONCEPT_NAME" : "Excision or destruction of lesion of fallopian tube", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "66.61", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4196129, + "CONCEPT_NAME" : "Failed minimum access approach", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "313004003", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4001541, + "CONCEPT_NAME" : "Fallopian tube excision", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "120053002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4306064, + "CONCEPT_NAME" : "Fimbrial extraction of tubal pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "387616000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4100257, + "CONCEPT_NAME" : "Fimbriectomy of fallopian tube", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "25344002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4084217, + "CONCEPT_NAME" : "Gynecological emergency hospital admission", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "183459001", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4085257, + "CONCEPT_NAME" : "Inhalation anesthesia, machine system, closed, circulation of primary agent", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "24277005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40347147, + "CONCEPT_NAME" : "Laparoscopic", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "260508005", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Qualifier Value" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40378260, + "CONCEPT_NAME" : "Laparoscopic approach", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "180627003", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Qualifier Value" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4319321, + "CONCEPT_NAME" : "Laparoscopic lysis of adhesions", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "9540004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40490893, + "CONCEPT_NAME" : "Laparoscopic lysis of adhesions of ovary and fallopian tube", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "447077004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4190526, + "CONCEPT_NAME" : "Laparoscopic total abdominal hysterectomy and bilateral salpingo-oophorectomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "414575003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110299, + "CONCEPT_NAME" : "Laparoscopic treatment of ectopic pregnancy; without salpingectomy and/or oophorectomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59150", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110300, + "CONCEPT_NAME" : "Laparoscopic treatment of ectopic pregnancy; with salpingectomy and/or oophorectomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59151", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4251314, + "CONCEPT_NAME" : "Laparoscopy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "73632009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40480864, + "CONCEPT_NAME" : "Laparoscopy assisted vaginal hysterectomy with bilateral salpingo-oophorectomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "441820006", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4032749, + "CONCEPT_NAME" : "Laparoscopy of fallopian tube", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "236938008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110240, + "CONCEPT_NAME" : "Laparoscopy, surgical; with removal of adnexal structures (partial or total oophorectomy and/or salpingectomy)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "58661", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2722205, + "CONCEPT_NAME" : "Laparoscopy, surgical; with removal of adnexal structures (partial or total oophorectomy and/or salpingectomy). (Deprecated)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "56307", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110245, + "CONCEPT_NAME" : "Laparoscopy, surgical; with salpingostomy (salpingoneostomy)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "58673", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2722217, + "CONCEPT_NAME" : "Laparoscopy, surgical; with salpingostomy (salpingoneostomy). (Deprecated)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "56343", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4074877, + "CONCEPT_NAME" : "Left salpingectomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "176917009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4074876, + "CONCEPT_NAME" : "Left salpingo-oophorectomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "176915001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4214980, + "CONCEPT_NAME" : "Lysis of adhesions", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "39270003", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004348, + "CONCEPT_NAME" : "Other partial salpingectomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "66.69", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4267567, + "CONCEPT_NAME" : "Partial salpingectomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "62692004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004342, + "CONCEPT_NAME" : "Removal of both fallopian tubes at same operative episode", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "66.51", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004788, + "CONCEPT_NAME" : "Removal of extratubal ectopic pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "74.3", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "3-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004343, + "CONCEPT_NAME" : "Removal of remaining fallopian tube", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "66.52", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4074424, + "CONCEPT_NAME" : "Right salpingectomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "176916000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4072837, + "CONCEPT_NAME" : "Right salpingo-oophorectomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "176914002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110247, + "CONCEPT_NAME" : "Salpingectomy, complete or partial, unilateral or bilateral (separate procedure)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "58700", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4032000, + "CONCEPT_NAME" : "Salpingectomy of remaining fallopian tube", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "14353000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004346, + "CONCEPT_NAME" : "Salpingectomy with removal of tubal pregnancy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "66.62", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4021363, + "CONCEPT_NAME" : "Salpingo-oophorectomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "116028008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4073272, + "CONCEPT_NAME" : "Salpingo-oophorectomy of remaining solitary fallopian tube and ovary", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "176909001", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004351, + "CONCEPT_NAME" : "Salpingo-oophorostomy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "66.72", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004362, + "CONCEPT_NAME" : "Salpingo-salpingostomy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "66.73", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4263669, + "CONCEPT_NAME" : "Salpingostomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "60463004", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004308, + "CONCEPT_NAME" : "Salpingostomy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "66.02", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110253, + "CONCEPT_NAME" : "Salpingostomy (salpingoneostomy)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "58770", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004307, + "CONCEPT_NAME" : "Salpingotomy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "66.01", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004306, + "CONCEPT_NAME" : "Salpingotomy and salpingostomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "66.0", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "3-dig nonbill code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110296, + "CONCEPT_NAME" : "Surgical treatment of ectopic pregnancy; interstitial, uterine pregnancy requiring total hysterectomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59135", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110293, + "CONCEPT_NAME" : "Surgical treatment of ectopic pregnancy; tubal or ovarian, requiring salpingectomy and/or oophorectomy, abdominal or vaginal approach", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59120", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110294, + "CONCEPT_NAME" : "Surgical treatment of ectopic pregnancy; tubal or ovarian, without salpingectomy and/or oophorectomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59121", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40258875, + "CONCEPT_NAME" : "Termination of pregnancy NEC", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "176831008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4019096, + "CONCEPT_NAME" : "Total abdominal hysterectomy with bilateral salpingo-oophorectomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "116144002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004331, + "CONCEPT_NAME" : "Total bilateral salpingectomy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "66.5", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "3-dig nonbill code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004330, + "CONCEPT_NAME" : "Total unilateral salpingectomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "66.4", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "3-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4336229, + "CONCEPT_NAME" : "Unilateral salpingectomy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "86894005", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4301905, + "CONCEPT_NAME" : "Unilateral salpingo-oophorectomy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "78698008", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 108, + "name" : "Preterm (PREM)", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 432452, + "CONCEPT_NAME" : "Anemia of prematurity", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "47100003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014461, + "CONCEPT_NAME" : "Baby birth weight equal to 50 percent to 74 percent (3450-3749g)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169864006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4151169, + "CONCEPT_NAME" : "Baby birth weight less than 751gm", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "310491007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015275, + "CONCEPT_NAME" : "Baby extremely premature 28-32 weeks", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "169851005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4149449, + "CONCEPT_NAME" : "Baby premature 24-26 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "310523002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37016220, + "CONCEPT_NAME" : "Baby premature 24 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15887011000119107", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37016221, + "CONCEPT_NAME" : "Baby premature 25 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15887051000119108", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4149457, + "CONCEPT_NAME" : "Baby premature 26-28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "310548004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37016222, + "CONCEPT_NAME" : "Baby premature 26 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15887091000119103", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37018684, + "CONCEPT_NAME" : "Baby premature 27 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15887131000119101", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 46271955, + "CONCEPT_NAME" : "Baby premature 28-32 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "710235005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37016216, + "CONCEPT_NAME" : "Baby premature 28 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15750001000119103", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37016217, + "CONCEPT_NAME" : "Baby premature 29 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15750041000119101", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37016218, + "CONCEPT_NAME" : "Baby premature 30 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15750081000119106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37016213, + "CONCEPT_NAME" : "Baby premature 31 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15635451000119107", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 46271814, + "CONCEPT_NAME" : "Baby premature 32-36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "710068006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37018683, + "CONCEPT_NAME" : "Baby premature 32 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15635411000119106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37018889, + "CONCEPT_NAME" : "Baby premature 33 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15635371000119105", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37016212, + "CONCEPT_NAME" : "Baby premature 34 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15635331000119107", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 762577, + "CONCEPT_NAME" : "Baby premature 35-36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429151000124100", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37016211, + "CONCEPT_NAME" : "Baby premature 35 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15635291000119101", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014299, + "CONCEPT_NAME" : "Baby premature 36-38 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169849006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4149451, + "CONCEPT_NAME" : "Baby premature 36 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "310530008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4150406, + "CONCEPT_NAME" : "Baby premature 37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "310529003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4150405, + "CONCEPT_NAME" : "Baby premature 38 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "310528006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4150404, + "CONCEPT_NAME" : "Baby premature 39 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "310527001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015274, + "CONCEPT_NAME" : "Baby very premature 32 to 36 weeks", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "169850006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36684754, + "CONCEPT_NAME" : "Bilateral retinopathy of prematurity", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "343791000119101", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37207968, + "CONCEPT_NAME" : "Bilateral retinopathy of prematurity of eyes stage 0", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "343781000119104", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36684753, + "CONCEPT_NAME" : "Bilateral retinopathy of prematurity of eyes stage 1 - demarcation line", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "343771000119102", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36684752, + "CONCEPT_NAME" : "Bilateral retinopathy of prematurity of eyes stage 2 - intraretinal ridge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "343761000119108", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36684751, + "CONCEPT_NAME" : "Bilateral retinopathy of prematurity of eyes stage 3 - ridge with extraretinal fibrovascular proliferation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "343751000119106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4141513, + "CONCEPT_NAME" : "Complication of prematurity", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "426850008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4195545, + "CONCEPT_NAME" : "Disorder relating to short gestation AND/OR low birthweight", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "67645006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 38001501, + "CONCEPT_NAME" : "Extreme immaturity or respiratory distress syndrome, neonate", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "790", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "DRG", + "CONCEPT_CLASS_ID" : "MS-DRG" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439128, + "CONCEPT_NAME" : "Extreme prematurity of infant", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276658003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4148097, + "CONCEPT_NAME" : "Fetal or neonatal effect of abruptio placentae", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "268803008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4118056, + "CONCEPT_NAME" : "Fetal or neonatal effect of maternal premature rupture of membrane", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206037001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 72726, + "CONCEPT_NAME" : "Light-for-dates with signs of fetal malnutrition", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64177003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36675173, + "CONCEPT_NAME" : "Moderate to late prematurity of infant", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "771507004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440847, + "CONCEPT_NAME" : "Neonatal jaundice associated with preterm delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "73749009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4086393, + "CONCEPT_NAME" : "Premature delivery", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "282020008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4217564, + "CONCEPT_NAME" : "Premature infant", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "395507008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4147874, + "CONCEPT_NAME" : "Premature infant 28-37 weeks", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "310661005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4273560, + "CONCEPT_NAME" : "Premature labor", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6383007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4175637, + "CONCEPT_NAME" : "Premature pregnancy delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "49550006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4064709, + "CONCEPT_NAME" : "Premature rupture of membranes, labor delayed by therapy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199661007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4058403, + "CONCEPT_NAME" : "Premature separation of placenta with coagulation defect", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198912003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440519, + "CONCEPT_NAME" : "Premature - weight 1000g-2499g or gestation of 28-37weeks", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "206169007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440525, + "CONCEPT_NAME" : "Prematurity of fetus", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "44247006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36675035, + "CONCEPT_NAME" : "Prematurity of infant", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "771299009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37311892, + "CONCEPT_NAME" : "Primary central sleep apnea of prematurity", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "789009003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2109484, + "CONCEPT_NAME" : "Repair, initial inguinal hernia, preterm infant (younger than 37 weeks gestation at birth), performed from birth up to 50 weeks postconception age, with or without hydrocelectomy; incarcerated or strangulated", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "49492", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2109483, + "CONCEPT_NAME" : "Repair, initial inguinal hernia, preterm infant (younger than 37 weeks gestation at birth), performed from birth up to 50 weeks postconception age, with or without hydrocelectomy; reducible", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "49491", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 373766, + "CONCEPT_NAME" : "Retinopathy of prematurity", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "415297005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36684687, + "CONCEPT_NAME" : "Retinopathy of prematurity of left eye", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "338021000119106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36684686, + "CONCEPT_NAME" : "Retinopathy of prematurity of left eye stage 1 - demarcation line", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "338001000119102", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36684685, + "CONCEPT_NAME" : "Retinopathy of prematurity of left eye stage 2 - intraretinal ridge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "337991000119106", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36684684, + "CONCEPT_NAME" : "Retinopathy of prematurity of left eye stage 3 - ridge with extraretinal fibrovascular proliferation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "337981000119108", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36684624, + "CONCEPT_NAME" : "Retinopathy of prematurity of right eye", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "332411000119108", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36684623, + "CONCEPT_NAME" : "Retinopathy of prematurity of right eye stage 1 - demarcation line", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "332391000119108", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36684622, + "CONCEPT_NAME" : "Retinopathy of prematurity of right eye stage 2 - intraretinal ridge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "332381000119105", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 36684621, + "CONCEPT_NAME" : "Retinopathy of prematurity of right eye stage 3 - ridge with extraretinal fibrovascular proliferation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "332371000119107", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 45772079, + "CONCEPT_NAME" : "Retinopathy of prematurity stage 0", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "124111000119102", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 375250, + "CONCEPT_NAME" : "Retinopathy of prematurity stage 1 - demarcation line", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "408847006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 375251, + "CONCEPT_NAME" : "Retinopathy of prematurity stage 2 - intraretinal ridge", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "408848001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 379009, + "CONCEPT_NAME" : "Retinopathy of prematurity stage 3 - ridge with extraretinal fibrovascular proliferation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "408849009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443519, + "CONCEPT_NAME" : "Retinopathy of prematurity stage 4 - subtotal retinal detachment", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "408850009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443520, + "CONCEPT_NAME" : "Retinopathy of prematurity stage 5 - total retinal detachment", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "408851008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 136530, + "CONCEPT_NAME" : "Sclerema neonatorum", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206539008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2514572, + "CONCEPT_NAME" : "Subsequent intensive care, per day, for the evaluation and management of the recovering infant (present body weight of 2501-5000 grams)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "99480", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42740403, + "CONCEPT_NAME" : "Subsequent intensive care, per day, for the evaluation and management of the recovering low birth weight infant (present body weight of 1500-2500 g)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "99299", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2514571, + "CONCEPT_NAME" : "Subsequent intensive care, per day, for the evaluation and management of the recovering low birth weight infant (present body weight of 1500-2500 grams)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "99479", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42739401, + "CONCEPT_NAME" : "Subsequent intensive care, per day, for the evaluation and management of the recovering very low birth weight infant (present body weight less than 1500 g)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "99298", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2514570, + "CONCEPT_NAME" : "Subsequent intensive care, per day, for the evaluation and management of the recovering very low birth weight infant (present body weight less than 1500 grams)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "99478", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2111055, + "CONCEPT_NAME" : "Treatment of extensive or progressive retinopathy, 1 or more sessions, preterm infant (less than 37 weeks gestation at birth), performed from birth up to 1 year of age (eg, retinopathy of prematurity), photocoagulation or cryotherapy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "67229", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435925, + "CONCEPT_NAME" : "Very premature - less than 1000g or less than 28 weeks", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "268817004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4149523, + "CONCEPT_NAME" : "Very preterm maturity of infant", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "268868001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 109, + "name" : "Methotrexate", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 1305058, + "CONCEPT_NAME" : "methotrexate", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6851", + "DOMAIN_ID" : "Drug", + "VOCABULARY_ID" : "RxNorm", + "CONCEPT_CLASS_ID" : "Ingredient" + }, + "isExcluded" : false, + "includeDescendants" : true, + "includeMapped" : false + } + ] + } + }, + { + "id" : 111, + "name" : "Pregnancy Confirmation (PCONF)", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 441092, + "CONCEPT_NAME" : "Advanced maternal age gravida", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "416413003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061424, + "CONCEPT_NAME" : "Antenatal care: primigravida", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169573007", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40760833, + "CONCEPT_NAME" : "Birth plurality of Pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57722-1", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Clinical Observation" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4139126, + "CONCEPT_NAME" : "Braxton Hicks contractions", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "32644009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4015590, + "CONCEPT_NAME" : "Counseling for termination of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10383002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3011536, + "CONCEPT_NAME" : "Delivery date Estimated", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "11778-8", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Clinical Observation" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43054893, + "CONCEPT_NAME" : "Delivery location", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72150-6", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Survey" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43021054, + "CONCEPT_NAME" : "Dichorionic diamniotic twin pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "459166009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37017322, + "CONCEPT_NAME" : "Dizygotic twin pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "713575004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441085, + "CONCEPT_NAME" : "Elderly primigravida", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "29399001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 192380, + "CONCEPT_NAME" : "Failed attempted termination of pregnancy without complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90645002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4210896, + "CONCEPT_NAME" : "Fetal gestational age", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "57036006", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Observable Entity" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3006722, + "CONCEPT_NAME" : "Fetal Heart Narrative Activity US", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "11616-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Clinical Observation" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40759953, + "CONCEPT_NAME" : "Fetal Narrative Movement", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "56834-5", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Clinical Observation" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 195877, + "CONCEPT_NAME" : "Finding of gravid uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "289675001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061522, + "CONCEPT_NAME" : "General practitioner unit delivery booking", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169622009", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437937, + "CONCEPT_NAME" : "Grand multipara", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "18656007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4030415, + "CONCEPT_NAME" : "Illegitimate pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14080002", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 197031, + "CONCEPT_NAME" : "Intrauterine pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65727000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061672, + "CONCEPT_NAME" : "IUD failure - pregnant", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169488004", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43021951, + "CONCEPT_NAME" : "Monochorionic diamniotic twin pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "459168005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43021952, + "CONCEPT_NAME" : "Monochorionic monoamniotic twin pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "459171002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3045823, + "CONCEPT_NAME" : "Multiple pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45371-2", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Clinical Observation" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432969, + "CONCEPT_NAME" : "Multiple pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "16356006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3000119, + "CONCEPT_NAME" : "Narrative Fetal presentation US", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "18850-8", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Clinical Observation" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4217975, + "CONCEPT_NAME" : "Normal pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72892002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038942, + "CONCEPT_NAME" : "O/E - fetal movements", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163535001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4150948, + "CONCEPT_NAME" : "O/E - fetal presentation", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "268952006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4148890, + "CONCEPT_NAME" : "Pregnancy benefits", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "270471004", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Qualifier Value" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4094910, + "CONCEPT_NAME" : "Pregnancy test positive", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "250423000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061785, + "CONCEPT_NAME" : "Pregnancy unplanned and unwanted", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169567006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060237, + "CONCEPT_NAME" : "Pregnancy unplanned but wanted", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169566002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4299535, + "CONCEPT_NAME" : "Pregnant", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "77386006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4059982, + "CONCEPT_NAME" : "Pregnant - blood test confirms", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169561007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061686, + "CONCEPT_NAME" : "Pregnant - on history", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169563005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4059984, + "CONCEPT_NAME" : "Pregnant - planned", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169565003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061411, + "CONCEPT_NAME" : "Pregnant, sheath failure", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169508004", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4059981, + "CONCEPT_NAME" : "Pregnant - urine test confirms", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169560008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4133029, + "CONCEPT_NAME" : "Primigravida", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "127364007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442594, + "CONCEPT_NAME" : "Quadruplet pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "60810003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440466, + "CONCEPT_NAME" : "Quadruplet pregnancy with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199326006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061423, + "CONCEPT_NAME" : "Questionable if pregnancy was planned", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169569009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4214930, + "CONCEPT_NAME" : "Refer to early pregnancy unit", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "417577000", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3040000, + "CONCEPT_NAME" : "Reliability of last menstrual period observation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "53661-5", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Clinical Observation" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 196484, + "CONCEPT_NAME" : "Retroverted incarcerated gravid uterus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199466009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4042412, + "CONCEPT_NAME" : "Serum pregnancy test positive", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "166437003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 198212, + "CONCEPT_NAME" : "Spotting per vagina in pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "284075002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4129023, + "CONCEPT_NAME" : "Teenage pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237240001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4218813, + "CONCEPT_NAME" : "Third trimester pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "41587001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432375, + "CONCEPT_NAME" : "Triplet pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "64254006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441919, + "CONCEPT_NAME" : "Twin pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65147003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4307820, + "CONCEPT_NAME" : "Unplanned pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "83074005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4059985, + "CONCEPT_NAME" : "Unplanned pregnancy unknown if child is wanted", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169568001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4239301, + "CONCEPT_NAME" : "Unwanted pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "58532003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4041878, + "CONCEPT_NAME" : "Urine pregnancy test positive", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "167256004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3023791, + "CONCEPT_NAME" : "Uterus Fundal height Tape measure", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "11881-0", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "LOINC", + "CONCEPT_CLASS_ID" : "Clinical Observation" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40519557, + "CONCEPT_NAME" : "[V]Other unwanted pregnancy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "316385002", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40524802, + "CONCEPT_NAME" : "[V]Pregnant state, incidental", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "315903005", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40524805, + "CONCEPT_NAME" : "[V]Unspecified pregnant state", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "315906002", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 112, + "name" : "Pregnancy complications (PCOMP)", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 4198125, + "CONCEPT_NAME" : "Abdominal pain in early pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "314041007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4149783, + "CONCEPT_NAME" : "Abdominal pain in pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "309737007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 193525, + "CONCEPT_NAME" : "Abdominal pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "82661006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 314099, + "CONCEPT_NAME" : "Abnormal fetal heart rate", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "312668007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437688, + "CONCEPT_NAME" : "Abnormal findings on antenatal screening of mother", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199732004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440216, + "CONCEPT_NAME" : "Abnormal glucose tolerance test", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "274858002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439403, + "CONCEPT_NAME" : "Abnormal glucose tolerance test during pregnancy - baby not yet delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "372054004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4162865, + "CONCEPT_NAME" : "Abnormal glucose tolerance test during pregnancy, childbirth and the puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "372046001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 197050, + "CONCEPT_NAME" : "Abnormality of organs AND/OR soft tissues of pelvis affecting pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1639007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4034308, + "CONCEPT_NAME" : "Acromion presentation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "23954006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004824, + "CONCEPT_NAME" : "Amnioinfusion", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "75.37", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435880, + "CONCEPT_NAME" : "Amniotic cavity infection with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199678003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435616, + "CONCEPT_NAME" : "Amniotic fluid embolism", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "17263003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4154997, + "CONCEPT_NAME" : "Amniotic fluid leaking", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "371380006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441959, + "CONCEPT_NAME" : "Amniotic fluid -meconium stain", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "168092006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 436768, + "CONCEPT_NAME" : "Amniotic fluid pulmonary embolism with antenatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200296007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432967, + "CONCEPT_NAME" : "Anemia during pregnancy - baby not yet delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199246003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434701, + "CONCEPT_NAME" : "Anemia in mother complicating pregnancy, childbirth AND/OR puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "45828008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4099889, + "CONCEPT_NAME" : "Anemia of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "27342004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4079835, + "CONCEPT_NAME" : "Antenatal risk factors", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276445008", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435887, + "CONCEPT_NAME" : "Antepartum deep vein thrombosis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "49956009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434089, + "CONCEPT_NAME" : "Antepartum hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "34842007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4143074, + "CONCEPT_NAME" : "Antepartum hemorrhage, abruptio placentae and placenta previa", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "267197003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438489, + "CONCEPT_NAME" : "Antepartum hemorrhage associated with coagulation defect", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "267199000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438203, + "CONCEPT_NAME" : "Antepartum hemorrhage with coagulation defect - not delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198918004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4129039, + "CONCEPT_NAME" : "Anti-D antibodies", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "237301008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 80156, + "CONCEPT_NAME" : "Asymptomatic bacteriuria in pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "31563000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 321638, + "CONCEPT_NAME" : "Benign essential hypertension complicating pregnancy, childbirth and the puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198942000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 314423, + "CONCEPT_NAME" : "Benign essential hypertension complicating pregnancy, childbirth and the puerperium - not delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198946002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4027371, + "CONCEPT_NAME" : "Bone AND/OR joint disorder in mother complicating pregnancy, childbirth AND/OR puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "128076000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 73282, + "CONCEPT_NAME" : "Breast engorgement in pregnancy, the puerperium or lactation with antenatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200420005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 76756, + "CONCEPT_NAME" : "Breech presentation with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199355003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 375016, + "CONCEPT_NAME" : "Central nervous system malformation in fetus affecting obstetrical care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1538006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110305, + "CONCEPT_NAME" : "Cerclage of cervix, during pregnancy; abdominal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59325", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110304, + "CONCEPT_NAME" : "Cerclage of cervix, during pregnancy; vaginal", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59320", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4321386, + "CONCEPT_NAME" : "Cervical cerclage suture present", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "69802008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 436740, + "CONCEPT_NAME" : "Cervical incompetence", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "17382005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437334, + "CONCEPT_NAME" : "Cervical incompetence with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199484006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 72973, + "CONCEPT_NAME" : "Chromosomal abnormality in fetus affecting obstetrical care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "42686001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3170656, + "CONCEPT_NAME" : "Complcated pregnancy due to surgical history: uterine myomectomy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "6980001000004103", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "Nebraska Lexicon", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435875, + "CONCEPT_NAME" : "Complication of pregnancy, childbirth and/or puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198609003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433822, + "CONCEPT_NAME" : "Complication related to pregnancy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "90821003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 80205, + "CONCEPT_NAME" : "Condition in fetus originating in the perinatal period", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "41168002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 197339, + "CONCEPT_NAME" : "Congenital abnormality of uterus, affecting pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "41215002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 193825, + "CONCEPT_NAME" : "Congenital abnormality of uterus complicating antenatal care, baby not yet delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "267216000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 314426, + "CONCEPT_NAME" : "Congenital cardiovascular disorder during pregnancy - baby not yet delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199268008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 196175, + "CONCEPT_NAME" : "Congenital OR acquired abnormality of cervix affecting pregnancy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "111443000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 201920, + "CONCEPT_NAME" : "Congenital OR acquired abnormality of vagina affecting pregnancy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "111444006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440162, + "CONCEPT_NAME" : "Congenital or acquired abnormality of vulva complicating antenatal care - baby not yet delivered", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "267249009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433826, + "CONCEPT_NAME" : "Continuing pregnancy after abortion of one fetus or more", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199306007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432373, + "CONCEPT_NAME" : "Continuing pregnancy after intrauterine death of one or more fetuses", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199307003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43020670, + "CONCEPT_NAME" : "Continuing pregnancy after intrauterine death of one twin with intrauterine retention of dead twin", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "472321009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441647, + "CONCEPT_NAME" : "Continuing pregnancy after intrauterine death of twin fetus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "429187001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4120986, + "CONCEPT_NAME" : "Controlled cord traction of placenta", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "302384005", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433828, + "CONCEPT_NAME" : "Cord tangled or knotted with compression", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "267266006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442421, + "CONCEPT_NAME" : "Cord tangled with compression with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199881006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004823, + "CONCEPT_NAME" : "Correction of fetal defect", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "75.36", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4170118, + "CONCEPT_NAME" : "Cystitis of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "275412000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 73265, + "CONCEPT_NAME" : "Deep transverse arrest with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199775005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 192691, + "CONCEPT_NAME" : "Diabetes mellitus during pregnancy - baby not yet delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199227004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 194700, + "CONCEPT_NAME" : "Diabetes mellitus in mother complicating pregnancy, childbirth AND/OR puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "76751001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 201958, + "CONCEPT_NAME" : "Disorder involving the integument of fetus OR newborn", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "111474003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438815, + "CONCEPT_NAME" : "Disorder of amniotic cavity AND/OR membrane", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "72860003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 79890, + "CONCEPT_NAME" : "Disorder of pelvic size and disproportion", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237256006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4053583, + "CONCEPT_NAME" : "Disorder of placenta", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "125586008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 201091, + "CONCEPT_NAME" : "Disproportion - major pelvic abnormality", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199398004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4059763, + "CONCEPT_NAME" : "Disproportion - major pelvic abnormality with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199402008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442913, + "CONCEPT_NAME" : "Drug dependence during pregnancy - baby not yet delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199254001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440787, + "CONCEPT_NAME" : "Drug dependence in mother complicating pregnancy, childbirth AND/OR puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "34150001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443700, + "CONCEPT_NAME" : "Eclampsia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15938005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 137613, + "CONCEPT_NAME" : "Eclampsia in pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198992004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438204, + "CONCEPT_NAME" : "Edema or excessive weight gain in pregnancy without mention of hypertension", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "267202005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442442, + "CONCEPT_NAME" : "Elderly primigravida with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199719009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 81636, + "CONCEPT_NAME" : "Excessive fetal growth affecting management of mother", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "22173004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 40479820, + "CONCEPT_NAME" : "Exposure to rubella in pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "444517009", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Event" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 78210, + "CONCEPT_NAME" : "Face OR brow presentation of fetus", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "37762002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4071437, + "CONCEPT_NAME" : "Face presentation of fetus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "21882006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437341, + "CONCEPT_NAME" : "Failed mechanical induction with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199695006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 201083, + "CONCEPT_NAME" : "Fetal AND/OR placental disorder affecting management of mother", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "22753004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43022052, + "CONCEPT_NAME" : "Fetal anemia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "462166006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 79146, + "CONCEPT_NAME" : "Fetal blood loss", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206390008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4196670, + "CONCEPT_NAME" : "Fetal blood loss from vasa previa", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "50544004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 80165, + "CONCEPT_NAME" : "Fetal disproportion", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "31805001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 73268, + "CONCEPT_NAME" : "Fetal distress affecting management of mother", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "12867002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4203009, + "CONCEPT_NAME" : "Fetal exsanguination", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "52977000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 80204, + "CONCEPT_NAME" : "Fetal growth restriction", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "22033007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 201366, + "CONCEPT_NAME" : "Fetal-maternal hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "71028008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 196757, + "CONCEPT_NAME" : "Fetal-maternal hemorrhage with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199578005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4145315, + "CONCEPT_NAME" : "Fetal movements felt", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "268470003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441682, + "CONCEPT_NAME" : "Fetal or neonatal effect of compression of umbilical cord", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86629005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433027, + "CONCEPT_NAME" : "Fetal or neonatal effect of maternal hypertensive disease", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "268794002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 436219, + "CONCEPT_NAME" : "Fetal or neonatal effect of maternal infection", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "206005002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441680, + "CONCEPT_NAME" : "Fetal or neonatal effect of multiple pregnancy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "18001006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 81360, + "CONCEPT_NAME" : "Fetus papyraceous", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90127001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4047725, + "CONCEPT_NAME" : "Fetus small-for-dates with signs of malnutrition", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "206164002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442827, + "CONCEPT_NAME" : "Fetus with central nervous system malformation with antenatal problem", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "199520001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 80463, + "CONCEPT_NAME" : "Fetus with chromosomal abnormality with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199527003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4064277, + "CONCEPT_NAME" : "Fetus with damage due to intrauterine contraceptive device", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199558002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4063297, + "CONCEPT_NAME" : "Fetus with damage due to intrauterine contraceptive device with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199561001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060672, + "CONCEPT_NAME" : "Fetus with drug damage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199547006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4064178, + "CONCEPT_NAME" : "Fetus with drug damage with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199550009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4064169, + "CONCEPT_NAME" : "Fetus with hereditary disease", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199531009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4064172, + "CONCEPT_NAME" : "Fetus with hereditary disease with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199534001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4143204, + "CONCEPT_NAME" : "Fetus with viral damage via mother", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "267254000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4064175, + "CONCEPT_NAME" : "Fetus with viral damage via mother with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199539006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 3657563, + "CONCEPT_NAME" : "First trimester bleeding", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "1323351000000104", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 76772, + "CONCEPT_NAME" : "Galactorrhea in pregnancy and the puerperium with antenatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200448005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 76750, + "CONCEPT_NAME" : "Generally contracted pelvis with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199406006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 77340, + "CONCEPT_NAME" : "Genitourinary tract infection in pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "267204006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 74415, + "CONCEPT_NAME" : "Genitourinary tract infection in pregnancy - not delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199108000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4024659, + "CONCEPT_NAME" : "Gestational diabetes mellitus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "11687002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443214, + "CONCEPT_NAME" : "Gestational edema", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237285000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442565, + "CONCEPT_NAME" : "Gestational edema without hypertension", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "77376005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4058113, + "CONCEPT_NAME" : "Gestational edema with proteinuria", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199141002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442441, + "CONCEPT_NAME" : "Grand multiparity with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199715003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 316478, + "CONCEPT_NAME" : "Heart disease in mother complicating pregnancy, childbirth AND/OR puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "78381004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2212713, + "CONCEPT_NAME" : "Hemoglobin or RBCs, fetal, for fetomaternal hemorrhage; differential lysis (Kleihauer-Betke)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "85460", + "DOMAIN_ID" : "Measurement", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437090, + "CONCEPT_NAME" : "Hemolytic disease of fetus OR newborn due to ABO immunization", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "32858009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433603, + "CONCEPT_NAME" : "Hemolytic disease of fetus OR newborn due to RhD isoimmunization", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86986002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438478, + "CONCEPT_NAME" : "Hemorrhage in early pregnancy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "25825004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437935, + "CONCEPT_NAME" : "Hemorrhage in early pregnancy, antepartum", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "30850008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4311256, + "CONCEPT_NAME" : "Herpes gestationis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86081009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442088, + "CONCEPT_NAME" : "High head at term", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199373000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 72696, + "CONCEPT_NAME" : "High head at term with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199376008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4302252, + "CONCEPT_NAME" : "High risk pregnancy care", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "386322007", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4062565, + "CONCEPT_NAME" : "History of recurrent miscarriage - not delivered", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199088001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 81923, + "CONCEPT_NAME" : "Hydrocephalic disproportion with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199428006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444245, + "CONCEPT_NAME" : "Hydrocephalic fetus causing disproportion", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "111439004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 77662, + "CONCEPT_NAME" : "Hydrops fetalis due to isoimmunization", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15539009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4030872, + "CONCEPT_NAME" : "Hyperemesis gravidarum", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "14094001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4098582, + "CONCEPT_NAME" : "Hyperemesis gravidarum before end of 22 week gestation with carbohydrate depletion", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "27152008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4227141, + "CONCEPT_NAME" : "Hyperemesis gravidarum before end of 22 week gestation with dehydration", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "87621000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4142340, + "CONCEPT_NAME" : "Hyperemesis gravidarum before end of 22 week gestation with electrolyte imbalance", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "33370009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 436485, + "CONCEPT_NAME" : "Hyperemesis gravidarum with metabolic disturbance", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199025001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440788, + "CONCEPT_NAME" : "Hyperemesis gravidarum with metabolic disturbance - not delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199028004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 321080, + "CONCEPT_NAME" : "Hypertension complicating pregnancy, childbirth and the puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198941007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 133284, + "CONCEPT_NAME" : "Impetigo herpetiformis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65539006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 436180, + "CONCEPT_NAME" : "Infection of amniotic cavity", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10573002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433823, + "CONCEPT_NAME" : "Infectious disease in mother complicating pregnancy, childbirth AND/OR puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "40609001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433266, + "CONCEPT_NAME" : "Infective/parasitic disease in preg/childbirth/puerperium", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "199153003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 79896, + "CONCEPT_NAME" : "Inlet pelvic contraction with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199410009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4197403, + "CONCEPT_NAME" : "Intervillous thrombosis", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80256005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4023420, + "CONCEPT_NAME" : "Intra-amniotic infection of fetus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "11618000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4180743, + "CONCEPT_NAME" : "Intraventricular hemorrhage of fetus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428241007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4058246, + "CONCEPT_NAME" : "Iron deficiency anemia of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199248002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4079751, + "CONCEPT_NAME" : "Iron supplement in pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "182947002", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442772, + "CONCEPT_NAME" : "Isoimmunization from non-ABO, non-Rh blood-group incompatibility affecting pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "66958002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530880, + "CONCEPT_NAME" : "Known or suspected fetal abnormality", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "609414006", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 77335, + "CONCEPT_NAME" : "Known OR suspected fetal abnormality affecting management of mother", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "66064007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 78818, + "CONCEPT_NAME" : "Large fetus causing disproportion with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199423002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443325, + "CONCEPT_NAME" : "Late pregnancy vomiting - not delivered", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "199033000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439880, + "CONCEPT_NAME" : "Late vomiting of pregnancy", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "38331001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 194699, + "CONCEPT_NAME" : "Liver disorder in pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "15230009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443292, + "CONCEPT_NAME" : "Liver disorder in pregnancy - not delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199118005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4130310, + "CONCEPT_NAME" : "Macdonald's cervical cerclage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "236946009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 77338, + "CONCEPT_NAME" : "Malposition and malpresentation of fetus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "270498000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2004764, + "CONCEPT_NAME" : "Manual rotation of fetal head", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "73.51", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "ICD9Proc", + "CONCEPT_CLASS_ID" : "4-dig billing code" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4016059, + "CONCEPT_NAME" : "Maternal alcohol abuse", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "169942003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443295, + "CONCEPT_NAME" : "Maternal care for diminished fetal movements", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "200473005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432977, + "CONCEPT_NAME" : "Maternal distress with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200101003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441081, + "CONCEPT_NAME" : "Maternal gonorrhea during pregnancy - baby not yet delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199165004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 314432, + "CONCEPT_NAME" : "Maternal hypotension syndrome", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "88887003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 315327, + "CONCEPT_NAME" : "Maternal hypotension syndrome with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200113008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 42872398, + "CONCEPT_NAME" : "Maternal obesity complicating pregnancy, childbirth and the puerperium, antepartum", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "171000119107", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439893, + "CONCEPT_NAME" : "Maternal obesity syndrome", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "44772007", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438205, + "CONCEPT_NAME" : "Maternal syphilis during pregnancy - baby not yet delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199158007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434697, + "CONCEPT_NAME" : "Maternal tobacco abuse", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169940006", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442918, + "CONCEPT_NAME" : "Mental disorder during pregnancy - baby not yet delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199261002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4060424, + "CONCEPT_NAME" : "Mental disorders during pregnancy, childbirth and the puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199257008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 436166, + "CONCEPT_NAME" : "Mild hyperemesis gravidarum", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "19569008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435023, + "CONCEPT_NAME" : "Mild hyperemesis-not delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199023008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 314090, + "CONCEPT_NAME" : "Mild pre-eclampsia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "41114007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4063183, + "CONCEPT_NAME" : "Mixed feto-pelvic disproportion", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199416003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 78817, + "CONCEPT_NAME" : "Mixed feto-pelvic disproportion with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199419005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4030429, + "CONCEPT_NAME" : "Moderate hyperemesis gravidarum", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "129597002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4034094, + "CONCEPT_NAME" : "Moderate proteinuric hypertension of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237281009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4199931, + "CONCEPT_NAME" : "Morning sickness", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "51885006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437041, + "CONCEPT_NAME" : "Mother not delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "289257009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110337, + "CONCEPT_NAME" : "Multifetal pregnancy reduction(s) (MPR)", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59866", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 75015, + "CONCEPT_NAME" : "Multiple gestation with one OR more fetal malpresentations", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "80224003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4063175, + "CONCEPT_NAME" : "Multiple pregnancy with malpresentation with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199381004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4178154, + "CONCEPT_NAME" : "Multiple pregnancy with one fetal loss", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "428511009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 194598, + "CONCEPT_NAME" : "Neoplasm of uncertain behavior of placenta", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "95005005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4080067, + "CONCEPT_NAME" : "Non-urgent obstetric admission", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "183494008", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442051, + "CONCEPT_NAME" : "Obstetric air pulmonary embolism with antenatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200290001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433545, + "CONCEPT_NAME" : "Obstetric blood-clot pulmonary embolism with antenatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200303005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 78218, + "CONCEPT_NAME" : "Obstetric breast abscess with antenatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200376001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4080059, + "CONCEPT_NAME" : "Obstetric emergency hospital admission", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "183460006", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441926, + "CONCEPT_NAME" : "Obstetric nipple infection with antenatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200369006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 76491, + "CONCEPT_NAME" : "Obstetric non-purulent mastitis with antenatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200383008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442071, + "CONCEPT_NAME" : "Obstetric shock with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200107004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038426, + "CONCEPT_NAME" : "O/E - fetal movements felt", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163538004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4038755, + "CONCEPT_NAME" : "O/E - fundus 34-36 week size", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "163506009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434111, + "CONCEPT_NAME" : "Oligohydramnios", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59566000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 432386, + "CONCEPT_NAME" : "Oligohydramnios with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199654008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 72378, + "CONCEPT_NAME" : "Outlet pelvic contraction with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199414000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 443323, + "CONCEPT_NAME" : "Papyraceous fetus - not delivered", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "199070009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 195019, + "CONCEPT_NAME" : "Pelvic soft tissue abnormality in pregnancy, childbirth and the puerperium with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199513008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 135370, + "CONCEPT_NAME" : "Perinatal cutaneous hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "18503002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 258564, + "CONCEPT_NAME" : "Perinatal interstitial emphysema", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "60125001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 313590, + "CONCEPT_NAME" : "Perinatal respiratory failure", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "91581004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 197608, + "CONCEPT_NAME" : "Peripheral neuritis in pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "17787002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 199086, + "CONCEPT_NAME" : "Peripheral neuritis in pregnancy - not delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199095005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 444374, + "CONCEPT_NAME" : "Persistent occipitoposterior position", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "70068004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 317941, + "CONCEPT_NAME" : "Phlebitis AND/OR thrombosis complicating pregnancy AND/OR puerperium", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "26850007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014718, + "CONCEPT_NAME" : "Placental abnormality", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169957005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 198488, + "CONCEPT_NAME" : "Placental abruption", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "415105001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 201350, + "CONCEPT_NAME" : "Placental abruption - not delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198911005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 200784, + "CONCEPT_NAME" : "Placental condition affecting management of mother", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "111447004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4014716, + "CONCEPT_NAME" : "Placental finding", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "169952004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4034100, + "CONCEPT_NAME" : "Placental insufficiency", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237292005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4064854, + "CONCEPT_NAME" : "Placental localization", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "164817009", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4284028, + "CONCEPT_NAME" : "Placenta previa", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "36813001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 196751, + "CONCEPT_NAME" : "Placenta previa with hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198903000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 200149, + "CONCEPT_NAME" : "Placenta previa with hemorrhage - not delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198906008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 194710, + "CONCEPT_NAME" : "Placenta previa without hemorrhage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "7792000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 192372, + "CONCEPT_NAME" : "Placenta previa without hemorrhage - not delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198900002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437623, + "CONCEPT_NAME" : "Polyhydramnios", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86203003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433540, + "CONCEPT_NAME" : "Polyhydramnios with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199647002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 72693, + "CONCEPT_NAME" : "Poor fetal growth affecting management", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "397949005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 75639, + "CONCEPT_NAME" : "Poor fetal nutrition", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "276608005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439393, + "CONCEPT_NAME" : "Pre-eclampsia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "398254007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 141084, + "CONCEPT_NAME" : "Pre-eclampsia or eclampsia with pre-existing hypertension", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198997005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 136743, + "CONCEPT_NAME" : "Pre-eclampsia or eclampsia with pre-existing hypertension - not delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199002002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4146816, + "CONCEPT_NAME" : "Pre-existing hypertension complicating AND/OR reason for care during childbirth", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "34694006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4277110, + "CONCEPT_NAME" : "Pre-existing hypertension complicating AND/OR reason for care during pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "65402008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 321074, + "CONCEPT_NAME" : "Pre-existing hypertension complicating pregnancy, childbirth and puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199005000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438209, + "CONCEPT_NAME" : "Pregnancy care of habitual aborter", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "199089009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4062674, + "CONCEPT_NAME" : "Pregnancy complication NOS", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "U", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "199152008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 439348, + "CONCEPT_NAME" : "Pregnancy complications", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "198881004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4167493, + "CONCEPT_NAME" : "Pregnancy-induced hypertension", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "48194001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4062574, + "CONCEPT_NAME" : "Pregnancy-related glycosuria", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199132007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 194702, + "CONCEPT_NAME" : "Premature rupture of membranes", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "44223004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 200468, + "CONCEPT_NAME" : "Premature rupture of membranes with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199659003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 201516, + "CONCEPT_NAME" : "Primary malignant neoplasm of placenta", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "93965008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435883, + "CONCEPT_NAME" : "Prolapse of cord with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199870008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4082504, + "CONCEPT_NAME" : "Pruritus of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "239102001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 313272, + "CONCEPT_NAME" : "Puerperal cerebrovascular disorder with antenatal complication", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "200332008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 192679, + "CONCEPT_NAME" : "Renal disease in pregnancy AND/OR puerperium without hypertension", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "75150001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 192684, + "CONCEPT_NAME" : "Renal hypertension complicating pregnancy, childbirth and the puerperium - not delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198953006", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 196486, + "CONCEPT_NAME" : "Retroverted incarcerated gravid uterus with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199470001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 199891, + "CONCEPT_NAME" : "Rhesus isoimmunization affecting pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "44795003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 192376, + "CONCEPT_NAME" : "Rhesus isoimmunization with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199583002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4327745, + "CONCEPT_NAME" : "Second trimester bleeding", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "430881000", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4032345, + "CONCEPT_NAME" : "Severe hyperemesis gravidarum", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "129598007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 433536, + "CONCEPT_NAME" : "Severe pre-eclampsia", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "46764007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 132685, + "CONCEPT_NAME" : "Severe pre-eclampsia - not delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198985009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4127241, + "CONCEPT_NAME" : "Shirodkar's cervical cerclage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "236947000", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Procedure" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 438226, + "CONCEPT_NAME" : "Short cord", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59795007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437946, + "CONCEPT_NAME" : "Short cord with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199890004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 75608, + "CONCEPT_NAME" : "Shoulder dystocia with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199784005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4087113, + "CONCEPT_NAME" : "Slow fetal growth AND/OR fetal malnutrition", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "18471004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435331, + "CONCEPT_NAME" : "Superficial thrombophlebitis in pregnancy and the puerperium with antenatal complication", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "200226001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530886, + "CONCEPT_NAME" : "Suspected fetal damage from disease in the mother", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609420007", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 43530888, + "CONCEPT_NAME" : "Suspected fetal damage from radiation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "609422004", + "DOMAIN_ID" : "Observation", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Context-dependent" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4142581, + "CONCEPT_NAME" : "Third trimester bleeding", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "427139004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 138479, + "CONCEPT_NAME" : "Thyroid dysfunction during pregnancy - baby not yet delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199239007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 139895, + "CONCEPT_NAME" : "Thyroid dysfunction during pregnancy, childbirth and the puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199235001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110288, + "CONCEPT_NAME" : "Transabdominal amnioinfusion, including ultrasound guidance", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59070", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441922, + "CONCEPT_NAME" : "Transient hypertension of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "237279007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 136760, + "CONCEPT_NAME" : "Transient hypertension of pregnancy - not delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "198967002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 81358, + "CONCEPT_NAME" : "Transverse OR oblique presentation of fetus", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "11914001", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 437931, + "CONCEPT_NAME" : "Triplet pregnancy with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199322008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 196758, + "CONCEPT_NAME" : "Tumor of body of uterus affecting pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "223003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 192385, + "CONCEPT_NAME" : "Tumor of uterine body complicating antenatal care, baby not yet delivered", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "267223004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434097, + "CONCEPT_NAME" : "Twin pregnancy with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199318003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2211782, + "CONCEPT_NAME" : "Ultrasonic guidance for intrauterine fetal transfusion or cordocentesis, imaging supervision and interpretation", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "76941", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4061971, + "CONCEPT_NAME" : "Umbilical cord tight around neck with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199875003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 2110340, + "CONCEPT_NAME" : "Unlisted fetal invasive procedure, including ultrasound guidance, when performed", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "59897", + "DOMAIN_ID" : "Procedure", + "VOCABULARY_ID" : "CPT4", + "CONCEPT_CLASS_ID" : "CPT4" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 79091, + "CONCEPT_NAME" : "Unstable lie", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "86356004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 72374, + "CONCEPT_NAME" : "Unstable lie with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199345002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4146482, + "CONCEPT_NAME" : "Urinary tract infection in pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "307534009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 194101, + "CONCEPT_NAME" : "Uterine size for dates discrepancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "430933008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 37109810, + "CONCEPT_NAME" : "Vaginal bleeding complicating early pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "723665008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 442290, + "CONCEPT_NAME" : "Varicose veins of legs complicating pregnancy AND/OR puerperium", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "5626004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 434712, + "CONCEPT_NAME" : "Varicose veins of legs in pregnancy and the puerperium with antenatal complication", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "200208004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 441929, + "CONCEPT_NAME" : "Varicose veins of perineum and vulva in pregnancy and the puerperium with antenatal complication", + "STANDARD_CONCEPT" : "N", + "STANDARD_CONCEPT_CAPTION" : "Non-Standard", + "INVALID_REASON" : "D", + "INVALID_REASON_CAPTION" : "Invalid", + "CONCEPT_CODE" : "200217004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435021, + "CONCEPT_NAME" : "Vasa previa with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199896005", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 315884, + "CONCEPT_NAME" : "Vascular lesions of cord with antenatal problem", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "199901007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4300078, + "CONCEPT_NAME" : "Velamentous insertion of umbilical cord", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "77278008", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440158, + "CONCEPT_NAME" : "Venereal disease in mother complicating pregnancy, childbirth AND/OR puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "27075004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 313543, + "CONCEPT_NAME" : "Venous complication of pregnancy and/or puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "267280004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 435604, + "CONCEPT_NAME" : "Viral disease in mother complicating pregnancy, childbirth AND/OR puerperium", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "31516002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 35625971, + "CONCEPT_NAME" : "Vomiting during third trimester of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "769087009", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 440785, + "CONCEPT_NAME" : "Vomiting of pregnancy", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "90325002", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + }, + { + "id" : 113, + "name" : "Threatened miscarriage (TA)", + "expression" : { + "items" : [ + { + "concept" : { + "CONCEPT_ID" : 440457, + "CONCEPT_NAME" : "Threatened miscarriage", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "54048003", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4252252, + "CONCEPT_NAME" : "Threatened miscarriage in first trimester", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "73790007", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4294259, + "CONCEPT_NAME" : "Threatened miscarriage in second trimester", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "75933004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + }, + { + "concept" : { + "CONCEPT_ID" : 4032055, + "CONCEPT_NAME" : "Threatened miscarriage in third trimester", + "STANDARD_CONCEPT" : "S", + "STANDARD_CONCEPT_CAPTION" : "Standard", + "INVALID_REASON" : "V", + "INVALID_REASON_CAPTION" : "Valid", + "CONCEPT_CODE" : "10884004", + "DOMAIN_ID" : "Condition", + "VOCABULARY_ID" : "SNOMED", + "CONCEPT_CLASS_ID" : "Clinical Finding" + }, + "isExcluded" : false, + "includeDescendants" : false, + "includeMapped" : false + } + ] + } + } + ], + "QualifiedLimit" : { + "Type" : "Last" + }, + "ExpressionLimit" : { + "Type" : "All" + }, + "InclusionRules" : [ + { + "name" : "Outcome between 28d-139d from entry event", + "expression" : { + "Type" : "ANY", + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 62, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 28, + "Coeff" : 1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 62, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 28, + "Coeff" : 1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 62, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 28, + "Coeff" : 1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 60, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 28, + "Coeff" : 1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 60, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 28, + "Coeff" : 1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + }, + { + "name" : "No outcome between 0d-27d from entry event ", + "expression" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 62, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 27, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 62, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 27, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 62, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 27, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 60, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 27, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 60, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 27, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + }, + { + "name" : "No outcome in the 14d before entry event", + "expression" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 60, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 28, + "Coeff" : -1 + }, + "End" : { + "Days" : 0, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 60, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 28, + "Coeff" : -1 + }, + "End" : { + "Days" : 0, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 1, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 28, + "Coeff" : -1 + }, + "End" : { + "Days" : 0, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 1, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 28, + "Coeff" : -1 + }, + "End" : { + "Days" : 0, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 107, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 14, + "Coeff" : -1 + }, + "End" : { + "Days" : 0, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 107, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 14, + "Coeff" : -1 + }, + "End" : { + "Days" : 0, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "DrugEra" : { + "CodesetId" : 109 + } + }, + "StartWindow" : { + "Start" : { + "Days" : 14, + "Coeff" : -1 + }, + "End" : { + "Days" : 0, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 62, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 14, + "Coeff" : -1 + }, + "End" : { + "Days" : 0, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 62, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 14, + "Coeff" : -1 + }, + "End" : { + "Days" : 0, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 62, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 14, + "Coeff" : -1 + }, + "End" : { + "Days" : 0, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 0, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 28, + "Coeff" : -1 + }, + "End" : { + "Days" : 0, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 0, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 28, + "Coeff" : -1 + }, + "End" : { + "Days" : 0, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 0, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 28, + "Coeff" : -1 + }, + "End" : { + "Days" : 0, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 0, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 28, + "Coeff" : -1 + }, + "End" : { + "Days" : 0, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + }, + { + "name" : "Has a second pregnancy marker", + "description" : "has a second marker", + "expression" : { + "Type" : "ANY", + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 61, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 2, + "IsDistinct" : true, + "CountColumn" : "DOMAIN_CONCEPT" + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 61, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 2, + "IsDistinct" : true, + "CountColumn" : "DOMAIN_CONCEPT" + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 61, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 2, + "IsDistinct" : true, + "CountColumn" : "DOMAIN_CONCEPT" + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 61, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 2, + "IsDistinct" : true, + "CountColumn" : "DOMAIN_CONCEPT" + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [ + { + "Type" : "AT_LEAST", + "Count" : 2, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 61, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false, + "CountColumn" : "START_DATE" + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 61, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false, + "CountColumn" : "START_DATE" + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 61, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false, + "CountColumn" : "START_DATE" + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 61, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false, + "CountColumn" : "START_DATE" + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + ] + } + }, + { + "name" : "Female, aged 12-55 on outcome date", + "expression" : { + "Type" : "ANY", + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 62, + "ConditionTypeExclude" : false, + "Age" : { + "Value" : 12, + "Op" : "bt", + "Extent" : 55 + }, + "Gender" : [ + { + "CONCEPT_ID" : 8532, + "CONCEPT_NAME" : "FEMALE", + "STANDARD_CONCEPT" : null, + "STANDARD_CONCEPT_CAPTION" : "Unknown", + "INVALID_REASON" : null, + "INVALID_REASON_CAPTION" : "Unknown", + "CONCEPT_CODE" : "F", + "DOMAIN_ID" : "Gender", + "VOCABULARY_ID" : "Gender", + "CONCEPT_CLASS_ID" : null + } + ] + } + }, + "StartWindow" : { + "Start" : { + "Days" : 28, + "Coeff" : 1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 62, + "ObservationTypeExclude" : false, + "Age" : { + "Value" : 12, + "Op" : "bt", + "Extent" : 55 + }, + "Gender" : [ + { + "CONCEPT_ID" : 8532, + "CONCEPT_NAME" : "FEMALE", + "STANDARD_CONCEPT" : null, + "STANDARD_CONCEPT_CAPTION" : "Unknown", + "INVALID_REASON" : null, + "INVALID_REASON_CAPTION" : "Unknown", + "CONCEPT_CODE" : "F", + "DOMAIN_ID" : "Gender", + "VOCABULARY_ID" : "Gender", + "CONCEPT_CLASS_ID" : null + } + ] + } + }, + "StartWindow" : { + "Start" : { + "Days" : 28, + "Coeff" : 1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 62, + "ProcedureTypeExclude" : false, + "Age" : { + "Value" : 12, + "Op" : "bt", + "Extent" : 55 + }, + "Gender" : [ + { + "CONCEPT_ID" : 8532, + "CONCEPT_NAME" : "FEMALE", + "STANDARD_CONCEPT" : null, + "STANDARD_CONCEPT_CAPTION" : "Unknown", + "INVALID_REASON" : null, + "INVALID_REASON_CAPTION" : "Unknown", + "CONCEPT_CODE" : "F", + "DOMAIN_ID" : "Gender", + "VOCABULARY_ID" : "Gender", + "CONCEPT_CLASS_ID" : null + } + ] + } + }, + "StartWindow" : { + "Start" : { + "Days" : 28, + "Coeff" : 1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 60, + "ConditionTypeExclude" : false, + "Age" : { + "Value" : 12, + "Op" : "bt", + "Extent" : 55 + }, + "Gender" : [ + { + "CONCEPT_ID" : 8532, + "CONCEPT_NAME" : "FEMALE", + "STANDARD_CONCEPT" : null, + "STANDARD_CONCEPT_CAPTION" : "Unknown", + "INVALID_REASON" : null, + "INVALID_REASON_CAPTION" : "Unknown", + "CONCEPT_CODE" : "F", + "DOMAIN_ID" : "Gender", + "VOCABULARY_ID" : "Gender", + "CONCEPT_CLASS_ID" : null + } + ] + } + }, + "StartWindow" : { + "Start" : { + "Days" : 28, + "Coeff" : 1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 60, + "ObservationTypeExclude" : false, + "Age" : { + "Value" : 12, + "Op" : "bt", + "Extent" : 55 + }, + "Gender" : [ + { + "CONCEPT_ID" : 8532, + "CONCEPT_NAME" : "FEMALE", + "STANDARD_CONCEPT" : null, + "STANDARD_CONCEPT_CAPTION" : "Unknown", + "INVALID_REASON" : null, + "INVALID_REASON_CAPTION" : "Unknown", + "CONCEPT_CODE" : "F", + "DOMAIN_ID" : "Gender", + "VOCABULARY_ID" : "Gender", + "CONCEPT_CLASS_ID" : null + } + ] + } + }, + "StartWindow" : { + "Start" : { + "Days" : 28, + "Coeff" : 1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + }, + { + "name" : "No post outcome event in 42d (AGP, PCONF) ", + "expression" : { + "Type" : "ANY", + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 57, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 1, + "Coeff" : 1 + }, + "End" : { + "Days" : 42, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 57, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 1, + "Coeff" : 1 + }, + "End" : { + "Days" : 42, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 57, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 1, + "Coeff" : 1 + }, + "End" : { + "Days" : 42, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 57, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 1, + "Coeff" : 1 + }, + "End" : { + "Days" : 42, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 56, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 1, + "Coeff" : 1 + }, + "End" : { + "Days" : 42, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 56, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 1, + "Coeff" : 1 + }, + "End" : { + "Days" : 42, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "VisitOccurrence" : { + "CodesetId" : 56, + "VisitTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 1, + "Coeff" : 1 + }, + "End" : { + "Days" : 42, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 56, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 1, + "Coeff" : 1 + }, + "End" : { + "Days" : 42, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + }, + "CodesetId" : 62, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 28, + "Coeff" : 1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 57, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 1, + "Coeff" : 1 + }, + "End" : { + "Days" : 42, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 57, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 1, + "Coeff" : 1 + }, + "End" : { + "Days" : 42, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 57, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 1, + "Coeff" : 1 + }, + "End" : { + "Days" : 42, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 57, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 1, + "Coeff" : 1 + }, + "End" : { + "Days" : 42, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 56, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 1, + "Coeff" : 1 + }, + "End" : { + "Days" : 42, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 56, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 1, + "Coeff" : 1 + }, + "End" : { + "Days" : 42, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 56, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 1, + "Coeff" : 1 + }, + "End" : { + "Days" : 42, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "VisitOccurrence" : { + "CodesetId" : 56, + "VisitTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 1, + "Coeff" : 1 + }, + "End" : { + "Days" : 42, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + }, + "CodesetId" : 62, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 28, + "Coeff" : 1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 57, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 1, + "Coeff" : 1 + }, + "End" : { + "Days" : 42, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 57, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 1, + "Coeff" : 1 + }, + "End" : { + "Days" : 42, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 57, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 1, + "Coeff" : 1 + }, + "End" : { + "Days" : 42, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 57, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 1, + "Coeff" : -1 + }, + "End" : { + "Days" : 42, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 56, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 1, + "Coeff" : 1 + }, + "End" : { + "Days" : 42, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 56, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 1, + "Coeff" : 1 + }, + "End" : { + "Days" : 42, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 56, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 1, + "Coeff" : 1 + }, + "End" : { + "Days" : 42, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "VisitOccurrence" : { + "CodesetId" : 56, + "VisitTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 1, + "Coeff" : 1 + }, + "End" : { + "Days" : 42, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + }, + "CodesetId" : 62, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 28, + "Coeff" : 1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 111, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 1, + "Coeff" : 1 + }, + "End" : { + "Days" : 42, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 57, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 1, + "Coeff" : 1 + }, + "End" : { + "Days" : 42, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 57, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 1, + "Coeff" : 1 + }, + "End" : { + "Days" : 42, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 57, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 1, + "Coeff" : 1 + }, + "End" : { + "Days" : 42, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 56, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 1, + "Coeff" : 1 + }, + "End" : { + "Days" : 42, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 56, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 1, + "Coeff" : 1 + }, + "End" : { + "Days" : 42, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "VisitOccurrence" : { + "CodesetId" : 56, + "VisitTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 1, + "Coeff" : 1 + }, + "End" : { + "Days" : 42, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 56, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 1, + "Coeff" : 1 + }, + "End" : { + "Days" : 42, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + }, + "CodesetId" : 60, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 28, + "Coeff" : 1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 57, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 1, + "Coeff" : 1 + }, + "End" : { + "Days" : 42, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 57, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 1, + "Coeff" : 1 + }, + "End" : { + "Days" : 42, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Measurement" : { + "CodesetId" : 57, + "MeasurementTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 1, + "Coeff" : 1 + }, + "End" : { + "Days" : 42, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 57, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 1, + "Coeff" : 1 + }, + "End" : { + "Days" : 42, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 56, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 1, + "Coeff" : 1 + }, + "End" : { + "Days" : 42, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 56, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 1, + "Coeff" : 1 + }, + "End" : { + "Days" : 42, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "VisitOccurrence" : { + "CodesetId" : 56, + "VisitTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 1, + "Coeff" : 1 + }, + "End" : { + "Days" : 42, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 56, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 1, + "Coeff" : 1 + }, + "End" : { + "Days" : 42, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + }, + "CodesetId" : 60, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 28, + "Coeff" : 1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + }, + { + "name" : "No live birth/stillbirth/ectopic pregnancy around outcome date", + "expression" : { + "Type" : "ANY", + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 1, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 70, + "Coeff" : -1 + }, + "End" : { + "Days" : 168, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 1, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 70, + "Coeff" : -1 + }, + "End" : { + "Days" : 168, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 60, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 70, + "Coeff" : -1 + }, + "End" : { + "Days" : 154, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 60, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 70, + "Coeff" : -1 + }, + "End" : { + "Days" : 154, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 107, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 56, + "Coeff" : -1 + }, + "End" : { + "Days" : 56, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 107, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 56, + "Coeff" : -1 + }, + "End" : { + "Days" : 56, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "DrugEra" : { + "CodesetId" : 109 + } + }, + "StartWindow" : { + "Start" : { + "Days" : 56, + "Coeff" : -1 + }, + "End" : { + "Days" : 56, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + }, + "CodesetId" : 62, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 1, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 70, + "Coeff" : -1 + }, + "End" : { + "Days" : 168, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 1, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 70, + "Coeff" : -1 + }, + "End" : { + "Days" : 168, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 60, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 70, + "Coeff" : -1 + }, + "End" : { + "Days" : 156, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 60, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 70, + "Coeff" : -1 + }, + "End" : { + "Days" : 156, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 107, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 56, + "Coeff" : -1 + }, + "End" : { + "Days" : 56, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 107, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 56, + "Coeff" : -1 + }, + "End" : { + "Days" : 56, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "DrugEra" : { + "CodesetId" : 109 + } + }, + "StartWindow" : { + "Start" : { + "Days" : 56, + "Coeff" : -1 + }, + "End" : { + "Days" : 56, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + }, + "CodesetId" : 62, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 1, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 70, + "Coeff" : -1 + }, + "End" : { + "Days" : 168, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 1, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 70, + "Coeff" : -1 + }, + "End" : { + "Days" : 168, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 60, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 70, + "Coeff" : -1 + }, + "End" : { + "Days" : 154, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 60, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 70, + "Coeff" : -1 + }, + "End" : { + "Days" : 154, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 107, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 56, + "Coeff" : -1 + }, + "End" : { + "Days" : 56, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 107, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 56, + "Coeff" : -1 + }, + "End" : { + "Days" : 56, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "DrugEra" : { + "CodesetId" : 109 + } + }, + "StartWindow" : { + "Start" : { + "Days" : 56, + "Coeff" : -1 + }, + "End" : { + "Days" : 56, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + }, + "CodesetId" : 62, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 1, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 182, + "Coeff" : -1 + }, + "End" : { + "Days" : 168, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 1, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 182, + "Coeff" : -1 + }, + "End" : { + "Days" : 168, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + }, + "CodesetId" : 60, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 1, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 182, + "Coeff" : -1 + }, + "End" : { + "Days" : 168, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 1, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 182, + "Coeff" : -1 + }, + "End" : { + "Days" : 168, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + }, + "CodesetId" : 60, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 139, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + }, + { + "name" : "Outcome marker in observation period", + "expression" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "ObservationPeriod" : { + "CorrelatedCriteria" : { + "Type" : "AT_LEAST", + "Count" : 1, + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 60, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "EndWindow" : { + "Start" : { + "Coeff" : -1 + }, + "End" : { + "Days" : 0, + "Coeff" : 1 + }, + "UseIndexEnd" : true, + "UseEventEnd" : true + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 60, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "EndWindow" : { + "Start" : { + "Coeff" : -1 + }, + "End" : { + "Days" : 0, + "Coeff" : 1 + }, + "UseIndexEnd" : true, + "UseEventEnd" : true + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 62, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "EndWindow" : { + "Start" : { + "Coeff" : -1 + }, + "End" : { + "Days" : 0, + "Coeff" : 1 + }, + "UseIndexEnd" : true, + "UseEventEnd" : true + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 62, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "EndWindow" : { + "Start" : { + "Coeff" : -1 + }, + "End" : { + "Days" : 0, + "Coeff" : 1 + }, + "UseIndexEnd" : true, + "UseEventEnd" : true + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 62, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "EndWindow" : { + "Start" : { + "Coeff" : -1 + }, + "End" : { + "Days" : 0, + "Coeff" : 1 + }, + "UseIndexEnd" : true, + "UseEventEnd" : true + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + } + }, + "StartWindow" : { + "Start" : { + "Coeff" : -1 + }, + "End" : { + "Days" : 0, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 2, + "Count" : 1, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + } + } + ], + "EndStrategy" : { + "DateOffset" : { + "DateField" : "StartDate", + "Offset" : 139 + } + }, + "CensoringCriteria" : [ + { + "ConditionOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 62, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : 1 + }, + "End" : { + "Days" : 30, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 62, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 1, + "Coeff" : 1 + }, + "End" : { + "Days" : 7, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 62, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 1, + "Coeff" : 1 + }, + "End" : { + "Days" : 7, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 1, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 70, + "Coeff" : -1 + }, + "End" : { + "Days" : 168, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 1, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 70, + "Coeff" : -1 + }, + "End" : { + "Days" : 168, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 60, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 70, + "Coeff" : -1 + }, + "End" : { + "Days" : 154, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 60, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 70, + "Coeff" : -1 + }, + "End" : { + "Days" : 154, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 107, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 56, + "Coeff" : -1 + }, + "End" : { + "Days" : 56, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 107, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 56, + "Coeff" : -1 + }, + "End" : { + "Days" : 56, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "DrugEra" : { + "CodesetId" : 109 + } + }, + "StartWindow" : { + "Start" : { + "Days" : 56, + "Coeff" : -1 + }, + "End" : { + "Days" : 56, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + }, + "CodesetId" : 62, + "ConditionTypeExclude" : false + } + }, + { + "Observation" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 62, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : 1 + }, + "End" : { + "Days" : 30, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 62, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 1, + "Coeff" : 1 + }, + "End" : { + "Days" : 7, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false, + "CountColumn" : "DOMAIN_CONCEPT" + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 62, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 1, + "Coeff" : 1 + }, + "End" : { + "Days" : 7, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 1, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 70, + "Coeff" : -1 + }, + "End" : { + "Days" : 168, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 1, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 70, + "Coeff" : -1 + }, + "End" : { + "Days" : 168, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 60, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 70, + "Coeff" : -1 + }, + "End" : { + "Days" : 154, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 60, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 70, + "Coeff" : -1 + }, + "End" : { + "Days" : 154, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 107, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 56, + "Coeff" : -1 + }, + "End" : { + "Days" : 56, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 107, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 56, + "Coeff" : -1 + }, + "End" : { + "Days" : 56, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "DrugEra" : { + "CodesetId" : 109 + } + }, + "StartWindow" : { + "Start" : { + "Days" : 56, + "Coeff" : -1 + }, + "End" : { + "Days" : 56, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + }, + "CodesetId" : 62, + "ObservationTypeExclude" : false + } + }, + { + "ProcedureOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 1, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 70, + "Coeff" : -1 + }, + "End" : { + "Days" : 168, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 1, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 70, + "Coeff" : -1 + }, + "End" : { + "Days" : 168, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 60, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 70, + "Coeff" : -1 + }, + "End" : { + "Days" : 154, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 60, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 70, + "Coeff" : -1 + }, + "End" : { + "Days" : 154, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 107, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 56, + "Coeff" : -1 + }, + "End" : { + "Days" : 56, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "DrugEra" : { + "CodesetId" : 109 + } + }, + "StartWindow" : { + "Start" : { + "Days" : 56, + "Coeff" : -1 + }, + "End" : { + "Days" : 56, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 107, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 56, + "Coeff" : -1 + }, + "End" : { + "Days" : 56, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + }, + "CodesetId" : 62, + "ProcedureTypeExclude" : false + } + }, + { + "ConditionOccurrence" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 62, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 30, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 1, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 182, + "Coeff" : -1 + }, + "End" : { + "Days" : 168, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 1, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 182, + "Coeff" : -1 + }, + "End" : { + "Days" : 168, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + }, + "CodesetId" : 60, + "ConditionTypeExclude" : false + } + }, + { + "Observation" : { + "CorrelatedCriteria" : { + "Type" : "ALL", + "CriteriaList" : [ + { + "Criteria" : { + "ProcedureOccurrence" : { + "CodesetId" : 62, + "ProcedureTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 0, + "Coeff" : -1 + }, + "End" : { + "Days" : 30, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "ConditionOccurrence" : { + "CodesetId" : 1, + "ConditionTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 182, + "Coeff" : -1 + }, + "End" : { + "Days" : 168, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + }, + { + "Criteria" : { + "Observation" : { + "CodesetId" : 1, + "ObservationTypeExclude" : false + } + }, + "StartWindow" : { + "Start" : { + "Days" : 182, + "Coeff" : -1 + }, + "End" : { + "Days" : 168, + "Coeff" : 1 + }, + "UseIndexEnd" : false, + "UseEventEnd" : false + }, + "RestrictVisit" : false, + "IgnoreObservationPeriod" : false, + "Occurrence" : { + "Type" : 0, + "Count" : 0, + "IsDistinct" : false + } + } + ], + "DemographicCriteriaList" : [], + "Groups" : [] + }, + "CodesetId" : 60, + "ObservationTypeExclude" : false + } + } + ], + "CollapseSettings" : { + "CollapseType" : "ERA", + "EraPad" : 0 + }, + "CensorWindow" : {} +} \ No newline at end of file diff --git a/inst/cohorts/InclusionRules.csv b/inst/cohorts/InclusionRules.csv index 27bb71fe..540f551b 100644 --- a/inst/cohorts/InclusionRules.csv +++ b/inst/cohorts/InclusionRules.csv @@ -311,6 +311,38 @@ cohortName,ruleSequence,ruleName,cohortId 1318,42,(SxNaive) no lung resection excision (on or before),1318 1329,0,Overdose,1329 134,0,has at least one condition record of ADHD,134 +1431,0,Outcome between 42d-84d from entry event,1431 +1431,1,No outcome between 0d-41d from entry event,1431 +1431,2,No outcome in the 14d before entry event,1431 +1431,3,Has a second pregnancy marker,1431 +1431,4,"Female, aged 12-55 on outcome date",1431 +1431,5,"No post outcome event in 42d (AGP, PCONF)",1431 +1431,6,No live birth/stillbirth around outcome date,1431 +1431,7,OBSERVATION PERIOD: End marker in observation period,1431 +1431,8,ECT procedure within 14d of ECT condition,1431 +1432,0,Outcome between 140d-301d from entry event,1432 +1432,1,No outcome between 0d-139d from entry event,1432 +1432,2,No outcome in 28d before entry event,1432 +1432,3,Has a second pregnancy marker,1432 +1432,4,"Female, aged 12-55 on outcome date",1432 +1432,5,"No post outcome event in 42d (AGP, PCONF)",1432 +1432,6, No live birth around outcome date,1432 +1432,7,Outcome marker in observation period,1432 +1433,0,Outcome between 161d-301d from entry event,1433 +1433,1,No outcome between 0d-160d from entry event,1433 +1433,2,No outcome in the 28d before entry event,1433 +1433,3,Has a second pregnancy marker,1433 +1433,4,"Female, aged 12-55 on outcome date",1433 +1433,5,"If only a delivery code, no other pregnancy outcome",1433 +1433,6,Outcome marker in observation period,1433 +1434,0,Outcome between 28d-139d from entry event,1434 +1434,1,No outcome between 0d-27d from entry event ,1434 +1434,2,No outcome in the 14d before entry event,1434 +1434,3,Has a second pregnancy marker,1434 +1434,4,"Female, aged 12-55 on outcome date",1434 +1434,5,"No post outcome event in 42d (AGP, PCONF) ",1434 +1434,6,No live birth/stillbirth/ectopic pregnancy around outcome date,1434 +1434,7,Outcome marker in observation period,1434 207,0,No congenital or genetic anemia,207 207,1,No Constitutional Pure Red Cell Aplasia,207 207,2,No normal Hemoglobin measurement in blood on index date,207 diff --git a/inst/sql/sql_server/1431.sql b/inst/sql/sql_server/1431.sql new file mode 100644 index 00000000..804d02f4 --- /dev/null +++ b/inst/sql/sql_server/1431.sql @@ -0,0 +1,23160 @@ +CREATE TABLE #Codesets ( + codeset_id int NOT NULL, + concept_id bigint NOT NULL +) +; + +INSERT INTO #Codesets (codeset_id, concept_id) +SELECT 0 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4130321,439402,4155282,437936,4248954,432968,442923,442922,2101814,441649,443133,4075168,76761,73526,4078138,4075169,4147974,314103,320456,4014291,4016064,4015277,4015270,4192676,77624,81086,3662128,436767,4075165,73537,4235752,3662129,4071629,441369,435607,437942,2110316,2110323,4165077,4015701,2004789,42872492,42872493,4152029,4014738,4223536,37208486,4034145,194707,315013,435879,4129041,433270,439092,75882,441361,4075190,440793,193277,4106406,4061457,4066112,4232028,4234710,4223638,4278225,4100410,4189205,4096145,4038495,441641,40551541,4056129,42872805,4130319,4293034,443012,4062685,4309425,198486,4134722,442915,133816,443321,440794,4075182,4075161,42536960,4075160,42536952,4167089,4127252,42537021,46270991,4032767,42536954,4272812,4311671,44513763,4211824,45757775,441924,443521,193535,72697,4063296,4064177,4064171,4064174,192978,199088,4217642,4075187,4114637,435022,4032761,4324549,2004702,194429,4244672,74440,77052,4091200,81357,80778,4009879,4014452,434110,4032764,435323,44513743,4075188,4231702,4035778,77615,4075170,441630,4014451,73538,436173,4064834,2004771,77621,4128031,40760193,80782,441082,196170,2004786,4161944,37312440,44513746,4088084,4075735,4075191,4071505,4069969,313829,438206,435606,442920,442919,44513745,4075189,4266683,4093774,4143647,42535817,72970,433260,4063163,4063162,4059751,42539267,442082,2101016,4071630,4127248,4014720,4063160,4071507,442053,74433,78494,75326,193269,197048,442080,79897,201368,193271,195025,199087,196182,194711,433274,2004767,2004802,2004765,2004768,2004783,4191809,44513736,44513756,44513729,44513747,2004731,44513740,44513733,44513752,4145318,4127249,73824,42535816,4234421,4023797,4307825,4073438,193539,4172142,193264,201359,4014292,434427,435031,441363,438220,200160,37110284,37110283,45757175,45757176,36712702,44784550,44784551,196762,72692,440476,441645,440475,434431,442419,442418,4065749,434713,438481,200157,442078,198216,195878,4127253,4121924,198816,192699,4064960,4065618,192384,198499,4264738,438490,439077,4092760,435020,80474,4170152,36713074,4073422,4167497,4205240,2110318,439094,439095,193275,3186670,136755,138207,4204679,137940,4063171,4174854,4267072,439093,432975,4161678,3655718,4134431,4326563,4290245,4073424,440462,196181,197049,4101844,42535052,435018,4060157,2110342,2004742,79889,45757158,4075171,442069,193544,4228344,4331179,44784097,2110320,2110308,4167018,442059,435610,435609,321367,443246,441087,4071632,40394878)) + +) I +) C UNION ALL +SELECT 1 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4092289,4307044,40482735,40483126,4163851,36713468,3174212,4097427,4147043,4142021,4310910,4069200,4145125,4082863,4008884,4107401,4029786,45765500,45757166,45773428,45765501,45757167,45757168,45765502,45772082,45757169,4014295,40483521,36713465,4227728,4330570,4049333,4243026,4066292,4193224,4336090,4199146,4307237,4178275,4094046,42539210,4014456,4015422,45757165,4015421,40483084,40483101,4014296,4014455)) + +) I +) C UNION ALL +SELECT 2 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4015296,4014149,4014150,44808979,4015141,44808980,4014151,44808981,4015297,4015298,4014434,4015299,4015142,4014152,4015300,4015301,4015302,4014435,4178165,4181468,4181162,4324063,438542,45770261,4322726,4242241,4174506,4197245,4266517,4248725,4283690,4049621,4277749,4097608,4181751,4337360,4051642,4185780,4274955,4336226,439922,435640,444023,432430,444461,444417,4220085,434484,433864,442558,441678,443874,444267,438543,442355,443871,435655,4326232,442769,444067,4195157,4290009,4313026,4270513,4132434,4245908,762907,4336958,4180111,444098)) + +) I +) C UNION ALL +SELECT 3 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4132434,4322726)) + +) I +) C UNION ALL +SELECT 4 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4072438,4088445,4058439)) + +) I +) C UNION ALL +SELECT 5 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4186424,4324606,40489798,2211754,2211753,4237339)) + +) I +) C UNION ALL +SELECT 6 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (40480490,4061810,4061809,3040768,3038294,3010296,42529192,3027634,40757479,3032506,3033080,3009306,42529190,4197249,4099476,4014768,3012116,3024289,3021607,3046154,3044142,3030180,3046979,3022269,3016670,3024370,40761829,3044397,3025053,3027505,42529191,3045958,40762626,3028331,42529189,2212200,2212199,2212198,4147940,4269851,4041177,44807243,4042555,4059689,4042557,4078285,4057158,4269860,4042936,40761828,37396772,37396771,40478936,40483704,40480870,40483600,4310471,4210719,4161969,4275335,4195345,4078287,3051868)) + +) I +) C UNION ALL +SELECT 7 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (443800,4184965,40480713,4242590,4211822,4070773,4034017,4034018,45765512,4211227,4261326,4219015,4138554,40318194,4230947,40318195,4312727)) + +) I +) C UNION ALL +SELECT 8 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4055287,37392366,4250175,4091293,4091461,4055285,37392365,2212173,4014769)) + +) I +) C UNION ALL +SELECT 9 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4015296,4197245)) + +) I +) C UNION ALL +SELECT 10 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4015142,442355,762907)) + +) I +) C UNION ALL +SELECT 11 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4015299,438543)) + +) I +) C UNION ALL +SELECT 12 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4014434,444267,4180111)) + +) I +) C UNION ALL +SELECT 13 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4015300,435655)) + +) I +) C UNION ALL +SELECT 14 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4245908)) + +) I +) C UNION ALL +SELECT 15 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4015301,4336958,444098)) + +) I +) C UNION ALL +SELECT 17 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4242241)) + +) I +) C UNION ALL +SELECT 18 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4174506)) + +) I +) C UNION ALL +SELECT 19 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4181468,4266517)) + +) I +) C UNION ALL +SELECT 20 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4337360)) + +) I +) C UNION ALL +SELECT 21 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4220085)) + +) I +) C UNION ALL +SELECT 22 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4326232)) + +) I +) C UNION ALL +SELECT 23 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4195157)) + +) I +) C UNION ALL +SELECT 24 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4290009)) + +) I +) C UNION ALL +SELECT 25 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4313026)) + +) I +) C UNION ALL +SELECT 26 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4270513)) + +) I +) C UNION ALL +SELECT 28 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4248725)) + +) I +) C UNION ALL +SELECT 29 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4283690)) + +) I +) C UNION ALL +SELECT 30 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4014149,4049621)) + +) I +) C UNION ALL +SELECT 31 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4277749)) + +) I +) C UNION ALL +SELECT 32 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4097608)) + +) I +) C UNION ALL +SELECT 33 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4324063,4181751)) + +) I +) C UNION ALL +SELECT 34 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4014150,4178165,4051642)) + +) I +) C UNION ALL +SELECT 35 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4181162,4185780)) + +) I +) C UNION ALL +SELECT 36 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (44808979,4274955)) + +) I +) C UNION ALL +SELECT 37 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (438542,4336226)) + +) I +) C UNION ALL +SELECT 38 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4015141,439922)) + +) I +) C UNION ALL +SELECT 40 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (44808980,435640)) + +) I +) C UNION ALL +SELECT 41 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (444023)) + +) I +) C UNION ALL +SELECT 42 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (45770261,432430)) + +) I +) C UNION ALL +SELECT 43 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (444461)) + +) I +) C UNION ALL +SELECT 44 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (444417)) + +) I +) C UNION ALL +SELECT 45 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4014151,434484)) + +) I +) C UNION ALL +SELECT 47 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (44808981,433864)) + +) I +) C UNION ALL +SELECT 48 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4015297,442558)) + +) I +) C UNION ALL +SELECT 49 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (441678)) + +) I +) C UNION ALL +SELECT 50 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4015298,443874)) + +) I +) C UNION ALL +SELECT 51 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4014152,443871)) + +) I +) C UNION ALL +SELECT 52 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4015302,442769)) + +) I +) C UNION ALL +SELECT 53 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4014435,444067)) + +) I +) C UNION ALL +SELECT 55 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4239302,2004542,4130186,4127094,4187819,4280831,2110196,2110197,4238828,2213350,4272937,2721246,42739500,2213363,2213362,2213365,2213364,2721238,2721239,2721240,4309021,40482399,2213355,2721256,2213347,2213348,4022096,4024589,2721247,2721248,4327048,2110275,4072852,4072863,4074569,2213361,4127892,2110274,4032737,2721243,2721241,4127104,4072421,2110276,4309019,2213360,4072715,4030829,4138741,4139858,4139060,4137390,4145843,4020898,2721255,4199599,2788842,2721237,3049700,2721245,2721244,4138627,46273065,4145664,4138633,4141534,4142402,4144415,40259107,2213351,4072862,46232934,44513468,44517168,4075024,44513634,44513516,2213352,40490338,2213358,2213357,2110198,2721254,4022098,44790511,40490447,4073406,4127106,4020897,4127105)) + +) I +) C UNION ALL +SELECT 56 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4014433,4014148,4173786,4061786,4060243,43530904,4061437,4060251,439656,4060246,4060097,4060242,4060241,4059989,4060247,4147564,4060239,4061433,4061426,36713461,4061425,4061787,4060098,4059988,4061789,4060248,4060101,4061793,4060240,4060244,4059987,4190427,4147941,4047845,4084186,4062361,4061521,4081196,2110312,2110313,2108689,4015159,4060252,37016958,4076939,4061795,4156955,4150421,4059478,4128833,4226978,4060255,4084439,4015304,4060104,4151190,2514574,4061791,4066354,4305717,37016955,4084521,4038747,4140250,4038420,4038571,4038945,4039088,4038943,4039610,4038938,4038760,4038418,4038749,4038751,4038932,4039602,4038753,4038935,4038748,4039609,4038759,4175225,4038424,4171428,4039608,4038941,4038939,4038937,4038573,4039603,4194143,4016475,2618150,2618151,2618152,2618154,2618155,4176966,4112701,4311447,4172038,4313474,4060105,77619,4081292,46272536,4084693,4047564,4083415,4260976,2101831,40517216,40525253)) + +) I +) C UNION ALL +SELECT 57 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (441092,4061424,40760833,4139126,4015590,3011536,43054893,43021054,37017322,441085,192380,4210896,3006722,40759953,195877,4061522,437937,4030415,197031,4061672,43021951,43021952,3045823,432969,3000119,4217975,4038942,4150948,4148890,4094910,4061785,4060237,4299535,4059982,4061686,4059984,4061411,4059981,4133029,442594,440466,4061423,4214930,3040000,196484,4042412,198212,4129023,4218813,432375,441919,4307820,4059985,4239301,4041878,3023791,40519557,40524802,40524805)) + +) I +) C UNION ALL +SELECT 58 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (2721180,3019145,3011465,3011996,3010164,40758989,3011149,3009417,3038136,3004303,3036988,3002091,3008714,3003191,3018954,3018171,4018189,4296540,4296541,4016953,4017479,4263011,43527960,43527959,4096237,44807244,2212633,2212632,2212631,44807240,4285271,44806337,4038817,44812174,4210718,4210722,4195509,4198892,4041161,4042751,4214677,44789306,4055426,4055954)) + +) I +) C UNION ALL +SELECT 60 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4129846,37017027,4079844,4071603,442338,443695,4034159,45773593,4060687,4028787,4222915,4242724,4184594,42539377,42538805,42538806,4014454,443213,40406337,4287409,4217655,4261819,4321563,4301269,4103876,4300979,443463,4306288,4192641,4203001,4015163,4015162)) + +) I +) C UNION ALL +SELECT 61 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4198718,4209254,4197835,4193852,4198731,4195213,44805579,3016704,4234906,4258832,4198733,4193853,4198732,3004221,4209122,4193854,4193855,4198719,4198742,4198743,4130321,4200678,4059050,4198125,4149783,193525,442631,314478,312733,137974,314099,437688,438557,440216,439402,439403,4162865,4155282,4162866,4306804,437342,197050,40480490,4136368,436477,3003694,444365,42597053,42597052,42597051,201076,197612,438812,195319,42599848,2721147,2784560,2784559,2784555,2784556,2784557,2784558,2784561,2784562,440776,440454,4050827,4052366,4052365,4050829,36713476,4262542,3034139,4173330,4034308,761075,196490,4215648,45772947,45768986,37397030,441092,4312095,4129840,4061810,4061809,3655216,3655215,4030070,4029428,4029425,3040768,3038294,3010296,42529192,3027634,40757479,3032506,3033080,3009306,42529190,4197249,4099476,4014768,3012116,3024289,3021607,3046154,3044142,3030180,3046979,3022269,3016670,3004943,3024370,40761829,3044397,3025053,3027505,42529191,3045958,40762626,3028331,42529189,2212200,2212199,2212198,4147940,4269851,4041177,44807243,4042555,4059689,4042557,4078285,4207608,2314093,2314092,4208334,443800,4184965,4146045,2110279,4140734,2110280,2004824,437936,435880,4057158,4269860,4231903,435616,3655206,3655205,4057149,433880,4154997,441959,436768,437948,2212210,4248954,4173032,4170460,432968,432967,4209094,434701,442923,442922,4099889,432452,42739743,2101814,2101807,2101809,2101804,2101811,2101812,2100998,2101808,2101806,4118417,40480713,4149405,4015296,4014149,4014150,44808979,4015141,44808980,4014433,4014151,44808981,4015297,4015298,4014434,4015299,4015142,4014152,4015300,4015301,4015302,4014435,4061154,4060259,4061530,4014319,4015139,4207466,4014148,4173786,4061786,4060243,43530904,4061437,4060251,439656,4060246,4060097,4060242,4060241,4059989,4060247,4147564,4060239,4061433,4061426,36713461,4061425,4061787,4060098,4059988,4061789,4061424,4060248,4060101,4061793,4060240,4060244,4059987,4190427,4147941,441649,4047845,4084186,4170305,4062361,4060266,4079835,4152443,4087235,37310544,37310338,36713463,4191703,36713464,36713462,37016744,35609139,4061521,4014320,4015137,4015294,37016760,4152444,4152445,4061131,4061803,4061157,4061534,4141415,4060265,4060263,4143115,4060264,4061802,4060262,4081196,2110312,2110313,435887,4079969,4129846,434089,4143074,438489,443133,438203,37017027,4129039,2108689,4061531,4014312,4016469,4014579,4016470,4269556,4014304,4016052,4015431,4269555,4016464,4016467,4016466,4266765,4167905,4299090,4183596,4170878,4219591,4132308,4244236,4088036,4011798,4028032,4049582,4274664,318247,36716744,4079848,3006511,4080668,2004542,4239302,4130186,4127094,4187819,4280831,2110196,2110197,4238828,4131376,439136,2004526,2004525,4212941,45763635,4300368,4153454,4075168,2213350,4272937,2721246,42739500,2213363,2213362,80156,76761,73526,196488,42739562,2514559,4173192,4215792,37397031,37397032,37204850,37204849,4149455,4014461,4151169,4015275,4078138,4149449,37016220,37016221,4149457,37016222,37018684,46271955,37016216,37016217,37016218,37016213,46271814,37018683,37018889,37016212,762577,37016211,4014299,4149451,4150406,4150405,4150404,4015274,133594,4075169,4147974,42742559,42742561,4150338,321638,314103,320456,314423,4062811,762706,762705,4244383,4043411,4046209,4028640,4093429,2004347,36684754,37207968,36684753,36684752,36684751,4107080,36716760,4028644,2213365,2213364,4184996,36716763,36716762,4014291,4016064,4015277,4015278,4015282,42536751,42536565,4290881,4014465,4015288,4015429,4015287,4014466,4015284,4015270,40760833,435641,4030440,4149610,4171114,4187520,46271901,40759177,4262136,2721180,3655208,3655207,4028780,4055674,4041701,4041702,4041700,4055675,4055676,4042726,4042728,4275337,4041697,4042727,4135545,44784272,4042936,4078281,4027371,4192676,4260748,42742564,4139126,73019,4066255,443330,77624,81086,73282,4260749,4054949,4066258,4345684,4015144,40766616,4254219,3662128,4213387,436767,4075165,73267,74698,73537,76756,4283942,4122871,3026267,4120298,4031037,317669,36713582,4306192,4261479,42742390,2108149,4065999,4208980,4235752,36716743,36713583,375016,4047852,3662129,4071629,2110305,2110304,4147060,4243309,377980,4171109,4171111,4082313,316494,4321386,4034148,436740,441369,435607,437334,440166,44790204,197043,437942,2110316,2110323,2110324,2110317,4165077,4015701,4303297,2004789,4066111,42872492,42872493,197344,194113,4065866,40482050,4152029,4253751,40479783,4014738,4194590,4200299,4194591,4199794,4194593,4199793,4194592,4014735,4014605,4194594,4014606,4194595,4199796,4014607,4199797,4014736,4194596,4200422,4199798,4197178,4200300,4276725,4016184,4199795,4197179,4016183,4102952,4203366,4340944,3019145,3011465,3011996,3010164,40758989,3011149,3009417,3038136,3004303,3036988,3002091,3008714,3003191,3018954,3018171,4018189,4296540,4296541,4016953,4017479,2212145,2212144,2110282,44793560,44791458,4162502,72973,40760436,2213267,2213268,4080590,4173190,313023,4223536,2004785,36713561,37208486,434167,40761828,4182145,44783183,4135209,40483581,3170656,437046,4034145,2721238,2721239,439085,441629,441921,4146774,2721240,441073,438196,40318618,441910,432682,441632,435318,435000,436742,438805,4113352,440464,440795,36715374,432382,436489,437947,435875,4141513,441364,433822,433263,4309021,4193765,40482399,80205,441964,197339,194707,193825,315013,314426,443249,436532,37396772,4236230,196175,201920,435879,440162,4188480,433869,4015159,4060252,433826,432373,43020670,441647,45757769,4237335,4268171,4120986,36716738,36716737,380533,434708,4129041,442292,433270,2110281,433828,439092,442421,4055252,2004823,4015590,37016958,2212630,433548,36713479,45757216,443243,440481,432396,442529,2213355,2721256,4242590,4057444,4055550,4269855,4057443,2213347,2213348,2110301,193174,4170118,42742301,4100193,4185718,4232953,4173946,196475,42537767,42537768,4174543,4194053,4216382,4072438,4088445,4060625,44810005,40491449,40487136,4197955,75882,73265,44784536,438820,4266839,4234604,438814,194109,4048293,441361,42537762,42537759,4114265,4277103,4075190,440793,193277,2514560,4076939,4106406,4061457,4066112,4232028,4234710,4223638,4278225,4100410,4189205,4096145,4237496,3011536,4038495,43054893,4061795,441641,40551541,4056129,42872805,2110311,4130319,4293034,4156955,4150421,4128030,4046029,36715417,36716734,4252401,4193756,40478932,443012,192691,4058243,194700,4062685,4062686,43531645,43531019,43531020,40758528,3169474,443727,4009303,2004805,4143646,40479665,4032755,4142956,2006934,4135437,37204835,37204834,43021054,4211822,434482,4016060,4173784,4314846,4313768,4071864,4309556,4149472,2004489,4106559,4309425,4168396,4138740,4074867,4072420,4074297,4022096,4024589,4084845,40757216,40757177,4071597,201958,438815,73546,200524,4130161,80471,79890,4053583,42537770,42537769,42537771,4195545,201091,198486,4059763,443418,4134722,4282151,443897,432443,4091783,437985,37017322,2721247,2721248,2211763,2211764,44807919,2211761,2211760,4149370,4201770,2784529,2784535,2784541,2784547,2784553,442915,442913,440787,4029427,4034969,4096804,435359,438871,4139551,4015420,4122728,4014453,4015161,40259069,443706,4139861,4070773,4307303,36713560,35622880,437614,138813,4040834,2722250,2211762,4137949,443700,133816,138811,137613,4116344,4058536,4294771,4129522,4029426,4030181,437611,441412,438204,443321,37018717,37017708,37017183,4207151,37017710,45770395,43527945,441085,440794,442442,4075182,4075161,42536960,4075160,42536952,4171254,4276942,4263011,42539701,42537764,440777,4327048,2110275,4167089,4127252,42537021,46270991,4032767,42536954,439924,4113994,4066014,4074443,4072852,4072863,4074569,80478,4055924,42573076,4272812,2004766,4311671,4046551,4102125,2110303,44513763,43530969,4009644,37109548,37109547,4345685,4059478,4128833,3025994,3025455,3005625,3003262,4070303,4032621,4170151,40756825,4216768,434758,81636,42537763,37206231,37206226,37206230,4074426,40493226,4074427,2004345,37396132,4034017,4065745,40479820,4147858,2213361,44790867,4226978,2004769,4075176,4257043,44513450,4211824,38001501,4173323,439128,78210,4071437,377680,4060261,4017134,194694) or concept_id in (192380,4281684,45757775,2004751,442613,437622,441924,437341,438491,4196129,434436,443521,4298980,45771070,81088,36715473,78224,4157164,4127892,4001541,4279380,4062557,4089691,4156660,3035250,3037110,40766113,3037187,46235168,3017703,3018251,46236950,3041651,3025791,3002574,4320478,3655214,3655213,4310205,4250134,4060255,433315,3173127,43530900,4004785,4150653,439923,201083,43022052,44790240,3026620,3028281,2211758,2211759,79146,4196670,37310907,43528050,43527962,43527961,43527960,43527959,2110283,3001951,4079844,75605,4071603,436228,442338,443695,4178809,80165,73268,37311827,435369,4216551,4334808,4034866,43530902,2004809,45757059,4203009,2212334,37310859,4210896,4266763,80204,4084439,3006722,437098,433311,36716504,36716503,42538545,42538544,36715840,36715841,2212438,2212439,2212436,3032604,3050978,201366,193535,196757,44790237,2110287,2110286,4146847,4145315,40759953,3003857,2110284,4271327,4061924,4281385,4142900,4314282,438541,36716530,434483,4148097,433309,44784300,432429,439129,439135,4071485,436518,36716552,444464,436220,435927,36717572,441682,440203,437975,44784362,435063,4070412,36716553,435918,4047718,4070425,4070426,435917,42538699,4070413,4048006,44784412,78563,76521,43531708,44784346,44784342,437976,4048130,36716526,433027,436219,438868,434744,434745,4047585,36717570,36716529,36716528,36716527,4118056,435062,44782462,36716731,4047586,44784411,440211,441680,44784612,44784611,436517,440829,437088,4047595,44784305,44782664,201681,441122,201410,4176131,437668,433310,433018,4048003,441684,4048004,4047711,442148,4077736,4047719,4070414,4047712,4048005,433319,432734,36716545,36716543,4328890,4230351,4067525,4096143,36716546,36716547,36716544,36717220,4262288,2110285,4015304,4318554,4151412,436804,81360,4047725,442827,72697,80463,4064277,4063296,4063297,4060672,4064177,4064178,4064169,4064171,4064172,4143204,4064174,4064175,4129181,4171110,4306064,4100257,4200202,4199559,4201383,4103472,4126735,4090743,195877,4116804,4124634,432441,4116805,4199560,439156,4126738,4201382,4126409,4090747,197343,192978,199088,3657563,4239938,4147431,4096531,4140071,42597080,37399364,2110274,4217642,4075187,4114637,435022,4032761,4324549,2004711,2004702,198495,4059969,4143634,194429,198496,81685,4071595,4070316,36716537,4048135,4273394,4244672,4096237,44807244,4034159,4032737,2721243,2721241,4296686,4003230,4104821,4338674,4068274,74716,4061187,4066260,74440,74717,76772,443328,79884,4127104,4072421,2110276,4172870,442777,77052,76750,4061522,4091200,196177,45768620,77340,81357,80778,74415,4178165,4181468,4173324,3048230,3045991,40481315,3036844,4221190,3183244,4024659,4326434,4263902,37018765,443214,442565,4058113,4214186,43530970,43530973,4181162,4324063,438542,45770261,4322726,4242241,4174506,4197245,4266517,4248725,4283690,4049621,4277749,4097608,4181751,4337360,4051642,4185780,4274955,4336226,439922,435640,444023,432430,444461,444417,4220085,434484,433864,442558,441678,443874,444267,438543,442355,443871,435655,4326232,442769,444067,4195157,4290009,4313026,4270513,4132434,4245908,762907,4169089,4236507,4042066,3003994,3037524,2212367,2212360,2212357,4094447,4017758,4077514,3049746,4275336,3025893,40762090,40758981,3023544,3005943,3016083,3014014,3031266,3048865,3034530,3011424,3014053,36304599,36303387,3019210,3004077,3038962,3034962,3022548,36031895,3023572,3002436,3001346,3016680,3045908,3030618,3015544,3020909,3033618,3011789,3015046,3034466,40759281,3008572,3016726,3017261,3004251,40763914,3000607,3002240,3010075,3049817,3004617,3003462,3003403,3004501,3041015,3039562,3027276,3043908,3026728,3025211,3006760,3017592,37020527,3052646,3026020,3006333,3049496,3032780,3036283,3041875,3041757,3012635,3006325,3036807,3044527,3048585,3002009,3007781,3024583,3041863,3048856,3023379,3043648,3040375,3039582,3013802,3040872,3044252,3014163,3038855,3021232,3033778,3012415,3008804,37020666,3039397,3017053,3001975,21494214,3039851,36660183,3029871,3034771,21492336,3025113,3005787,3040739,3009006,3040457,3038995,3038543,3041353,3038958,3040694,3040940,3043678,3009245,3017892,3014716,3008191,3016699,3007332,21492339,37021274,3050405,3010300,3017345,3002310,3026071,3025232,3004723,40760467,3032986,3035125,3044574,3040904,3007820,3038316,37020873,3052659,3026550,3048282,3041620,40759870,3041009,3043637,3041860,3015930,3000545,3040983,3004428,36660184,3023776,3043930,3038549,3042343,3041056,3041864,3042329,3041872,3040748,3006717,3007092,3042637,3025673,37021474,3041799,3026300,3019876,3021737,3000845,3022079,3032779,3035352,3010044,3040420,36660135,3025740,3026571,3025136,3030070,3013604,21492337,37019755,3050128,37020288,3028247,3010722,3003412,3041024,3041720,3042058,3019013,3003334,3007427,36659783,3002544,3038570,3053004,3027457,3005996,3009582,3039937,3027198,3020407,36659954,3014737,3010118,3040476,3042431,3010030,3030416,3035858,3015323,3039166,3027980,3022574,36660356,3038965,3020260,21492338,3023186,3018998,3028112,3003541,3024644,3005487,36660344,3021924,3013145,3032719,40761077,3009397,3013881,3005850,3035415,3039849,3052976,3033312,3021860,3004389,36660564,3023243,3022933,3040592,3041921,3012792,3028944,40761078,3017083,3050134,3023466,3004681,3022285,3023125,3004351,3038687,3050095,3032230,3011296,3018151,3008349,3019431,3017328,3031928,3041745,3039229,3052381,3024762,3004766,3025181,3049466,3029014,3000931,3042186,3007864,3038525,3031929,3035759,3002666,3025866,3026536,3025398,3001511,3020058,3019474,3005030,3003435,3049846,3002332,3006887,3040820,44816672,3042201,3041915,3051368,40760907,3041397,3020399,3020632,3015996,3001020,3016159,3017222,3027145,3010115,3032276,40759245,3024540,3006289,3022314,3034003,3037787,3011088,3028287,40761076,3010956,3031651,3005231,3000272,3031105,3012009,3032809,3019571,3029102,3039896,3024629,3042145,3039280,3043210,3042982,3043057,3035214,3033408,3004676,40757617,1002230,3005131,4149519,4229586,4144235,4018315,4151548,4230393,4286945,4036846,4182052,4218282,4017078,4018317,4249006,4331286,4018316,4149883,40762854,40762853,40762855,40762852,40762856,40762857,40762858,44816584,3042439,3000361,44816585,3046229,3035381,3044242,3020491,43055143,3040151,3021525,3001501,40762874,3020044,46235203,46235204,46235205,46235206,3051101,3020722,3052839,3051873,3051002,3040806,3042173,3036257,21491017,21491018,21492444,3023044,3036782,3013826,3038566,3044548,3040116,40757532,3001022,3039558,40757379,3038565,40757524,3040402,40762873,46236371,40757525,3038251,3043536,3041470,3041028,3045291,40757526,3040937,3003912,40757397,3041766,3038257,3038390,3040594,3038991,40757408,3036375,40758480,3039763,3036895,40757398,3042216,46234926,3042995,3021258,44786741,40757380,3009877,40757391,43534070,40757402,3042146,3038581,3050625,40757381,3050771,40757392,40757403,3041787,3007619,3044219,3040442,3041160,3043956,3040673,3041760,3042342,3040567,3037432,3020869,3011761,3039422,3051280,3015024,40757396,3040655,40757407,3044516,3040659,3015621,40757523,3038672,3038264,42868432,40757382,3018582,42868430,3039826,3041486,3043922,3043635,3041604,3039788,3006520,40757401,3043514,40758510,3040060,3019047,40757390,43534069,3041159,3040683,3040867,3034101,3041140,3042029,3038395,3044269,3040870,3040366,40757400,3009154,3016160,3017538,3038621,3016701,40757389,3041638,3040613,3012413,40757383,3040578,40757527,3040603,3015980,3005793,3039178,3008799,40757394,3040908,40757405,3041786,3016567,3039739,3044550,3038838,3022161,3000992,3044555,3013026,3041609,3017048,3017091,3038314,3017589,3041489,40757404,3041136,3042487,40757393,3038420,3040892,40762876,40757528,42868433,3014194,42868431,3040104,3022201,3043978,46235368,40758481,3051231,3023228,40757395,3047279,40757406,3044218,3023758,3039997,3017634,3017890,3042489,40757384,3039807,3045318,40757529,3044562,3003824,3041490,3018175,3004724,3040107,3049428,3040634,40757385,3040641,40757627,3041895,3002654,3041454,40757386,3040468,40757628,3041763,3039297,3038727,3040099,40762875,3038557,40757629,3038422,3045067,3041615,40757387,3039224,3040896,3043032,40757630,3041856,3041903,3040710,40757530,3007821,40757626,3041930,3041971,42868682,3006669,3019765,3004067) or concept_id in (3039439,40757531,3048522,40757388,40762250,40757399,3044522,3042469,3045105,3045131,3045158,3045700,3029462,3030745,3038434,46236948,46236367,3006893,3051044,3020618,3005570,40762249,3008770,44786994,3038515,3040563,40757618,44806589,3018056,2212361,3007308,3040980,3020650,3007777,3006684,3028014,3023961,3024785,3025622,3007971,3006258,3021752,3009261,3005875,3005589,3020820,3021033,3019493,3007031,3018958,3009251,3011355,3004629,3023638,3021635,3003453,3005851,3022233,3005370,3003201,3025876,3010617,3020455,3001283,3020450,2212359,2212364,3003169,3030177,4012477,44783612,2212363,2212362,4055679,4055678,434164,2212633,2212632,2212631,372842,4009879,4014452,437937,434110,442441,4032764,4042068,4084217,4149401,42742312,316478,440532,201129,4085415,4155624,4152629,4161205,42709943,37312073,437922,4177184,3004410,2212391,2212713,2212714,437090,440218,433603,36713168,4009645,438478,437935,435323,36716542,436529,4329097,4083118,435358,4061471,4066134,4066135,4065761,37396771,4311256,4033068,4079859,44513743,4075188,4231702,4035778,40480725,442088,77615,72696,4302252,37392366,4055287,4075170,42739014,42739011,441630,4062565,4014451,4060104,4151190,2514576,2514575,2514574,44807240,4285271,44806337,439083,44500814,73538,81923,444245,77662,4030872,4098582,4227141,4142340,436485,436173,440788,37311673,37016348,37016349,40480031,4034959,4034966,37312344,37312345,4307509,37397460,37397139,36713524,36715528,37397034,36715529,36715530,36716024,42536603,4147719,4215719,321080,192698,443244,4064834,4064835,433873,4267556,42572837,44809809,44789319,44789318,42600315,24609,4029423,45769876,45757363,4287549,3185010,45772060,4226798,4228112,36714116,30361,4029422,4232212,45757362,36676692,436534,45772056,4308657,4318803,4153365,4082045,2110292,4082412,4132295,4234390,37395921,4173187,444048,193821,439400,443705,195600,442596,439325,4143190,4138267,4185440,4303980,4066227,4182549,4223627,436169,4264914,4101477,4023781,4107907,4323434,4180859,4066994,4105762,4077275,4025828,4229716,4249728,4266243,4305348,4234979,4197900,4051784,4195243,4224143,4239192,4296872,4103148,4143018,4206453,4195297,4318662,4313005,4034753,4324965,4219608,4183557,4140509,4030415,36713470,4071514,4069972,4071513,4071641,4070223,4247275,4308509,44808373,4311629,4263688,4047260,4251180,4229140,4111906,4029951,4136531,4045297,4030067,4042067,4027550,133284,2110084,2004771,439323,437929,438487,439324,439321,439322,439320,45768717,45771353,438211,436748,437618,4146775,439328,37110280,435868,434705,440453,439329,193532,434095,439331,439330,434689,40318617,434413,437933,440460,437045,195317,432689,439688,441631,42535215,44805020,4171255,4239206,4038817,4289543,3198709,440161,2721146,2721148,2721149,2721150,2110331,2110332,2110333,2110334,2110335,2110336,2110329,2110330,37018340,43530913,43530914,43530928,43530915,43530916,43531712,43530957,43530917,43530958,43530959,43530960,43530918,43530961,43530919,43530962,43530908,43530920,43531713,43531710,43530921,43530922,43530910,43530964,43530923,43530952,43530924,43530925,43531714,43530953,43530926,43530927,43530911,43530966,43530929,43530948,43531715,43530954,43530930,43530955,43530931,43530956,43530932,43530933,43530965,43531716,43530934,43530912,43530935,43530936,43530937,43530939,43530940,43530941,43531711,43530943,43530947,43530944,43530945,43530967,43530968,4200986,44784128,4075159,4032756,2004745,37311825,4244408,4146772,4062356,4014439,4016479,4231742,4174423,37018973,4173344,4208967,4152958,4153568,4309019,436180,3655611,444244,36713475,45757187,4062133,74434,4028781,439139,433823,4008083,433266,42600083,4085257,2514556,2514569,2514555,2514558,42739633,2514563,4161783,4121775,36716540,36716538,36717351,36716541,36716740,381952,36716733,77621,79896,2213360,4112315,4074301,4128031,4071638,4018336,4229110,2212419,3049230,4020992,3010771,2212155,3022466,3004648,3004163,3004325,3011670,3003227,3011496,3020877,3002800,3035571,40759809,3001627,40759811,3001583,40759810,3007346,3000664,3011411,3037545,3033461,3038084,3037230,3021586,3021537,3002053,3019151,3015988,3012706,3024084,3037897,3000331,3033587,3008406,3005615,3024615,3034123,3003339,3017118,3011462,3011381,3022404,3023151,3013134,3009446,3018974,3019590,3000005,3022492,3019824,3023517,3034439,3029133,3013373,3022423,3016203,4060873,3030272,3016523,40758613,40758512,40758610,3020977,3036942,3037468,3037714,3021224,40758618,40758612,3038241,40758628,40758514,3001558,43534076,40758617,40758614,3038723,40758615,40758521,3019094,40758563,40758616,3039233,43534075,40758620,40758625,3038693,40758515,3037840,40758629,40758621,3041156,43534074,40758622,3042046,40758626,40758513,3038142,40758619,40758624,40758516,40758611,40758517,40758520,3033522,40758518,40758623,40758511,40758609,3022114,40758519,3012701,40758608,40758627,3015720,3008465,3017410,3033929,40762271,1001918,3040755,3029373,3046092,3019840,45769875,35622016,4129524,4129525,2212418,4017196,3010058,3016244,3049445,3048476,3019544,3049768,3043439,3045444,40771051,3011873,40759701,3046035,3017375,3046568,3046591,3008358,3052952,36659792,3027077,36660450,3049491,3011621,3046621,3017922,40771052,3033462,3051708,36660139,3016036,3052582,3029720,3046287,3048483,3036251,3018509,3049493,36660352,3024067,3004884,40759907,40760065,3026145,3049164,36660132,3012064,3029908,3046308,36659993,3052011,3015089,40759908,3012529,36660726,3017496,3018344,40759909,40760063,3051067,36659716,3009167,3053266,3030827,3045998,40760068,3036529,40760067,43055438,36660594,3016818,36660526,3027834,3029056,3012719,40760126,40760064,36660177,3006570,3052901,40760468,3049177,3030826,3023123,40760066,40760061,40760062,3012007,3028357,3051418,40759613,3030984,3019569,3015678,3029665,3018957,40760060,3031012,3028877,3028902,40759603,3009413,3048519,3049462,3050108,3052941,3029043,1002121,4254200,2004750,2004749,4217602,4197403,37117767,4023420,4072715,36716736,36716735,4149029,4303420,4298274,4149939,4242238,37110285,37205799,4065747,45773593,4030829,4066151,4138741,74162,4060687,4063309,4139858,4139060,4137390,4145843,197031,4020898,2721255,4063939,4107728,4180743,4079972,434155,4215504,44500947,195329,4199599,2788842,2721237,3049700,2721245,2721244,4138627,46273065,4058246,4079751,4184274,3655631,442772,4061672,4145664,4138633,4141534,4142402,4198705,3030662,3044819,4122929,437681,442216,439770,443734,4095288,4224254,4228443,3035350,4049629,4139552,4305334,4129837,43530880,77335,42742323,4091790,3195953,37311826,40760193,4041698,4250609,4014719,4106999,199089,194709,4154571,4152967,4112304,4034018,4218738,436167,40347147,40378260,42872572,42872571,4319321,40490893,4144415,40259107,4190526,2110299,2110300,4251314,40480864,4032749,2110240,2722205,2110245,2722217,4030430,80782,78818,36712932,4344633,2106488,4058439,4340777,4163996,434474,4061791,36713562,35622881,4206624,441082,443325,439880,3035904,4074877,4074876,4113976,444077,192379,197617,442346,439883,436474,195595,197333,4181114,4147533,4009642,4098441,4292089,4025639,4077454,441349,4280224,4214233,4294829,4328084,4046510,4243658,4183680,4216436,4324695,4324672,4045581,4204231,4269450,436747,4049453,4094081,4271203,4184150,4198404,4312358,4296459,4068253,4327321,4058932,4178578,4070939,4204206,4197681,4188764,4106892,4105063,4225572,4245041,4006979,4128988,4268175,2110236,74469,72726,36716536,4238207,4092289,4307044,40482735,40483126,194699,196170,443292,4047865,4047863,4127042,4129167,42709955,4127039,4096534,4127040,4127041,4124480,4129166,4127038,4175536,4129168,42709956,4126720,4126719,4171116,4091785,4016047,4171115,2004786,4161944,37312440,44513746,4088084,4075735,2004703,2004704,4075191,4165508,4153112,4239200,4214980,4130310,4028787,4093584,37394500,440473,36403113,4096041,77338,4071505,2004845,4170533,4069969,4069968,4151385,2004826,2004764,4338977,37205103,4070523,4048281,44784126,4016059,443295,4066354,4091196,432977,4062131,4197085,441081,443054,314432,313829,315327,4066002,443016,443015,443014,42872398,439893,4297233,40485049,40483251,40485007,40484589,434105,4143214,438206,435606,438205,443020,434697,4197402,443018,40478936,40483704,40480870,40483600,40481772,40482677,4176733,4027514,40482666,4143633,4232703) or concept_id in (439934,193591,4241979,4058519,4238980,4315046,44807900,2004762,2721012,4115153,40487510,44784273,4112952,442920,442918,442919,442917,4060424,4113218,432371,4029421,3000034,44513745,4075189,4266683,4093774,4143647,2004706,4179832,44790206,42535817,4305717,4079970,4121760,436166,435023,4129842,4028783,314090,434759,4173176,37394499,4067106,4087102,192678,195594,194704,437920,441348,193820,196746,4323612,4051244,4078393,4224646,4167685,43530979,4224597,4211863,4064536,4247270,4003276,4209126,4175137,4047775,434094,4179796,4274315,4149423,4278107,4170457,4180568,4194113,4041728,4309780,4130670,4261327,4302162,4311698,4217670,436176,4221853,4313166,4310654,4216342,4031837,4253804,4200070,4049891,4339107,4168445,4219469,4001856,4195406,4189350,4285746,4244261,4085627,4006806,4033096,76482,4063183,72970,78817,4278101,42539560,4030429,4034094,36675173,37016955,4146288,43021951,43021952,4199931,433260,437041,4310471,2110337,4163851,4063163,4063162,4059751,75015,42539267,36713468,3045823,432969,442082,4063175,4178154,42599849,3000119,201957,37311912,37311911,37311910,37311909,37311908,37311907,4172307,765023,4319457,433589,252442,437374,4172995,434154,4171248,443522,440840,4070650,4070651,4070648,4106274,4110550,761919,4129290,4173173,36674511,4269452,36717459,4173019,4170953,4173020,373870,4210315,4206035,4239540,4244718,4291447,193323,36716761,42537680,44784276,44784301,44784360,36717269,4050236,4025181,36715839,36716750,36717488,3188843,3175980,3173911,4173004,44792481,36712969,4180181,37109016,4243042,42538558,42538557,42536722,36717593,42538559,4320490,4318835,4214373,4132505,23034,36716745,443618,4174302,76221,36676688,42536730,42536732,42536731,42539039,37399026,42536733,435656,440847,4170445,439137,4221399,4239658,4071740,4048614,4071080,4048294,42536729,36716886,4048608,36717505,4308227,42535103,761782,37116437,42538263,42536564,439140,42537679,42537678,3182078,257375,4048286,4316374,4316375,318856,36715567,761851,761852,4298866,4300236,443523,4264166,137099,4243198,4210115,36717571,4047937,194598,2101016,2101813,4034967,4171104,4173513,46284810,4079843,4173194,4173193,4171092,4079846,3200880,2721181,4173180,4207827,42739015,4129520,4127831,3655876,4029424,76533,37017029,36715842,4176715,4071630,4275443,442573,36713477,45757111,4127248,44790222,4080067,4171058,4148533,4149402,4187237,4201764,4014720,4080889,4063160,4070222,4071507,4009404,42739012,4217975,45765512,4028938,4186424,3002549,442051,442050,314107,432976,442294,45757105,4064980,45757106,4065091,4064979,442053,433545,437060,443263,74433,78494,78218,443293,4063697,75326,442079,4084521,4080059,4038747,192979,193269,200472,197048,442080,442083,4140250,441925,441926,433837,79897,76491,76771,2212094,201368,193271,4060178,4129839,4034149,194439,192387,442417,435026,433832,439380,439379,4081774,195025,442071,4065635,2004846,76763,44790279,4059051,4085285,193827,197051,199087,193273,192694,196182,442440,4061852,46269810,4060036,4060037,4064819,37310898,4064821,45757117,4061850,37396169,194100,194711,193831,4060039,45772074,4064423,4064424,42536563,4060038,4064437,4300773,444404,252305,3655849,4091789,4038420,4038571,4038945,4039088,4038943,4038942,4038426,4039610,4150948,4038938,4038760,4038418,4038749,4038751,4038932,4039602,4038753,4038754,4038755,4038934,4038756,4255282,4038935,4038748,4039609,4038759,4175225,4038424,4171428,4039608,4038941,4038939,4038937,4038573,4039603,4194143,4173013,196159,434111,433274,432386,4107071,4034650,201136,4073719,2213351,4072862,2004767,4119975,2004746,2004802,2004822,2004811,46232934,2004765,2004707,2004862,2004783,2004768,2004724,2004348,4191809,44513736,44513756,44513729,44513747,2004731,44513476,44513468,44517168,44513799,44513812,4075024,44513634,44513740,44513733,44513516,44513803,44513791,44513816,44513752,2004747,2004726,2004730,4145318,4127249,73824,72378,42535816,200153,4049041,443323,4159154,4319461,4336392,4079236,4234421,4023797,4267567,4248080,4145439,4296604,4231407,195075,4211227,4025199,198221,4314877,442829,195019,4285751,4172869,4073428,36716687,37204732,4306199,374748,4321550,36716757,4084442,260212,4080888,135370,134760,4187201,4079851,4173002,4171097,4173179,4173198,4300467,194158,439931,42872438,42536566,4171096,4173181,4105262,4171102,42536745,258564,4171091,199925,4174299,4173000,436519,4071743,195064,438869,4071737,4071735,433029,4048292,4071076,4071736,4048610,3663236,4071717,4048282,3655840,4287783,4079855,4173197,4006329,4278842,4263343,43021073,313590,4171108,4243494,4048166,37017557,37017566,37019087,4071198,4301414,4080885,260841,4079973,4171123,4173332,4173001,4166754,4171100,4048607,197349,4307825,439390,4187920,4272706,4296470,4002900,4239205,4311670,4032920,4242693,4197221,197608,199086,4062566,372435,43531641,37110041,197970,444374,317941,4129183,4269051,3013297,4103235,42537765,4261326,4073438,4016476,4014718,198488,193539,201350,2721184,200784,4014716,4034100,4064854,4217071,4028645,44502733,42600135,4016475,4284028,4172142,196751,193264,200149,194710,201359,192372,4014292,4041726,4210719,4041725,4210721,44812174,4210718,4269036,4268422,4041724,4305235,4297988,36716548,36716549,4278356,437623,434427,433540,4173347,72693,75639,196764,4056338,437369,4245166,440833,4014156,4015415,4015152,4015410,4014446,435031,4062264,4215564,4015413,4055488,4014445,4015154,4014281,4014280,4014443,4075295,44811076,4297232,4015414,4014442,4015412,4014282,4062362,4015151,4015150,4034146,4015149,4151029,4182691,4023382,4295363,37116834,4006327,4336810,4225411,312383,4047392,2110314,4113199,436483,441363,4061341,4169890,4239471,4203918,45773073,4266066,4041280,45757789,4012240,443929,37110289,37108740,4158274,4162754,42534817,4253057,4146731,4169742,4273241,4028024,4185531,4011238,4228830,35622939,45757788,4057246,42535649,440465,4035468,4104354,4007389,4300708,4278355,4222573,4318816,4174510,4199437,4325457,4091199,4321231,4219015,4116187,4126074,441128,432695,439894,434695,45773507,4096468,433542,438220,435024,439393,141084,135601,134414,136743,4146816,4277110,4151903,321074,4219466,4146514,4242853,4144221,4182243,4220981,4305491,762490,4129519,3051741,3014064,2212548,3021584,4148890,438209,4062674,439348,4250175,4167493,4062574,4094910,4061785,4060237,4157329,4299535,4059982,4061686,4059984,4061411,4059981,3174212,4097427,4222915,4147043,4142021,4242724,4310910,4069200,4145125,4082863,4008884,4107401,4029786,4184594,4086393,4125778,4217564,4147874,4273560,4175637,194702,200160,4064709,200468,4058403,440519,440525,36675035,4138554,2618150,2618151,2618152,2618154,2618155,4176966,4112701,4311447,4172038,4313474,2213352,4129040,37110284,37110283,45757175,45757176,36712702,44784550,44784551,4098718,40318194,314479,258554,37311892,4300387,201516,37204277,4230947,4262580,443435,196762,196759,4133029,4060105,4120303,4230252,72692,4058679,440476,441645,435883,4171094,440475,441362,434435,440167,4308660,3189930,4171095,192972,434431,434714,37017049,437620,40757377,3043821,45770185,4082504,4150734,442419,442418,313272,313833,4328870,4065749,4061463,4024972,4297611,4339312,4062259,4034154,435028,434713,432389,4050255,4062257,4102318,4065753,3655209,3655210,4263344,42600161,4272315,45765500,442594,438481,440466,45757166,45773428,42539377,40479425,40484115,40485034,40479799,40484114,40484139,40485040,40479401,40483242,40484576,40484575,40485039,40483659,4182146,4061423,45765501,45757167,45757168,42538805,3046853,40484021,4153111,4042065,4042725,4055671,40481539,4149994,4113503,4114280,4150401,4173350,764688,764646,77619,4190767,4081292,46272536,4084693,4214930,3040000,2004342,2004546,2110339,4308664,4227423,4247895,2004788,4300391,4309622,4153287,2004343,192679,45757120,195014,42537766,197930,200157,192684,4095115,2109484,2109483,2004842,2004829,2004830,4230535,2004843,4319897,2004828,4071642,4172666,4135477,2004844,2004831,4033994,4086797,40482435,319138,258866,4173177,4318553,4109090,4115155,4003030,4129038,44782606,4003031,4150001,442078,200792,200789,4064977,201642,4170121) or concept_id in (4062112,373766,36684687,36684686,36684685,36684684,36684624,36684623,36684622,36684621,45772079,375250,375251,379009,443519,443520,442549,36713478,437061,435612,438823,45757159,45757160,4194811,40490338,4035336,4232323,196484,198216,196486,4060560,44790242,199891,195878,192376,4061158,4061159,4061806,3023524,4127253,4074424,4072837,4047564,4121924,2110315,2110322,2110307,2110319,44790189,36713471,4102697,4275129,4338888,4049040,4304587,4323287,198816,192699,4064960,194106,45757588,2110247,4032000,2004346,4316051,4021363,4073272,4239009,2004351,2004362,2004308,4263669,2110253,2004307,2004306,4174422,4120817,4071592,4047853,133028,4301415,136530,4174577,40318195,37206228,37206227,37206229,4173636,4312727,4065618,192974,192384,197346,198492,198499,197337,4327745,4244438,3049229,4083415,4260976,4089029,4186827,4159149,762709,762579,4096674,4147409,4146454,4147408,4091293,4264738,4009954,4060807,4187090,37116435,42536689,4048275,46270041,763027,4071063,3655212,3655211,137371,4080587,4042760,4161969,4275335,4195345,4041723,4210722,4195509,4198892,4156811,4150492,4041161,4042412,4042759,4042751,432427,4121417,4153452,4032345,4029420,36675039,4129184,4129843,433536,438490,439077,132685,4057976,4172871,4092760,45765502,45772082,45757169,42538806,4127241,442271,438226,435020,437946,80474,75608,72377,4170152,4014295,40483521,36713074,4014454,36713465,257370,4122747,4126736,46284319,4166847,4087113,4174056,3174052,4064286,4150640,4162239,3050414,4318858,4165092,4102446,4194977,2213358,2213357,2110198,44784365,4047857,4070526,44784364,77679,4169992,4150803,4073422,4008578,761781,4309364,4015143,4167497,4205240,198212,4091461,4298015,40406337,443213,4287409,4217655,4261819,4321563,4301269,4103876,4300979,443463,2721254,4301412,4168056,4174198,4047868,378544,4130539,4095178,4183593,42538556,4030259,4063159,4205437,4300419,42739013,2514557,42739550,2514564,2514572,42740403,2514571,42739401,2514570,2101831,2110318,4022098,4150538,4027161,442058,439094,439095,435331,435332,4143293,4150337,79098,76770,3017439,4073432,2110295,2110298,2110296,2110297,2110293,2110294,43530886,43530888,434480,42538560,436171,4129023,4079854,4171107,4227728,4306288,4330570,4049333,4192641,4243026,4066292,4193224,4336090,4199146,4307237,4178275,4203001,4297250,4240605,43020954,40258875,43530907,4212260,4336958,4296038,133024,4189561,4030009,4299609,193830,193275,199097,197625,37311704,200469,4060183,4142581,4218813,4180111,444082,440457,4252252,4294259,4032055,3186670,139888,36713271,36713272,4222152,442300,136755,138479,139895,138207,138484,2213255,4019096,4214677,2004331,4204679,44789306,2004330,141370,4061350,2110288,4169966,4169965,44790511,441922,137940,141639,136760,4173327,4079845,4129378,433604,42536567,439149,36716753,36716754,4033200,435076,4048930,4049028,4048742,42536568,198870,4173172,436234,433314,4071744,4048620,4171099,321683,40490447,4324606,4335250,4324607,4073406,40490322,4063171,81358,4104199,4174854,4267072,4071600,36716539,36716739,439093,42536749,432975,4161678,3655718,4134431,4326563,2111055,2110325,2110326,2110327,2110328,4290245,4073424,4094046,4078287,4014290,42539210,432375,440462,437931,4014456,4015422,45757165,4015163,4015421,3051868,44499531,4101082,4127106,199076,4030182,196758,196181,197049,192385,4101844,40483084,40483101,42535052,441919,435018,434097,4014296,4015162,4014455,42709935,42709936,42709937,4279146,2211785,2211784,2211782,37397735,4082534,42535558,42535559,42535553,42535246,40488298,40486918,40487413,45773218,46271899,45765925,44807918,40492794,40489798,42690777,3031159,40756968,44790261,2211750,2211749,2211748,2211747,2211752,2211751,2211754,2211753,2211756,2211755,2211757,3657421,4237338,4082672,4237339,4060624,4060626,4152021,4028775,441646,4126410,4126742,4122872,4126741,435325,4122742,4126740,4126737,4122745,4126408,4126734,36675671,4126739,45769826,4060157,4061971,438259,4079860,4098631,4336229,4301905,2110340,2110342,4307820,4059985,4113986,4113983,2004742,4113036,4112954,79091,79889,72374,4239301,40483205,4151214,4129178,4289453,2212169,46269813,4062569,4242401,4146482,4055426,4192542,4151414,4055970,4055823,4042238,4042239,4055289,4055822,4055288,4055954,37392365,4055285,2212173,4014769,4041878,4149386,4174400,4170107,4060623,4060622,4061129,4061130,4059697,4254201,2110338,4064145,4053158,4286205,197938,45757158,194101,3023791,4128172,4127208,44790180,44790181,4075171,2004729,442069,193544,37109810,4228344,4331179,44784097,2110320,2110321,2110308,2110309,4167018,4145316,4096535,4147415,442290,441644,442059,434712,4143292,443242,435610,441929,432701,4147395,435609,435021,321367,315884,4300078,440158,313543,43530951,4009180,4079858,435925,4149523,4129027,435604,42742355,35625971,4169915,440785,40525252,40519557,40524819,40517216,40524802,443246,441087,438214,4071599,4031282,4091198,4034153,40525253,40524805,4131031,4071632,4132649,4259640,4132657,4256500,4132658,4132659,4259641,4259638,4256502,4253755,4259642,4256501,4253756,4256497,4256496,4259639,4253753,4256498,4132652,4132653,4253752,4132654,4253754,4132655,4256499,4132656,4259636,765764,763782,4010343,4010841,4010843,4010842,4010344,765794,40394878,40514773,40388780,40356741,40394902,4020897,4127105,444098)) + +) I +) C UNION ALL +SELECT 62 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (436477,444365,42597053,42597052,42597051,201076,197612,438812,195319,42599848,2721147,2784560,2784559,2784555,2784556,2784557,2784558,2784561,2784562,440776,440454,42739743,2101811,2101812,2004526,4212941,2004525,4028644,4262136,4261479,40482050,437046,439085,441629,441921,4146774,441073,438196,40318618,441910,432682,441632,435318,435000,436742,438805,4113352,45757769,42537759,4114265,4149472,4106559,2004489,4168396,4138740,4074867,4074297,42537769,4113994,42573076,4032621,4170151,37206231,37206226,37206230,4147858,4257043,44513450,4017134,194694,4281684,75605,436228,2110292,4082412,444048,193821,439400,443705,195600,442596,439325,4143190,4138267,4185440,4303980,4066227,4182549,4223627,436169,4264914,4101477,4023781,4107907,4323434,4180859,4066994,4105762,4077275,4025828,4229716,4249728,4266243,4305348,4234979,4197900,4051784,4195243,4224143,4239192,4296872,4103148,4143018,4206453,4195297,4318662,4313005,4034753,4324965,4219608,4183557,4140509,439323,437929,438487,439324,439321,439322,439320,45768717,45771353,438211,436748,437618,4146775,439328,37110280,435868,434705,440453,439329,193532,434095,439331,439330,40318617,434689,434413,437933,440460,437045,195317,432689,439688,441631,42535215,44805020,2721146,2721148,2721149,2721150,2110331,2110332,2110333,2110334,2110335,2110336,2110329,2110330,37018340,43530913,43530914,43530928,43530915,43530916,43531712,43530957,43530917,43530958,43530959,43530960,43530918,43530961,43530919,43530962,43530908,43530920,43531713,43531710,43530921,43530922,43530910,43530964,43530923,43530952,43530924,43530925,43531714,43530953,43530926,43530927,43530911,43530966,43530929,43530948,43531715,43530954,43530930,43530955,43530931,43530956,43530932,43530933,43530965,43531716,43530934,43530912,43530935,43530936,43530937,43530939,43530940,43530941,43531711,43530943,43530947,43530944,43530945,43530967,43530968,4200986,44784128,4244408,4146772,4121775,4112315,4074301,4071638,4063309,4163996,4113976,444077,192379,197617,442346,439883,436474,195595,197333,4181114,4147533,4009642,4098441,4292089,4025639,4077454,441349,4280224,4214233,4294829,4328084,4046510,4243658,4183680,4216436,4324695,4324672,4045581,4204231,4269450,436747,4049453,4094081,4271203,4184150,4198404,4312358,4296459,4068253,4327321,4058932,4178578,4070939,4204206,4197681,4188764,4106892,4105063,4225572,4245041,4238207,44807900,2721012,4115153,40487510,4067106,4087102,192678,195594,194704,437920,441348,193820,196746,4323612,4051244,4078393,4224646,4167685,4224597,4211863,4064536,4247270,4003276,4209126,4175137,4047775,434094,4179796,4274315,4149423,4278107,4170457,4180568,4194113,4041728,4309780,4130670,4261327,4302162,4311698,4217670,436176,4221853,4313166,4310654,4216342,4031837,4253804,4200070,4049891,4339107,4168445,4219469,4001856,4195406,4189350,4285746,4244261,4085627,4006806,4033096,76482,42599849,4119975,44513476,4149994,4113503,4114280,4150401,4190767,4153287,4086797,4170121,37206228,37206227,37206229,4150538,4297250,4240605,43020954,43530907,4189561,4030009,4299609,2110325,2110326,2110327,2110328,4113986,4113983,4113036,4112954,46269813,44790180,44790181)) + +) I +) C UNION ALL +SELECT 63 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4015296,4014149,4014150,44808979,4015141,44808980,4014151,44808981,4015297,4015298,4014434,4015299,4015142,4014152,4015300,4015301,4015302,4014435,4178165,4181468,4181162,4324063,438542,45770261,4322726,4242241,4174506,4197245,4266517,4248725,4283690,4049621,4277749,4097608,4181751,4051642,4185780,4274955,4336226,439922,435640,444023,432430,444461,444417,4220085,434484,433864,442558,441678,443874,444267,438543,442355,443871,435655,4326232,442769,444067,4195157,4290009,4313026,4270513,4132434,4245908,762907,4336958,4180111,444098)) + +) I +) C UNION ALL +SELECT 64 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4015296,4014149,4014150,44808979,4015141,44808980,4014151,44808981,4015297,4015298,4014434,4015299,4015142,4014152,4015300,4015301,4015302,4014435,4178165,4181468,4181162,4324063,438542,45770261,4322726,4242241,4174506,4197245,4266517,4248725,4283690,4049621,4277749,4097608,4181751,4051642,4185780,4274955,4336226,439922,435640,444023,432430,444461,444417,434484,433864,442558,441678,443874,444267,438543,442355,443871,435655,4326232,442769,444067,4195157,4290009,4313026,4270513,4132434,4245908,762907,4336958,4180111,444098)) + +) I +) C UNION ALL +SELECT 65 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4015296,4014149,4014150,44808979,4015141,44808980,4014151,44808981,4015297,4015298,4014434,4015299,4015142,4014152,4015300,4015301,4015302,4014435,4178165,4181468,4181162,4324063,438542,45770261,4322726,4242241,4174506,4197245,4266517,4248725,4283690,4049621,4277749,4097608,4181751,4051642,4185780,4274955,4336226,439922,435640,444023,432430,444461,444417,434484,433864,442558,441678,443874,444267,438543,442355,443871,435655,442769,444067,4195157,4290009,4313026,4270513,4132434,4245908,762907,4336958,4180111,444098)) + +) I +) C UNION ALL +SELECT 66 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4015296,4014149,4014150,44808979,4015141,44808980,4014151,44808981,4015297,4015298,4014434,4015299,4015142,4014152,4015300,4015301,4015302,4014435,4178165,4181468,4181162,4324063,438542,45770261,4322726,4242241,4174506,4197245,4266517,4248725,4283690,4049621,4277749,4097608,4181751,4051642,4185780,4274955,4336226,439922,435640,444023,432430,444461,444417,434484,433864,442558,441678,443874,444267,438543,442355,443871,435655,442769,444067,4290009,4313026,4270513,4132434,4245908,762907,4336958,4180111,444098)) + +) I +) C UNION ALL +SELECT 67 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4015296,4014149,4014150,44808979,4015141,44808980,4014151,44808981,4015297,4015298,4014434,4015299,4015142,4014152,4015300,4015301,4015302,4014435,4178165,4181468,4181162,4324063,438542,45770261,4322726,4242241,4174506,4197245,4266517,4248725,4283690,4049621,4277749,4097608,4181751,4051642,4185780,4274955,4336226,439922,435640,444023,432430,444461,444417,434484,433864,442558,441678,443874,444267,438543,442355,443871,435655,442769,444067,4313026,4270513,4132434,4245908,762907,4336958,4180111,444098)) + +) I +) C UNION ALL +SELECT 68 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4015296,4014149,4014150,44808979,4015141,44808980,4014151,44808981,4015297,4015298,4014434,4015299,4015142,4014152,4015300,4015301,4015302,4014435,4178165,4181468,4181162,4324063,438542,45770261,4322726,4242241,4174506,4197245,4266517,4248725,4283690,4049621,4277749,4097608,4181751,4051642,4185780,4274955,4336226,439922,435640,444023,432430,444461,444417,434484,433864,442558,441678,443874,444267,438543,442355,443871,435655,442769,444067,4270513,4132434,4245908,762907,4336958,4180111,444098)) + +) I +) C UNION ALL +SELECT 69 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4015296,4014149,4014150,44808979,4015141,44808980,4014151,44808981,4015297,4015298,4014434,4015299,4015142,4014152,4015300,4015301,4015302,4014435,4178165,4181468,4181162,4324063,438542,45770261,4322726,4242241,4174506,4197245,4266517,4248725,4283690,4049621,4277749,4097608,4181751,4051642,4185780,4274955,4336226,439922,435640,444023,432430,444461,444417,434484,433864,442558,441678,443874,444267,438543,442355,443871,435655,442769,444067,4132434,4245908,762907,4336958,4180111,444098)) + +) I +) C UNION ALL +SELECT 70 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4015296,4014149,4014150,44808979,4015141,44808980,4014151,44808981,4015297,4015298,4014434,4015299,4015142,4014152,4015300,4015301,4015302,4014435,4178165,4181468,4181162,4324063,438542,45770261,4242241,4174506,4197245,4266517,4248725,4283690,4049621,4277749,4097608,4181751,4051642,4185780,4274955,4336226,439922,435640,444023,432430,444461,444417,434484,433864,442558,441678,443874,444267,438543,442355,443871,435655,442769,444067,4245908,762907,4336958,4180111,444098)) + +) I +) C UNION ALL +SELECT 71 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4015296,4014149,4014150,44808979,4015141,44808980,4014151,44808981,4015297,4015298,4014434,4015299,4015142,4014152,4015300,4015301,4015302,4014435,4178165,4181468,4181162,4324063,438542,45770261,4242241,4174506,4197245,4266517,4248725,4283690,4049621,4277749,4097608,4181751,4051642,4185780,4274955,4336226,439922,435640,444023,432430,444461,444417,434484,433864,442558,441678,443874,444267,438543,442355,443871,435655,442769,444067,762907,4336958,4180111,444098)) + +) I +) C UNION ALL +SELECT 72 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4015296,4014149,4014150,44808979,4015141,44808980,4014151,44808981,4015297,4015298,4014434,4015299,4015142,4014152,4015300,4015301,4015302,4014435,4178165,4181468,4181162,4324063,438542,45770261,4174506,4197245,4266517,4248725,4283690,4049621,4277749,4097608,4181751,4051642,4185780,4274955,4336226,439922,435640,444023,432430,444461,444417,434484,433864,442558,441678,443874,444267,438543,442355,443871,435655,442769,444067,762907,4336958,4180111,444098)) + +) I +) C UNION ALL +SELECT 73 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4015296,4014149,4014150,44808979,4015141,44808980,4014151,44808981,4015297,4015298,4014434,4015299,4015142,4014152,4015300,4015301,4015302,4014435,4178165,4181468,4181162,4324063,438542,45770261,4197245,4266517,4248725,4283690,4049621,4277749,4097608,4181751,4051642,4185780,4274955,4336226,439922,435640,444023,432430,444461,444417,434484,433864,442558,441678,443874,444267,438543,442355,443871,435655,442769,444067,762907,4336958,4180111,444098)) + +) I +) C UNION ALL +SELECT 74 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4014149,4014150,44808979,4015141,44808980,4014151,44808981,4015297,4015298,4014434,4015299,4015142,4014152,4015300,4015301,4015302,4014435,4178165,4181468,4181162,4324063,438542,45770261,4266517,4248725,4283690,4049621,4277749,4097608,4181751,4051642,4185780,4274955,4336226,439922,435640,444023,432430,444461,444417,434484,433864,442558,441678,443874,444267,438543,442355,443871,435655,442769,444067,762907,4336958,4180111,444098)) + +) I +) C UNION ALL +SELECT 75 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4014149,4014150,44808979,4015141,44808980,4014151,44808981,4015297,4015298,4014434,4015299,4015142,4014152,4015300,4015301,4015302,4014435,4178165,4181162,4324063,438542,45770261,4248725,4283690,4049621,4277749,4097608,4181751,4051642,4185780,4274955,4336226,439922,435640,444023,432430,444461,444417,434484,433864,442558,441678,443874,444267,438543,442355,443871,435655,442769,444067,762907,4336958,4180111,444098)) + +) I +) C UNION ALL +SELECT 76 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4014149,4014150,44808979,4015141,44808980,4014151,44808981,4015297,4015298,4014434,4015299,4015142,4014152,4015300,4015301,4015302,4014435,4178165,4181162,4324063,438542,45770261,4283690,4049621,4277749,4097608,4181751,4051642,4185780,4274955,4336226,439922,435640,444023,432430,444461,444417,434484,433864,442558,441678,443874,444267,438543,442355,443871,435655,442769,444067,762907,4336958,4180111,444098)) + +) I +) C UNION ALL +SELECT 77 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4014149,4014150,44808979,4015141,44808980,4014151,44808981,4015297,4015298,4014434,4015299,4015142,4014152,4015300,4015301,4015302,4014435,4178165,4181162,4324063,438542,45770261,4049621,4277749,4097608,4181751,4051642,4185780,4274955,4336226,439922,435640,444023,432430,444461,444417,434484,433864,442558,441678,443874,444267,438543,442355,443871,435655,442769,444067,762907,4336958,4180111,444098)) + +) I +) C UNION ALL +SELECT 78 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4014435,444067)) + +) I +) C UNION ALL +SELECT 79 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4015302,4014435,442769,444067)) + +) I +) C UNION ALL +SELECT 80 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4015301,4015302,4014435,442769,444067,4336958,444098)) + +) I +) C UNION ALL +SELECT 81 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4014150,44808979,4015141,44808980,4014151,44808981,4015297,4015298,4014434,4015299,4015142,4014152,4015300,4015301,4015302,4014435,4178165,4181162,4324063,438542,45770261,4277749,4097608,4181751,4051642,4185780,4274955,4336226,439922,435640,444023,432430,444461,444417,434484,433864,442558,441678,443874,444267,438543,442355,443871,435655,442769,444067,762907,4336958,4180111,444098)) + +) I +) C UNION ALL +SELECT 82 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4014150,44808979,4015141,44808980,4014151,44808981,4015297,4015298,4014434,4015299,4015142,4014152,4015300,4015301,4015302,4014435,4178165,4181162,4324063,438542,45770261,4097608,4181751,4051642,4185780,4274955,4336226,439922,435640,444023,432430,444461,444417,434484,433864,442558,441678,443874,444267,438543,442355,443871,435655,442769,444067,762907,4336958,4180111,444098)) + +) I +) C UNION ALL +SELECT 83 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4014150,44808979,4015141,44808980,4014151,44808981,4015297,4015298,4014434,4015299,4015142,4014152,4015300,4015301,4015302,4014435,4178165,4181162,4324063,438542,45770261,4181751,4051642,4185780,4274955,4336226,439922,435640,444023,432430,444461,444417,434484,433864,442558,441678,443874,444267,438543,442355,443871,435655,442769,444067,762907,4336958,4180111,444098)) + +) I +) C UNION ALL +SELECT 84 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4014150,44808979,4015141,44808980,4014151,44808981,4015297,4015298,4014434,4015299,4015142,4014152,4015300,4015301,4015302,4014435,4178165,4181162,438542,45770261,4051642,4185780,4274955,4336226,439922,435640,444023,432430,444461,444417,434484,433864,442558,441678,443874,444267,438543,442355,443871,435655,442769,444067,762907,4336958,4180111,444098)) + +) I +) C UNION ALL +SELECT 85 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (44808979,4015141,44808980,4014151,44808981,4015297,4015298,4014434,4015299,4015142,4014152,4015300,4015301,4015302,4014435,438542,45770261,4185780,4274955,4336226,439922,435640,444023,432430,444461,444417,434484,433864,442558,441678,443874,444267,438543,442355,443871,435655,442769,444067,762907,4336958,4180111,4181162,444098)) + +) I +) C UNION ALL +SELECT 86 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4014151,44808981,4015297,4015298,4014434,4015299,4015142,4014152,4015300,4015301,4015302,4014435,434484,433864,442558,441678,443874,444267,438543,442355,443871,435655,442769,444067,762907,4336958,4180111,444098)) + +) I +) C UNION ALL +SELECT 87 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (44808979,4015141,44808980,4014151,44808981,4015297,4015298,4014434,4015299,4015142,4014152,4015300,4015301,4015302,4014435,438542,45770261,4274955,4336226,439922,435640,444023,432430,444461,444417,434484,433864,442558,441678,443874,444267,438543,442355,443871,435655,442769,444067,762907,4336958,4180111,444098)) + +) I +) C UNION ALL +SELECT 88 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (44808981,4015297,4015298,4014434,4015299,4015142,4014152,4015300,4015301,4015302,4014435,433864,442558,441678,443874,444267,438543,442355,443871,435655,442769,444067,762907,4336958,4180111,444098)) + +) I +) C UNION ALL +SELECT 89 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4015300,4015301,4015302,4014435,435655,442769,444067,4336958,444098)) + +) I +) C UNION ALL +SELECT 90 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4014152,4015300,4015301,4015302,4014435,443871,435655,442769,444067,4336958,444098)) + +) I +) C UNION ALL +SELECT 91 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4015142,4014152,4015300,4015301,4015302,4014435,442355,443871,435655,442769,444067,762907,4336958,444098)) + +) I +) C UNION ALL +SELECT 92 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4015299,4015142,4014152,4015300,4015301,4015302,4014435,438543,442355,443871,435655,442769,444067,762907,4336958,444098)) + +) I +) C UNION ALL +SELECT 93 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4014434,4015299,4015142,4014152,4015300,4015301,4015302,4014435,444267,438543,442355,443871,435655,442769,444067,762907,4336958,4180111,444098)) + +) I +) C UNION ALL +SELECT 94 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4015141,44808980,4014151,44808981,4015297,4015298,4014434,4015299,4015142,4014152,4015300,4015301,4015302,4014435,438542,45770261,4336226,439922,435640,444023,432430,444461,444417,434484,433864,442558,441678,443874,444267,438543,442355,443871,435655,442769,444067,762907,4336958,4180111,444098)) + +) I +) C UNION ALL +SELECT 95 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4015141,44808980,4014151,44808981,4015297,4015298,4014434,4015299,4015142,4014152,4015300,4015301,4015302,4014435,45770261,439922,435640,444023,432430,444461,444417,434484,433864,442558,441678,443874,444267,438543,442355,443871,435655,442769,444067,762907,4336958,4180111,444098)) + +) I +) C UNION ALL +SELECT 96 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (44808980,4014151,44808981,4015297,4015298,4014434,4015299,4015142,4014152,4015300,4015301,4015302,4014435,45770261,435640,444023,432430,444461,444417,434484,433864,442558,441678,443874,444267,438543,442355,443871,435655,442769,444067,762907,4336958,4180111,444098)) + +) I +) C UNION ALL +SELECT 97 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4014151,44808981,4015297,4015298,4014434,4015299,4015142,4014152,4015300,4015301,4015302,4014435,45770261,444023,432430,444461,444417,434484,433864,442558,441678,443874,444267,438543,442355,443871,435655,442769,444067,762907,4336958,4180111,444098)) + +) I +) C UNION ALL +SELECT 98 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4014151,44808981,4015297,4015298,4014434,4015299,4015142,4014152,4015300,4015301,4015302,4014435,45770261,432430,444461,444417,434484,433864,442558,441678,443874,444267,438543,442355,443871,435655,442769,444067,762907,4336958,4180111,444098)) + +) I +) C UNION ALL +SELECT 99 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4014151,44808981,4015297,4015298,4014434,4015299,4015142,4014152,4015300,4015301,4015302,4014435,444461,444417,434484,433864,442558,441678,443874,444267,438543,442355,443871,435655,442769,444067,762907,4336958,4180111,444098)) + +) I +) C UNION ALL +SELECT 100 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4014151,44808981,4015297,4015298,4014434,4015299,4015142,4014152,4015300,4015301,4015302,4014435,444417,434484,433864,442558,441678,443874,444267,438543,442355,443871,435655,442769,444067,762907,4336958,4180111,444098)) + +) I +) C UNION ALL +SELECT 101 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4015297,4015298,4014434,4015299,4015142,4014152,4015300,4015301,4015302,4014435,442558,441678,443874,444267,438543,442355,443871,435655,442769,444067,762907,4336958,4180111,444098)) + +) I +) C UNION ALL +SELECT 102 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4015298,4014434,4015299,4015142,4014152,4015300,4015301,4015302,4014435,441678,443874,444267,438543,442355,443871,435655,442769,444067,762907,4336958,4180111,444098)) + +) I +) C UNION ALL +SELECT 103 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4015298,4014434,4015299,4015142,4014152,4015300,4015301,4015302,4014435,443874,444267,438543,442355,443871,435655,442769,444067,762907,4336958,4180111,444098)) + +) I +) C UNION ALL +SELECT 104 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4215648,4312095,3655216,3655215,3655206,3655205,4152444,45763635,3655208,3655207,4147060,44783183,4135209,40483581,440464,4100193,4185718,4232953,4173946,42537767,42537768,4174543,4194053,4216382,4266839,42537762,42537770,42537771,437611,4276942,42539701,42537764,4066014,42537763,40493226,3655214,3655213,4149029,4066151,4063939,42872572,42872571,4112952,4113218,43530979,4107071,200153,4336392,4314877,42537765,4023382,3655209,3655210,4308664,4227423,4247895,4300391,45757120,42537766,4095115,4316051,4239009,4174577,4187090,3655212,3655211,4080587,2110295,2110298,2110297,4296038,199076,4151214,4242401,4129027)) + +) I +) C UNION ALL +SELECT 107 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4200678,4300368,4093429,2004347,4107080,4142956,40757216,40757177,40259069,4074443,4074426,4074427,2004345,4196129,4001541,4306064,4100257,4084217,4085257,40347147,40378260,4319321,40490893,4190526,2110299,2110300,4251314,40480864,4032749,2110240,2722205,2110245,2722217,4074877,4074876,4214980,2004348,4267567,2004342,2004788,2004343,4074424,4072837,2110247,4032000,2004346,4021363,4073272,2004351,2004362,4263669,2004308,2110253,2004307,2004306,2110296,2110293,2110294,40258875,4019096,2004331,2004330,4336229,4301905)) + +) I +) C UNION ALL +SELECT 108 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (432452,4014461,4151169,4015275,4149449,37016220,37016221,4149457,37016222,37018684,46271955,37016216,37016217,37016218,37016213,46271814,37018683,37018889,37016212,762577,37016211,4014299,4149451,4150406,4150405,4150404,4015274,36684754,37207968,36684753,36684752,36684751,4141513,4195545,38001501,439128,4148097,4118056,72726,36675173,440847,4086393,4217564,4147874,4273560,4175637,4064709,4058403,440519,440525,36675035,37311892,2109484,2109483,373766,36684687,36684686,36684685,36684684,36684624,36684623,36684622,36684621,45772079,375250,375251,379009,443519,443520,136530,2514572,42740403,2514571,42739401,2514570,2111055,435925,4149523)) + +) I +) C UNION ALL +SELECT 109 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (1305058)) +UNION select c.concept_id + from @vocabulary_database_schema.CONCEPT c + join @vocabulary_database_schema.CONCEPT_ANCESTOR ca on c.concept_id = ca.descendant_concept_id + WHERE c.invalid_reason is null + and (ca.ancestor_concept_id in (1305058)) + +) I +) C UNION ALL +SELECT 111 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (441092,4061424,40760833,4139126,4015590,3011536,43054893,43021054,37017322,441085,192380,4210896,3006722,40759953,195877,4061522,437937,4030415,197031,4061672,43021951,43021952,3045823,432969,3000119,4217975,4038942,4150948,4148890,4094910,4061785,4060237,4299535,4059982,4061686,4059984,4061411,4059981,4133029,442594,440466,4061423,4214930,3040000,196484,4042412,198212,4129023,4218813,432375,441919,4307820,4059985,4239301,4041878,3023791,40519557,40524802,40524805)) + +) I +) C UNION ALL +SELECT 113 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (440457,4252252,4294259,4032055)) + +) I +) C UNION ALL +SELECT 112 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4198125,4149783,193525,314099,437688,440216,439403,4162865,197050,4034308,2004824,435880,435616,4154997,441959,436768,432967,434701,4099889,4079835,435887,434089,4143074,438489,438203,4129039,80156,321638,314423,4027371,73282,76756,375016,2110305,2110304,4321386,436740,437334,72973,3170656,435875,433822,80205,197339,193825,314426,196175,201920,440162,433826,432373,43020670,441647,4120986,433828,442421,2004823,4170118,73265,192691,194700,201958,438815,79890,4053583,201091,4059763,442913,440787,443700,137613,438204,442442,81636,40479820,78210,4071437,437341,201083,43022052,79146,4196670,80165,73268,4203009,80204,201366,196757,4145315,441682,433027,436219,441680,81360,4047725,442827,80463,4064277,4063297,4060672,4064178,4064169,4064172,4143204,4064175,3657563,76772,76750,77340,74415,4024659,443214,442565,4058113,442441,316478,2212713,437090,433603,438478,437935,4311256,442088,72696,4302252,4062565,81923,444245,77662,4030872,4098582,4227141,4142340,436485,440788,321080,133284,436180,433823,433266,79896,4197403,4023420,4180743,4058246,4079751,442772,43530880,77335,78818,443325,439880,194699,443292,4130310,77338,2004764,4016059,443295,432977,441081,314432,315327,42872398,439893,438205,434697,442918,4060424,436166,435023,314090,4063183,78817,4030429,4034094,4199931,437041,2110337,75015,4063175,4178154,194598,4080067,442051,433545,78218,4080059,441926,76491,442071,4038426,4038755,434111,432386,72378,443323,195019,135370,258564,313590,197608,199086,444374,317941,4014718,198488,201350,200784,4014716,4034100,4064854,4284028,196751,200149,194710,192372,437623,433540,72693,75639,439393,141084,136743,4146816,4277110,321074,438209,4062674,439348,4167493,4062574,194702,200468,201516,435883,4082504,313272,192679,192684,196486,199891,192376,4327745,4032345,433536,132685,4127241,438226,437946,75608,4087113,435331,43530886,43530888,4142581,138479,139895,2110288,441922,136760,81358,437931,196758,192385,434097,2211782,4061971,2110340,79091,72374,4146482,194101,37109810,442290,434712,441929,435021,315884,4300078,440158,313543,435604,35625971,440785)) + +) I +) C; + +UPDATE STATISTICS #Codesets; + + +SELECT event_id, person_id, start_date, end_date, op_start_date, op_end_date, visit_occurrence_id +INTO #qualified_events +FROM +( + select pe.event_id, pe.person_id, pe.start_date, pe.end_date, pe.op_start_date, pe.op_end_date, row_number() over (partition by pe.person_id order by pe.start_date DESC) as ordinal, cast(pe.visit_occurrence_id as bigint) as visit_occurrence_id + FROM (-- Begin Primary Events +select P.ordinal as event_id, P.person_id, P.start_date, P.end_date, op_start_date, op_end_date, cast(P.visit_occurrence_id as bigint) as visit_occurrence_id +FROM +( + select E.person_id, E.start_date, E.end_date, + row_number() OVER (PARTITION BY E.person_id ORDER BY E.sort_date ASC, E.event_id) ordinal, + OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date, cast(E.visit_occurrence_id as bigint) as visit_occurrence_id + FROM + ( + select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Drug Era Criteria +select C.person_id, C.drug_era_id as event_id, C.start_date, C.end_date, + CAST(NULL as bigint) as visit_occurrence_id,C.start_date as sort_date +from +( + select de.person_id,de.drug_era_id,de.drug_concept_id,de.drug_exposure_count,de.gap_days,de.drug_era_start_date as start_date, de.drug_era_end_date as end_date + FROM @cdm_database_schema.DRUG_ERA de +where de.drug_concept_id in (SELECT concept_id from #Codesets where codeset_id = 109) +) C + + +-- End Drug Era Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 20) +) C + + +-- End Condition Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 20) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 20) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 20) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 20) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 20) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 63) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 20) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 20) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 63) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 3 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 20) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 20) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Drug Era Criteria +select C.person_id, C.drug_era_id as event_id, C.start_date, C.end_date, + CAST(NULL as bigint) as visit_occurrence_id,C.start_date as sort_date +from +( + select de.person_id,de.drug_era_id,de.drug_concept_id,de.drug_exposure_count,de.gap_days,de.drug_era_start_date as start_date, de.drug_era_end_date as end_date + FROM @cdm_database_schema.DRUG_ERA de +where de.drug_concept_id in (SELECT concept_id from #Codesets where codeset_id = 109) +) C + + +-- End Drug Era Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 20) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 20) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 4 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 21) +) C + + +-- End Condition Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 21) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 21) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 21) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 21) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 21) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 64) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 21) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 21) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 64) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 3 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 21) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 21) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Drug Era Criteria +select C.person_id, C.drug_era_id as event_id, C.start_date, C.end_date, + CAST(NULL as bigint) as visit_occurrence_id,C.start_date as sort_date +from +( + select de.person_id,de.drug_era_id,de.drug_concept_id,de.drug_exposure_count,de.gap_days,de.drug_era_start_date as start_date, de.drug_era_end_date as end_date + FROM @cdm_database_schema.DRUG_ERA de +where de.drug_concept_id in (SELECT concept_id from #Codesets where codeset_id = 109) +) C + + +-- End Drug Era Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 21) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 21) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 4 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 22) +) C + + +-- End Condition Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 22) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 22) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 22) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 22) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 22) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 65) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 22) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 22) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 65) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 3 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 22) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 22) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Drug Era Criteria +select C.person_id, C.drug_era_id as event_id, C.start_date, C.end_date, + CAST(NULL as bigint) as visit_occurrence_id,C.start_date as sort_date +from +( + select de.person_id,de.drug_era_id,de.drug_concept_id,de.drug_exposure_count,de.gap_days,de.drug_era_start_date as start_date, de.drug_era_end_date as end_date + FROM @cdm_database_schema.DRUG_ERA de +where de.drug_concept_id in (SELECT concept_id from #Codesets where codeset_id = 109) +) C + + +-- End Drug Era Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 22) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 22) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 4 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 23) +) C + + +-- End Condition Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 23) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 23) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 23) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 23) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 23) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 66) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 23) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 23) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 66) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 3 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 23) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 23) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Drug Era Criteria +select C.person_id, C.drug_era_id as event_id, C.start_date, C.end_date, + CAST(NULL as bigint) as visit_occurrence_id,C.start_date as sort_date +from +( + select de.person_id,de.drug_era_id,de.drug_concept_id,de.drug_exposure_count,de.gap_days,de.drug_era_start_date as start_date, de.drug_era_end_date as end_date + FROM @cdm_database_schema.DRUG_ERA de +where de.drug_concept_id in (SELECT concept_id from #Codesets where codeset_id = 109) +) C + + +-- End Drug Era Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 23) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 23) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 4 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 24) +) C + + +-- End Condition Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 24) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 24) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 24) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 24) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 24) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 67) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 24) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 24) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 67) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 3 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 24) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 24) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Drug Era Criteria +select C.person_id, C.drug_era_id as event_id, C.start_date, C.end_date, + CAST(NULL as bigint) as visit_occurrence_id,C.start_date as sort_date +from +( + select de.person_id,de.drug_era_id,de.drug_concept_id,de.drug_exposure_count,de.gap_days,de.drug_era_start_date as start_date, de.drug_era_end_date as end_date + FROM @cdm_database_schema.DRUG_ERA de +where de.drug_concept_id in (SELECT concept_id from #Codesets where codeset_id = 109) +) C + + +-- End Drug Era Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 24) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 24) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 4 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 25) +) C + + +-- End Condition Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 25) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 25) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 25) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 25) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 25) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 68) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 25) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 25) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 68) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 3 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 25) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 25) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 25) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 25) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Drug Era Criteria +select C.person_id, C.drug_era_id as event_id, C.start_date, C.end_date, + CAST(NULL as bigint) as visit_occurrence_id,C.start_date as sort_date +from +( + select de.person_id,de.drug_era_id,de.drug_concept_id,de.drug_exposure_count,de.gap_days,de.drug_era_start_date as start_date, de.drug_era_end_date as end_date + FROM @cdm_database_schema.DRUG_ERA de +where de.drug_concept_id in (SELECT concept_id from #Codesets where codeset_id = 109) +) C + + +-- End Drug Era Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 4 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 26) +) C + + +-- End Condition Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 26) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 26) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 26) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 26) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 26) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 69) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 26) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 26) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 69) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 3 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 26) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 26) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 26) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 26) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Drug Era Criteria +select C.person_id, C.drug_era_id as event_id, C.start_date, C.end_date, + CAST(NULL as bigint) as visit_occurrence_id,C.start_date as sort_date +from +( + select de.person_id,de.drug_era_id,de.drug_concept_id,de.drug_exposure_count,de.gap_days,de.drug_era_start_date as start_date, de.drug_era_end_date as end_date + FROM @cdm_database_schema.DRUG_ERA de +where de.drug_concept_id in (SELECT concept_id from #Codesets where codeset_id = 109) +) C + + +-- End Drug Era Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 4 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 3) +) C + + +-- End Condition Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 3) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 3) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 3) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 3) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 3) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 70) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 3) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 3) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 70) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 3 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 3) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 3) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Drug Era Criteria +select C.person_id, C.drug_era_id as event_id, C.start_date, C.end_date, + CAST(NULL as bigint) as visit_occurrence_id,C.start_date as sort_date +from +( + select de.person_id,de.drug_era_id,de.drug_concept_id,de.drug_exposure_count,de.gap_days,de.drug_era_start_date as start_date, de.drug_era_end_date as end_date + FROM @cdm_database_schema.DRUG_ERA de +where de.drug_concept_id in (SELECT concept_id from #Codesets where codeset_id = 109) +) C + + +-- End Drug Era Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 3) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 3) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 4 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 3) +) C + + +-- End Procedure Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 3) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 3) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 3) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 3) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 3) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 70) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 3) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 3) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 70) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 3 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 3) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 3) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Drug Era Criteria +select C.person_id, C.drug_era_id as event_id, C.start_date, C.end_date, + CAST(NULL as bigint) as visit_occurrence_id,C.start_date as sort_date +from +( + select de.person_id,de.drug_era_id,de.drug_concept_id,de.drug_exposure_count,de.gap_days,de.drug_era_start_date as start_date, de.drug_era_end_date as end_date + FROM @cdm_database_schema.DRUG_ERA de +where de.drug_concept_id in (SELECT concept_id from #Codesets where codeset_id = 109) +) C + + +-- End Drug Era Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 3) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 3) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 4 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 14) +) C + + +-- End Condition Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 14) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 14) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 14) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 14) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 14) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 71) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 14) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 14) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 71) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 3 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 14) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 14) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Drug Era Criteria +select C.person_id, C.drug_era_id as event_id, C.start_date, C.end_date, + CAST(NULL as bigint) as visit_occurrence_id,C.start_date as sort_date +from +( + select de.person_id,de.drug_era_id,de.drug_concept_id,de.drug_exposure_count,de.gap_days,de.drug_era_start_date as start_date, de.drug_era_end_date as end_date + FROM @cdm_database_schema.DRUG_ERA de +where de.drug_concept_id in (SELECT concept_id from #Codesets where codeset_id = 109) +) C + + +-- End Drug Era Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 14) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 14) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 4 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 17) +) C + + +-- End Condition Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 17) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 17) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 17) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 17) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 17) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 72) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 17) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 17) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 72) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 3 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 17) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 17) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Drug Era Criteria +select C.person_id, C.drug_era_id as event_id, C.start_date, C.end_date, + CAST(NULL as bigint) as visit_occurrence_id,C.start_date as sort_date +from +( + select de.person_id,de.drug_era_id,de.drug_concept_id,de.drug_exposure_count,de.gap_days,de.drug_era_start_date as start_date, de.drug_era_end_date as end_date + FROM @cdm_database_schema.DRUG_ERA de +where de.drug_concept_id in (SELECT concept_id from #Codesets where codeset_id = 109) +) C + + +-- End Drug Era Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 17) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 17) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 4 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 18) +) C + + +-- End Condition Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 18) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 18) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 18) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 18) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 18) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Era Criteria +select C.person_id, C.condition_era_id as event_id, C.start_date, C.end_date, + CAST(NULL as bigint) as visit_occurrence_id, C.start_date as sort_date +from +( + select ce.person_id,ce.condition_era_id,ce.condition_concept_id,ce.condition_occurrence_count,ce.condition_era_start_date as start_date, ce.condition_era_end_date as end_date + FROM @cdm_database_schema.CONDITION_ERA ce +where ce.condition_concept_id in (SELECT concept_id from #Codesets where codeset_id = 73) +) C + + +-- End Condition Era Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 18) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 18) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 73) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 3 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 18) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 18) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Drug Era Criteria +select C.person_id, C.drug_era_id as event_id, C.start_date, C.end_date, + CAST(NULL as bigint) as visit_occurrence_id,C.start_date as sort_date +from +( + select de.person_id,de.drug_era_id,de.drug_concept_id,de.drug_exposure_count,de.gap_days,de.drug_era_start_date as start_date, de.drug_era_end_date as end_date + FROM @cdm_database_schema.DRUG_ERA de +where de.drug_concept_id in (SELECT concept_id from #Codesets where codeset_id = 109) +) C + + +-- End Drug Era Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 18) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 18) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 4 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 9) +) C + + +-- End Condition Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 9) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 9) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 9) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 9) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 9) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 74) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 9) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 9) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 74) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 3 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 9) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 9) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Drug Era Criteria +select C.person_id, C.drug_era_id as event_id, C.start_date, C.end_date, + CAST(NULL as bigint) as visit_occurrence_id,C.start_date as sort_date +from +( + select de.person_id,de.drug_era_id,de.drug_concept_id,de.drug_exposure_count,de.gap_days,de.drug_era_start_date as start_date, de.drug_era_end_date as end_date + FROM @cdm_database_schema.DRUG_ERA de +where de.drug_concept_id in (SELECT concept_id from #Codesets where codeset_id = 109) +) C + + +-- End Drug Era Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 9) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 9) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 4 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 9) +) C + + +-- End Procedure Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 9) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 9) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 9) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 9) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 9) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 74) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 9) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 9) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 74) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 3 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 9) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 9) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Drug Era Criteria +select C.person_id, C.drug_era_id as event_id, C.start_date, C.end_date, + CAST(NULL as bigint) as visit_occurrence_id,C.start_date as sort_date +from +( + select de.person_id,de.drug_era_id,de.drug_concept_id,de.drug_exposure_count,de.gap_days,de.drug_era_start_date as start_date, de.drug_era_end_date as end_date + FROM @cdm_database_schema.DRUG_ERA de +where de.drug_concept_id in (SELECT concept_id from #Codesets where codeset_id = 109) +) C + + +-- End Drug Era Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 9) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 9) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 4 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Observation Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 3 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Drug Era Criteria +select C.person_id, C.drug_era_id as event_id, C.start_date, C.end_date, + CAST(NULL as bigint) as visit_occurrence_id,C.start_date as sort_date +from +( + select de.person_id,de.drug_era_id,de.drug_concept_id,de.drug_exposure_count,de.gap_days,de.drug_era_start_date as start_date, de.drug_era_end_date as end_date + FROM @cdm_database_schema.DRUG_ERA de +where de.drug_concept_id in (SELECT concept_id from #Codesets where codeset_id = 109) +) C + + +-- End Drug Era Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 4 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Procedure Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 3 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Drug Era Criteria +select C.person_id, C.drug_era_id as event_id, C.start_date, C.end_date, + CAST(NULL as bigint) as visit_occurrence_id,C.start_date as sort_date +from +( + select de.person_id,de.drug_era_id,de.drug_concept_id,de.drug_exposure_count,de.gap_days,de.drug_era_start_date as start_date, de.drug_era_end_date as end_date + FROM @cdm_database_schema.DRUG_ERA de +where de.drug_concept_id in (SELECT concept_id from #Codesets where codeset_id = 109) +) C + + +-- End Drug Era Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 4 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Condition Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 3 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Drug Era Criteria +select C.person_id, C.drug_era_id as event_id, C.start_date, C.end_date, + CAST(NULL as bigint) as visit_occurrence_id,C.start_date as sort_date +from +( + select de.person_id,de.drug_era_id,de.drug_concept_id,de.drug_exposure_count,de.gap_days,de.drug_era_start_date as start_date, de.drug_era_end_date as end_date + FROM @cdm_database_schema.DRUG_ERA de +where de.drug_concept_id in (SELECT concept_id from #Codesets where codeset_id = 109) +) C + + +-- End Drug Era Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 4 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Observation Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 6 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Drug Era Criteria +select C.person_id, C.drug_era_id as event_id, C.start_date, C.end_date, + CAST(NULL as bigint) as visit_occurrence_id,C.start_date as sort_date +from +( + select de.person_id,de.drug_era_id,de.drug_concept_id,de.drug_exposure_count,de.gap_days,de.drug_era_start_date as start_date, de.drug_era_end_date as end_date + FROM @cdm_database_schema.DRUG_ERA de +where de.drug_concept_id in (SELECT concept_id from #Codesets where codeset_id = 109) +) C + + +-- End Drug Era Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 7 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Condition Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 6 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Drug Era Criteria +select C.person_id, C.drug_era_id as event_id, C.start_date, C.end_date, + CAST(NULL as bigint) as visit_occurrence_id,C.start_date as sort_date +from +( + select de.person_id,de.drug_era_id,de.drug_concept_id,de.drug_exposure_count,de.gap_days,de.drug_era_start_date as start_date, de.drug_era_end_date as end_date + FROM @cdm_database_schema.DRUG_ERA de +where de.drug_concept_id in (SELECT concept_id from #Codesets where codeset_id = 109) +) C + + +-- End Drug Era Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 7 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Procedure Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 6 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 7 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 8 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Drug Era Criteria +select C.person_id, C.drug_era_id as event_id, C.start_date, C.end_date, + CAST(NULL as bigint) as visit_occurrence_id,C.start_date as sort_date +from +( + select de.person_id,de.drug_era_id,de.drug_concept_id,de.drug_exposure_count,de.gap_days,de.drug_era_start_date as start_date, de.drug_era_end_date as end_date + FROM @cdm_database_schema.DRUG_ERA de +where de.drug_concept_id in (SELECT concept_id from #Codesets where codeset_id = 109) +) C + + +-- End Drug Era Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 9 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Measurement Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.END_DATE) AND A.START_DATE <= DATEADD(day,84,P.END_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 6 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 7 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 8 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Drug Era Criteria +select C.person_id, C.drug_era_id as event_id, C.start_date, C.end_date, + CAST(NULL as bigint) as visit_occurrence_id,C.start_date as sort_date +from +( + select de.person_id,de.drug_era_id,de.drug_concept_id,de.drug_exposure_count,de.gap_days,de.drug_era_start_date as start_date, de.drug_era_end_date as end_date + FROM @cdm_database_schema.DRUG_ERA de +where de.drug_concept_id in (SELECT concept_id from #Codesets where codeset_id = 109) +) C + + +-- End Drug Era Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 9 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 113) +) C + + +-- End Condition Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 113) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 113) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 113) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 113) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 113) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 113) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 113) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 113) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 113) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 113) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 113) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 113) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 113) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 6 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 113) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 113) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Drug Era Criteria +select C.person_id, C.drug_era_id as event_id, C.start_date, C.end_date, + CAST(NULL as bigint) as visit_occurrence_id,C.start_date as sort_date +from +( + select de.person_id,de.drug_era_id,de.drug_concept_id,de.drug_exposure_count,de.gap_days,de.drug_era_start_date as start_date, de.drug_era_end_date as end_date + FROM @cdm_database_schema.DRUG_ERA de +where de.drug_concept_id in (SELECT concept_id from #Codesets where codeset_id = 109) +) C + + +-- End Drug Era Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 113) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 113) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 7 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 111) +) C + + +-- End Condition Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 111) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 111) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 111) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 111) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 111) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 111) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 111) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 111) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 111) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 111) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 111) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 111) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 111) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 6 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 111) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 111) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Drug Era Criteria +select C.person_id, C.drug_era_id as event_id, C.start_date, C.end_date, + CAST(NULL as bigint) as visit_occurrence_id,C.start_date as sort_date +from +( + select de.person_id,de.drug_era_id,de.drug_concept_id,de.drug_exposure_count,de.gap_days,de.drug_era_start_date as start_date, de.drug_era_end_date as end_date + FROM @cdm_database_schema.DRUG_ERA de +where de.drug_concept_id in (SELECT concept_id from #Codesets where codeset_id = 109) +) C + + +-- End Drug Era Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 111) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 111) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 7 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 111) +) C + + +-- End Measurement Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 111) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 111) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 111) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 111) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 111) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 111) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 111) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 111) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 111) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 111) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 111) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 111) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 111) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 6 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 111) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 111) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Drug Era Criteria +select C.person_id, C.drug_era_id as event_id, C.start_date, C.end_date, + CAST(NULL as bigint) as visit_occurrence_id,C.start_date as sort_date +from +( + select de.person_id,de.drug_era_id,de.drug_concept_id,de.drug_exposure_count,de.gap_days,de.drug_era_start_date as start_date, de.drug_era_end_date as end_date + FROM @cdm_database_schema.DRUG_ERA de +where de.drug_concept_id in (SELECT concept_id from #Codesets where codeset_id = 109) +) C + + +-- End Drug Era Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 111) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 111) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 7 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 111) +) C + + +-- End Observation Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 111) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 111) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 111) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 111) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 111) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 111) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 111) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 111) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 111) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 111) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 111) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 111) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 111) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 6 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 111) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 111) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Drug Era Criteria +select C.person_id, C.drug_era_id as event_id, C.start_date, C.end_date, + CAST(NULL as bigint) as visit_occurrence_id,C.start_date as sort_date +from +( + select de.person_id,de.drug_era_id,de.drug_concept_id,de.drug_exposure_count,de.gap_days,de.drug_era_start_date as start_date, de.drug_era_end_date as end_date + FROM @cdm_database_schema.DRUG_ERA de +where de.drug_concept_id in (SELECT concept_id from #Codesets where codeset_id = 109) +) C + + +-- End Drug Era Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 111) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 111) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 7 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 111) +) C + + +-- End Procedure Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 111) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 111) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 111) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 111) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 111) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 111) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 111) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 111) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 111) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 111) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 111) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 111) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 111) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 6 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 111) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 111) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Drug Era Criteria +select C.person_id, C.drug_era_id as event_id, C.start_date, C.end_date, + CAST(NULL as bigint) as visit_occurrence_id,C.start_date as sort_date +from +( + select de.person_id,de.drug_era_id,de.drug_concept_id,de.drug_exposure_count,de.gap_days,de.drug_era_start_date as start_date, de.drug_era_end_date as end_date + FROM @cdm_database_schema.DRUG_ERA de +where de.drug_concept_id in (SELECT concept_id from #Codesets where codeset_id = 109) +) C + + +-- End Drug Era Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 111) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 111) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 7 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Condition Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 6 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Drug Era Criteria +select C.person_id, C.drug_era_id as event_id, C.start_date, C.end_date, + CAST(NULL as bigint) as visit_occurrence_id,C.start_date as sort_date +from +( + select de.person_id,de.drug_era_id,de.drug_concept_id,de.drug_exposure_count,de.gap_days,de.drug_era_start_date as start_date, de.drug_era_end_date as end_date + FROM @cdm_database_schema.DRUG_ERA de +where de.drug_concept_id in (SELECT concept_id from #Codesets where codeset_id = 109) +) C + + +-- End Drug Era Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 7 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Observation Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 6 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Drug Era Criteria +select C.person_id, C.drug_era_id as event_id, C.start_date, C.end_date, + CAST(NULL as bigint) as visit_occurrence_id,C.start_date as sort_date +from +( + select de.person_id,de.drug_era_id,de.drug_concept_id,de.drug_exposure_count,de.gap_days,de.drug_era_start_date as start_date, de.drug_era_end_date as end_date + FROM @cdm_database_schema.DRUG_ERA de +where de.drug_concept_id in (SELECT concept_id from #Codesets where codeset_id = 109) +) C + + +-- End Drug Era Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 7 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Procedure Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 6 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Drug Era Criteria +select C.person_id, C.drug_era_id as event_id, C.start_date, C.end_date, + CAST(NULL as bigint) as visit_occurrence_id,C.start_date as sort_date +from +( + select de.person_id,de.drug_era_id,de.drug_concept_id,de.drug_exposure_count,de.gap_days,de.drug_era_start_date as start_date, de.drug_era_end_date as end_date + FROM @cdm_database_schema.DRUG_ERA de +where de.drug_concept_id in (SELECT concept_id from #Codesets where codeset_id = 109) +) C + + +-- End Drug Era Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 7 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Observation Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 6 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Drug Era Criteria +select C.person_id, C.drug_era_id as event_id, C.start_date, C.end_date, + CAST(NULL as bigint) as visit_occurrence_id,C.start_date as sort_date +from +( + select de.person_id,de.drug_era_id,de.drug_concept_id,de.drug_exposure_count,de.gap_days,de.drug_era_start_date as start_date, de.drug_era_end_date as end_date + FROM @cdm_database_schema.DRUG_ERA de +where de.drug_concept_id in (SELECT concept_id from #Codesets where codeset_id = 109) +) C + + +-- End Drug Era Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 7 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Condition Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 6 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Drug Era Criteria +select C.person_id, C.drug_era_id as event_id, C.start_date, C.end_date, + CAST(NULL as bigint) as visit_occurrence_id,C.start_date as sort_date +from +( + select de.person_id,de.drug_era_id,de.drug_concept_id,de.drug_exposure_count,de.gap_days,de.drug_era_start_date as start_date, de.drug_era_end_date as end_date + FROM @cdm_database_schema.DRUG_ERA de +where de.drug_concept_id in (SELECT concept_id from #Codesets where codeset_id = 109) +) C + + +-- End Drug Era Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 7 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Procedure Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 6 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Drug Era Criteria +select C.person_id, C.drug_era_id as event_id, C.start_date, C.end_date, + CAST(NULL as bigint) as visit_occurrence_id,C.start_date as sort_date +from +( + select de.person_id,de.drug_era_id,de.drug_concept_id,de.drug_exposure_count,de.gap_days,de.drug_era_start_date as start_date, de.drug_era_end_date as end_date + FROM @cdm_database_schema.DRUG_ERA de +where de.drug_concept_id in (SELECT concept_id from #Codesets where codeset_id = 109) +) C + + +-- End Drug Era Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 7 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Measurement Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 6 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Drug Era Criteria +select C.person_id, C.drug_era_id as event_id, C.start_date, C.end_date, + CAST(NULL as bigint) as visit_occurrence_id,C.start_date as sort_date +from +( + select de.person_id,de.drug_era_id,de.drug_concept_id,de.drug_exposure_count,de.gap_days,de.drug_era_start_date as start_date, de.drug_era_end_date as end_date + FROM @cdm_database_schema.DRUG_ERA de +where de.drug_concept_id in (SELECT concept_id from #Codesets where codeset_id = 109) +) C + + +-- End Drug Era Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 7 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Procedure Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 6 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 7 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 8 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 9 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 10 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Drug Era Criteria +select C.person_id, C.drug_era_id as event_id, C.start_date, C.end_date, + CAST(NULL as bigint) as visit_occurrence_id,C.start_date as sort_date +from +( + select de.person_id,de.drug_era_id,de.drug_concept_id,de.drug_exposure_count,de.gap_days,de.drug_era_start_date as start_date, de.drug_era_end_date as end_date + FROM @cdm_database_schema.DRUG_ERA de +where de.drug_concept_id in (SELECT concept_id from #Codesets where codeset_id = 109) +) C + + +-- End Drug Era Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Drug Era Criteria +select C.person_id, C.drug_era_id as event_id, C.start_date, C.end_date, + CAST(NULL as bigint) as visit_occurrence_id,C.start_date as sort_date +from +( + select de.person_id,de.drug_era_id,de.drug_concept_id,de.drug_exposure_count,de.gap_days,de.drug_era_start_date as start_date, de.drug_era_end_date as end_date + FROM @cdm_database_schema.DRUG_ERA de +where de.drug_concept_id in (SELECT concept_id from #Codesets where codeset_id = 109) +) C + + +-- End Drug Era Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Drug Era Criteria +select C.person_id, C.drug_era_id as event_id, C.start_date, C.end_date, + CAST(NULL as bigint) as visit_occurrence_id,C.start_date as sort_date +from +( + select de.person_id,de.drug_era_id,de.drug_concept_id,de.drug_exposure_count,de.gap_days,de.drug_era_start_date as start_date, de.drug_era_end_date as end_date + FROM @cdm_database_schema.DRUG_ERA de +where de.drug_concept_id in (SELECT concept_id from #Codesets where codeset_id = 109) +) C + + +-- End Drug Era Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Drug Era Criteria +select C.person_id, C.drug_era_id as event_id, C.start_date, C.end_date, + CAST(NULL as bigint) as visit_occurrence_id,C.start_date as sort_date +from +( + select de.person_id,de.drug_era_id,de.drug_concept_id,de.drug_exposure_count,de.gap_days,de.drug_era_start_date as start_date, de.drug_era_end_date as end_date + FROM @cdm_database_schema.DRUG_ERA de +where de.drug_concept_id in (SELECT concept_id from #Codesets where codeset_id = 109) +) C + + +-- End Drug Era Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Drug Era Criteria +select C.person_id, C.drug_era_id as event_id, C.start_date, C.end_date, + CAST(NULL as bigint) as visit_occurrence_id,C.start_date as sort_date +from +( + select de.person_id,de.drug_era_id,de.drug_concept_id,de.drug_exposure_count,de.gap_days,de.drug_era_start_date as start_date, de.drug_era_end_date as end_date + FROM @cdm_database_schema.DRUG_ERA de +where de.drug_concept_id in (SELECT concept_id from #Codesets where codeset_id = 109) +) C + + +-- End Drug Era Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Drug Era Criteria +select C.person_id, C.drug_era_id as event_id, C.start_date, C.end_date, + CAST(NULL as bigint) as visit_occurrence_id,C.start_date as sort_date +from +( + select de.person_id,de.drug_era_id,de.drug_concept_id,de.drug_exposure_count,de.gap_days,de.drug_era_start_date as start_date, de.drug_era_end_date as end_date + FROM @cdm_database_schema.DRUG_ERA de +where de.drug_concept_id in (SELECT concept_id from #Codesets where codeset_id = 109) +) C + + +-- End Drug Era Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Drug Era Criteria +select C.person_id, C.drug_era_id as event_id, C.start_date, C.end_date, + CAST(NULL as bigint) as visit_occurrence_id,C.start_date as sort_date +from +( + select de.person_id,de.drug_era_id,de.drug_concept_id,de.drug_exposure_count,de.gap_days,de.drug_era_start_date as start_date, de.drug_era_end_date as end_date + FROM @cdm_database_schema.DRUG_ERA de +where de.drug_concept_id in (SELECT concept_id from #Codesets where codeset_id = 109) +) C + + +-- End Drug Era Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Drug Era Criteria +select C.person_id, C.drug_era_id as event_id, C.start_date, C.end_date, + CAST(NULL as bigint) as visit_occurrence_id,C.start_date as sort_date +from +( + select de.person_id,de.drug_era_id,de.drug_concept_id,de.drug_exposure_count,de.gap_days,de.drug_era_start_date as start_date, de.drug_era_end_date as end_date + FROM @cdm_database_schema.DRUG_ERA de +where de.drug_concept_id in (SELECT concept_id from #Codesets where codeset_id = 109) +) C + + +-- End Drug Era Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Drug Era Criteria +select C.person_id, C.drug_era_id as event_id, C.start_date, C.end_date, + CAST(NULL as bigint) as visit_occurrence_id,C.start_date as sort_date +from +( + select de.person_id,de.drug_era_id,de.drug_concept_id,de.drug_exposure_count,de.gap_days,de.drug_era_start_date as start_date, de.drug_era_end_date as end_date + FROM @cdm_database_schema.DRUG_ERA de +where de.drug_concept_id in (SELECT concept_id from #Codesets where codeset_id = 109) +) C + + +-- End Drug Era Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Drug Era Criteria +select C.person_id, C.drug_era_id as event_id, C.start_date, C.end_date, + CAST(NULL as bigint) as visit_occurrence_id,C.start_date as sort_date +from +( + select de.person_id,de.drug_era_id,de.drug_concept_id,de.drug_exposure_count,de.gap_days,de.drug_era_start_date as start_date, de.drug_era_end_date as end_date + FROM @cdm_database_schema.DRUG_ERA de +where de.drug_concept_id in (SELECT concept_id from #Codesets where codeset_id = 109) +) C + + +-- End Drug Era Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Drug Era Criteria +select C.person_id, C.drug_era_id as event_id, C.start_date, C.end_date, + CAST(NULL as bigint) as visit_occurrence_id,C.start_date as sort_date +from +( + select de.person_id,de.drug_era_id,de.drug_concept_id,de.drug_exposure_count,de.gap_days,de.drug_era_start_date as start_date, de.drug_era_end_date as end_date + FROM @cdm_database_schema.DRUG_ERA de +where de.drug_concept_id in (SELECT concept_id from #Codesets where codeset_id = 109) +) C + + +-- End Drug Era Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Drug Era Criteria +select C.person_id, C.drug_era_id as event_id, C.start_date, C.end_date, + CAST(NULL as bigint) as visit_occurrence_id,C.start_date as sort_date +from +( + select de.person_id,de.drug_era_id,de.drug_concept_id,de.drug_exposure_count,de.gap_days,de.drug_era_start_date as start_date, de.drug_era_end_date as end_date + FROM @cdm_database_schema.DRUG_ERA de +where de.drug_concept_id in (SELECT concept_id from #Codesets where codeset_id = 109) +) C + + +-- End Drug Era Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Drug Era Criteria +select C.person_id, C.drug_era_id as event_id, C.start_date, C.end_date, + CAST(NULL as bigint) as visit_occurrence_id,C.start_date as sort_date +from +( + select de.person_id,de.drug_era_id,de.drug_concept_id,de.drug_exposure_count,de.gap_days,de.drug_era_start_date as start_date, de.drug_era_end_date as end_date + FROM @cdm_database_schema.DRUG_ERA de +where de.drug_concept_id in (SELECT concept_id from #Codesets where codeset_id = 109) +) C + + +-- End Drug Era Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Drug Era Criteria +select C.person_id, C.drug_era_id as event_id, C.start_date, C.end_date, + CAST(NULL as bigint) as visit_occurrence_id,C.start_date as sort_date +from +( + select de.person_id,de.drug_era_id,de.drug_concept_id,de.drug_exposure_count,de.gap_days,de.drug_era_start_date as start_date, de.drug_era_end_date as end_date + FROM @cdm_database_schema.DRUG_ERA de +where de.drug_concept_id in (SELECT concept_id from #Codesets where codeset_id = 109) +) C + + +-- End Drug Era Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 6 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Drug Era Criteria +select C.person_id, C.drug_era_id as event_id, C.start_date, C.end_date, + CAST(NULL as bigint) as visit_occurrence_id,C.start_date as sort_date +from +( + select de.person_id,de.drug_era_id,de.drug_concept_id,de.drug_exposure_count,de.gap_days,de.drug_era_start_date as start_date, de.drug_era_end_date as end_date + FROM @cdm_database_schema.DRUG_ERA de +where de.drug_concept_id in (SELECT concept_id from #Codesets where codeset_id = 109) +) C + + +-- End Drug Era Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Drug Era Criteria +select C.person_id, C.drug_era_id as event_id, C.start_date, C.end_date, + CAST(NULL as bigint) as visit_occurrence_id,C.start_date as sort_date +from +( + select de.person_id,de.drug_era_id,de.drug_concept_id,de.drug_exposure_count,de.gap_days,de.drug_era_start_date as start_date, de.drug_era_end_date as end_date + FROM @cdm_database_schema.DRUG_ERA de +where de.drug_concept_id in (SELECT concept_id from #Codesets where codeset_id = 109) +) C + + +-- End Drug Era Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 7 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Drug Era Criteria +select C.person_id, C.drug_era_id as event_id, C.start_date, C.end_date, + CAST(NULL as bigint) as visit_occurrence_id,C.start_date as sort_date +from +( + select de.person_id,de.drug_era_id,de.drug_concept_id,de.drug_exposure_count,de.gap_days,de.drug_era_start_date as start_date, de.drug_era_end_date as end_date + FROM @cdm_database_schema.DRUG_ERA de +where de.drug_concept_id in (SELECT concept_id from #Codesets where codeset_id = 109) +) C + + +-- End Drug Era Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Drug Era Criteria +select C.person_id, C.drug_era_id as event_id, C.start_date, C.end_date, + CAST(NULL as bigint) as visit_occurrence_id,C.start_date as sort_date +from +( + select de.person_id,de.drug_era_id,de.drug_concept_id,de.drug_exposure_count,de.gap_days,de.drug_era_start_date as start_date, de.drug_era_end_date as end_date + FROM @cdm_database_schema.DRUG_ERA de +where de.drug_concept_id in (SELECT concept_id from #Codesets where codeset_id = 109) +) C + + +-- End Drug Era Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 8 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Drug Era Criteria +select C.person_id, C.drug_era_id as event_id, C.start_date, C.end_date, + CAST(NULL as bigint) as visit_occurrence_id,C.start_date as sort_date +from +( + select de.person_id,de.drug_era_id,de.drug_concept_id,de.drug_exposure_count,de.gap_days,de.drug_era_start_date as start_date, de.drug_era_end_date as end_date + FROM @cdm_database_schema.DRUG_ERA de +where de.drug_concept_id in (SELECT concept_id from #Codesets where codeset_id = 109) +) C + + +-- End Drug Era Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Drug Era Criteria +select C.person_id, C.drug_era_id as event_id, C.start_date, C.end_date, + CAST(NULL as bigint) as visit_occurrence_id,C.start_date as sort_date +from +( + select de.person_id,de.drug_era_id,de.drug_concept_id,de.drug_exposure_count,de.gap_days,de.drug_era_start_date as start_date, de.drug_era_end_date as end_date + FROM @cdm_database_schema.DRUG_ERA de +where de.drug_concept_id in (SELECT concept_id from #Codesets where codeset_id = 109) +) C + + +-- End Drug Era Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 9 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Drug Era Criteria +select C.person_id, C.drug_era_id as event_id, C.start_date, C.end_date, + CAST(NULL as bigint) as visit_occurrence_id,C.start_date as sort_date +from +( + select de.person_id,de.drug_era_id,de.drug_concept_id,de.drug_exposure_count,de.gap_days,de.drug_era_start_date as start_date, de.drug_era_end_date as end_date + FROM @cdm_database_schema.DRUG_ERA de +where de.drug_concept_id in (SELECT concept_id from #Codesets where codeset_id = 109) +) C + + +-- End Drug Era Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Drug Era Criteria +select C.person_id, C.drug_era_id as event_id, C.start_date, C.end_date, + CAST(NULL as bigint) as visit_occurrence_id,C.start_date as sort_date +from +( + select de.person_id,de.drug_era_id,de.drug_concept_id,de.drug_exposure_count,de.gap_days,de.drug_era_start_date as start_date, de.drug_era_end_date as end_date + FROM @cdm_database_schema.DRUG_ERA de +where de.drug_concept_id in (SELECT concept_id from #Codesets where codeset_id = 109) +) C + + +-- End Drug Era Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 10 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Observation Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 6 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 7 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 8 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 9 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 10 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + + ) E + JOIN @cdm_database_schema.observation_period OP on E.person_id = OP.person_id and E.start_date >= OP.observation_period_start_date and E.start_date <= op.observation_period_end_date + WHERE DATEADD(day,0,OP.OBSERVATION_PERIOD_START_DATE) <= E.START_DATE AND DATEADD(day,0,E.START_DATE) <= OP.OBSERVATION_PERIOD_END_DATE +) P + +-- End Primary Events +) pe + +) QE + +; + +--- Inclusion Rule Inserts + +select 0 as inclusion_rule_id, person_id, event_id +INTO #Inclusion_0 +FROM +( + select pe.person_id, pe.event_id + FROM #qualified_events pe + +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM #qualified_events E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM #qualified_events P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,42,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM #qualified_events P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.END_DATE >= DATEADD(day,42,P.START_DATE) AND A.END_DATE <= DATEADD(day,84,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM #qualified_events P +JOIN ( + -- Begin Drug Era Criteria +select C.person_id, C.drug_era_id as event_id, C.start_date, C.end_date, + CAST(NULL as bigint) as visit_occurrence_id,C.start_date as sort_date +from +( + select de.person_id,de.drug_era_id,de.drug_concept_id,de.drug_exposure_count,de.gap_days,de.drug_era_start_date as start_date, de.drug_era_end_date as end_date + FROM @cdm_database_schema.DRUG_ERA de +where de.drug_concept_id in (SELECT concept_id from #Codesets where codeset_id = 109) +) C + + +-- End Drug Era Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,42,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) > 0 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id AND AC.event_id = pe.event_id +) Results +; + +select 1 as inclusion_rule_id, person_id, event_id +INTO #Inclusion_1 +FROM +( + select pe.person_id, pe.event_id + FROM #qualified_events pe + +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM #qualified_events E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from #qualified_events p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM #qualified_events P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,41,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from #qualified_events p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM #qualified_events P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,41,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from #qualified_events p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM #qualified_events P +JOIN ( + -- Begin Drug Era Criteria +select C.person_id, C.drug_era_id as event_id, C.start_date, C.end_date, + CAST(NULL as bigint) as visit_occurrence_id,C.start_date as sort_date +from +( + select de.person_id,de.drug_era_id,de.drug_concept_id,de.drug_exposure_count,de.gap_days,de.drug_era_start_date as start_date, de.drug_era_end_date as end_date + FROM @cdm_database_schema.DRUG_ERA de +where de.drug_concept_id in (SELECT concept_id from #Codesets where codeset_id = 109) +) C + + +-- End Drug Era Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,41,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 3 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id AND AC.event_id = pe.event_id +) Results +; + +select 2 as inclusion_rule_id, person_id, event_id +INTO #Inclusion_2 +FROM +( + select pe.person_id, pe.event_id + FROM #qualified_events pe + +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM #qualified_events E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from #qualified_events p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM #qualified_events P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-28,P.START_DATE) AND A.START_DATE <= DATEADD(day,0,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from #qualified_events p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM #qualified_events P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-28,P.START_DATE) AND A.START_DATE <= DATEADD(day,0,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from #qualified_events p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM #qualified_events P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-28,P.START_DATE) AND A.START_DATE <= DATEADD(day,0,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, p.person_id, p.event_id +from #qualified_events p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM #qualified_events P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-28,P.START_DATE) AND A.START_DATE <= DATEADD(day,0,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, p.person_id, p.event_id +from #qualified_events p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM #qualified_events P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-14,P.START_DATE) AND A.START_DATE <= DATEADD(day,0,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, p.person_id, p.event_id +from #qualified_events p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM #qualified_events P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-14,P.START_DATE) AND A.START_DATE <= DATEADD(day,0,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 6 as index_id, p.person_id, p.event_id +from #qualified_events p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM #qualified_events P +JOIN ( + -- Begin Drug Era Criteria +select C.person_id, C.drug_era_id as event_id, C.start_date, C.end_date, + CAST(NULL as bigint) as visit_occurrence_id,C.start_date as sort_date +from +( + select de.person_id,de.drug_era_id,de.drug_concept_id,de.drug_exposure_count,de.gap_days,de.drug_era_start_date as start_date, de.drug_era_end_date as end_date + FROM @cdm_database_schema.DRUG_ERA de +where de.drug_concept_id in (SELECT concept_id from #Codesets where codeset_id = 109) +) C + + +-- End Drug Era Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-14,P.START_DATE) AND A.START_DATE <= DATEADD(day,0,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 7 as index_id, p.person_id, p.event_id +from #qualified_events p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM #qualified_events P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-14,P.START_DATE) AND A.START_DATE <= DATEADD(day,0,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 8 as index_id, p.person_id, p.event_id +from #qualified_events p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM #qualified_events P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-14,P.START_DATE) AND A.START_DATE <= DATEADD(day,0,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 9 as index_id, p.person_id, p.event_id +from #qualified_events p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM #qualified_events P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-14,P.START_DATE) AND A.START_DATE <= DATEADD(day,0,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 10 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id AND AC.event_id = pe.event_id +) Results +; + +select 3 as inclusion_rule_id, person_id, event_id +INTO #Inclusion_3 +FROM +( + select pe.person_id, pe.event_id + FROM #qualified_events pe + +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM #qualified_events E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id , A.domain_concept_id +FROM #qualified_events P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date, C.condition_concept_id as domain_concept_id +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 61) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(DISTINCT cc.domain_concept_id) >= 2 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id , A.domain_concept_id +FROM #qualified_events P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date, C.procedure_concept_id as domain_concept_id +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 61) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(DISTINCT cc.domain_concept_id) >= 2 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id , A.domain_concept_id +FROM #qualified_events P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date, C.measurement_concept_id as domain_concept_id +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 61) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(DISTINCT cc.domain_concept_id) >= 2 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id , A.domain_concept_id +FROM #qualified_events P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date, C.observation_concept_id as domain_concept_id +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 61) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(DISTINCT cc.domain_concept_id) >= 2 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 4 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM #qualified_events E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM #qualified_events P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 61) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM #qualified_events P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 61) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM #qualified_events P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 61) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM #qualified_events P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 61) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 2 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) > 0 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id AND AC.event_id = pe.event_id +) Results +; + +select 4 as inclusion_rule_id, person_id, event_id +INTO #Inclusion_4 +FROM +( + select pe.person_id, pe.event_id + FROM #qualified_events pe + +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM #qualified_events E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM #qualified_events P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 107) +) C +JOIN @cdm_database_schema.PERSON P on C.person_id = P.person_id +WHERE (YEAR(C.start_date) - P.year_of_birth >= 12 and YEAR(C.start_date) - P.year_of_birth <= 55) +AND P.gender_concept_id in (8532) +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,42,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM #qualified_events P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 107) +) C +JOIN @cdm_database_schema.PERSON P on C.person_id = P.person_id +WHERE (YEAR(C.start_date) - P.year_of_birth >= 12 and YEAR(C.start_date) - P.year_of_birth <= 55) +AND P.gender_concept_id in (8532) +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,42,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM #qualified_events P +JOIN ( + -- Begin Drug Era Criteria +select C.person_id, C.drug_era_id as event_id, C.start_date, C.end_date, + CAST(NULL as bigint) as visit_occurrence_id,C.start_date as sort_date +from +( + select de.person_id,de.drug_era_id,de.drug_concept_id,de.drug_exposure_count,de.gap_days,de.drug_era_start_date as start_date, de.drug_era_end_date as end_date + FROM @cdm_database_schema.DRUG_ERA de +where de.drug_concept_id in (SELECT concept_id from #Codesets where codeset_id = 109) +) C +JOIN @cdm_database_schema.PERSON P on C.person_id = P.person_id +WHERE (YEAR(C.start_date) - P.year_of_birth >= 12 and YEAR(C.start_date) - P.year_of_birth <= 55) +AND P.gender_concept_id in (8532) +-- End Drug Era Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,42,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) > 0 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id AND AC.event_id = pe.event_id +) Results +; + +select 5 as inclusion_rule_id, person_id, event_id +INTO #Inclusion_5 +FROM +( + select pe.person_id, pe.event_id + FROM #qualified_events pe + +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM #qualified_events E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM #qualified_events P +JOIN ( + select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Observation Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,1,P.START_DATE) AND A.START_DATE <= DATEADD(day,42,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,1,P.START_DATE) AND A.START_DATE <= DATEADD(day,42,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,1,P.START_DATE) AND A.START_DATE <= DATEADD(day,42,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,1,P.START_DATE) AND A.START_DATE <= DATEADD(day,42,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,1,P.START_DATE) AND A.START_DATE <= DATEADD(day,42,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,1,P.START_DATE) AND A.START_DATE <= DATEADD(day,42,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 6 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,1,P.START_DATE) AND A.START_DATE <= DATEADD(day,42,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 7 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Visit Occurrence Criteria +select C.person_id, C.visit_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select vo.person_id,vo.visit_occurrence_id,vo.visit_concept_id,vo.visit_start_date as start_date, vo.visit_end_date as end_date + FROM @cdm_database_schema.VISIT_OCCURRENCE vo +JOIN #Codesets cs on (vo.visit_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Visit Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,1,P.START_DATE) AND A.START_DATE <= DATEADD(day,42,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 8 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,42,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM #qualified_events P +JOIN ( + select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Procedure Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,1,P.START_DATE) AND A.START_DATE <= DATEADD(day,42,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,1,P.START_DATE) AND A.START_DATE <= DATEADD(day,42,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,1,P.START_DATE) AND A.START_DATE <= DATEADD(day,42,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,1,P.START_DATE) AND A.START_DATE <= DATEADD(day,42,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,1,P.START_DATE) AND A.START_DATE <= DATEADD(day,42,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,1,P.START_DATE) AND A.START_DATE <= DATEADD(day,42,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 6 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,1,P.START_DATE) AND A.START_DATE <= DATEADD(day,42,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 7 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Visit Occurrence Criteria +select C.person_id, C.visit_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select vo.person_id,vo.visit_occurrence_id,vo.visit_concept_id,vo.visit_start_date as start_date, vo.visit_end_date as end_date + FROM @cdm_database_schema.VISIT_OCCURRENCE vo +JOIN #Codesets cs on (vo.visit_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Visit Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,1,P.START_DATE) AND A.START_DATE <= DATEADD(day,42,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 8 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,42,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM #qualified_events P +JOIN ( + select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Drug Era Criteria +select C.person_id, C.drug_era_id as event_id, C.start_date, C.end_date, + CAST(NULL as bigint) as visit_occurrence_id,C.start_date as sort_date +from +( + select de.person_id,de.drug_era_id,de.drug_concept_id,de.drug_exposure_count,de.gap_days,de.drug_era_start_date as start_date, de.drug_era_end_date as end_date + FROM @cdm_database_schema.DRUG_ERA de +where de.drug_concept_id in (SELECT concept_id from #Codesets where codeset_id = 109) +) C + + +-- End Drug Era Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Drug Era Criteria +select C.person_id, C.drug_era_id as event_id, C.start_date, C.end_date, + CAST(NULL as bigint) as visit_occurrence_id,C.start_date as sort_date +from +( + select de.person_id,de.drug_era_id,de.drug_concept_id,de.drug_exposure_count,de.gap_days,de.drug_era_start_date as start_date, de.drug_era_end_date as end_date + FROM @cdm_database_schema.DRUG_ERA de +where de.drug_concept_id in (SELECT concept_id from #Codesets where codeset_id = 109) +) C + + +-- End Drug Era Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Drug Era Criteria +select C.person_id, C.drug_era_id as event_id, C.start_date, C.end_date, + CAST(NULL as bigint) as visit_occurrence_id,C.start_date as sort_date +from +( + select de.person_id,de.drug_era_id,de.drug_concept_id,de.drug_exposure_count,de.gap_days,de.drug_era_start_date as start_date, de.drug_era_end_date as end_date + FROM @cdm_database_schema.DRUG_ERA de +where de.drug_concept_id in (SELECT concept_id from #Codesets where codeset_id = 109) +) C + + +-- End Drug Era Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Drug Era Criteria +select C.person_id, C.drug_era_id as event_id, C.start_date, C.end_date, + CAST(NULL as bigint) as visit_occurrence_id,C.start_date as sort_date +from +( + select de.person_id,de.drug_era_id,de.drug_concept_id,de.drug_exposure_count,de.gap_days,de.drug_era_start_date as start_date, de.drug_era_end_date as end_date + FROM @cdm_database_schema.DRUG_ERA de +where de.drug_concept_id in (SELECT concept_id from #Codesets where codeset_id = 109) +) C + + +-- End Drug Era Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,1,P.START_DATE) AND A.START_DATE <= DATEADD(day,42,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Drug Era Criteria +select C.person_id, C.drug_era_id as event_id, C.start_date, C.end_date, + CAST(NULL as bigint) as visit_occurrence_id,C.start_date as sort_date +from +( + select de.person_id,de.drug_era_id,de.drug_concept_id,de.drug_exposure_count,de.gap_days,de.drug_era_start_date as start_date, de.drug_era_end_date as end_date + FROM @cdm_database_schema.DRUG_ERA de +where de.drug_concept_id in (SELECT concept_id from #Codesets where codeset_id = 109) +) C + + +-- End Drug Era Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Drug Era Criteria +select C.person_id, C.drug_era_id as event_id, C.start_date, C.end_date, + CAST(NULL as bigint) as visit_occurrence_id,C.start_date as sort_date +from +( + select de.person_id,de.drug_era_id,de.drug_concept_id,de.drug_exposure_count,de.gap_days,de.drug_era_start_date as start_date, de.drug_era_end_date as end_date + FROM @cdm_database_schema.DRUG_ERA de +where de.drug_concept_id in (SELECT concept_id from #Codesets where codeset_id = 109) +) C + + +-- End Drug Era Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,1,P.START_DATE) AND A.START_DATE <= DATEADD(day,42,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Drug Era Criteria +select C.person_id, C.drug_era_id as event_id, C.start_date, C.end_date, + CAST(NULL as bigint) as visit_occurrence_id,C.start_date as sort_date +from +( + select de.person_id,de.drug_era_id,de.drug_concept_id,de.drug_exposure_count,de.gap_days,de.drug_era_start_date as start_date, de.drug_era_end_date as end_date + FROM @cdm_database_schema.DRUG_ERA de +where de.drug_concept_id in (SELECT concept_id from #Codesets where codeset_id = 109) +) C + + +-- End Drug Era Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Drug Era Criteria +select C.person_id, C.drug_era_id as event_id, C.start_date, C.end_date, + CAST(NULL as bigint) as visit_occurrence_id,C.start_date as sort_date +from +( + select de.person_id,de.drug_era_id,de.drug_concept_id,de.drug_exposure_count,de.gap_days,de.drug_era_start_date as start_date, de.drug_era_end_date as end_date + FROM @cdm_database_schema.DRUG_ERA de +where de.drug_concept_id in (SELECT concept_id from #Codesets where codeset_id = 109) +) C + + +-- End Drug Era Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,1,P.START_DATE) AND A.START_DATE <= DATEADD(day,42,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Drug Era Criteria +select C.person_id, C.drug_era_id as event_id, C.start_date, C.end_date, + CAST(NULL as bigint) as visit_occurrence_id,C.start_date as sort_date +from +( + select de.person_id,de.drug_era_id,de.drug_concept_id,de.drug_exposure_count,de.gap_days,de.drug_era_start_date as start_date, de.drug_era_end_date as end_date + FROM @cdm_database_schema.DRUG_ERA de +where de.drug_concept_id in (SELECT concept_id from #Codesets where codeset_id = 109) +) C + + +-- End Drug Era Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Drug Era Criteria +select C.person_id, C.drug_era_id as event_id, C.start_date, C.end_date, + CAST(NULL as bigint) as visit_occurrence_id,C.start_date as sort_date +from +( + select de.person_id,de.drug_era_id,de.drug_concept_id,de.drug_exposure_count,de.gap_days,de.drug_era_start_date as start_date, de.drug_era_end_date as end_date + FROM @cdm_database_schema.DRUG_ERA de +where de.drug_concept_id in (SELECT concept_id from #Codesets where codeset_id = 109) +) C + + +-- End Drug Era Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,1,P.START_DATE) AND A.START_DATE <= DATEADD(day,42,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Drug Era Criteria +select C.person_id, C.drug_era_id as event_id, C.start_date, C.end_date, + CAST(NULL as bigint) as visit_occurrence_id,C.start_date as sort_date +from +( + select de.person_id,de.drug_era_id,de.drug_concept_id,de.drug_exposure_count,de.gap_days,de.drug_era_start_date as start_date, de.drug_era_end_date as end_date + FROM @cdm_database_schema.DRUG_ERA de +where de.drug_concept_id in (SELECT concept_id from #Codesets where codeset_id = 109) +) C + + +-- End Drug Era Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Drug Era Criteria +select C.person_id, C.drug_era_id as event_id, C.start_date, C.end_date, + CAST(NULL as bigint) as visit_occurrence_id,C.start_date as sort_date +from +( + select de.person_id,de.drug_era_id,de.drug_concept_id,de.drug_exposure_count,de.gap_days,de.drug_era_start_date as start_date, de.drug_era_end_date as end_date + FROM @cdm_database_schema.DRUG_ERA de +where de.drug_concept_id in (SELECT concept_id from #Codesets where codeset_id = 109) +) C + + +-- End Drug Era Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,1,P.START_DATE) AND A.START_DATE <= DATEADD(day,42,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Drug Era Criteria +select C.person_id, C.drug_era_id as event_id, C.start_date, C.end_date, + CAST(NULL as bigint) as visit_occurrence_id,C.start_date as sort_date +from +( + select de.person_id,de.drug_era_id,de.drug_concept_id,de.drug_exposure_count,de.gap_days,de.drug_era_start_date as start_date, de.drug_era_end_date as end_date + FROM @cdm_database_schema.DRUG_ERA de +where de.drug_concept_id in (SELECT concept_id from #Codesets where codeset_id = 109) +) C + + +-- End Drug Era Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Drug Era Criteria +select C.person_id, C.drug_era_id as event_id, C.start_date, C.end_date, + CAST(NULL as bigint) as visit_occurrence_id,C.start_date as sort_date +from +( + select de.person_id,de.drug_era_id,de.drug_concept_id,de.drug_exposure_count,de.gap_days,de.drug_era_start_date as start_date, de.drug_era_end_date as end_date + FROM @cdm_database_schema.DRUG_ERA de +where de.drug_concept_id in (SELECT concept_id from #Codesets where codeset_id = 109) +) C + + +-- End Drug Era Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,1,P.START_DATE) AND A.START_DATE <= DATEADD(day,42,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 6 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Drug Era Criteria +select C.person_id, C.drug_era_id as event_id, C.start_date, C.end_date, + CAST(NULL as bigint) as visit_occurrence_id,C.start_date as sort_date +from +( + select de.person_id,de.drug_era_id,de.drug_concept_id,de.drug_exposure_count,de.gap_days,de.drug_era_start_date as start_date, de.drug_era_end_date as end_date + FROM @cdm_database_schema.DRUG_ERA de +where de.drug_concept_id in (SELECT concept_id from #Codesets where codeset_id = 109) +) C + + +-- End Drug Era Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Drug Era Criteria +select C.person_id, C.drug_era_id as event_id, C.start_date, C.end_date, + CAST(NULL as bigint) as visit_occurrence_id,C.start_date as sort_date +from +( + select de.person_id,de.drug_era_id,de.drug_concept_id,de.drug_exposure_count,de.gap_days,de.drug_era_start_date as start_date, de.drug_era_end_date as end_date + FROM @cdm_database_schema.DRUG_ERA de +where de.drug_concept_id in (SELECT concept_id from #Codesets where codeset_id = 109) +) C + + +-- End Drug Era Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,1,P.START_DATE) AND A.START_DATE <= DATEADD(day,42,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 7 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Drug Era Criteria +select C.person_id, C.drug_era_id as event_id, C.start_date, C.end_date, + CAST(NULL as bigint) as visit_occurrence_id,C.start_date as sort_date +from +( + select de.person_id,de.drug_era_id,de.drug_concept_id,de.drug_exposure_count,de.gap_days,de.drug_era_start_date as start_date, de.drug_era_end_date as end_date + FROM @cdm_database_schema.DRUG_ERA de +where de.drug_concept_id in (SELECT concept_id from #Codesets where codeset_id = 109) +) C + + +-- End Drug Era Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Drug Era Criteria +select C.person_id, C.drug_era_id as event_id, C.start_date, C.end_date, + CAST(NULL as bigint) as visit_occurrence_id,C.start_date as sort_date +from +( + select de.person_id,de.drug_era_id,de.drug_concept_id,de.drug_exposure_count,de.gap_days,de.drug_era_start_date as start_date, de.drug_era_end_date as end_date + FROM @cdm_database_schema.DRUG_ERA de +where de.drug_concept_id in (SELECT concept_id from #Codesets where codeset_id = 109) +) C + + +-- End Drug Era Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Visit Occurrence Criteria +select C.person_id, C.visit_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select vo.person_id,vo.visit_occurrence_id,vo.visit_concept_id,vo.visit_start_date as start_date, vo.visit_end_date as end_date + FROM @cdm_database_schema.VISIT_OCCURRENCE vo +JOIN #Codesets cs on (vo.visit_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Visit Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,1,P.START_DATE) AND A.START_DATE <= DATEADD(day,42,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 8 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,42,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) > 0 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id AND AC.event_id = pe.event_id +) Results +; + +select 6 as inclusion_rule_id, person_id, event_id +INTO #Inclusion_6 +FROM +( + select pe.person_id, pe.event_id + FROM #qualified_events pe + +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM #qualified_events E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM #qualified_events P +JOIN ( + select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Observation Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-70,P.START_DATE) AND A.START_DATE <= DATEADD(day,168,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-70,P.START_DATE) AND A.START_DATE <= DATEADD(day,168,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-70,P.START_DATE) AND A.START_DATE <= DATEADD(day,154,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-70,P.START_DATE) AND A.START_DATE <= DATEADD(day,154,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 4 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,42,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM #qualified_events P +JOIN ( + select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Procedure Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-70,P.START_DATE) AND A.START_DATE <= DATEADD(day,168,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-70,P.START_DATE) AND A.START_DATE <= DATEADD(day,168,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-70,P.START_DATE) AND A.START_DATE <= DATEADD(day,154,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-70,P.START_DATE) AND A.START_DATE <= DATEADD(day,154,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 4 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,42,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM #qualified_events P +JOIN ( + select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Drug Era Criteria +select C.person_id, C.drug_era_id as event_id, C.start_date, C.end_date, + CAST(NULL as bigint) as visit_occurrence_id,C.start_date as sort_date +from +( + select de.person_id,de.drug_era_id,de.drug_concept_id,de.drug_exposure_count,de.gap_days,de.drug_era_start_date as start_date, de.drug_era_end_date as end_date + FROM @cdm_database_schema.DRUG_ERA de +where de.drug_concept_id in (SELECT concept_id from #Codesets where codeset_id = 109) +) C + + +-- End Drug Era Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Drug Era Criteria +select C.person_id, C.drug_era_id as event_id, C.start_date, C.end_date, + CAST(NULL as bigint) as visit_occurrence_id,C.start_date as sort_date +from +( + select de.person_id,de.drug_era_id,de.drug_concept_id,de.drug_exposure_count,de.gap_days,de.drug_era_start_date as start_date, de.drug_era_end_date as end_date + FROM @cdm_database_schema.DRUG_ERA de +where de.drug_concept_id in (SELECT concept_id from #Codesets where codeset_id = 109) +) C + + +-- End Drug Era Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Drug Era Criteria +select C.person_id, C.drug_era_id as event_id, C.start_date, C.end_date, + CAST(NULL as bigint) as visit_occurrence_id,C.start_date as sort_date +from +( + select de.person_id,de.drug_era_id,de.drug_concept_id,de.drug_exposure_count,de.gap_days,de.drug_era_start_date as start_date, de.drug_era_end_date as end_date + FROM @cdm_database_schema.DRUG_ERA de +where de.drug_concept_id in (SELECT concept_id from #Codesets where codeset_id = 109) +) C + + +-- End Drug Era Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Drug Era Criteria +select C.person_id, C.drug_era_id as event_id, C.start_date, C.end_date, + CAST(NULL as bigint) as visit_occurrence_id,C.start_date as sort_date +from +( + select de.person_id,de.drug_era_id,de.drug_concept_id,de.drug_exposure_count,de.gap_days,de.drug_era_start_date as start_date, de.drug_era_end_date as end_date + FROM @cdm_database_schema.DRUG_ERA de +where de.drug_concept_id in (SELECT concept_id from #Codesets where codeset_id = 109) +) C + + +-- End Drug Era Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-70,P.START_DATE) AND A.START_DATE <= DATEADD(day,168,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Drug Era Criteria +select C.person_id, C.drug_era_id as event_id, C.start_date, C.end_date, + CAST(NULL as bigint) as visit_occurrence_id,C.start_date as sort_date +from +( + select de.person_id,de.drug_era_id,de.drug_concept_id,de.drug_exposure_count,de.gap_days,de.drug_era_start_date as start_date, de.drug_era_end_date as end_date + FROM @cdm_database_schema.DRUG_ERA de +where de.drug_concept_id in (SELECT concept_id from #Codesets where codeset_id = 109) +) C + + +-- End Drug Era Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Drug Era Criteria +select C.person_id, C.drug_era_id as event_id, C.start_date, C.end_date, + CAST(NULL as bigint) as visit_occurrence_id,C.start_date as sort_date +from +( + select de.person_id,de.drug_era_id,de.drug_concept_id,de.drug_exposure_count,de.gap_days,de.drug_era_start_date as start_date, de.drug_era_end_date as end_date + FROM @cdm_database_schema.DRUG_ERA de +where de.drug_concept_id in (SELECT concept_id from #Codesets where codeset_id = 109) +) C + + +-- End Drug Era Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-70,P.START_DATE) AND A.START_DATE <= DATEADD(day,168,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Drug Era Criteria +select C.person_id, C.drug_era_id as event_id, C.start_date, C.end_date, + CAST(NULL as bigint) as visit_occurrence_id,C.start_date as sort_date +from +( + select de.person_id,de.drug_era_id,de.drug_concept_id,de.drug_exposure_count,de.gap_days,de.drug_era_start_date as start_date, de.drug_era_end_date as end_date + FROM @cdm_database_schema.DRUG_ERA de +where de.drug_concept_id in (SELECT concept_id from #Codesets where codeset_id = 109) +) C + + +-- End Drug Era Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Drug Era Criteria +select C.person_id, C.drug_era_id as event_id, C.start_date, C.end_date, + CAST(NULL as bigint) as visit_occurrence_id,C.start_date as sort_date +from +( + select de.person_id,de.drug_era_id,de.drug_concept_id,de.drug_exposure_count,de.gap_days,de.drug_era_start_date as start_date, de.drug_era_end_date as end_date + FROM @cdm_database_schema.DRUG_ERA de +where de.drug_concept_id in (SELECT concept_id from #Codesets where codeset_id = 109) +) C + + +-- End Drug Era Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-70,P.START_DATE) AND A.START_DATE <= DATEADD(day,154,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Drug Era Criteria +select C.person_id, C.drug_era_id as event_id, C.start_date, C.end_date, + CAST(NULL as bigint) as visit_occurrence_id,C.start_date as sort_date +from +( + select de.person_id,de.drug_era_id,de.drug_concept_id,de.drug_exposure_count,de.gap_days,de.drug_era_start_date as start_date, de.drug_era_end_date as end_date + FROM @cdm_database_schema.DRUG_ERA de +where de.drug_concept_id in (SELECT concept_id from #Codesets where codeset_id = 109) +) C + + +-- End Drug Era Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Drug Era Criteria +select C.person_id, C.drug_era_id as event_id, C.start_date, C.end_date, + CAST(NULL as bigint) as visit_occurrence_id,C.start_date as sort_date +from +( + select de.person_id,de.drug_era_id,de.drug_concept_id,de.drug_exposure_count,de.gap_days,de.drug_era_start_date as start_date, de.drug_era_end_date as end_date + FROM @cdm_database_schema.DRUG_ERA de +where de.drug_concept_id in (SELECT concept_id from #Codesets where codeset_id = 109) +) C + + +-- End Drug Era Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-70,P.START_DATE) AND A.START_DATE <= DATEADD(day,154,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 4 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,42,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) > 0 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id AND AC.event_id = pe.event_id +) Results +; + +select 7 as inclusion_rule_id, person_id, event_id +INTO #Inclusion_7 +FROM +( + select pe.person_id, pe.event_id + FROM #qualified_events pe + +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM #qualified_events E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM #qualified_events P +JOIN ( + select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Observation Period Criteria +select C.person_id, C.observation_period_id as event_id, C.start_date as start_date, C.end_date as end_date, + CAST(NULL as bigint) as visit_occurrence_id, C.start_date as sort_date + +from +( + select op.person_id,op.observation_period_id,op.period_type_concept_id,op.observation_period_start_date as start_date, op.observation_period_end_date as end_date , row_number() over (PARTITION BY op.person_id ORDER BY op.observation_period_start_date) as ordinal + FROM @cdm_database_schema.OBSERVATION_PERIOD op +) C + + +-- End Observation Period Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Period Criteria +select C.person_id, C.observation_period_id as event_id, C.start_date as start_date, C.end_date as end_date, + CAST(NULL as bigint) as visit_occurrence_id, C.start_date as sort_date + +from +( + select op.person_id,op.observation_period_id,op.period_type_concept_id,op.observation_period_start_date as start_date, op.observation_period_end_date as end_date , row_number() over (PARTITION BY op.person_id ORDER BY op.observation_period_start_date) as ordinal + FROM @cdm_database_schema.OBSERVATION_PERIOD op +) C + + +-- End Observation Period Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Period Criteria +select C.person_id, C.observation_period_id as event_id, C.start_date as start_date, C.end_date as end_date, + CAST(NULL as bigint) as visit_occurrence_id, C.start_date as sort_date + +from +( + select op.person_id,op.observation_period_id,op.period_type_concept_id,op.observation_period_start_date as start_date, op.observation_period_end_date as end_date , row_number() over (PARTITION BY op.person_id ORDER BY op.observation_period_start_date) as ordinal + FROM @cdm_database_schema.OBSERVATION_PERIOD op +) C + + +-- End Observation Period Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= P.OP_END_DATE AND A.END_DATE >= P.OP_START_DATE AND A.END_DATE <= DATEADD(day,0,P.END_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Period Criteria +select C.person_id, C.observation_period_id as event_id, C.start_date as start_date, C.end_date as end_date, + CAST(NULL as bigint) as visit_occurrence_id, C.start_date as sort_date + +from +( + select op.person_id,op.observation_period_id,op.period_type_concept_id,op.observation_period_start_date as start_date, op.observation_period_end_date as end_date , row_number() over (PARTITION BY op.person_id ORDER BY op.observation_period_start_date) as ordinal + FROM @cdm_database_schema.OBSERVATION_PERIOD op +) C + + +-- End Observation Period Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= P.OP_END_DATE AND A.END_DATE >= P.OP_START_DATE AND A.END_DATE <= DATEADD(day,0,P.END_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Period Criteria +select C.person_id, C.observation_period_id as event_id, C.start_date as start_date, C.end_date as end_date, + CAST(NULL as bigint) as visit_occurrence_id, C.start_date as sort_date + +from +( + select op.person_id,op.observation_period_id,op.period_type_concept_id,op.observation_period_start_date as start_date, op.observation_period_end_date as end_date , row_number() over (PARTITION BY op.person_id ORDER BY op.observation_period_start_date) as ordinal + FROM @cdm_database_schema.OBSERVATION_PERIOD op +) C + + +-- End Observation Period Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Drug Era Criteria +select C.person_id, C.drug_era_id as event_id, C.start_date, C.end_date, + CAST(NULL as bigint) as visit_occurrence_id,C.start_date as sort_date +from +( + select de.person_id,de.drug_era_id,de.drug_concept_id,de.drug_exposure_count,de.gap_days,de.drug_era_start_date as start_date, de.drug_era_end_date as end_date + FROM @cdm_database_schema.DRUG_ERA de +where de.drug_concept_id in (SELECT concept_id from #Codesets where codeset_id = 109) +) C + + +-- End Drug Era Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= P.OP_END_DATE AND A.END_DATE >= P.OP_START_DATE AND A.END_DATE <= DATEADD(day,0,P.END_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= DATEADD(day,0,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 1 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id AND AC.event_id = pe.event_id +) Results +; + +select 8 as inclusion_rule_id, person_id, event_id +INTO #Inclusion_8 +FROM +( + select pe.person_id, pe.event_id + FROM #qualified_events pe + +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM #qualified_events E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM #qualified_events P +JOIN ( + select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 104) +) C + + +-- End Condition Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 104) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 104) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,14,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 104) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,14,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 104) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Drug Era Criteria +select C.person_id, C.drug_era_id as event_id, C.start_date, C.end_date, + CAST(NULL as bigint) as visit_occurrence_id,C.start_date as sort_date +from +( + select de.person_id,de.drug_era_id,de.drug_concept_id,de.drug_exposure_count,de.gap_days,de.drug_era_start_date as start_date, de.drug_era_end_date as end_date + FROM @cdm_database_schema.DRUG_ERA de +where de.drug_concept_id in (SELECT concept_id from #Codesets where codeset_id = 109) +) C + + +-- End Drug Era Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,14,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM #qualified_events P +JOIN ( + select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 104) +) C + + +-- End Observation Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 104) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 104) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,14,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 104) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,14,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 104) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Drug Era Criteria +select C.person_id, C.drug_era_id as event_id, C.start_date, C.end_date, + CAST(NULL as bigint) as visit_occurrence_id,C.start_date as sort_date +from +( + select de.person_id,de.drug_era_id,de.drug_concept_id,de.drug_exposure_count,de.gap_days,de.drug_era_start_date as start_date, de.drug_era_end_date as end_date + FROM @cdm_database_schema.DRUG_ERA de +where de.drug_concept_id in (SELECT concept_id from #Codesets where codeset_id = 109) +) C + + +-- End Drug Era Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,14,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,84,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id AND AC.event_id = pe.event_id +) Results +; + +SELECT inclusion_rule_id, person_id, event_id +INTO #inclusion_events +FROM (select inclusion_rule_id, person_id, event_id from #Inclusion_0 +UNION ALL +select inclusion_rule_id, person_id, event_id from #Inclusion_1 +UNION ALL +select inclusion_rule_id, person_id, event_id from #Inclusion_2 +UNION ALL +select inclusion_rule_id, person_id, event_id from #Inclusion_3 +UNION ALL +select inclusion_rule_id, person_id, event_id from #Inclusion_4 +UNION ALL +select inclusion_rule_id, person_id, event_id from #Inclusion_5 +UNION ALL +select inclusion_rule_id, person_id, event_id from #Inclusion_6 +UNION ALL +select inclusion_rule_id, person_id, event_id from #Inclusion_7 +UNION ALL +select inclusion_rule_id, person_id, event_id from #Inclusion_8) I; +TRUNCATE TABLE #Inclusion_0; +DROP TABLE #Inclusion_0; + +TRUNCATE TABLE #Inclusion_1; +DROP TABLE #Inclusion_1; + +TRUNCATE TABLE #Inclusion_2; +DROP TABLE #Inclusion_2; + +TRUNCATE TABLE #Inclusion_3; +DROP TABLE #Inclusion_3; + +TRUNCATE TABLE #Inclusion_4; +DROP TABLE #Inclusion_4; + +TRUNCATE TABLE #Inclusion_5; +DROP TABLE #Inclusion_5; + +TRUNCATE TABLE #Inclusion_6; +DROP TABLE #Inclusion_6; + +TRUNCATE TABLE #Inclusion_7; +DROP TABLE #Inclusion_7; + +TRUNCATE TABLE #Inclusion_8; +DROP TABLE #Inclusion_8; + + +select event_id, person_id, start_date, end_date, op_start_date, op_end_date +into #included_events +FROM ( + SELECT event_id, person_id, start_date, end_date, op_start_date, op_end_date, row_number() over (partition by person_id order by start_date ASC) as ordinal + from + ( + select Q.event_id, Q.person_id, Q.start_date, Q.end_date, Q.op_start_date, Q.op_end_date, SUM(coalesce(POWER(cast(2 as bigint), I.inclusion_rule_id), 0)) as inclusion_rule_mask + from #qualified_events Q + LEFT JOIN #inclusion_events I on I.person_id = Q.person_id and I.event_id = Q.event_id + GROUP BY Q.event_id, Q.person_id, Q.start_date, Q.end_date, Q.op_start_date, Q.op_end_date + ) MG -- matching groups +{9 != 0}?{ + -- the matching group with all bits set ( POWER(2,# of inclusion rules) - 1 = inclusion_rule_mask + WHERE (MG.inclusion_rule_mask = POWER(cast(2 as bigint),9)-1) +} +) Results + +; + +-- date offset strategy + +select event_id, person_id, + case when DATEADD(day,84,start_date) > op_end_date then op_end_date else DATEADD(day,84,start_date) end as end_date +INTO #strategy_ends +from #included_events; + + +-- generate cohort periods into #final_cohort +select person_id, start_date, end_date +INTO #cohort_rows +from ( -- first_ends + select F.person_id, F.start_date, F.end_date + FROM ( + select I.event_id, I.person_id, I.start_date, CE.end_date, row_number() over (partition by I.person_id, I.event_id order by CE.end_date) as ordinal + from #included_events I + join ( -- cohort_ends +-- cohort exit dates +-- End Date Strategy +SELECT event_id, person_id, end_date from #strategy_ends + +UNION ALL +-- Censor Events +select i.event_id, i.person_id, MIN(c.start_date) as end_date +FROM #included_events i +JOIN +( +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Observation Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,30,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-70,P.START_DATE) AND A.START_DATE <= DATEADD(day,154,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-70,P.START_DATE) AND A.START_DATE <= DATEADD(day,154,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-70,P.START_DATE) AND A.START_DATE <= DATEADD(day,168,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-70,P.START_DATE) AND A.START_DATE <= DATEADD(day,168,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 5 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +) C on C.person_id = I.person_id and C.start_date >= I.start_date and C.START_DATE <= I.op_end_date +GROUP BY i.event_id, i.person_id + +UNION ALL +select i.event_id, i.person_id, MIN(c.start_date) as end_date +FROM #included_events i +JOIN +( +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Drug Era Criteria +select C.person_id, C.drug_era_id as event_id, C.start_date, C.end_date, + CAST(NULL as bigint) as visit_occurrence_id,C.start_date as sort_date +from +( + select de.person_id,de.drug_era_id,de.drug_concept_id,de.drug_exposure_count,de.gap_days,de.drug_era_start_date as start_date, de.drug_era_end_date as end_date + FROM @cdm_database_schema.DRUG_ERA de +where de.drug_concept_id in (SELECT concept_id from #Codesets where codeset_id = 109) +) C + + +-- End Drug Era Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Drug Era Criteria +select C.person_id, C.drug_era_id as event_id, C.start_date, C.end_date, + CAST(NULL as bigint) as visit_occurrence_id,C.start_date as sort_date +from +( + select de.person_id,de.drug_era_id,de.drug_concept_id,de.drug_exposure_count,de.gap_days,de.drug_era_start_date as start_date, de.drug_era_end_date as end_date + FROM @cdm_database_schema.DRUG_ERA de +where de.drug_concept_id in (SELECT concept_id from #Codesets where codeset_id = 109) +) C + + +-- End Drug Era Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Drug Era Criteria +select C.person_id, C.drug_era_id as event_id, C.start_date, C.end_date, + CAST(NULL as bigint) as visit_occurrence_id,C.start_date as sort_date +from +( + select de.person_id,de.drug_era_id,de.drug_concept_id,de.drug_exposure_count,de.gap_days,de.drug_era_start_date as start_date, de.drug_era_end_date as end_date + FROM @cdm_database_schema.DRUG_ERA de +where de.drug_concept_id in (SELECT concept_id from #Codesets where codeset_id = 109) +) C + + +-- End Drug Era Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Drug Era Criteria +select C.person_id, C.drug_era_id as event_id, C.start_date, C.end_date, + CAST(NULL as bigint) as visit_occurrence_id,C.start_date as sort_date +from +( + select de.person_id,de.drug_era_id,de.drug_concept_id,de.drug_exposure_count,de.gap_days,de.drug_era_start_date as start_date, de.drug_era_end_date as end_date + FROM @cdm_database_schema.DRUG_ERA de +where de.drug_concept_id in (SELECT concept_id from #Codesets where codeset_id = 109) +) C + + +-- End Drug Era Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,30,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Drug Era Criteria +select C.person_id, C.drug_era_id as event_id, C.start_date, C.end_date, + CAST(NULL as bigint) as visit_occurrence_id,C.start_date as sort_date +from +( + select de.person_id,de.drug_era_id,de.drug_concept_id,de.drug_exposure_count,de.gap_days,de.drug_era_start_date as start_date, de.drug_era_end_date as end_date + FROM @cdm_database_schema.DRUG_ERA de +where de.drug_concept_id in (SELECT concept_id from #Codesets where codeset_id = 109) +) C + + +-- End Drug Era Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Drug Era Criteria +select C.person_id, C.drug_era_id as event_id, C.start_date, C.end_date, + CAST(NULL as bigint) as visit_occurrence_id,C.start_date as sort_date +from +( + select de.person_id,de.drug_era_id,de.drug_concept_id,de.drug_exposure_count,de.gap_days,de.drug_era_start_date as start_date, de.drug_era_end_date as end_date + FROM @cdm_database_schema.DRUG_ERA de +where de.drug_concept_id in (SELECT concept_id from #Codesets where codeset_id = 109) +) C + + +-- End Drug Era Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,30,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Drug Era Criteria +select C.person_id, C.drug_era_id as event_id, C.start_date, C.end_date, + CAST(NULL as bigint) as visit_occurrence_id,C.start_date as sort_date +from +( + select de.person_id,de.drug_era_id,de.drug_concept_id,de.drug_exposure_count,de.gap_days,de.drug_era_start_date as start_date, de.drug_era_end_date as end_date + FROM @cdm_database_schema.DRUG_ERA de +where de.drug_concept_id in (SELECT concept_id from #Codesets where codeset_id = 109) +) C + + +-- End Drug Era Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Drug Era Criteria +select C.person_id, C.drug_era_id as event_id, C.start_date, C.end_date, + CAST(NULL as bigint) as visit_occurrence_id,C.start_date as sort_date +from +( + select de.person_id,de.drug_era_id,de.drug_concept_id,de.drug_exposure_count,de.gap_days,de.drug_era_start_date as start_date, de.drug_era_end_date as end_date + FROM @cdm_database_schema.DRUG_ERA de +where de.drug_concept_id in (SELECT concept_id from #Codesets where codeset_id = 109) +) C + + +-- End Drug Era Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-70,P.START_DATE) AND A.START_DATE <= DATEADD(day,168,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Drug Era Criteria +select C.person_id, C.drug_era_id as event_id, C.start_date, C.end_date, + CAST(NULL as bigint) as visit_occurrence_id,C.start_date as sort_date +from +( + select de.person_id,de.drug_era_id,de.drug_concept_id,de.drug_exposure_count,de.gap_days,de.drug_era_start_date as start_date, de.drug_era_end_date as end_date + FROM @cdm_database_schema.DRUG_ERA de +where de.drug_concept_id in (SELECT concept_id from #Codesets where codeset_id = 109) +) C + + +-- End Drug Era Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Drug Era Criteria +select C.person_id, C.drug_era_id as event_id, C.start_date, C.end_date, + CAST(NULL as bigint) as visit_occurrence_id,C.start_date as sort_date +from +( + select de.person_id,de.drug_era_id,de.drug_concept_id,de.drug_exposure_count,de.gap_days,de.drug_era_start_date as start_date, de.drug_era_end_date as end_date + FROM @cdm_database_schema.DRUG_ERA de +where de.drug_concept_id in (SELECT concept_id from #Codesets where codeset_id = 109) +) C + + +-- End Drug Era Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-70,P.START_DATE) AND A.START_DATE <= DATEADD(day,168,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Drug Era Criteria +select C.person_id, C.drug_era_id as event_id, C.start_date, C.end_date, + CAST(NULL as bigint) as visit_occurrence_id,C.start_date as sort_date +from +( + select de.person_id,de.drug_era_id,de.drug_concept_id,de.drug_exposure_count,de.gap_days,de.drug_era_start_date as start_date, de.drug_era_end_date as end_date + FROM @cdm_database_schema.DRUG_ERA de +where de.drug_concept_id in (SELECT concept_id from #Codesets where codeset_id = 109) +) C + + +-- End Drug Era Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Drug Era Criteria +select C.person_id, C.drug_era_id as event_id, C.start_date, C.end_date, + CAST(NULL as bigint) as visit_occurrence_id,C.start_date as sort_date +from +( + select de.person_id,de.drug_era_id,de.drug_concept_id,de.drug_exposure_count,de.gap_days,de.drug_era_start_date as start_date, de.drug_era_end_date as end_date + FROM @cdm_database_schema.DRUG_ERA de +where de.drug_concept_id in (SELECT concept_id from #Codesets where codeset_id = 109) +) C + + +-- End Drug Era Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-70,P.START_DATE) AND A.START_DATE <= DATEADD(day,154,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Drug Era Criteria +select C.person_id, C.drug_era_id as event_id, C.start_date, C.end_date, + CAST(NULL as bigint) as visit_occurrence_id,C.start_date as sort_date +from +( + select de.person_id,de.drug_era_id,de.drug_concept_id,de.drug_exposure_count,de.gap_days,de.drug_era_start_date as start_date, de.drug_era_end_date as end_date + FROM @cdm_database_schema.DRUG_ERA de +where de.drug_concept_id in (SELECT concept_id from #Codesets where codeset_id = 109) +) C + + +-- End Drug Era Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Drug Era Criteria +select C.person_id, C.drug_era_id as event_id, C.start_date, C.end_date, + CAST(NULL as bigint) as visit_occurrence_id,C.start_date as sort_date +from +( + select de.person_id,de.drug_era_id,de.drug_concept_id,de.drug_exposure_count,de.gap_days,de.drug_era_start_date as start_date, de.drug_era_end_date as end_date + FROM @cdm_database_schema.DRUG_ERA de +where de.drug_concept_id in (SELECT concept_id from #Codesets where codeset_id = 109) +) C + + +-- End Drug Era Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-70,P.START_DATE) AND A.START_DATE <= DATEADD(day,154,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 6 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +) C on C.person_id = I.person_id and C.start_date >= I.start_date and C.START_DATE <= I.op_end_date +GROUP BY i.event_id, i.person_id + +UNION ALL +select i.event_id, i.person_id, MIN(c.start_date) as end_date +FROM #included_events i +JOIN +( +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Procedure Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-70,P.START_DATE) AND A.START_DATE <= DATEADD(day,154,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-70,P.START_DATE) AND A.START_DATE <= DATEADD(day,154,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-70,P.START_DATE) AND A.START_DATE <= DATEADD(day,168,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-70,P.START_DATE) AND A.START_DATE <= DATEADD(day,168,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 4 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +) C on C.person_id = I.person_id and C.start_date >= I.start_date and C.START_DATE <= I.op_end_date +GROUP BY i.event_id, i.person_id + + + ) CE on I.event_id = CE.event_id and I.person_id = CE.person_id and CE.end_date >= I.start_date + ) F + WHERE F.ordinal = 1 +) FE; + + +select person_id, min(start_date) as start_date, DATEADD(day,-1 * 0, max(end_date)) as end_date +into #final_cohort +from ( + select person_id, start_date, end_date, sum(is_start) over (partition by person_id order by start_date, is_start desc rows unbounded preceding) group_idx + from ( + select person_id, start_date, end_date, + case when max(end_date) over (partition by person_id order by start_date rows between unbounded preceding and 1 preceding) >= start_date then 0 else 1 end is_start + from ( + select person_id, start_date, DATEADD(day,0,end_date) as end_date + from #cohort_rows + ) CR + ) ST +) GR +group by person_id, group_idx; + +DELETE FROM @target_database_schema.@target_cohort_table where cohort_definition_id = @target_cohort_id; +INSERT INTO @target_database_schema.@target_cohort_table (cohort_definition_id, subject_id, cohort_start_date, cohort_end_date) +select @target_cohort_id as cohort_definition_id, person_id, start_date, end_date +FROM #final_cohort CO +; + +{1 != 0}?{ +-- BEGIN: Censored Stats + +delete from @results_database_schema.cohort_censor_stats where cohort_definition_id = @target_cohort_id; + +-- END: Censored Stats +} +{1 != 0 & 9 != 0}?{ + +-- Create a temp table of inclusion rule rows for joining in the inclusion rule impact analysis + +select cast(rule_sequence as int) as rule_sequence +into #inclusion_rules +from ( + SELECT CAST(0 as int) as rule_sequence UNION ALL SELECT CAST(1 as int) as rule_sequence UNION ALL SELECT CAST(2 as int) as rule_sequence UNION ALL SELECT CAST(3 as int) as rule_sequence UNION ALL SELECT CAST(4 as int) as rule_sequence UNION ALL SELECT CAST(5 as int) as rule_sequence UNION ALL SELECT CAST(6 as int) as rule_sequence UNION ALL SELECT CAST(7 as int) as rule_sequence UNION ALL SELECT CAST(8 as int) as rule_sequence +) IR; + + +-- Find the event that is the 'best match' per person. +-- the 'best match' is defined as the event that satisfies the most inclusion rules. +-- ties are solved by choosing the event that matches the earliest inclusion rule, and then earliest. + +select q.person_id, q.event_id +into #best_events +from #qualified_events Q +join ( + SELECT R.person_id, R.event_id, ROW_NUMBER() OVER (PARTITION BY R.person_id ORDER BY R.rule_count DESC,R.min_rule_id ASC, R.start_date ASC) AS rank_value + FROM ( + SELECT Q.person_id, Q.event_id, COALESCE(COUNT(DISTINCT I.inclusion_rule_id), 0) AS rule_count, COALESCE(MIN(I.inclusion_rule_id), 0) AS min_rule_id, Q.start_date + FROM #qualified_events Q + LEFT JOIN #inclusion_events I ON q.person_id = i.person_id AND q.event_id = i.event_id + GROUP BY Q.person_id, Q.event_id, Q.start_date + ) R +) ranked on Q.person_id = ranked.person_id and Q.event_id = ranked.event_id +WHERE ranked.rank_value = 1 +; + +-- modes of generation: (the same tables store the results for the different modes, identified by the mode_id column) +-- 0: all events +-- 1: best event + + +-- BEGIN: Inclusion Impact Analysis - event +-- calculte matching group counts +delete from @results_database_schema.cohort_inclusion_result where cohort_definition_id = @target_cohort_id and mode_id = 0; +insert into @results_database_schema.cohort_inclusion_result (cohort_definition_id, inclusion_rule_mask, person_count, mode_id) +select @target_cohort_id as cohort_definition_id, inclusion_rule_mask, count_big(*) as person_count, 0 as mode_id +from +( + select Q.person_id, Q.event_id, CAST(SUM(coalesce(POWER(cast(2 as bigint), I.inclusion_rule_id), 0)) AS bigint) as inclusion_rule_mask + from #qualified_events Q + LEFT JOIN #inclusion_events I on q.person_id = i.person_id and q.event_id = i.event_id + GROUP BY Q.person_id, Q.event_id +) MG -- matching groups +group by inclusion_rule_mask +; + +-- calculate gain counts +delete from @results_database_schema.cohort_inclusion_stats where cohort_definition_id = @target_cohort_id and mode_id = 0; +insert into @results_database_schema.cohort_inclusion_stats (cohort_definition_id, rule_sequence, person_count, gain_count, person_total, mode_id) +select @target_cohort_id as cohort_definition_id, ir.rule_sequence, coalesce(T.person_count, 0) as person_count, coalesce(SR.person_count, 0) gain_count, EventTotal.total, 0 as mode_id +from #inclusion_rules ir +left join +( + select i.inclusion_rule_id, count_big(i.event_id) as person_count + from #qualified_events Q + JOIN #inclusion_events i on Q.person_id = I.person_id and Q.event_id = i.event_id + group by i.inclusion_rule_id +) T on ir.rule_sequence = T.inclusion_rule_id +CROSS JOIN (select count(*) as total_rules from #inclusion_rules) RuleTotal +CROSS JOIN (select count_big(event_id) as total from #qualified_events) EventTotal +LEFT JOIN @results_database_schema.cohort_inclusion_result SR on SR.mode_id = 0 AND SR.cohort_definition_id = @target_cohort_id AND (POWER(cast(2 as bigint),RuleTotal.total_rules) - POWER(cast(2 as bigint),ir.rule_sequence) - 1) = SR.inclusion_rule_mask -- POWER(2,rule count) - POWER(2,rule sequence) - 1 is the mask for 'all except this rule' +; + +-- calculate totals +delete from @results_database_schema.cohort_summary_stats where cohort_definition_id = @target_cohort_id and mode_id = 0; +insert into @results_database_schema.cohort_summary_stats (cohort_definition_id, base_count, final_count, mode_id) +select @target_cohort_id as cohort_definition_id, PC.total as person_count, coalesce(FC.total, 0) as final_count, 0 as mode_id +FROM +(select count_big(event_id) as total from #qualified_events) PC, +(select sum(sr.person_count) as total + from @results_database_schema.cohort_inclusion_result sr + CROSS JOIN (select count(*) as total_rules from #inclusion_rules) RuleTotal + where sr.mode_id = 0 and sr.cohort_definition_id = @target_cohort_id and sr.inclusion_rule_mask = POWER(cast(2 as bigint),RuleTotal.total_rules)-1 +) FC +; + +-- END: Inclusion Impact Analysis - event + +-- BEGIN: Inclusion Impact Analysis - person +-- calculte matching group counts +delete from @results_database_schema.cohort_inclusion_result where cohort_definition_id = @target_cohort_id and mode_id = 1; +insert into @results_database_schema.cohort_inclusion_result (cohort_definition_id, inclusion_rule_mask, person_count, mode_id) +select @target_cohort_id as cohort_definition_id, inclusion_rule_mask, count_big(*) as person_count, 1 as mode_id +from +( + select Q.person_id, Q.event_id, CAST(SUM(coalesce(POWER(cast(2 as bigint), I.inclusion_rule_id), 0)) AS bigint) as inclusion_rule_mask + from #best_events Q + LEFT JOIN #inclusion_events I on q.person_id = i.person_id and q.event_id = i.event_id + GROUP BY Q.person_id, Q.event_id +) MG -- matching groups +group by inclusion_rule_mask +; + +-- calculate gain counts +delete from @results_database_schema.cohort_inclusion_stats where cohort_definition_id = @target_cohort_id and mode_id = 1; +insert into @results_database_schema.cohort_inclusion_stats (cohort_definition_id, rule_sequence, person_count, gain_count, person_total, mode_id) +select @target_cohort_id as cohort_definition_id, ir.rule_sequence, coalesce(T.person_count, 0) as person_count, coalesce(SR.person_count, 0) gain_count, EventTotal.total, 1 as mode_id +from #inclusion_rules ir +left join +( + select i.inclusion_rule_id, count_big(i.event_id) as person_count + from #best_events Q + JOIN #inclusion_events i on Q.person_id = I.person_id and Q.event_id = i.event_id + group by i.inclusion_rule_id +) T on ir.rule_sequence = T.inclusion_rule_id +CROSS JOIN (select count(*) as total_rules from #inclusion_rules) RuleTotal +CROSS JOIN (select count_big(event_id) as total from #best_events) EventTotal +LEFT JOIN @results_database_schema.cohort_inclusion_result SR on SR.mode_id = 1 AND SR.cohort_definition_id = @target_cohort_id AND (POWER(cast(2 as bigint),RuleTotal.total_rules) - POWER(cast(2 as bigint),ir.rule_sequence) - 1) = SR.inclusion_rule_mask -- POWER(2,rule count) - POWER(2,rule sequence) - 1 is the mask for 'all except this rule' +; + +-- calculate totals +delete from @results_database_schema.cohort_summary_stats where cohort_definition_id = @target_cohort_id and mode_id = 1; +insert into @results_database_schema.cohort_summary_stats (cohort_definition_id, base_count, final_count, mode_id) +select @target_cohort_id as cohort_definition_id, PC.total as person_count, coalesce(FC.total, 0) as final_count, 1 as mode_id +FROM +(select count_big(event_id) as total from #best_events) PC, +(select sum(sr.person_count) as total + from @results_database_schema.cohort_inclusion_result sr + CROSS JOIN (select count(*) as total_rules from #inclusion_rules) RuleTotal + where sr.mode_id = 1 and sr.cohort_definition_id = @target_cohort_id and sr.inclusion_rule_mask = POWER(cast(2 as bigint),RuleTotal.total_rules)-1 +) FC +; + +-- END: Inclusion Impact Analysis - person + +TRUNCATE TABLE #best_events; +DROP TABLE #best_events; + +TRUNCATE TABLE #inclusion_rules; +DROP TABLE #inclusion_rules; +} + +TRUNCATE TABLE #strategy_ends; +DROP TABLE #strategy_ends; + + +TRUNCATE TABLE #cohort_rows; +DROP TABLE #cohort_rows; + +TRUNCATE TABLE #final_cohort; +DROP TABLE #final_cohort; + +TRUNCATE TABLE #inclusion_events; +DROP TABLE #inclusion_events; + +TRUNCATE TABLE #qualified_events; +DROP TABLE #qualified_events; + +TRUNCATE TABLE #included_events; +DROP TABLE #included_events; + +TRUNCATE TABLE #Codesets; +DROP TABLE #Codesets; diff --git a/inst/sql/sql_server/1432.sql b/inst/sql/sql_server/1432.sql new file mode 100644 index 00000000..da5c93fd --- /dev/null +++ b/inst/sql/sql_server/1432.sql @@ -0,0 +1,41468 @@ +CREATE TABLE #Codesets ( + codeset_id int NOT NULL, + concept_id bigint NOT NULL +) +; + +INSERT INTO #Codesets (codeset_id, concept_id) +SELECT 0 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4130321,439402,4155282,437936,4248954,432968,442923,442922,2101814,441649,443133,4075168,76761,73526,4078138,4075169,4147974,314103,320456,4014291,4016064,4015277,4015270,4192676,77624,81086,3662128,436767,4075165,73537,4235752,3662129,4071629,441369,435607,437942,2110316,2110323,4165077,4015701,2004789,42872492,42872493,4152029,4014738,4223536,37208486,4034145,194707,315013,435879,4129041,433270,439092,75882,441361,4075190,440793,193277,4106406,4061457,4066112,4232028,4234710,4223638,4278225,4100410,4189205,4096145,4038495,441641,40551541,4056129,42872805,4130319,4293034,443012,4062685,4309425,198486,4134722,442915,133816,443321,440794,4075182,4075161,42536960,4075160,42536952,4167089,4127252,42537021,46270991,4032767,42536954,4272812,4311671,44513763,4211824,45757775,441924,443521,193535,72697,4063296,4064177,4064171,4064174,192978,199088,4217642,4075187,4114637,435022,4032761,4324549,2004702,194429,4244672,74440,77052,4091200,81357,80778,4009879,4014452,434110,4032764,435323,44513743,4075188,4231702,4035778,77615,4075170,441630,4014451,73538,436173,4064834,2004771,77621,4128031,40760193,80782,441082,196170,2004786,4161944,37312440,44513746,4088084,4075735,4075191,4071505,4069969,313829,438206,435606,442920,442919,44513745,4075189,4266683,4093774,4143647,42535817,72970,433260,4063163,4063162,4059751,42539267,442082,2101016,4071630,4127248,4014720,4063160,4071507,442053,74433,78494,75326,193269,197048,442080,79897,201368,193271,195025,199087,196182,194711,433274,2004767,2004802,2004765,2004768,2004783,4191809,44513736,44513756,44513729,44513747,2004731,44513740,44513733,44513752,4145318,4127249,73824,42535816,4234421,4023797,4307825,4073438,193539,4172142,193264,201359,4014292,434427,435031,441363,438220,200160,37110284,37110283,45757175,45757176,36712702,44784550,44784551,196762,72692,440476,441645,440475,434431,442419,442418,4065749,434713,438481,200157,442078,198216,195878,4127253,4121924,198816,192699,4064960,4065618,192384,198499,4264738,438490,439077,4092760,435020,80474,4170152,36713074,4073422,4167497,4205240,2110318,439094,439095,193275,3186670,136755,138207,4204679,137940,4063171,4174854,4267072,439093,432975,4161678,3655718,4134431,4326563,4290245,4073424,440462,196181,197049,4101844,42535052,435018,4060157,2110342,2004742,79889,45757158,4075171,442069,193544,4228344,4331179,44784097,2110320,2110308,4167018,442059,435610,435609,321367,443246,441087,4071632,40394878)) + +) I +) C UNION ALL +SELECT 1 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4092289,4307044,40482735,40483126,4163851,36713468,3174212,4097427,4147043,4142021,4310910,4069200,4145125,4082863,4008884,4107401,4029786,45765500,45757166,45773428,45765501,45757167,45757168,45765502,45772082,45757169,4014295,40483521,36713465,4227728,4330570,4049333,4243026,4066292,4193224,4336090,4199146,4307237,4178275,4094046,42539210,4014456,4015422,45757165,4015421,40483084,40483101,4014296,4014455)) + +) I +) C UNION ALL +SELECT 2 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4015296,4014149,4014150,44808979,4015141,44808980,4014151,44808981,4015297,4015298,4014434,4015299,4015142,4014152,4015300,4015301,4015302,4014435,4178165,4181468,4181162,4324063,438542,45770261,4322726,4242241,4174506,4197245,4266517,4248725,4283690,4049621,4277749,4097608,4181751,4337360,4051642,4185780,4274955,4336226,439922,435640,444023,432430,444461,444417,4220085,434484,433864,442558,441678,443874,444267,438543,442355,443871,435655,4326232,442769,444067,4195157,4290009,4313026,4270513,4132434,4245908,762907,4336958,4180111,444098)) + +) I +) C UNION ALL +SELECT 3 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4132434,4322726)) + +) I +) C UNION ALL +SELECT 4 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4072438,4088445,4058439)) + +) I +) C UNION ALL +SELECT 5 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4186424,4324606,40489798,2211754,2211753,4237339)) + +) I +) C UNION ALL +SELECT 6 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (40480490,4061810,4061809,3040768,3038294,3010296,42529192,3027634,40757479,3032506,3033080,3009306,42529190,4197249,4099476,4014768,3012116,3024289,3021607,3046154,3044142,3030180,3046979,3022269,3016670,3024370,40761829,3044397,3025053,3027505,42529191,3045958,40762626,3028331,42529189,2212200,2212199,2212198,4147940,4269851,4041177,44807243,4042555,4059689,4042557,4078285,4057158,4269860,4042936,40761828,37396772,37396771,40478936,40483704,40480870,40483600,4310471,4210719,4161969,4275335,4195345,4078287,3051868)) + +) I +) C UNION ALL +SELECT 7 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (443800,4184965,40480713,4242590,4211822,4070773,4034017,4034018,45765512,4211227,4261326,4219015,4138554,40318194,4230947,40318195,4312727)) + +) I +) C UNION ALL +SELECT 8 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4055287,37392366,4250175,4091293,4091461,4055285,37392365,2212173,4014769)) + +) I +) C UNION ALL +SELECT 9 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4015296,4197245)) + +) I +) C UNION ALL +SELECT 10 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4015142,442355,762907)) + +) I +) C UNION ALL +SELECT 11 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4015299,438543)) + +) I +) C UNION ALL +SELECT 12 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4014434,444267,4180111)) + +) I +) C UNION ALL +SELECT 13 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4015300,435655)) + +) I +) C UNION ALL +SELECT 14 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4245908)) + +) I +) C UNION ALL +SELECT 15 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4015301,4336958,444098)) + +) I +) C UNION ALL +SELECT 17 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4242241)) + +) I +) C UNION ALL +SELECT 18 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4174506)) + +) I +) C UNION ALL +SELECT 19 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4181468,4266517)) + +) I +) C UNION ALL +SELECT 20 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4337360)) + +) I +) C UNION ALL +SELECT 21 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4220085)) + +) I +) C UNION ALL +SELECT 22 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4326232)) + +) I +) C UNION ALL +SELECT 23 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4195157)) + +) I +) C UNION ALL +SELECT 24 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4290009)) + +) I +) C UNION ALL +SELECT 25 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4313026)) + +) I +) C UNION ALL +SELECT 26 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4270513)) + +) I +) C UNION ALL +SELECT 28 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4248725)) + +) I +) C UNION ALL +SELECT 29 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4283690)) + +) I +) C UNION ALL +SELECT 30 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4014149,4049621)) + +) I +) C UNION ALL +SELECT 31 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4277749)) + +) I +) C UNION ALL +SELECT 32 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4097608)) + +) I +) C UNION ALL +SELECT 33 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4324063,4181751)) + +) I +) C UNION ALL +SELECT 34 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4014150,4178165,4051642)) + +) I +) C UNION ALL +SELECT 35 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4181162,4185780)) + +) I +) C UNION ALL +SELECT 36 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (44808979,4274955)) + +) I +) C UNION ALL +SELECT 37 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (438542,4336226)) + +) I +) C UNION ALL +SELECT 38 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4015141,439922)) + +) I +) C UNION ALL +SELECT 40 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (44808980,435640)) + +) I +) C UNION ALL +SELECT 41 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (444023)) + +) I +) C UNION ALL +SELECT 42 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (45770261,432430)) + +) I +) C UNION ALL +SELECT 43 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (444461)) + +) I +) C UNION ALL +SELECT 44 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (444417)) + +) I +) C UNION ALL +SELECT 45 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4014151,434484)) + +) I +) C UNION ALL +SELECT 47 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (44808981,433864)) + +) I +) C UNION ALL +SELECT 48 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4015297,442558)) + +) I +) C UNION ALL +SELECT 49 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (441678)) + +) I +) C UNION ALL +SELECT 50 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4015298,443874)) + +) I +) C UNION ALL +SELECT 51 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4014152,443871)) + +) I +) C UNION ALL +SELECT 52 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4015302,442769)) + +) I +) C UNION ALL +SELECT 53 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4014435,444067)) + +) I +) C UNION ALL +SELECT 55 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4239302,2004542,4130186,4127094,4187819,4280831,2110196,2110197,4238828,2213350,4272937,2721246,42739500,2213363,2213362,2213365,2213364,2721238,2721239,2721240,4309021,40482399,2213355,2721256,2213347,2213348,4022096,4024589,2721247,2721248,4327048,2110275,4072852,4072863,4074569,2213361,4127892,2110274,4032737,2721243,2721241,4127104,4072421,2110276,4309019,2213360,4072715,4030829,4138741,4139858,4139060,4137390,4145843,4020898,2721255,4199599,2788842,2721237,3049700,2721245,2721244,4138627,46273065,4145664,4138633,4141534,4142402,4144415,40259107,2213351,4072862,46232934,44513468,44517168,4075024,44513634,44513516,2213352,40490338,2213358,2213357,2110198,2721254,4022098,44790511,40490447,4073406,4127106,4020897,4127105)) + +) I +) C UNION ALL +SELECT 56 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4014433,4014148,4173786,4061786,4060243,43530904,4061437,4060251,439656,4060246,4060097,4060242,4060241,4059989,4060247,4147564,4060239,4061433,4061426,36713461,4061425,4061787,4060098,4059988,4061789,4060248,4060101,4061793,4060240,4060244,4059987,4190427,4147941,4047845,4084186,4062361,4061521,4081196,2110312,2110313,2108689,4015159,4060252,37016958,4076939,4061795,4156955,4150421,4059478,4128833,4226978,4060255,4084439,4015304,4060104,4151190,2514574,4061791,4066354,4305717,37016955,4084521,4038747,4140250,4038420,4038571,4038945,4039088,4038943,4039610,4038938,4038760,4038418,4038749,4038751,4038932,4039602,4038753,4038935,4038748,4039609,4038759,4175225,4038424,4171428,4039608,4038941,4038939,4038937,4038573,4039603,4194143,4016475,2618150,2618151,2618152,2618154,2618155,4176966,4112701,4311447,4172038,4313474,4060105,77619,4081292,46272536,4084693,4047564,4083415,4260976,2101831,40517216,40525253)) + +) I +) C UNION ALL +SELECT 57 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (441092,4061424,40760833,4139126,4015590,3011536,43054893,43021054,37017322,441085,192380,4210896,3006722,40759953,195877,4061522,437937,4030415,197031,4061672,43021951,43021952,3045823,432969,3000119,4217975,4038942,4150948,4148890,4094910,4061785,4060237,4299535,4059982,4061686,4059984,4061411,4059981,4133029,442594,440466,4061423,4214930,3040000,196484,4042412,198212,4129023,4218813,432375,441919,4307820,4059985,4239301,4041878,3023791,40519557,40524802,40524805)) + +) I +) C UNION ALL +SELECT 58 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (2721180,3019145,3011465,3011996,3010164,40758989,3011149,3009417,3038136,3004303,3036988,3002091,3008714,3003191,3018954,3018171,4018189,4296540,4296541,4016953,4017479,4263011,43527960,43527959,4096237,44807244,2212633,2212632,2212631,44807240,4285271,44806337,4038817,44812174,4210718,4210722,4195509,4198892,4041161,4042751,4214677,44789306,4055426,4055954)) + +) I +) C UNION ALL +SELECT 60 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4129846,37017027,4079844,4071603,442338,443695,4034159,45773593,4060687,4028787,4222915,4242724,4184594,42539377,42538805,42538806,4014454,443213,40406337,4287409,4217655,4261819,4321563,4301269,4103876,4300979,443463,4306288,4192641,4203001,4015163,4015162)) + +) I +) C UNION ALL +SELECT 61 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4198718,4209254,4197835,4193852,4198731,4195213,44805579,3016704,4234906,4258832,4198733,4193853,4198732,3004221,4209122,4193854,4193855,4198719,4198742,4198743,4130321,4200678,4059050,4198125,4149783,193525,442631,314478,312733,137974,314099,437688,438557,440216,439402,439403,4162865,4155282,4162866,4306804,437342,197050,40480490,4136368,436477,3003694,444365,42597053,42597052,42597051,201076,197612,438812,195319,42599848,2721147,2784560,2784559,2784555,2784556,2784557,2784558,2784561,2784562,440776,440454,4050827,4052366,4052365,4050829,36713476,4262542,3034139,4173330,4034308,761075,196490,4215648,45772947,45768986,37397030,441092,4312095,4129840,4061810,4061809,3655216,3655215,4030070,4029428,4029425,3040768,3038294,3010296,42529192,3027634,40757479,3032506,3033080,3009306,42529190,4197249,4099476,4014768,3012116,3024289,3021607,3046154,3044142,3030180,3046979,3022269,3016670,3004943,3024370,40761829,3044397,3025053,3027505,42529191,3045958,40762626,3028331,42529189,2212200,2212199,2212198,4147940,4269851,4041177,44807243,4042555,4059689,4042557,4078285,4207608,2314093,2314092,4208334,443800,4184965,4146045,2110279,4140734,2110280,2004824,437936,435880,4057158,4269860,4231903,435616,3655206,3655205,4057149,433880,4154997,441959,436768,437948,2212210,4248954,4173032,4170460,432968,432967,4209094,434701,442923,442922,4099889,432452,42739743,2101814,2101807,2101809,2101804,2101811,2101812,2100998,2101808,2101806,4118417,40480713,4149405,4015296,4014149,4014150,44808979,4015141,44808980,4014433,4014151,44808981,4015297,4015298,4014434,4015299,4015142,4014152,4015300,4015301,4015302,4014435,4061154,4060259,4061530,4014319,4015139,4207466,4014148,4173786,4061786,4060243,43530904,4061437,4060251,439656,4060246,4060097,4060242,4060241,4059989,4060247,4147564,4060239,4061433,4061426,36713461,4061425,4061787,4060098,4059988,4061789,4061424,4060248,4060101,4061793,4060240,4060244,4059987,4190427,4147941,441649,4047845,4084186,4170305,4062361,4060266,4079835,4152443,4087235,37310544,37310338,36713463,4191703,36713464,36713462,37016744,35609139,4061521,4014320,4015137,4015294,37016760,4152444,4152445,4061131,4061803,4061157,4061534,4141415,4060265,4060263,4143115,4060264,4061802,4060262,4081196,2110312,2110313,435887,4079969,4129846,434089,4143074,438489,443133,438203,37017027,4129039,2108689,4061531,4014312,4016469,4014579,4016470,4269556,4014304,4016052,4015431,4269555,4016464,4016467,4016466,4266765,4167905,4299090,4183596,4170878,4219591,4132308,4244236,4088036,4011798,4028032,4049582,4274664,318247,36716744,4079848,3006511,4080668,2004542,4239302,4130186,4127094,4187819,4280831,2110196,2110197,4238828,4131376,439136,2004526,2004525,4212941,45763635,4300368,4153454,4075168,2213350,4272937,2721246,42739500,2213363,2213362,80156,76761,73526,196488,42739562,2514559,4173192,4215792,37397031,37397032,37204850,37204849,4149455,4014461,4151169,4015275,4078138,4149449,37016220,37016221,4149457,37016222,37018684,46271955,37016216,37016217,37016218,37016213,46271814,37018683,37018889,37016212,762577,37016211,4014299,4149451,4150406,4150405,4150404,4015274,133594,4075169,4147974,42742559,42742561,4150338,321638,314103,320456,314423,4062811,762706,762705,4244383,4043411,4046209,4028640,4093429,2004347,36684754,37207968,36684753,36684752,36684751,4107080,36716760,4028644,2213365,2213364,4184996,36716763,36716762,4014291,4016064,4015277,4015278,4015282,42536751,42536565,4290881,4014465,4015288,4015429,4015287,4014466,4015284,4015270,40760833,435641,4030440,4149610,4171114,4187520,46271901,40759177,4262136,2721180,3655208,3655207,4028780,4055674,4041701,4041702,4041700,4055675,4055676,4042726,4042728,4275337,4041697,4042727,4135545,44784272,4042936,4078281,4027371,4192676,4260748,42742564,4139126,73019,4066255,443330,77624,81086,73282,4260749,4054949,4066258,4345684,4015144,40766616,4254219,3662128,4213387,436767,4075165,73267,74698,73537,76756,4283942,4122871,3026267,4120298,4031037,317669,36713582,4306192,4261479,42742390,2108149,4065999,4208980,4235752,36716743,36713583,375016,4047852,3662129,4071629,2110305,2110304,4147060,4243309,377980,4171109,4171111,4082313,316494,4321386,4034148,436740,441369,435607,437334,440166,44790204,197043,437942,2110316,2110323,2110324,2110317,4165077,4015701,4303297,2004789,4066111,42872492,42872493,197344,194113,4065866,40482050,4152029,4253751,40479783,4014738,4194590,4200299,4194591,4199794,4194593,4199793,4194592,4014735,4014605,4194594,4014606,4194595,4199796,4014607,4199797,4014736,4194596,4200422,4199798,4197178,4200300,4276725,4016184,4199795,4197179,4016183,4102952,4203366,4340944,3019145,3011465,3011996,3010164,40758989,3011149,3009417,3038136,3004303,3036988,3002091,3008714,3003191,3018954,3018171,4018189,4296540,4296541,4016953,4017479,2212145,2212144,2110282,44793560,44791458,4162502,72973,40760436,2213267,2213268,4080590,4173190,313023,4223536,2004785,36713561,37208486,434167,40761828,4182145,44783183,4135209,40483581,3170656,437046,4034145,2721238,2721239,439085,441629,441921,4146774,2721240,441073,438196,40318618,441910,432682,441632,435318,435000,436742,438805,4113352,440464,440795,36715374,432382,436489,437947,435875,4141513,441364,433822,433263,4309021,4193765,40482399,80205,441964,197339,194707,193825,315013,314426,443249,436532,37396772,4236230,196175,201920,435879,440162,4188480,433869,4015159,4060252,433826,432373,43020670,441647,45757769,4237335,4268171,4120986,36716738,36716737,380533,434708,4129041,442292,433270,2110281,433828,439092,442421,4055252,2004823,4015590,37016958,2212630,433548,36713479,45757216,443243,440481,432396,442529,2213355,2721256,4242590,4057444,4055550,4269855,4057443,2213347,2213348,2110301,193174,4170118,42742301,4100193,4185718,4232953,4173946,196475,42537767,42537768,4174543,4194053,4216382,4072438,4088445,4060625,44810005,40491449,40487136,4197955,75882,73265,44784536,438820,4266839,4234604,438814,194109,4048293,441361,42537762,42537759,4114265,4277103,4075190,440793,193277,2514560,4076939,4106406,4061457,4066112,4232028,4234710,4223638,4278225,4100410,4189205,4096145,4237496,3011536,4038495,43054893,4061795,441641,40551541,4056129,42872805,2110311,4130319,4293034,4156955,4150421,4128030,4046029,36715417,36716734,4252401,4193756,40478932,443012,192691,4058243,194700,4062685,4062686,43531645,43531019,43531020,40758528,3169474,443727,4009303,2004805,4143646,40479665,4032755,4142956,2006934,4135437,37204835,37204834,43021054,4211822,434482,4016060,4173784,4314846,4313768,4071864,4309556,4149472,2004489,4106559,4309425,4168396,4138740,4074867,4072420,4074297,4022096,4024589,4084845,40757216,40757177,4071597,201958,438815,73546,200524,4130161,80471,79890,4053583,42537770,42537769,42537771,4195545,201091,198486,4059763,443418,4134722,4282151,443897,432443,4091783,437985,37017322,2721247,2721248,2211763,2211764,44807919,2211761,2211760,4149370,4201770,2784529,2784535,2784541,2784547,2784553,442915,442913,440787,4029427,4034969,4096804,435359,438871,4139551,4015420,4122728,4014453,4015161,40259069,443706,4139861,4070773,4307303,36713560,35622880,437614,138813,4040834,2722250,2211762,4137949,443700,133816,138811,137613,4116344,4058536,4294771,4129522,4029426,4030181,437611,441412,438204,443321,37018717,37017708,37017183,4207151,37017710,45770395,43527945,441085,440794,442442,4075182,4075161,42536960,4075160,42536952,4171254,4276942,4263011,42539701,42537764,440777,4327048,2110275,4167089,4127252,42537021,46270991,4032767,42536954,439924,4113994,4066014,4074443,4072852,4072863,4074569,80478,4055924,42573076,4272812,2004766,4311671,4046551,4102125,2110303,44513763,43530969,4009644,37109548,37109547,4345685,4059478,4128833,3025994,3025455,3005625,3003262,4070303,4032621,4170151,40756825,4216768,434758,81636,42537763,37206231,37206226,37206230,4074426,40493226,4074427,2004345,37396132,4034017,4065745,40479820,4147858,2213361,44790867,4226978,2004769,4075176,4257043,44513450,4211824,38001501,4173323,439128,78210,4071437,377680,4060261,4017134,194694) or concept_id in (192380,4281684,45757775,2004751,442613,437622,441924,437341,438491,4196129,434436,443521,4298980,45771070,81088,36715473,78224,4157164,4127892,4001541,4279380,4062557,4089691,4156660,3035250,3037110,40766113,3037187,46235168,3017703,3018251,46236950,3041651,3025791,3002574,4320478,3655214,3655213,4310205,4250134,4060255,433315,3173127,43530900,4004785,4150653,439923,201083,43022052,44790240,3026620,3028281,2211758,2211759,79146,4196670,37310907,43528050,43527962,43527961,43527960,43527959,2110283,3001951,4079844,75605,4071603,436228,442338,443695,4178809,80165,73268,37311827,435369,4216551,4334808,4034866,43530902,2004809,45757059,4203009,2212334,37310859,4210896,4266763,80204,4084439,3006722,437098,433311,36716504,36716503,42538545,42538544,36715840,36715841,2212438,2212439,2212436,3032604,3050978,201366,193535,196757,44790237,2110287,2110286,4146847,4145315,40759953,3003857,2110284,4271327,4061924,4281385,4142900,4314282,438541,36716530,434483,4148097,433309,44784300,432429,439129,439135,4071485,436518,36716552,444464,436220,435927,36717572,441682,440203,437975,44784362,435063,4070412,36716553,435918,4047718,4070425,4070426,435917,42538699,4070413,4048006,44784412,78563,76521,43531708,44784346,44784342,437976,4048130,36716526,433027,436219,438868,434744,434745,4047585,36717570,36716529,36716528,36716527,4118056,435062,44782462,36716731,4047586,44784411,440211,441680,44784612,44784611,436517,440829,437088,4047595,44784305,44782664,201681,441122,201410,4176131,437668,433310,433018,4048003,441684,4048004,4047711,442148,4077736,4047719,4070414,4047712,4048005,433319,432734,36716545,36716543,4328890,4230351,4067525,4096143,36716546,36716547,36716544,36717220,4262288,2110285,4015304,4318554,4151412,436804,81360,4047725,442827,72697,80463,4064277,4063296,4063297,4060672,4064177,4064178,4064169,4064171,4064172,4143204,4064174,4064175,4129181,4171110,4306064,4100257,4200202,4199559,4201383,4103472,4126735,4090743,195877,4116804,4124634,432441,4116805,4199560,439156,4126738,4201382,4126409,4090747,197343,192978,199088,3657563,4239938,4147431,4096531,4140071,42597080,37399364,2110274,4217642,4075187,4114637,435022,4032761,4324549,2004711,2004702,198495,4059969,4143634,194429,198496,81685,4071595,4070316,36716537,4048135,4273394,4244672,4096237,44807244,4034159,4032737,2721243,2721241,4296686,4003230,4104821,4338674,4068274,74716,4061187,4066260,74440,74717,76772,443328,79884,4127104,4072421,2110276,4172870,442777,77052,76750,4061522,4091200,196177,45768620,77340,81357,80778,74415,4178165,4181468,4173324,3048230,3045991,40481315,3036844,4221190,3183244,4024659,4326434,4263902,37018765,443214,442565,4058113,4214186,43530970,43530973,4181162,4324063,438542,45770261,4322726,4242241,4174506,4197245,4266517,4248725,4283690,4049621,4277749,4097608,4181751,4337360,4051642,4185780,4274955,4336226,439922,435640,444023,432430,444461,444417,4220085,434484,433864,442558,441678,443874,444267,438543,442355,443871,435655,4326232,442769,444067,4195157,4290009,4313026,4270513,4132434,4245908,762907,4169089,4236507,4042066,3003994,3037524,2212367,2212360,2212357,4094447,4017758,4077514,3049746,4275336,3025893,40762090,40758981,3023544,3005943,3016083,3014014,3031266,3048865,3034530,3011424,3014053,36304599,36303387,3019210,3004077,3038962,3034962,3022548,36031895,3023572,3002436,3001346,3016680,3045908,3030618,3015544,3020909,3033618,3011789,3015046,3034466,40759281,3008572,3016726,3017261,3004251,40763914,3000607,3002240,3010075,3049817,3004617,3003462,3003403,3004501,3041015,3039562,3027276,3043908,3026728,3025211,3006760,3017592,37020527,3052646,3026020,3006333,3049496,3032780,3036283,3041875,3041757,3012635,3006325,3036807,3044527,3048585,3002009,3007781,3024583,3041863,3048856,3023379,3043648,3040375,3039582,3013802,3040872,3044252,3014163,3038855,3021232,3033778,3012415,3008804,37020666,3039397,3017053,3001975,21494214,3039851,36660183,3029871,3034771,21492336,3025113,3005787,3040739,3009006,3040457,3038995,3038543,3041353,3038958,3040694,3040940,3043678,3009245,3017892,3014716,3008191,3016699,3007332,21492339,37021274,3050405,3010300,3017345,3002310,3026071,3025232,3004723,40760467,3032986,3035125,3044574,3040904,3007820,3038316,37020873,3052659,3026550,3048282,3041620,40759870,3041009,3043637,3041860,3015930,3000545,3040983,3004428,36660184,3023776,3043930,3038549,3042343,3041056,3041864,3042329,3041872,3040748,3006717,3007092,3042637,3025673,37021474,3041799,3026300,3019876,3021737,3000845,3022079,3032779,3035352,3010044,3040420,36660135,3025740,3026571,3025136,3030070,3013604,21492337,37019755,3050128,37020288,3028247,3010722,3003412,3041024,3041720,3042058,3019013,3003334,3007427,36659783,3002544,3038570,3053004,3027457,3005996,3009582,3039937,3027198,3020407,36659954,3014737,3010118,3040476,3042431,3010030,3030416,3035858,3015323,3039166,3027980,3022574,36660356,3038965,3020260,21492338,3023186,3018998,3028112,3003541,3024644,3005487,36660344,3021924,3013145,3032719,40761077,3009397,3013881,3005850,3035415,3039849,3052976,3033312,3021860,3004389,36660564,3023243,3022933,3040592,3041921,3012792,3028944,40761078,3017083,3050134,3023466,3004681,3022285,3023125,3004351,3038687,3050095,3032230,3011296,3018151,3008349,3019431,3017328,3031928,3041745,3039229,3052381,3024762,3004766,3025181,3049466,3029014,3000931,3042186,3007864,3038525,3031929,3035759,3002666,3025866,3026536,3025398,3001511,3020058,3019474,3005030,3003435,3049846,3002332,3006887,3040820,44816672,3042201,3041915,3051368,40760907,3041397,3020399,3020632,3015996,3001020,3016159,3017222,3027145,3010115,3032276,40759245,3024540,3006289,3022314,3034003,3037787,3011088,3028287,40761076,3010956,3031651,3005231,3000272,3031105,3012009,3032809,3019571,3029102,3039896,3024629,3042145,3039280,3043210,3042982,3043057,3035214,3033408,3004676,40757617,1002230,3005131,4149519,4229586,4144235,4018315,4151548,4230393,4286945,4036846,4182052,4218282,4017078,4018317,4249006,4331286,4018316,4149883,40762854,40762853,40762855,40762852,40762856,40762857,40762858,44816584,3042439,3000361,44816585,3046229,3035381,3044242,3020491,43055143,3040151,3021525,3001501,40762874,3020044,46235203,46235204,46235205,46235206,3051101,3020722,3052839,3051873,3051002,3040806,3042173,3036257,21491017,21491018,21492444,3023044,3036782,3013826,3038566,3044548,3040116,40757532,3001022,3039558,40757379,3038565,40757524,3040402,40762873,46236371,40757525,3038251,3043536,3041470,3041028,3045291,40757526,3040937,3003912,40757397,3041766,3038257,3038390,3040594,3038991,40757408,3036375,40758480,3039763,3036895,40757398,3042216,46234926,3042995,3021258,44786741,40757380,3009877,40757391,43534070,40757402,3042146,3038581,3050625,40757381,3050771,40757392,40757403,3041787,3007619,3044219,3040442,3041160,3043956,3040673,3041760,3042342,3040567,3037432,3020869,3011761,3039422,3051280,3015024,40757396,3040655,40757407,3044516,3040659,3015621,40757523,3038672,3038264,42868432,40757382,3018582,42868430,3039826,3041486,3043922,3043635,3041604,3039788,3006520,40757401,3043514,40758510,3040060,3019047,40757390,43534069,3041159,3040683,3040867,3034101,3041140,3042029,3038395,3044269,3040870,3040366,40757400,3009154,3016160,3017538,3038621,3016701,40757389,3041638,3040613,3012413,40757383,3040578,40757527,3040603,3015980,3005793,3039178,3008799,40757394,3040908,40757405,3041786,3016567,3039739,3044550,3038838,3022161,3000992,3044555,3013026,3041609,3017048,3017091,3038314,3017589,3041489,40757404,3041136,3042487,40757393,3038420,3040892,40762876,40757528,42868433,3014194,42868431,3040104,3022201,3043978,46235368,40758481,3051231,3023228,40757395,3047279,40757406,3044218,3023758,3039997,3017634,3017890,3042489,40757384,3039807,3045318,40757529,3044562,3003824,3041490,3018175,3004724,3040107,3049428,3040634,40757385,3040641,40757627,3041895,3002654,3041454,40757386,3040468,40757628,3041763,3039297,3038727,3040099,40762875,3038557,40757629,3038422,3045067,3041615,40757387,3039224,3040896,3043032,40757630,3041856,3041903,3040710,40757530,3007821,40757626,3041930,3041971,42868682,3006669,3019765,3004067) or concept_id in (3039439,40757531,3048522,40757388,40762250,40757399,3044522,3042469,3045105,3045131,3045158,3045700,3029462,3030745,3038434,46236948,46236367,3006893,3051044,3020618,3005570,40762249,3008770,44786994,3038515,3040563,40757618,44806589,3018056,2212361,3007308,3040980,3020650,3007777,3006684,3028014,3023961,3024785,3025622,3007971,3006258,3021752,3009261,3005875,3005589,3020820,3021033,3019493,3007031,3018958,3009251,3011355,3004629,3023638,3021635,3003453,3005851,3022233,3005370,3003201,3025876,3010617,3020455,3001283,3020450,2212359,2212364,3003169,3030177,4012477,44783612,2212363,2212362,4055679,4055678,434164,2212633,2212632,2212631,372842,4009879,4014452,437937,434110,442441,4032764,4042068,4084217,4149401,42742312,316478,440532,201129,4085415,4155624,4152629,4161205,42709943,37312073,437922,4177184,3004410,2212391,2212713,2212714,437090,440218,433603,36713168,4009645,438478,437935,435323,36716542,436529,4329097,4083118,435358,4061471,4066134,4066135,4065761,37396771,4311256,4033068,4079859,44513743,4075188,4231702,4035778,40480725,442088,77615,72696,4302252,37392366,4055287,4075170,42739014,42739011,441630,4062565,4014451,4060104,4151190,2514576,2514575,2514574,44807240,4285271,44806337,439083,44500814,73538,81923,444245,77662,4030872,4098582,4227141,4142340,436485,436173,440788,37311673,37016348,37016349,40480031,4034959,4034966,37312344,37312345,4307509,37397460,37397139,36713524,36715528,37397034,36715529,36715530,36716024,42536603,4147719,4215719,321080,192698,443244,4064834,4064835,433873,4267556,42572837,44809809,44789319,44789318,42600315,24609,4029423,45769876,45757363,4287549,3185010,45772060,4226798,4228112,36714116,30361,4029422,4232212,45757362,36676692,436534,45772056,4308657,4318803,4153365,4082045,2110292,4082412,4132295,4234390,37395921,4173187,444048,193821,439400,443705,195600,442596,439325,4143190,4138267,4185440,4303980,4066227,4182549,4223627,436169,4264914,4101477,4023781,4107907,4323434,4180859,4066994,4105762,4077275,4025828,4229716,4249728,4266243,4305348,4234979,4197900,4051784,4195243,4224143,4239192,4296872,4103148,4143018,4206453,4195297,4318662,4313005,4034753,4324965,4219608,4183557,4140509,4030415,36713470,4071514,4069972,4071513,4071641,4070223,4247275,4308509,44808373,4311629,4263688,4047260,4251180,4229140,4111906,4029951,4136531,4045297,4030067,4042067,4027550,133284,2110084,2004771,439323,437929,438487,439324,439321,439322,439320,45768717,45771353,438211,436748,437618,4146775,439328,37110280,435868,434705,440453,439329,193532,434095,439331,439330,434689,40318617,434413,437933,440460,437045,195317,432689,439688,441631,42535215,44805020,4171255,4239206,4038817,4289543,3198709,440161,2721146,2721148,2721149,2721150,2110331,2110332,2110333,2110334,2110335,2110336,2110329,2110330,37018340,43530913,43530914,43530928,43530915,43530916,43531712,43530957,43530917,43530958,43530959,43530960,43530918,43530961,43530919,43530962,43530908,43530920,43531713,43531710,43530921,43530922,43530910,43530964,43530923,43530952,43530924,43530925,43531714,43530953,43530926,43530927,43530911,43530966,43530929,43530948,43531715,43530954,43530930,43530955,43530931,43530956,43530932,43530933,43530965,43531716,43530934,43530912,43530935,43530936,43530937,43530939,43530940,43530941,43531711,43530943,43530947,43530944,43530945,43530967,43530968,4200986,44784128,4075159,4032756,2004745,37311825,4244408,4146772,4062356,4014439,4016479,4231742,4174423,37018973,4173344,4208967,4152958,4153568,4309019,436180,3655611,444244,36713475,45757187,4062133,74434,4028781,439139,433823,4008083,433266,42600083,4085257,2514556,2514569,2514555,2514558,42739633,2514563,4161783,4121775,36716540,36716538,36717351,36716541,36716740,381952,36716733,77621,79896,2213360,4112315,4074301,4128031,4071638,4018336,4229110,2212419,3049230,4020992,3010771,2212155,3022466,3004648,3004163,3004325,3011670,3003227,3011496,3020877,3002800,3035571,40759809,3001627,40759811,3001583,40759810,3007346,3000664,3011411,3037545,3033461,3038084,3037230,3021586,3021537,3002053,3019151,3015988,3012706,3024084,3037897,3000331,3033587,3008406,3005615,3024615,3034123,3003339,3017118,3011462,3011381,3022404,3023151,3013134,3009446,3018974,3019590,3000005,3022492,3019824,3023517,3034439,3029133,3013373,3022423,3016203,4060873,3030272,3016523,40758613,40758512,40758610,3020977,3036942,3037468,3037714,3021224,40758618,40758612,3038241,40758628,40758514,3001558,43534076,40758617,40758614,3038723,40758615,40758521,3019094,40758563,40758616,3039233,43534075,40758620,40758625,3038693,40758515,3037840,40758629,40758621,3041156,43534074,40758622,3042046,40758626,40758513,3038142,40758619,40758624,40758516,40758611,40758517,40758520,3033522,40758518,40758623,40758511,40758609,3022114,40758519,3012701,40758608,40758627,3015720,3008465,3017410,3033929,40762271,1001918,3040755,3029373,3046092,3019840,45769875,35622016,4129524,4129525,2212418,4017196,3010058,3016244,3049445,3048476,3019544,3049768,3043439,3045444,40771051,3011873,40759701,3046035,3017375,3046568,3046591,3008358,3052952,36659792,3027077,36660450,3049491,3011621,3046621,3017922,40771052,3033462,3051708,36660139,3016036,3052582,3029720,3046287,3048483,3036251,3018509,3049493,36660352,3024067,3004884,40759907,40760065,3026145,3049164,36660132,3012064,3029908,3046308,36659993,3052011,3015089,40759908,3012529,36660726,3017496,3018344,40759909,40760063,3051067,36659716,3009167,3053266,3030827,3045998,40760068,3036529,40760067,43055438,36660594,3016818,36660526,3027834,3029056,3012719,40760126,40760064,36660177,3006570,3052901,40760468,3049177,3030826,3023123,40760066,40760061,40760062,3012007,3028357,3051418,40759613,3030984,3019569,3015678,3029665,3018957,40760060,3031012,3028877,3028902,40759603,3009413,3048519,3049462,3050108,3052941,3029043,1002121,4254200,2004750,2004749,4217602,4197403,37117767,4023420,4072715,36716736,36716735,4149029,4303420,4298274,4149939,4242238,37110285,37205799,4065747,45773593,4030829,4066151,4138741,74162,4060687,4063309,4139858,4139060,4137390,4145843,197031,4020898,2721255,4063939,4107728,4180743,4079972,434155,4215504,44500947,195329,4199599,2788842,2721237,3049700,2721245,2721244,4138627,46273065,4058246,4079751,4184274,3655631,442772,4061672,4145664,4138633,4141534,4142402,4198705,3030662,3044819,4122929,437681,442216,439770,443734,4095288,4224254,4228443,3035350,4049629,4139552,4305334,4129837,43530880,77335,42742323,4091790,3195953,37311826,40760193,4041698,4250609,4014719,4106999,199089,194709,4154571,4152967,4112304,4034018,4218738,436167,40347147,40378260,42872572,42872571,4319321,40490893,4144415,40259107,4190526,2110299,2110300,4251314,40480864,4032749,2110240,2722205,2110245,2722217,4030430,80782,78818,36712932,4344633,2106488,4058439,4340777,4163996,434474,4061791,36713562,35622881,4206624,441082,443325,439880,3035904,4074877,4074876,4113976,444077,192379,197617,442346,439883,436474,195595,197333,4181114,4147533,4009642,4098441,4292089,4025639,4077454,441349,4280224,4214233,4294829,4328084,4046510,4243658,4183680,4216436,4324695,4324672,4045581,4204231,4269450,436747,4049453,4094081,4271203,4184150,4198404,4312358,4296459,4068253,4327321,4058932,4178578,4070939,4204206,4197681,4188764,4106892,4105063,4225572,4245041,4006979,4128988,4268175,2110236,74469,72726,36716536,4238207,4092289,4307044,40482735,40483126,194699,196170,443292,4047865,4047863,4127042,4129167,42709955,4127039,4096534,4127040,4127041,4124480,4129166,4127038,4175536,4129168,42709956,4126720,4126719,4171116,4091785,4016047,4171115,2004786,4161944,37312440,44513746,4088084,4075735,2004703,2004704,4075191,4165508,4153112,4239200,4214980,4130310,4028787,4093584,37394500,440473,36403113,4096041,77338,4071505,2004845,4170533,4069969,4069968,4151385,2004826,2004764,4338977,37205103,4070523,4048281,44784126,4016059,443295,4066354,4091196,432977,4062131,4197085,441081,443054,314432,313829,315327,4066002,443016,443015,443014,42872398,439893,4297233,40485049,40483251,40485007,40484589,434105,4143214,438206,435606,438205,443020,434697,4197402,443018,40478936,40483704,40480870,40483600,40481772,40482677,4176733,4027514,40482666,4143633,4232703) or concept_id in (439934,193591,4241979,4058519,4238980,4315046,44807900,2004762,2721012,4115153,40487510,44784273,4112952,442920,442918,442919,442917,4060424,4113218,432371,4029421,3000034,44513745,4075189,4266683,4093774,4143647,2004706,4179832,44790206,42535817,4305717,4079970,4121760,436166,435023,4129842,4028783,314090,434759,4173176,37394499,4067106,4087102,192678,195594,194704,437920,441348,193820,196746,4323612,4051244,4078393,4224646,4167685,43530979,4224597,4211863,4064536,4247270,4003276,4209126,4175137,4047775,434094,4179796,4274315,4149423,4278107,4170457,4180568,4194113,4041728,4309780,4130670,4261327,4302162,4311698,4217670,436176,4221853,4313166,4310654,4216342,4031837,4253804,4200070,4049891,4339107,4168445,4219469,4001856,4195406,4189350,4285746,4244261,4085627,4006806,4033096,76482,4063183,72970,78817,4278101,42539560,4030429,4034094,36675173,37016955,4146288,43021951,43021952,4199931,433260,437041,4310471,2110337,4163851,4063163,4063162,4059751,75015,42539267,36713468,3045823,432969,442082,4063175,4178154,42599849,3000119,201957,37311912,37311911,37311910,37311909,37311908,37311907,4172307,765023,4319457,433589,252442,437374,4172995,434154,4171248,443522,440840,4070650,4070651,4070648,4106274,4110550,761919,4129290,4173173,36674511,4269452,36717459,4173019,4170953,4173020,373870,4210315,4206035,4239540,4244718,4291447,193323,36716761,42537680,44784276,44784301,44784360,36717269,4050236,4025181,36715839,36716750,36717488,3188843,3175980,3173911,4173004,44792481,36712969,4180181,37109016,4243042,42538558,42538557,42536722,36717593,42538559,4320490,4318835,4214373,4132505,23034,36716745,443618,4174302,76221,36676688,42536730,42536732,42536731,42539039,37399026,42536733,435656,440847,4170445,439137,4221399,4239658,4071740,4048614,4071080,4048294,42536729,36716886,4048608,36717505,4308227,42535103,761782,37116437,42538263,42536564,439140,42537679,42537678,3182078,257375,4048286,4316374,4316375,318856,36715567,761851,761852,4298866,4300236,443523,4264166,137099,4243198,4210115,36717571,4047937,194598,2101016,2101813,4034967,4171104,4173513,46284810,4079843,4173194,4173193,4171092,4079846,3200880,2721181,4173180,4207827,42739015,4129520,4127831,3655876,4029424,76533,37017029,36715842,4176715,4071630,4275443,442573,36713477,45757111,4127248,44790222,4080067,4171058,4148533,4149402,4187237,4201764,4014720,4080889,4063160,4070222,4071507,4009404,42739012,4217975,45765512,4028938,4186424,3002549,442051,442050,314107,432976,442294,45757105,4064980,45757106,4065091,4064979,442053,433545,437060,443263,74433,78494,78218,443293,4063697,75326,442079,4084521,4080059,4038747,192979,193269,200472,197048,442080,442083,4140250,441925,441926,433837,79897,76491,76771,2212094,201368,193271,4060178,4129839,4034149,194439,192387,442417,435026,433832,439380,439379,4081774,195025,442071,4065635,2004846,76763,44790279,4059051,4085285,193827,197051,199087,193273,192694,196182,442440,4061852,46269810,4060036,4060037,4064819,37310898,4064821,45757117,4061850,37396169,194100,194711,193831,4060039,45772074,4064423,4064424,42536563,4060038,4064437,4300773,444404,252305,3655849,4091789,4038420,4038571,4038945,4039088,4038943,4038942,4038426,4039610,4150948,4038938,4038760,4038418,4038749,4038751,4038932,4039602,4038753,4038754,4038755,4038934,4038756,4255282,4038935,4038748,4039609,4038759,4175225,4038424,4171428,4039608,4038941,4038939,4038937,4038573,4039603,4194143,4173013,196159,434111,433274,432386,4107071,4034650,201136,4073719,2213351,4072862,2004767,4119975,2004746,2004802,2004822,2004811,46232934,2004765,2004707,2004862,2004783,2004768,2004724,2004348,4191809,44513736,44513756,44513729,44513747,2004731,44513476,44513468,44517168,44513799,44513812,4075024,44513634,44513740,44513733,44513516,44513803,44513791,44513816,44513752,2004747,2004726,2004730,4145318,4127249,73824,72378,42535816,200153,4049041,443323,4159154,4319461,4336392,4079236,4234421,4023797,4267567,4248080,4145439,4296604,4231407,195075,4211227,4025199,198221,4314877,442829,195019,4285751,4172869,4073428,36716687,37204732,4306199,374748,4321550,36716757,4084442,260212,4080888,135370,134760,4187201,4079851,4173002,4171097,4173179,4173198,4300467,194158,439931,42872438,42536566,4171096,4173181,4105262,4171102,42536745,258564,4171091,199925,4174299,4173000,436519,4071743,195064,438869,4071737,4071735,433029,4048292,4071076,4071736,4048610,3663236,4071717,4048282,3655840,4287783,4079855,4173197,4006329,4278842,4263343,43021073,313590,4171108,4243494,4048166,37017557,37017566,37019087,4071198,4301414,4080885,260841,4079973,4171123,4173332,4173001,4166754,4171100,4048607,197349,4307825,439390,4187920,4272706,4296470,4002900,4239205,4311670,4032920,4242693,4197221,197608,199086,4062566,372435,43531641,37110041,197970,444374,317941,4129183,4269051,3013297,4103235,42537765,4261326,4073438,4016476,4014718,198488,193539,201350,2721184,200784,4014716,4034100,4064854,4217071,4028645,44502733,42600135,4016475,4284028,4172142,196751,193264,200149,194710,201359,192372,4014292,4041726,4210719,4041725,4210721,44812174,4210718,4269036,4268422,4041724,4305235,4297988,36716548,36716549,4278356,437623,434427,433540,4173347,72693,75639,196764,4056338,437369,4245166,440833,4014156,4015415,4015152,4015410,4014446,435031,4062264,4215564,4015413,4055488,4014445,4015154,4014281,4014280,4014443,4075295,44811076,4297232,4015414,4014442,4015412,4014282,4062362,4015151,4015150,4034146,4015149,4151029,4182691,4023382,4295363,37116834,4006327,4336810,4225411,312383,4047392,2110314,4113199,436483,441363,4061341,4169890,4239471,4203918,45773073,4266066,4041280,45757789,4012240,443929,37110289,37108740,4158274,4162754,42534817,4253057,4146731,4169742,4273241,4028024,4185531,4011238,4228830,35622939,45757788,4057246,42535649,440465,4035468,4104354,4007389,4300708,4278355,4222573,4318816,4174510,4199437,4325457,4091199,4321231,4219015,4116187,4126074,441128,432695,439894,434695,45773507,4096468,433542,438220,435024,439393,141084,135601,134414,136743,4146816,4277110,4151903,321074,4219466,4146514,4242853,4144221,4182243,4220981,4305491,762490,4129519,3051741,3014064,2212548,3021584,4148890,438209,4062674,439348,4250175,4167493,4062574,4094910,4061785,4060237,4157329,4299535,4059982,4061686,4059984,4061411,4059981,3174212,4097427,4222915,4147043,4142021,4242724,4310910,4069200,4145125,4082863,4008884,4107401,4029786,4184594,4086393,4125778,4217564,4147874,4273560,4175637,194702,200160,4064709,200468,4058403,440519,440525,36675035,4138554,2618150,2618151,2618152,2618154,2618155,4176966,4112701,4311447,4172038,4313474,2213352,4129040,37110284,37110283,45757175,45757176,36712702,44784550,44784551,4098718,40318194,314479,258554,37311892,4300387,201516,37204277,4230947,4262580,443435,196762,196759,4133029,4060105,4120303,4230252,72692,4058679,440476,441645,435883,4171094,440475,441362,434435,440167,4308660,3189930,4171095,192972,434431,434714,37017049,437620,40757377,3043821,45770185,4082504,4150734,442419,442418,313272,313833,4328870,4065749,4061463,4024972,4297611,4339312,4062259,4034154,435028,434713,432389,4050255,4062257,4102318,4065753,3655209,3655210,4263344,42600161,4272315,45765500,442594,438481,440466,45757166,45773428,42539377,40479425,40484115,40485034,40479799,40484114,40484139,40485040,40479401,40483242,40484576,40484575,40485039,40483659,4182146,4061423,45765501,45757167,45757168,42538805,3046853,40484021,4153111,4042065,4042725,4055671,40481539,4149994,4113503,4114280,4150401,4173350,764688,764646,77619,4190767,4081292,46272536,4084693,4214930,3040000,2004342,2004546,2110339,4308664,4227423,4247895,2004788,4300391,4309622,4153287,2004343,192679,45757120,195014,42537766,197930,200157,192684,4095115,2109484,2109483,2004842,2004829,2004830,4230535,2004843,4319897,2004828,4071642,4172666,4135477,2004844,2004831,4033994,4086797,40482435,319138,258866,4173177,4318553,4109090,4115155,4003030,4129038,44782606,4003031,4150001,442078,200792,200789,4064977,201642,4170121) or concept_id in (4062112,373766,36684687,36684686,36684685,36684684,36684624,36684623,36684622,36684621,45772079,375250,375251,379009,443519,443520,442549,36713478,437061,435612,438823,45757159,45757160,4194811,40490338,4035336,4232323,196484,198216,196486,4060560,44790242,199891,195878,192376,4061158,4061159,4061806,3023524,4127253,4074424,4072837,4047564,4121924,2110315,2110322,2110307,2110319,44790189,36713471,4102697,4275129,4338888,4049040,4304587,4323287,198816,192699,4064960,194106,45757588,2110247,4032000,2004346,4316051,4021363,4073272,4239009,2004351,2004362,2004308,4263669,2110253,2004307,2004306,4174422,4120817,4071592,4047853,133028,4301415,136530,4174577,40318195,37206228,37206227,37206229,4173636,4312727,4065618,192974,192384,197346,198492,198499,197337,4327745,4244438,3049229,4083415,4260976,4089029,4186827,4159149,762709,762579,4096674,4147409,4146454,4147408,4091293,4264738,4009954,4060807,4187090,37116435,42536689,4048275,46270041,763027,4071063,3655212,3655211,137371,4080587,4042760,4161969,4275335,4195345,4041723,4210722,4195509,4198892,4156811,4150492,4041161,4042412,4042759,4042751,432427,4121417,4153452,4032345,4029420,36675039,4129184,4129843,433536,438490,439077,132685,4057976,4172871,4092760,45765502,45772082,45757169,42538806,4127241,442271,438226,435020,437946,80474,75608,72377,4170152,4014295,40483521,36713074,4014454,36713465,257370,4122747,4126736,46284319,4166847,4087113,4174056,3174052,4064286,4150640,4162239,3050414,4318858,4165092,4102446,4194977,2213358,2213357,2110198,44784365,4047857,4070526,44784364,77679,4169992,4150803,4073422,4008578,761781,4309364,4015143,4167497,4205240,198212,4091461,4298015,40406337,443213,4287409,4217655,4261819,4321563,4301269,4103876,4300979,443463,2721254,4301412,4168056,4174198,4047868,378544,4130539,4095178,4183593,42538556,4030259,4063159,4205437,4300419,42739013,2514557,42739550,2514564,2514572,42740403,2514571,42739401,2514570,2101831,2110318,4022098,4150538,4027161,442058,439094,439095,435331,435332,4143293,4150337,79098,76770,3017439,4073432,2110295,2110298,2110296,2110297,2110293,2110294,43530886,43530888,434480,42538560,436171,4129023,4079854,4171107,4227728,4306288,4330570,4049333,4192641,4243026,4066292,4193224,4336090,4199146,4307237,4178275,4203001,4297250,4240605,43020954,40258875,43530907,4212260,4336958,4296038,133024,4189561,4030009,4299609,193830,193275,199097,197625,37311704,200469,4060183,4142581,4218813,4180111,444082,440457,4252252,4294259,4032055,3186670,139888,36713271,36713272,4222152,442300,136755,138479,139895,138207,138484,2213255,4019096,4214677,2004331,4204679,44789306,2004330,141370,4061350,2110288,4169966,4169965,44790511,441922,137940,141639,136760,4173327,4079845,4129378,433604,42536567,439149,36716753,36716754,4033200,435076,4048930,4049028,4048742,42536568,198870,4173172,436234,433314,4071744,4048620,4171099,321683,40490447,4324606,4335250,4324607,4073406,40490322,4063171,81358,4104199,4174854,4267072,4071600,36716539,36716739,439093,42536749,432975,4161678,3655718,4134431,4326563,2111055,2110325,2110326,2110327,2110328,4290245,4073424,4094046,4078287,4014290,42539210,432375,440462,437931,4014456,4015422,45757165,4015163,4015421,3051868,44499531,4101082,4127106,199076,4030182,196758,196181,197049,192385,4101844,40483084,40483101,42535052,441919,435018,434097,4014296,4015162,4014455,42709935,42709936,42709937,4279146,2211785,2211784,2211782,37397735,4082534,42535558,42535559,42535553,42535246,40488298,40486918,40487413,45773218,46271899,45765925,44807918,40492794,40489798,42690777,3031159,40756968,44790261,2211750,2211749,2211748,2211747,2211752,2211751,2211754,2211753,2211756,2211755,2211757,3657421,4237338,4082672,4237339,4060624,4060626,4152021,4028775,441646,4126410,4126742,4122872,4126741,435325,4122742,4126740,4126737,4122745,4126408,4126734,36675671,4126739,45769826,4060157,4061971,438259,4079860,4098631,4336229,4301905,2110340,2110342,4307820,4059985,4113986,4113983,2004742,4113036,4112954,79091,79889,72374,4239301,40483205,4151214,4129178,4289453,2212169,46269813,4062569,4242401,4146482,4055426,4192542,4151414,4055970,4055823,4042238,4042239,4055289,4055822,4055288,4055954,37392365,4055285,2212173,4014769,4041878,4149386,4174400,4170107,4060623,4060622,4061129,4061130,4059697,4254201,2110338,4064145,4053158,4286205,197938,45757158,194101,3023791,4128172,4127208,44790180,44790181,4075171,2004729,442069,193544,37109810,4228344,4331179,44784097,2110320,2110321,2110308,2110309,4167018,4145316,4096535,4147415,442290,441644,442059,434712,4143292,443242,435610,441929,432701,4147395,435609,435021,321367,315884,4300078,440158,313543,43530951,4009180,4079858,435925,4149523,4129027,435604,42742355,35625971,4169915,440785,40525252,40519557,40524819,40517216,40524802,443246,441087,438214,4071599,4031282,4091198,4034153,40525253,40524805,4131031,4071632,4132649,4259640,4132657,4256500,4132658,4132659,4259641,4259638,4256502,4253755,4259642,4256501,4253756,4256497,4256496,4259639,4253753,4256498,4132652,4132653,4253752,4132654,4253754,4132655,4256499,4132656,4259636,765764,763782,4010343,4010841,4010843,4010842,4010344,765794,40394878,40514773,40388780,40356741,40394902,4020897,4127105,444098)) + +) I +) C UNION ALL +SELECT 62 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (436477,444365,42597053,42597052,42597051,201076,197612,438812,195319,42599848,2721147,2784560,2784559,2784555,2784556,2784557,2784558,2784561,2784562,440776,440454,42739743,2101811,2101812,2004526,4212941,2004525,4028644,4262136,4261479,40482050,437046,439085,441629,441921,4146774,441073,438196,40318618,441910,432682,441632,435318,435000,436742,438805,4113352,45757769,42537759,4114265,4149472,4106559,2004489,4168396,4138740,4074867,4074297,42537769,4113994,42573076,4032621,4170151,37206231,37206226,37206230,4147858,4257043,44513450,4017134,194694,4281684,75605,436228,2110292,4082412,444048,193821,439400,443705,195600,442596,439325,4143190,4138267,4185440,4303980,4066227,4182549,4223627,436169,4264914,4101477,4023781,4107907,4323434,4180859,4066994,4105762,4077275,4025828,4229716,4249728,4266243,4305348,4234979,4197900,4051784,4195243,4224143,4239192,4296872,4103148,4143018,4206453,4195297,4318662,4313005,4034753,4324965,4219608,4183557,4140509,439323,437929,438487,439324,439321,439322,439320,45768717,45771353,438211,436748,437618,4146775,439328,37110280,435868,434705,440453,439329,193532,434095,439331,439330,40318617,434689,434413,437933,440460,437045,195317,432689,439688,441631,42535215,44805020,2721146,2721148,2721149,2721150,2110331,2110332,2110333,2110334,2110335,2110336,2110329,2110330,37018340,43530913,43530914,43530928,43530915,43530916,43531712,43530957,43530917,43530958,43530959,43530960,43530918,43530961,43530919,43530962,43530908,43530920,43531713,43531710,43530921,43530922,43530910,43530964,43530923,43530952,43530924,43530925,43531714,43530953,43530926,43530927,43530911,43530966,43530929,43530948,43531715,43530954,43530930,43530955,43530931,43530956,43530932,43530933,43530965,43531716,43530934,43530912,43530935,43530936,43530937,43530939,43530940,43530941,43531711,43530943,43530947,43530944,43530945,43530967,43530968,4200986,44784128,4244408,4146772,4121775,4112315,4074301,4071638,4063309,4163996,4113976,444077,192379,197617,442346,439883,436474,195595,197333,4181114,4147533,4009642,4098441,4292089,4025639,4077454,441349,4280224,4214233,4294829,4328084,4046510,4243658,4183680,4216436,4324695,4324672,4045581,4204231,4269450,436747,4049453,4094081,4271203,4184150,4198404,4312358,4296459,4068253,4327321,4058932,4178578,4070939,4204206,4197681,4188764,4106892,4105063,4225572,4245041,4238207,44807900,2721012,4115153,40487510,4067106,4087102,192678,195594,194704,437920,441348,193820,196746,4323612,4051244,4078393,4224646,4167685,4224597,4211863,4064536,4247270,4003276,4209126,4175137,4047775,434094,4179796,4274315,4149423,4278107,4170457,4180568,4194113,4041728,4309780,4130670,4261327,4302162,4311698,4217670,436176,4221853,4313166,4310654,4216342,4031837,4253804,4200070,4049891,4339107,4168445,4219469,4001856,4195406,4189350,4285746,4244261,4085627,4006806,4033096,76482,42599849,4119975,44513476,4149994,4113503,4114280,4150401,4190767,4153287,4086797,4170121,37206228,37206227,37206229,4150538,4297250,4240605,43020954,43530907,4189561,4030009,4299609,2110325,2110326,2110327,2110328,4113986,4113983,4113036,4112954,46269813,44790180,44790181)) + +) I +) C UNION ALL +SELECT 63 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4015296,4014149,4014150,44808979,4015141,44808980,4014151,44808981,4015297,4015298,4014434,4015299,4015142,4014152,4015300,4015301,4015302,4014435,4178165,4181468,4181162,4324063,438542,45770261,4322726,4242241,4174506,4197245,4266517,4248725,4283690,4049621,4277749,4097608,4181751,4051642,4185780,4274955,4336226,439922,435640,444023,432430,444461,444417,4220085,434484,433864,442558,441678,443874,444267,438543,442355,443871,435655,4326232,442769,444067,4195157,4290009,4313026,4270513,4132434,4245908,762907,4336958,4180111,444098)) + +) I +) C UNION ALL +SELECT 64 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4015296,4014149,4014150,44808979,4015141,44808980,4014151,44808981,4015297,4015298,4014434,4015299,4015142,4014152,4015300,4015301,4015302,4014435,4178165,4181468,4181162,4324063,438542,45770261,4322726,4242241,4174506,4197245,4266517,4248725,4283690,4049621,4277749,4097608,4181751,4051642,4185780,4274955,4336226,439922,435640,444023,432430,444461,444417,434484,433864,442558,441678,443874,444267,438543,442355,443871,435655,4326232,442769,444067,4195157,4290009,4313026,4270513,4132434,4245908,762907,4336958,4180111,444098)) + +) I +) C UNION ALL +SELECT 65 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4015296,4014149,4014150,44808979,4015141,44808980,4014151,44808981,4015297,4015298,4014434,4015299,4015142,4014152,4015300,4015301,4015302,4014435,4178165,4181468,4181162,4324063,438542,45770261,4322726,4242241,4174506,4197245,4266517,4248725,4283690,4049621,4277749,4097608,4181751,4051642,4185780,4274955,4336226,439922,435640,444023,432430,444461,444417,434484,433864,442558,441678,443874,444267,438543,442355,443871,435655,442769,444067,4195157,4290009,4313026,4270513,4132434,4245908,762907,4336958,4180111,444098)) + +) I +) C UNION ALL +SELECT 66 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4015296,4014149,4014150,44808979,4015141,44808980,4014151,44808981,4015297,4015298,4014434,4015299,4015142,4014152,4015300,4015301,4015302,4014435,4178165,4181468,4181162,4324063,438542,45770261,4322726,4242241,4174506,4197245,4266517,4248725,4283690,4049621,4277749,4097608,4181751,4051642,4185780,4274955,4336226,439922,435640,444023,432430,444461,444417,434484,433864,442558,441678,443874,444267,438543,442355,443871,435655,442769,444067,4290009,4313026,4270513,4132434,4245908,762907,4336958,4180111,444098)) + +) I +) C UNION ALL +SELECT 67 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4015296,4014149,4014150,44808979,4015141,44808980,4014151,44808981,4015297,4015298,4014434,4015299,4015142,4014152,4015300,4015301,4015302,4014435,4178165,4181468,4181162,4324063,438542,45770261,4322726,4242241,4174506,4197245,4266517,4248725,4283690,4049621,4277749,4097608,4181751,4051642,4185780,4274955,4336226,439922,435640,444023,432430,444461,444417,434484,433864,442558,441678,443874,444267,438543,442355,443871,435655,442769,444067,4313026,4270513,4132434,4245908,762907,4336958,4180111,444098)) + +) I +) C UNION ALL +SELECT 68 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4015296,4014149,4014150,44808979,4015141,44808980,4014151,44808981,4015297,4015298,4014434,4015299,4015142,4014152,4015300,4015301,4015302,4014435,4178165,4181468,4181162,4324063,438542,45770261,4322726,4242241,4174506,4197245,4266517,4248725,4283690,4049621,4277749,4097608,4181751,4051642,4185780,4274955,4336226,439922,435640,444023,432430,444461,444417,434484,433864,442558,441678,443874,444267,438543,442355,443871,435655,442769,444067,4270513,4132434,4245908,762907,4336958,4180111,444098)) + +) I +) C UNION ALL +SELECT 69 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4015296,4014149,4014150,44808979,4015141,44808980,4014151,44808981,4015297,4015298,4014434,4015299,4015142,4014152,4015300,4015301,4015302,4014435,4178165,4181468,4181162,4324063,438542,45770261,4322726,4242241,4174506,4197245,4266517,4248725,4283690,4049621,4277749,4097608,4181751,4051642,4185780,4274955,4336226,439922,435640,444023,432430,444461,444417,434484,433864,442558,441678,443874,444267,438543,442355,443871,435655,442769,444067,4132434,4245908,762907,4336958,4180111,444098)) + +) I +) C UNION ALL +SELECT 70 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4015296,4014149,4014150,44808979,4015141,44808980,4014151,44808981,4015297,4015298,4014434,4015299,4015142,4014152,4015300,4015301,4015302,4014435,4178165,4181468,4181162,4324063,438542,45770261,4242241,4174506,4197245,4266517,4248725,4283690,4049621,4277749,4097608,4181751,4051642,4185780,4274955,4336226,439922,435640,444023,432430,444461,444417,434484,433864,442558,441678,443874,444267,438543,442355,443871,435655,442769,444067,4245908,762907,4336958,4180111,444098)) + +) I +) C UNION ALL +SELECT 71 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4015296,4014149,4014150,44808979,4015141,44808980,4014151,44808981,4015297,4015298,4014434,4015299,4015142,4014152,4015300,4015301,4015302,4014435,4178165,4181468,4181162,4324063,438542,45770261,4242241,4174506,4197245,4266517,4248725,4283690,4049621,4277749,4097608,4181751,4051642,4185780,4274955,4336226,439922,435640,444023,432430,444461,444417,434484,433864,442558,441678,443874,444267,438543,442355,443871,435655,442769,444067,762907,4336958,4180111,444098)) + +) I +) C UNION ALL +SELECT 72 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4015296,4014149,4014150,44808979,4015141,44808980,4014151,44808981,4015297,4015298,4014434,4015299,4015142,4014152,4015300,4015301,4015302,4014435,4178165,4181468,4181162,4324063,438542,45770261,4174506,4197245,4266517,4248725,4283690,4049621,4277749,4097608,4181751,4051642,4185780,4274955,4336226,439922,435640,444023,432430,444461,444417,434484,433864,442558,441678,443874,444267,438543,442355,443871,435655,442769,444067,762907,4336958,4180111,444098)) + +) I +) C UNION ALL +SELECT 73 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4015296,4014149,4014150,44808979,4015141,44808980,4014151,44808981,4015297,4015298,4014434,4015299,4015142,4014152,4015300,4015301,4015302,4014435,4178165,4181468,4181162,4324063,438542,45770261,4197245,4266517,4248725,4283690,4049621,4277749,4097608,4181751,4051642,4185780,4274955,4336226,439922,435640,444023,432430,444461,444417,434484,433864,442558,441678,443874,444267,438543,442355,443871,435655,442769,444067,762907,4336958,4180111,444098)) + +) I +) C UNION ALL +SELECT 74 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4014149,4014150,44808979,4015141,44808980,4014151,44808981,4015297,4015298,4014434,4015299,4015142,4014152,4015300,4015301,4015302,4014435,4178165,4181468,4181162,4324063,438542,45770261,4266517,4248725,4283690,4049621,4277749,4097608,4181751,4051642,4185780,4274955,4336226,439922,435640,444023,432430,444461,444417,434484,433864,442558,441678,443874,444267,438543,442355,443871,435655,442769,444067,762907,4336958,4180111,444098)) + +) I +) C UNION ALL +SELECT 75 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4014149,4014150,44808979,4015141,44808980,4014151,44808981,4015297,4015298,4014434,4015299,4015142,4014152,4015300,4015301,4015302,4014435,4178165,4181162,4324063,438542,45770261,4248725,4283690,4049621,4277749,4097608,4181751,4051642,4185780,4274955,4336226,439922,435640,444023,432430,444461,444417,434484,433864,442558,441678,443874,444267,438543,442355,443871,435655,442769,444067,762907,4336958,4180111,444098)) + +) I +) C UNION ALL +SELECT 76 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4014149,4014150,44808979,4015141,44808980,4014151,44808981,4015297,4015298,4014434,4015299,4015142,4014152,4015300,4015301,4015302,4014435,4178165,4181162,4324063,438542,45770261,4283690,4049621,4277749,4097608,4181751,4051642,4185780,4274955,4336226,439922,435640,444023,432430,444461,444417,434484,433864,442558,441678,443874,444267,438543,442355,443871,435655,442769,444067,762907,4336958,4180111,444098)) + +) I +) C UNION ALL +SELECT 77 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4014149,4014150,44808979,4015141,44808980,4014151,44808981,4015297,4015298,4014434,4015299,4015142,4014152,4015300,4015301,4015302,4014435,4178165,4181162,4324063,438542,45770261,4049621,4277749,4097608,4181751,4051642,4185780,4274955,4336226,439922,435640,444023,432430,444461,444417,434484,433864,442558,441678,443874,444267,438543,442355,443871,435655,442769,444067,762907,4336958,4180111,444098)) + +) I +) C UNION ALL +SELECT 78 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4014435,444067)) + +) I +) C UNION ALL +SELECT 79 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4015302,4014435,442769,444067)) + +) I +) C UNION ALL +SELECT 80 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4015301,4015302,4014435,442769,444067,4336958,444098)) + +) I +) C UNION ALL +SELECT 81 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4014150,44808979,4015141,44808980,4014151,44808981,4015297,4015298,4014434,4015299,4015142,4014152,4015300,4015301,4015302,4014435,4178165,4181162,4324063,438542,45770261,4277749,4097608,4181751,4051642,4185780,4274955,4336226,439922,435640,444023,432430,444461,444417,434484,433864,442558,441678,443874,444267,438543,442355,443871,435655,442769,444067,762907,4336958,4180111,444098)) + +) I +) C UNION ALL +SELECT 82 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4014150,44808979,4015141,44808980,4014151,44808981,4015297,4015298,4014434,4015299,4015142,4014152,4015300,4015301,4015302,4014435,4178165,4181162,4324063,438542,45770261,4097608,4181751,4051642,4185780,4274955,4336226,439922,435640,444023,432430,444461,444417,434484,433864,442558,441678,443874,444267,438543,442355,443871,435655,442769,444067,762907,4336958,4180111,444098)) + +) I +) C UNION ALL +SELECT 83 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4014150,44808979,4015141,44808980,4014151,44808981,4015297,4015298,4014434,4015299,4015142,4014152,4015300,4015301,4015302,4014435,4178165,4181162,4324063,438542,45770261,4181751,4051642,4185780,4274955,4336226,439922,435640,444023,432430,444461,444417,434484,433864,442558,441678,443874,444267,438543,442355,443871,435655,442769,444067,762907,4336958,4180111,444098)) + +) I +) C UNION ALL +SELECT 84 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4014150,44808979,4015141,44808980,4014151,44808981,4015297,4015298,4014434,4015299,4015142,4014152,4015300,4015301,4015302,4014435,4178165,4181162,438542,45770261,4051642,4185780,4274955,4336226,439922,435640,444023,432430,444461,444417,434484,433864,442558,441678,443874,444267,438543,442355,443871,435655,442769,444067,762907,4336958,4180111,444098)) + +) I +) C UNION ALL +SELECT 85 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (44808979,4015141,44808980,4014151,44808981,4015297,4015298,4014434,4015299,4015142,4014152,4015300,4015301,4015302,4014435,438542,45770261,4185780,4274955,4336226,439922,435640,444023,432430,444461,444417,434484,433864,442558,441678,443874,444267,438543,442355,443871,435655,442769,444067,762907,4336958,4180111,4181162,444098)) + +) I +) C UNION ALL +SELECT 86 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4014151,44808981,4015297,4015298,4014434,4015299,4015142,4014152,4015300,4015301,4015302,4014435,434484,433864,442558,441678,443874,444267,438543,442355,443871,435655,442769,444067,762907,4336958,4180111,444098)) + +) I +) C UNION ALL +SELECT 87 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (44808979,4015141,44808980,4014151,44808981,4015297,4015298,4014434,4015299,4015142,4014152,4015300,4015301,4015302,4014435,438542,45770261,4274955,4336226,439922,435640,444023,432430,444461,444417,434484,433864,442558,441678,443874,444267,438543,442355,443871,435655,442769,444067,762907,4336958,4180111,444098)) + +) I +) C UNION ALL +SELECT 88 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (44808981,4015297,4015298,4014434,4015299,4015142,4014152,4015300,4015301,4015302,4014435,433864,442558,441678,443874,444267,438543,442355,443871,435655,442769,444067,762907,4336958,4180111,444098)) + +) I +) C UNION ALL +SELECT 89 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4015300,4015301,4015302,4014435,435655,442769,444067,4336958,444098)) + +) I +) C UNION ALL +SELECT 90 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4014152,4015300,4015301,4015302,4014435,443871,435655,442769,444067,4336958,444098)) + +) I +) C UNION ALL +SELECT 91 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4015142,4014152,4015300,4015301,4015302,4014435,442355,443871,435655,442769,444067,762907,4336958,444098)) + +) I +) C UNION ALL +SELECT 92 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4015299,4015142,4014152,4015300,4015301,4015302,4014435,438543,442355,443871,435655,442769,444067,762907,4336958,444098)) + +) I +) C UNION ALL +SELECT 93 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4014434,4015299,4015142,4014152,4015300,4015301,4015302,4014435,444267,438543,442355,443871,435655,442769,444067,762907,4336958,4180111,444098)) + +) I +) C UNION ALL +SELECT 94 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4015141,44808980,4014151,44808981,4015297,4015298,4014434,4015299,4015142,4014152,4015300,4015301,4015302,4014435,438542,45770261,4336226,439922,435640,444023,432430,444461,444417,434484,433864,442558,441678,443874,444267,438543,442355,443871,435655,442769,444067,762907,4336958,4180111,444098)) + +) I +) C UNION ALL +SELECT 95 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4015141,44808980,4014151,44808981,4015297,4015298,4014434,4015299,4015142,4014152,4015300,4015301,4015302,4014435,45770261,439922,435640,444023,432430,444461,444417,434484,433864,442558,441678,443874,444267,438543,442355,443871,435655,442769,444067,762907,4336958,4180111,444098)) + +) I +) C UNION ALL +SELECT 96 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (44808980,4014151,44808981,4015297,4015298,4014434,4015299,4015142,4014152,4015300,4015301,4015302,4014435,45770261,435640,444023,432430,444461,444417,434484,433864,442558,441678,443874,444267,438543,442355,443871,435655,442769,444067,762907,4336958,4180111,444098)) + +) I +) C UNION ALL +SELECT 97 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4014151,44808981,4015297,4015298,4014434,4015299,4015142,4014152,4015300,4015301,4015302,4014435,45770261,444023,432430,444461,444417,434484,433864,442558,441678,443874,444267,438543,442355,443871,435655,442769,444067,762907,4336958,4180111,444098)) + +) I +) C UNION ALL +SELECT 98 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4014151,44808981,4015297,4015298,4014434,4015299,4015142,4014152,4015300,4015301,4015302,4014435,45770261,432430,444461,444417,434484,433864,442558,441678,443874,444267,438543,442355,443871,435655,442769,444067,762907,4336958,4180111,444098)) + +) I +) C UNION ALL +SELECT 99 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4014151,44808981,4015297,4015298,4014434,4015299,4015142,4014152,4015300,4015301,4015302,4014435,444461,444417,434484,433864,442558,441678,443874,444267,438543,442355,443871,435655,442769,444067,762907,4336958,4180111,444098)) + +) I +) C UNION ALL +SELECT 100 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4014151,44808981,4015297,4015298,4014434,4015299,4015142,4014152,4015300,4015301,4015302,4014435,444417,434484,433864,442558,441678,443874,444267,438543,442355,443871,435655,442769,444067,762907,4336958,4180111,444098)) + +) I +) C UNION ALL +SELECT 101 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4015297,4015298,4014434,4015299,4015142,4014152,4015300,4015301,4015302,4014435,442558,441678,443874,444267,438543,442355,443871,435655,442769,444067,762907,4336958,4180111,444098)) + +) I +) C UNION ALL +SELECT 102 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4015298,4014434,4015299,4015142,4014152,4015300,4015301,4015302,4014435,441678,443874,444267,438543,442355,443871,435655,442769,444067,762907,4336958,4180111,444098)) + +) I +) C UNION ALL +SELECT 103 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4015298,4014434,4015299,4015142,4014152,4015300,4015301,4015302,4014435,443874,444267,438543,442355,443871,435655,442769,444067,762907,4336958,4180111,444098)) + +) I +) C UNION ALL +SELECT 104 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4215648,4312095,3655216,3655215,3655206,3655205,4152444,45763635,3655208,3655207,4147060,44783183,4135209,40483581,440464,4100193,4185718,4232953,4173946,42537767,42537768,4174543,4194053,4216382,4266839,42537762,42537770,42537771,437611,4276942,42539701,42537764,4066014,42537763,40493226,3655214,3655213,4149029,4066151,4063939,42872572,42872571,4112952,4113218,43530979,4107071,200153,4336392,4314877,42537765,4023382,3655209,3655210,4308664,4227423,4247895,4300391,45757120,42537766,4095115,4316051,4239009,4174577,4187090,3655212,3655211,4080587,2110295,2110298,2110297,4296038,199076,4151214,4242401,4129027)) + +) I +) C UNION ALL +SELECT 107 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4200678,4300368,4093429,2004347,4107080,4142956,40757216,40757177,40259069,4074443,4074426,4074427,2004345,4196129,4001541,4306064,4100257,4084217,4085257,40347147,40378260,4319321,40490893,4190526,2110299,2110300,4251314,40480864,4032749,2110240,2722205,2110245,2722217,4074877,4074876,4214980,2004348,4267567,2004342,2004788,2004343,4074424,4072837,2110247,4032000,2004346,4021363,4073272,2004351,2004362,4263669,2004308,2110253,2004307,2004306,2110296,2110293,2110294,40258875,4019096,2004331,2004330,4336229,4301905)) + +) I +) C UNION ALL +SELECT 108 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (432452,4014461,4151169,4015275,4149449,37016220,37016221,4149457,37016222,37018684,46271955,37016216,37016217,37016218,37016213,46271814,37018683,37018889,37016212,762577,37016211,4014299,4149451,4150406,4150405,4150404,4015274,36684754,37207968,36684753,36684752,36684751,4141513,4195545,38001501,439128,4148097,4118056,72726,36675173,440847,4086393,4217564,4147874,4273560,4175637,4064709,4058403,440519,440525,36675035,37311892,2109484,2109483,373766,36684687,36684686,36684685,36684684,36684624,36684623,36684622,36684621,45772079,375250,375251,379009,443519,443520,136530,2514572,42740403,2514571,42739401,2514570,2111055,435925,4149523)) + +) I +) C UNION ALL +SELECT 109 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (1305058)) +UNION select c.concept_id + from @vocabulary_database_schema.CONCEPT c + join @vocabulary_database_schema.CONCEPT_ANCESTOR ca on c.concept_id = ca.descendant_concept_id + WHERE c.invalid_reason is null + and (ca.ancestor_concept_id in (1305058)) + +) I +) C UNION ALL +SELECT 111 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (441092,4061424,40760833,4139126,4015590,3011536,43054893,43021054,37017322,441085,192380,4210896,3006722,40759953,195877,4061522,437937,4030415,197031,4061672,43021951,43021952,3045823,432969,3000119,4217975,4038942,4150948,4148890,4094910,4061785,4060237,4299535,4059982,4061686,4059984,4061411,4059981,4133029,442594,440466,4061423,4214930,3040000,196484,4042412,198212,4129023,4218813,432375,441919,4307820,4059985,4239301,4041878,3023791,40519557,40524802,40524805)) + +) I +) C UNION ALL +SELECT 112 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4198125,4149783,193525,314099,437688,440216,439403,4162865,197050,4034308,2004824,435880,435616,4154997,441959,436768,432967,434701,4099889,4079835,435887,434089,4143074,438489,438203,4129039,80156,321638,314423,4027371,73282,76756,375016,2110305,2110304,4321386,436740,437334,72973,3170656,435875,433822,80205,197339,193825,314426,196175,201920,440162,433826,432373,43020670,441647,4120986,433828,442421,2004823,4170118,73265,192691,194700,201958,438815,79890,4053583,201091,4059763,442913,440787,443700,137613,438204,442442,81636,40479820,78210,4071437,437341,201083,43022052,79146,4196670,80165,73268,4203009,80204,201366,196757,4145315,441682,433027,436219,441680,81360,4047725,442827,80463,4064277,4063297,4060672,4064178,4064169,4064172,4143204,4064175,3657563,76772,76750,77340,74415,4024659,443214,442565,4058113,442441,316478,2212713,437090,433603,438478,437935,4311256,442088,72696,4302252,4062565,81923,444245,77662,4030872,4098582,4227141,4142340,436485,440788,321080,133284,436180,433823,433266,79896,4197403,4023420,4180743,4058246,4079751,442772,43530880,77335,78818,443325,439880,194699,443292,4130310,77338,2004764,4016059,443295,432977,441081,314432,315327,42872398,439893,438205,434697,442918,4060424,436166,435023,314090,4063183,78817,4030429,4034094,4199931,437041,2110337,75015,4063175,4178154,194598,4080067,442051,433545,78218,4080059,441926,76491,442071,4038426,4038755,434111,432386,72378,443323,195019,135370,258564,313590,197608,199086,444374,317941,4014718,198488,201350,200784,4014716,4034100,4064854,4284028,196751,200149,194710,192372,437623,433540,72693,75639,439393,141084,136743,4146816,4277110,321074,438209,4062674,439348,4167493,4062574,194702,200468,201516,435883,4082504,313272,192679,192684,196486,199891,192376,4327745,4032345,433536,132685,4127241,438226,437946,75608,4087113,435331,43530886,43530888,4142581,138479,139895,2110288,441922,136760,81358,437931,196758,192385,434097,2211782,4061971,2110340,79091,72374,4146482,194101,37109810,442290,434712,441929,435021,315884,4300078,440158,313543,435604,35625971,440785)) + +) I +) C UNION ALL +SELECT 113 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (440457,4252252,4294259,4032055)) + +) I +) C; + +UPDATE STATISTICS #Codesets; + + +SELECT event_id, person_id, start_date, end_date, op_start_date, op_end_date, visit_occurrence_id +INTO #qualified_events +FROM +( + select pe.event_id, pe.person_id, pe.start_date, pe.end_date, pe.op_start_date, pe.op_end_date, row_number() over (partition by pe.person_id order by pe.start_date DESC) as ordinal, cast(pe.visit_occurrence_id as bigint) as visit_occurrence_id + FROM (-- Begin Primary Events +select P.ordinal as event_id, P.person_id, P.start_date, P.end_date, op_start_date, op_end_date, cast(P.visit_occurrence_id as bigint) as visit_occurrence_id +FROM +( + select E.person_id, E.start_date, E.end_date, + row_number() OVER (PARTITION BY E.person_id ORDER BY E.sort_date ASC, E.event_id) ordinal, + OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date, cast(E.visit_occurrence_id as bigint) as visit_occurrence_id + FROM + ( + select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 20) +) C + + +-- End Condition Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 20) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 20) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 20) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 20) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 20) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 63) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 20) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 20) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 63) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 3 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 20) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 20) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 20) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 4 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 21) +) C + + +-- End Condition Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 21) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 21) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 21) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 21) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 21) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 64) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 21) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 21) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 64) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 3 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 21) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 21) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 21) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 4 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 22) +) C + + +-- End Condition Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 22) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 22) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 22) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 22) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 22) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 65) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 22) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 22) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 65) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 3 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 22) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 22) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 22) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 4 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 23) +) C + + +-- End Condition Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 23) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 23) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 23) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 23) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 23) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 66) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 23) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 23) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 66) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 3 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 23) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 23) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 23) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 4 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 24) +) C + + +-- End Condition Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 24) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 24) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 24) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 24) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 24) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 67) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 24) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 24) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 67) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 3 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 24) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 24) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 24) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 4 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 25) +) C + + +-- End Condition Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 25) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 25) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 25) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 25) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 25) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 68) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 25) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 25) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 68) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 3 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 25) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 25) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 25) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 4 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 26) +) C + + +-- End Condition Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 26) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 26) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 26) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 26) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 26) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 69) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 26) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 26) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 69) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 3 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 26) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 26) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 26) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 4 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 3) +) C + + +-- End Condition Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 3) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 3) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 3) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 3) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 3) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 70) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 3) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 3) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 70) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 3 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 3) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 3) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 3) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 4 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 3) +) C + + +-- End Procedure Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 3) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 3) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 3) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 3) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 3) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 70) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 3) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 3) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 70) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 3 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 3) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 3) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 3) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 4 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 14) +) C + + +-- End Condition Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 14) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 14) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 14) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 14) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 14) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 71) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 14) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 14) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 71) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 3 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 14) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 14) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 14) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 4 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 17) +) C + + +-- End Condition Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 17) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 17) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 17) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 17) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 17) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 72) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 17) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 17) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 72) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 3 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 17) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 17) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 17) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 4 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 18) +) C + + +-- End Condition Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 18) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 18) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 18) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 18) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 18) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Era Criteria +select C.person_id, C.condition_era_id as event_id, C.start_date, C.end_date, + CAST(NULL as bigint) as visit_occurrence_id, C.start_date as sort_date +from +( + select ce.person_id,ce.condition_era_id,ce.condition_concept_id,ce.condition_occurrence_count,ce.condition_era_start_date as start_date, ce.condition_era_end_date as end_date + FROM @cdm_database_schema.CONDITION_ERA ce +where ce.condition_concept_id in (SELECT concept_id from #Codesets where codeset_id = 73) +) C + + +-- End Condition Era Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 18) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 18) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 73) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 3 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 18) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 18) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 18) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 4 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 9) +) C + + +-- End Condition Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 9) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 9) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 9) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 9) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 9) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 74) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 9) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 9) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 74) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 3 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 9) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 9) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 9) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 4 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 9) +) C + + +-- End Procedure Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 9) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 9) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 9) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 9) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 9) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 74) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 9) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 9) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 74) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 3 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 9) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 9) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 9) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 4 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 19) +) C + + +-- End Condition Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 19) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 19) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 19) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 19) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 19) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 75) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 19) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 19) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 75) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 3 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 19) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 19) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 19) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 4 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 28) +) C + + +-- End Condition Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 28) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 28) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 28) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 28) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 28) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 76) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 28) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 28) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 76) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 3 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 28) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 28) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 28) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 4 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 29) +) C + + +-- End Condition Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 29) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 29) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 29) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 29) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 29) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 77) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 29) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 29) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 77) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 3 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 29) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 29) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 29) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 4 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 30) +) C + + +-- End Condition Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 30) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 30) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 30) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 30) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 30) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 81) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 30) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 30) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 81) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 3 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 30) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 30) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 30) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 4 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 30) +) C + + +-- End Procedure Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 30) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 30) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 30) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 30) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 30) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 81) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 30) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 30) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 81) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 3 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 30) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 30) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 30) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 4 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 31) +) C + + +-- End Condition Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 31) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 31) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 31) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 31) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 31) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 82) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 31) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 31) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 82) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 3 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 31) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 31) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 31) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 4 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 32) +) C + + +-- End Condition Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 32) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 32) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 32) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 32) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 32) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 83) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 32) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 32) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 83) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 3 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 32) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 32) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 32) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 4 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 33) +) C + + +-- End Condition Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 33) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 33) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 33) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 33) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 33) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 84) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 33) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 33) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 84) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 3 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 33) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 33) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 33) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 4 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 34) +) C + + +-- End Condition Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 34) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 34) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 34) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 34) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 34) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 85) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 34) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 34) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 85) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 3 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 34) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 34) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 34) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 4 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 34) +) C + + +-- End Procedure Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 34) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 34) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 34) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 34) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 34) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 85) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 34) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 34) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 85) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 3 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 34) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 34) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 34) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 4 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 35) +) C + + +-- End Condition Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 35) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 35) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 35) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 35) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 35) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 87) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 35) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 35) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 87) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 3 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 35) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 35) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 35) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 4 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 36) +) C + + +-- End Condition Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 36) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 36) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 36) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 36) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 36) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 94) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 36) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 36) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 94) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 3 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 36) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 36) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 36) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 4 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 36) +) C + + +-- End Procedure Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 36) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 36) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 36) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 36) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 36) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 94) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 36) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 36) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 94) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 3 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 36) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 36) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 36) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 4 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 37) +) C + + +-- End Condition Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 37) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 37) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 37) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 37) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 37) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 95) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 37) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 37) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 95) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 3 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 37) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 37) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 37) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 4 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 38) +) C + + +-- End Procedure Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 38) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 38) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 38) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 38) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 38) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 96) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 38) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 38) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 96) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 3 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 38) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 38) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 38) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 4 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 38) +) C + + +-- End Condition Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 38) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 38) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 38) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 38) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 38) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 96) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 38) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 38) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 96) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 3 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 38) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 38) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 38) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 4 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 40) +) C + + +-- End Condition Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 40) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 40) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 40) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 40) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 40) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 97) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 40) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 40) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 97) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 3 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 40) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 40) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 40) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 4 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 40) +) C + + +-- End Procedure Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 40) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 40) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 40) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 40) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 40) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 97) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 40) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 40) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 97) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 3 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 40) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 40) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 40) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 4 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 41) +) C + + +-- End Condition Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 41) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 41) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 41) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 41) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 41) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 98) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 41) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 41) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 98) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 3 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 41) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 41) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 41) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 4 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 42) +) C + + +-- End Condition Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 42) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 42) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 42) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 42) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 42) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 99) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 42) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 42) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 99) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 3 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 42) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 42) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 42) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 4 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 43) +) C + + +-- End Condition Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 43) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 43) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 43) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 43) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 43) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 100) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 43) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 43) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 100) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 3 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 43) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 43) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 43) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 4 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 44) +) C + + +-- End Condition Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 44) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 44) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 44) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 44) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 44) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 86) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 44) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 44) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 86) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 3 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 44) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 44) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 44) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 4 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 45) +) C + + +-- End Condition Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 45) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 45) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 45) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 45) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 45) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 88) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 45) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 45) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 88) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 3 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 45) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 45) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 45) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 4 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 45) +) C + + +-- End Procedure Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 45) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 45) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 45) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 45) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 45) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 88) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 45) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 45) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 88) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 3 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 45) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 45) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 45) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 4 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 47) +) C + + +-- End Condition Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 47) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 47) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 47) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 47) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 47) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 101) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 47) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 47) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 101) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 3 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 47) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 47) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 47) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 4 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 47) +) C + + +-- End Procedure Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 47) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 47) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 47) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 47) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 47) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 101) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 47) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 47) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 101) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 3 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 47) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 47) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 47) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 4 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 48) +) C + + +-- End Condition Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 48) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 48) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 48) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 48) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 48) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 102) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 48) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 48) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 102) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 3 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 48) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 48) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 48) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 4 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 48) +) C + + +-- End Procedure Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 48) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 48) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 48) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 48) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 48) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 102) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 48) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 48) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 102) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 3 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 48) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 48) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 48) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 4 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 49) +) C + + +-- End Condition Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 49) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 49) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 49) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 49) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 49) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 103) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 49) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 49) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 103) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 3 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 49) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 49) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 49) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 4 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 50) +) C + + +-- End Condition Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 50) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 50) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 50) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 50) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 50) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 93) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 50) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 50) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 93) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 3 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 50) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 50) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 50) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 4 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 50) +) C + + +-- End Procedure Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 50) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 50) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 50) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 50) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 50) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 93) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 50) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 50) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 93) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 3 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 50) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 50) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 50) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 4 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 12) +) C + + +-- End Procedure Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 12) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 12) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 12) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 12) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 12) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 92) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 12) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 12) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 92) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 3 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 12) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 12) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 12) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 4 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 12) +) C + + +-- End Condition Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 12) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 12) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 12) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 12) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 12) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 92) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 12) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 12) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 92) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 3 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 12) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 12) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 12) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 4 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 11) +) C + + +-- End Condition Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 11) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 11) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 11) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 11) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 11) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 91) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 11) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 11) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 91) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 3 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 11) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 11) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 11) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 4 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 11) +) C + + +-- End Procedure Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 11) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 11) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 11) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 11) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 11) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 91) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 11) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 11) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 91) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 3 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 11) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 11) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 11) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 4 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 10) +) C + + +-- End Condition Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 10) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 10) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 10) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 10) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 10) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 90) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 10) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 10) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 90) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 3 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 10) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 10) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 10) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 4 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 10) +) C + + +-- End Procedure Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 10) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 10) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 10) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 10) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 10) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 90) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 10) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 10) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 90) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 3 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 10) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 10) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 10) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 4 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 51) +) C + + +-- End Condition Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 51) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 51) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 51) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 51) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 51) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 89) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 51) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 51) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 89) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 3 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 51) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 51) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 51) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 4 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 51) +) C + + +-- End Procedure Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 51) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 51) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 51) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 51) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 51) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 89) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 51) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 51) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 89) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 3 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 51) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 51) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 51) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 4 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 13) +) C + + +-- End Condition Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 13) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 13) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 13) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 13) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 13) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 80) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 13) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 13) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 80) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 3 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 13) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 13) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 13) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 4 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 13) +) C + + +-- End Procedure Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 13) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 13) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 13) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 13) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 13) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 80) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 13) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 13) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 80) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 3 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 13) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 13) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 13) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 4 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 15) +) C + + +-- End Condition Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 15) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 15) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 15) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 15) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 15) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 79) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 15) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 15) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 79) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 3 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 15) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 15) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 15) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 4 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 15) +) C + + +-- End Procedure Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 15) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 15) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 15) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 15) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 15) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 79) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 15) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 15) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 79) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 3 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 15) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 15) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 15) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 4 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 52) +) C + + +-- End Procedure Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 52) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 52) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 52) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 52) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 52) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 78) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 52) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 52) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 78) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 3 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 52) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 52) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 52) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 4 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 52) +) C + + +-- End Condition Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 52) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 52) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 52) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 52) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 52) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 78) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 52) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 52) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 78) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 3 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 52) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 52) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 52) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 4 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 53) +) C + + +-- End Condition Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 53) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 53) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 53) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 1 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 53) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 53) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 53) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 2 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 53) +) C + + +-- End Procedure Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 53) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 53) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 53) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 1 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 53) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 53) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 53) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 2 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Condition Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 3 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 4 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Observation Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 3 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 4 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Procedure Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 3 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 4 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 5) +) C + + +-- End Procedure Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 5) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 5) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 5) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 5) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 5) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 5) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 5) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 5) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 5) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 5) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 5) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 5) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 5) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 6 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 5) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 5) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 5) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 7 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Condition Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 6 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 5) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 7 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 8 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Observation Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 6 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 5) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 7 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 8 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Measurement Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 6 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 5) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 7 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 8 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Condition Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 6 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 5) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 7 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 8 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 9 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 10 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-196,P.START_DATE) AND A.START_DATE <= DATEADD(day,-112,P.START_DATE) AND A.START_DATE >= DATEADD(day,-55,P.START_DATE) AND A.START_DATE <= DATEADD(day,0,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 1 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-196,P.START_DATE) AND A.START_DATE <= DATEADD(day,-112,P.START_DATE) AND A.START_DATE >= DATEADD(day,-55,P.START_DATE) AND A.START_DATE <= DATEADD(day,0,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 1 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 11 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Observation Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 6 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 5) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 7 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 8 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 9 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 10 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-196,P.START_DATE) AND A.START_DATE <= DATEADD(day,-112,P.START_DATE) AND A.START_DATE >= DATEADD(day,-55,P.START_DATE) AND A.START_DATE <= DATEADD(day,0,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 1 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-196,P.START_DATE) AND A.START_DATE <= DATEADD(day,-112,P.START_DATE) AND A.START_DATE >= DATEADD(day,-55,P.START_DATE) AND A.START_DATE <= DATEADD(day,0,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 1 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 11 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Measurement Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 6 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 5) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 7 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 8 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 9 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 10 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 11 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 12 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-196,P.START_DATE) AND A.START_DATE <= DATEADD(day,-112,P.START_DATE) AND A.START_DATE >= DATEADD(day,-55,P.START_DATE) AND A.START_DATE <= DATEADD(day,0,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 1 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-196,P.START_DATE) AND A.START_DATE <= DATEADD(day,-112,P.START_DATE) AND A.START_DATE >= DATEADD(day,-55,P.START_DATE) AND A.START_DATE <= DATEADD(day,0,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 1 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 13 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Procedure Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 6 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 5) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 7 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 8 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 9 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 10 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 11 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 12 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-196,P.START_DATE) AND A.START_DATE <= DATEADD(day,-112,P.START_DATE) AND A.START_DATE >= DATEADD(day,-55,P.START_DATE) AND A.START_DATE <= DATEADD(day,0,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 1 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-196,P.START_DATE) AND A.START_DATE <= DATEADD(day,-112,P.START_DATE) AND A.START_DATE >= DATEADD(day,-55,P.START_DATE) AND A.START_DATE <= DATEADD(day,0,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 1 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 13 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 111) +) C + + +-- End Condition Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 111) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 111) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 111) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 111) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 111) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 111) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 111) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 111) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 111) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 111) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 111) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 111) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 111) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 6 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 111) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 111) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 5) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 7 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 111) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 111) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 8 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 111) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 111) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 9 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 111) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 111) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 10 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 111) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 111) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 111) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 11 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 111) +) C + + +-- End Observation Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 111) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 111) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 111) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 111) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 111) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 111) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 111) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 111) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 111) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 111) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 111) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 111) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 111) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 6 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 111) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 111) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 5) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 7 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 111) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 111) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 8 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 111) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 111) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 9 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 111) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 111) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 10 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 111) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 111) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 111) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 11 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 111) +) C + + +-- End Measurement Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 111) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 111) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 111) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 111) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 111) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 111) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 111) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 111) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 111) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 111) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 111) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 111) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 111) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 6 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 111) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 111) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 5) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 7 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 111) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 111) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 8 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 111) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 111) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 9 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 111) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 111) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 10 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 111) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 111) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 111) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 11 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 111) +) C + + +-- End Procedure Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 111) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 111) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 111) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 111) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 111) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 111) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 111) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 111) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 111) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 111) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 111) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 111) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 111) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 6 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 111) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 111) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 5) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 7 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 111) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 111) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 8 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 111) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 111) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 9 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 111) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 111) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 10 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 111) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 111) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 111) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 11 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Condition Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 6 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 5) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 7 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 8 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 9 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 10 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 11 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Observation Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 6 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 5) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 7 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 8 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 9 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 10 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 11 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Procedure Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 6 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 5) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 7 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 8 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 9 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 10 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 11 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 113) +) C + + +-- End Condition Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 113) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 113) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 113) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 113) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 113) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 113) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 113) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 113) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 113) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 113) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 113) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 113) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 113) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 6 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 113) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 113) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 5) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 7 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 113) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 113) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 8 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 113) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 113) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 9 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 113) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 113) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 10 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 113) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 113) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 113) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 11 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Condition Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 6 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 5) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 7 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 8 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 9 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 10 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 11 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Observation Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 6 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 5) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 7 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 8 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 9 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 10 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 11 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Procedure Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 6 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 5) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 7 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 8 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 9 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 10 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 11 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Measurement Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 6 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 5) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 7 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 8 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 9 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 10 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 11 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 6 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 5) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 7 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 8 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 9 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 10 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,56,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 11 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,56,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 12 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,56,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 13 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,56,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 14 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 6 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 5) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 7 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 8 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 9 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 10 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,56,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 11 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,56,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 12 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,56,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 13 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,56,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 14 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + + ) E + JOIN @cdm_database_schema.observation_period OP on E.person_id = OP.person_id and E.start_date >= OP.observation_period_start_date and E.start_date <= op.observation_period_end_date + WHERE DATEADD(day,0,OP.OBSERVATION_PERIOD_START_DATE) <= E.START_DATE AND DATEADD(day,0,E.START_DATE) <= OP.OBSERVATION_PERIOD_END_DATE +) P + +-- End Primary Events +) pe + +) QE + +; + +--- Inclusion Rule Inserts + +select 0 as inclusion_rule_id, person_id, event_id +INTO #Inclusion_0 +FROM +( + select pe.person_id, pe.event_id + FROM #qualified_events pe + +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM #qualified_events E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM #qualified_events P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,140,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM #qualified_events P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,140,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) > 0 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id AND AC.event_id = pe.event_id +) Results +; + +select 1 as inclusion_rule_id, person_id, event_id +INTO #Inclusion_1 +FROM +( + select pe.person_id, pe.event_id + FROM #qualified_events pe + +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM #qualified_events E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from #qualified_events p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM #qualified_events P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from #qualified_events p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM #qualified_events P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 2 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id AND AC.event_id = pe.event_id +) Results +; + +select 2 as inclusion_rule_id, person_id, event_id +INTO #Inclusion_2 +FROM +( + select pe.person_id, pe.event_id + FROM #qualified_events pe + +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM #qualified_events E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from #qualified_events p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM #qualified_events P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-28,P.START_DATE) AND A.START_DATE <= DATEADD(day,0,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from #qualified_events p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM #qualified_events P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-28,P.START_DATE) AND A.START_DATE <= DATEADD(day,0,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from #qualified_events p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM #qualified_events P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-28,P.START_DATE) AND A.START_DATE <= DATEADD(day,0,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, p.person_id, p.event_id +from #qualified_events p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM #qualified_events P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-28,P.START_DATE) AND A.START_DATE <= DATEADD(day,0,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, p.person_id, p.event_id +from #qualified_events p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM #qualified_events P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-14,P.START_DATE) AND A.START_DATE <= DATEADD(day,0,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, p.person_id, p.event_id +from #qualified_events p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM #qualified_events P +JOIN ( + -- Begin Drug Era Criteria +select C.person_id, C.drug_era_id as event_id, C.start_date, C.end_date, + CAST(NULL as bigint) as visit_occurrence_id,C.start_date as sort_date +from +( + select de.person_id,de.drug_era_id,de.drug_concept_id,de.drug_exposure_count,de.gap_days,de.drug_era_start_date as start_date, de.drug_era_end_date as end_date + FROM @cdm_database_schema.DRUG_ERA de +where de.drug_concept_id in (SELECT concept_id from #Codesets where codeset_id = 109) +) C + + +-- End Drug Era Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-14,P.START_DATE) AND A.START_DATE <= DATEADD(day,0,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 6 as index_id, p.person_id, p.event_id +from #qualified_events p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM #qualified_events P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-14,P.START_DATE) AND A.START_DATE <= DATEADD(day,0,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 7 as index_id, p.person_id, p.event_id +from #qualified_events p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM #qualified_events P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-14,P.START_DATE) AND A.START_DATE <= DATEADD(day,0,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 8 as index_id, p.person_id, p.event_id +from #qualified_events p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM #qualified_events P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-14,P.START_DATE) AND A.START_DATE <= DATEADD(day,0,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 9 as index_id, p.person_id, p.event_id +from #qualified_events p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM #qualified_events P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-14,P.START_DATE) AND A.START_DATE <= DATEADD(day,0,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 10 as index_id, p.person_id, p.event_id +from #qualified_events p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM #qualified_events P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-28,P.START_DATE) AND A.START_DATE <= DATEADD(day,0,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 11 as index_id, p.person_id, p.event_id +from #qualified_events p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM #qualified_events P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-28,P.START_DATE) AND A.START_DATE <= DATEADD(day,0,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 12 as index_id, p.person_id, p.event_id +from #qualified_events p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM #qualified_events P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-28,P.START_DATE) AND A.START_DATE <= DATEADD(day,0,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 13 as index_id, p.person_id, p.event_id +from #qualified_events p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM #qualified_events P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-28,P.START_DATE) AND A.START_DATE <= DATEADD(day,0,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 14 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id AND AC.event_id = pe.event_id +) Results +; + +select 3 as inclusion_rule_id, person_id, event_id +INTO #Inclusion_3 +FROM +( + select pe.person_id, pe.event_id + FROM #qualified_events pe + +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM #qualified_events E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id , A.domain_concept_id +FROM #qualified_events P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date, C.condition_concept_id as domain_concept_id +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 61) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(DISTINCT cc.domain_concept_id) >= 2 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id , A.domain_concept_id +FROM #qualified_events P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date, C.procedure_concept_id as domain_concept_id +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 61) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(DISTINCT cc.domain_concept_id) >= 2 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id , A.domain_concept_id +FROM #qualified_events P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date, C.measurement_concept_id as domain_concept_id +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 61) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(DISTINCT cc.domain_concept_id) >= 2 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id , A.domain_concept_id +FROM #qualified_events P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date, C.observation_concept_id as domain_concept_id +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 61) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(DISTINCT cc.domain_concept_id) >= 2 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 4 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM #qualified_events E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM #qualified_events P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 61) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM #qualified_events P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 61) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM #qualified_events P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 61) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM #qualified_events P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 61) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 2 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) > 0 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id AND AC.event_id = pe.event_id +) Results +; + +select 4 as inclusion_rule_id, person_id, event_id +INTO #Inclusion_4 +FROM +( + select pe.person_id, pe.event_id + FROM #qualified_events pe + +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM #qualified_events E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM #qualified_events P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C +JOIN @cdm_database_schema.PERSON P on C.person_id = P.person_id +WHERE (YEAR(C.start_date) - P.year_of_birth >= 12 and YEAR(C.start_date) - P.year_of_birth <= 55) +AND P.gender_concept_id in (8532) +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,140,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM #qualified_events P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C +JOIN @cdm_database_schema.PERSON P on C.person_id = P.person_id +WHERE (YEAR(C.start_date) - P.year_of_birth >= 12 and YEAR(C.start_date) - P.year_of_birth <= 55) +AND P.gender_concept_id in (8532) +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,140,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) > 0 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id AND AC.event_id = pe.event_id +) Results +; + +select 5 as inclusion_rule_id, person_id, event_id +INTO #Inclusion_5 +FROM +( + select pe.person_id, pe.event_id + FROM #qualified_events pe + +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM #qualified_events E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM #qualified_events P +JOIN ( + select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,1,P.START_DATE) AND A.START_DATE <= DATEADD(day,42,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,1,P.START_DATE) AND A.START_DATE <= DATEADD(day,42,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,1,P.START_DATE) AND A.START_DATE <= DATEADD(day,42,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,1,P.START_DATE) AND A.START_DATE <= DATEADD(day,42,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,1,P.START_DATE) AND A.START_DATE <= DATEADD(day,42,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,1,P.START_DATE) AND A.START_DATE <= DATEADD(day,42,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 6 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Visit Occurrence Criteria +select C.person_id, C.visit_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select vo.person_id,vo.visit_occurrence_id,vo.visit_concept_id,vo.visit_start_date as start_date, vo.visit_end_date as end_date + FROM @cdm_database_schema.VISIT_OCCURRENCE vo +JOIN #Codesets cs on (vo.visit_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Visit Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,1,P.START_DATE) AND A.START_DATE <= DATEADD(day,42,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 7 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,1,P.START_DATE) AND A.START_DATE <= DATEADD(day,42,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 8 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,140,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM #qualified_events P +JOIN ( + select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,1,P.START_DATE) AND A.START_DATE <= DATEADD(day,42,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,1,P.START_DATE) AND A.START_DATE <= DATEADD(day,42,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,1,P.START_DATE) AND A.START_DATE <= DATEADD(day,42,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,1,P.START_DATE) AND A.START_DATE <= DATEADD(day,42,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,1,P.START_DATE) AND A.START_DATE <= DATEADD(day,42,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,1,P.START_DATE) AND A.START_DATE <= DATEADD(day,42,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 6 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,1,P.START_DATE) AND A.START_DATE <= DATEADD(day,42,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 7 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Visit Occurrence Criteria +select C.person_id, C.visit_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select vo.person_id,vo.visit_occurrence_id,vo.visit_concept_id,vo.visit_start_date as start_date, vo.visit_end_date as end_date + FROM @cdm_database_schema.VISIT_OCCURRENCE vo +JOIN #Codesets cs on (vo.visit_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Visit Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,1,P.START_DATE) AND A.START_DATE <= DATEADD(day,42,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 8 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,140,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) > 0 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id AND AC.event_id = pe.event_id +) Results +; + +select 6 as inclusion_rule_id, person_id, event_id +INTO #Inclusion_6 +FROM +( + select pe.person_id, pe.event_id + FROM #qualified_events pe + +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM #qualified_events E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM #qualified_events P +JOIN ( + select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-168,P.START_DATE) AND A.START_DATE <= DATEADD(day,182,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-168,P.START_DATE) AND A.START_DATE <= DATEADD(day,182,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 2 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,140,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM #qualified_events P +JOIN ( + select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-168,P.START_DATE) AND A.START_DATE <= DATEADD(day,182,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-168,P.START_DATE) AND A.START_DATE <= DATEADD(day,182,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 2 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,140,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) > 0 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id AND AC.event_id = pe.event_id +) Results +; + +select 7 as inclusion_rule_id, person_id, event_id +INTO #Inclusion_7 +FROM +( + select pe.person_id, pe.event_id + FROM #qualified_events pe + +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM #qualified_events E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM #qualified_events P +JOIN ( + select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Observation Period Criteria +select C.person_id, C.observation_period_id as event_id, C.start_date as start_date, C.end_date as end_date, + CAST(NULL as bigint) as visit_occurrence_id, C.start_date as sort_date + +from +( + select op.person_id,op.observation_period_id,op.period_type_concept_id,op.observation_period_start_date as start_date, op.observation_period_end_date as end_date , row_number() over (PARTITION BY op.person_id ORDER BY op.observation_period_start_date) as ordinal + FROM @cdm_database_schema.OBSERVATION_PERIOD op +) C + + +-- End Observation Period Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Period Criteria +select C.person_id, C.observation_period_id as event_id, C.start_date as start_date, C.end_date as end_date, + CAST(NULL as bigint) as visit_occurrence_id, C.start_date as sort_date + +from +( + select op.person_id,op.observation_period_id,op.period_type_concept_id,op.observation_period_start_date as start_date, op.observation_period_end_date as end_date , row_number() over (PARTITION BY op.person_id ORDER BY op.observation_period_start_date) as ordinal + FROM @cdm_database_schema.OBSERVATION_PERIOD op +) C + + +-- End Observation Period Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Period Criteria +select C.person_id, C.observation_period_id as event_id, C.start_date as start_date, C.end_date as end_date, + CAST(NULL as bigint) as visit_occurrence_id, C.start_date as sort_date + +from +( + select op.person_id,op.observation_period_id,op.period_type_concept_id,op.observation_period_start_date as start_date, op.observation_period_end_date as end_date , row_number() over (PARTITION BY op.person_id ORDER BY op.observation_period_start_date) as ordinal + FROM @cdm_database_schema.OBSERVATION_PERIOD op +) C + + +-- End Observation Period Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= DATEADD(day,0,P.END_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Period Criteria +select C.person_id, C.observation_period_id as event_id, C.start_date as start_date, C.end_date as end_date, + CAST(NULL as bigint) as visit_occurrence_id, C.start_date as sort_date + +from +( + select op.person_id,op.observation_period_id,op.period_type_concept_id,op.observation_period_start_date as start_date, op.observation_period_end_date as end_date , row_number() over (PARTITION BY op.person_id ORDER BY op.observation_period_start_date) as ordinal + FROM @cdm_database_schema.OBSERVATION_PERIOD op +) C + + +-- End Observation Period Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= DATEADD(day,0,P.END_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= DATEADD(day,0,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 1 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id AND AC.event_id = pe.event_id +) Results +; + +SELECT inclusion_rule_id, person_id, event_id +INTO #inclusion_events +FROM (select inclusion_rule_id, person_id, event_id from #Inclusion_0 +UNION ALL +select inclusion_rule_id, person_id, event_id from #Inclusion_1 +UNION ALL +select inclusion_rule_id, person_id, event_id from #Inclusion_2 +UNION ALL +select inclusion_rule_id, person_id, event_id from #Inclusion_3 +UNION ALL +select inclusion_rule_id, person_id, event_id from #Inclusion_4 +UNION ALL +select inclusion_rule_id, person_id, event_id from #Inclusion_5 +UNION ALL +select inclusion_rule_id, person_id, event_id from #Inclusion_6 +UNION ALL +select inclusion_rule_id, person_id, event_id from #Inclusion_7) I; +TRUNCATE TABLE #Inclusion_0; +DROP TABLE #Inclusion_0; + +TRUNCATE TABLE #Inclusion_1; +DROP TABLE #Inclusion_1; + +TRUNCATE TABLE #Inclusion_2; +DROP TABLE #Inclusion_2; + +TRUNCATE TABLE #Inclusion_3; +DROP TABLE #Inclusion_3; + +TRUNCATE TABLE #Inclusion_4; +DROP TABLE #Inclusion_4; + +TRUNCATE TABLE #Inclusion_5; +DROP TABLE #Inclusion_5; + +TRUNCATE TABLE #Inclusion_6; +DROP TABLE #Inclusion_6; + +TRUNCATE TABLE #Inclusion_7; +DROP TABLE #Inclusion_7; + + +select event_id, person_id, start_date, end_date, op_start_date, op_end_date +into #included_events +FROM ( + SELECT event_id, person_id, start_date, end_date, op_start_date, op_end_date, row_number() over (partition by person_id order by start_date ASC) as ordinal + from + ( + select Q.event_id, Q.person_id, Q.start_date, Q.end_date, Q.op_start_date, Q.op_end_date, SUM(coalesce(POWER(cast(2 as bigint), I.inclusion_rule_id), 0)) as inclusion_rule_mask + from #qualified_events Q + LEFT JOIN #inclusion_events I on I.person_id = Q.person_id and I.event_id = Q.event_id + GROUP BY Q.event_id, Q.person_id, Q.start_date, Q.end_date, Q.op_start_date, Q.op_end_date + ) MG -- matching groups +{8 != 0}?{ + -- the matching group with all bits set ( POWER(2,# of inclusion rules) - 1 = inclusion_rule_mask + WHERE (MG.inclusion_rule_mask = POWER(cast(2 as bigint),8)-1) +} +) Results + +; + +-- date offset strategy + +select event_id, person_id, + case when DATEADD(day,301,start_date) > op_end_date then op_end_date else DATEADD(day,301,start_date) end as end_date +INTO #strategy_ends +from #included_events; + + +-- generate cohort periods into #final_cohort +select person_id, start_date, end_date +INTO #cohort_rows +from ( -- first_ends + select F.person_id, F.start_date, F.end_date + FROM ( + select I.event_id, I.person_id, I.start_date, CE.end_date, row_number() over (partition by I.person_id, I.event_id order by CE.end_date) as ordinal + from #included_events I + join ( -- cohort_ends +-- cohort exit dates +-- End Date Strategy +SELECT event_id, person_id, end_date from #strategy_ends + +UNION ALL +-- Censor Events +select i.event_id, i.person_id, MIN(c.start_date) as end_date +FROM #included_events i +JOIN +( +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-168,P.START_DATE) AND A.START_DATE <= DATEADD(day,182,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-168,P.START_DATE) AND A.START_DATE <= DATEADD(day,182,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 2 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +) C on C.person_id = I.person_id and C.start_date >= I.start_date and C.START_DATE <= I.op_end_date +GROUP BY i.event_id, i.person_id + +UNION ALL +select i.event_id, i.person_id, MIN(c.start_date) as end_date +FROM #included_events i +JOIN +( +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-168,P.START_DATE) AND A.START_DATE <= DATEADD(day,182,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-168,P.START_DATE) AND A.START_DATE <= DATEADD(day,182,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 2 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +) C on C.person_id = I.person_id and C.start_date >= I.start_date and C.START_DATE <= I.op_end_date +GROUP BY i.event_id, i.person_id + + + ) CE on I.event_id = CE.event_id and I.person_id = CE.person_id and CE.end_date >= I.start_date + ) F + WHERE F.ordinal = 1 +) FE; + + +select person_id, min(start_date) as start_date, DATEADD(day,-1 * 0, max(end_date)) as end_date +into #final_cohort +from ( + select person_id, start_date, end_date, sum(is_start) over (partition by person_id order by start_date, is_start desc rows unbounded preceding) group_idx + from ( + select person_id, start_date, end_date, + case when max(end_date) over (partition by person_id order by start_date rows between unbounded preceding and 1 preceding) >= start_date then 0 else 1 end is_start + from ( + select person_id, start_date, DATEADD(day,0,end_date) as end_date + from #cohort_rows + ) CR + ) ST +) GR +group by person_id, group_idx; + +DELETE FROM @target_database_schema.@target_cohort_table where cohort_definition_id = @target_cohort_id; +INSERT INTO @target_database_schema.@target_cohort_table (cohort_definition_id, subject_id, cohort_start_date, cohort_end_date) +select @target_cohort_id as cohort_definition_id, person_id, start_date, end_date +FROM #final_cohort CO +; + +{1 != 0}?{ +-- BEGIN: Censored Stats + +delete from @results_database_schema.cohort_censor_stats where cohort_definition_id = @target_cohort_id; + +-- END: Censored Stats +} +{1 != 0 & 8 != 0}?{ + +-- Create a temp table of inclusion rule rows for joining in the inclusion rule impact analysis + +select cast(rule_sequence as int) as rule_sequence +into #inclusion_rules +from ( + SELECT CAST(0 as int) as rule_sequence UNION ALL SELECT CAST(1 as int) as rule_sequence UNION ALL SELECT CAST(2 as int) as rule_sequence UNION ALL SELECT CAST(3 as int) as rule_sequence UNION ALL SELECT CAST(4 as int) as rule_sequence UNION ALL SELECT CAST(5 as int) as rule_sequence UNION ALL SELECT CAST(6 as int) as rule_sequence UNION ALL SELECT CAST(7 as int) as rule_sequence +) IR; + + +-- Find the event that is the 'best match' per person. +-- the 'best match' is defined as the event that satisfies the most inclusion rules. +-- ties are solved by choosing the event that matches the earliest inclusion rule, and then earliest. + +select q.person_id, q.event_id +into #best_events +from #qualified_events Q +join ( + SELECT R.person_id, R.event_id, ROW_NUMBER() OVER (PARTITION BY R.person_id ORDER BY R.rule_count DESC,R.min_rule_id ASC, R.start_date ASC) AS rank_value + FROM ( + SELECT Q.person_id, Q.event_id, COALESCE(COUNT(DISTINCT I.inclusion_rule_id), 0) AS rule_count, COALESCE(MIN(I.inclusion_rule_id), 0) AS min_rule_id, Q.start_date + FROM #qualified_events Q + LEFT JOIN #inclusion_events I ON q.person_id = i.person_id AND q.event_id = i.event_id + GROUP BY Q.person_id, Q.event_id, Q.start_date + ) R +) ranked on Q.person_id = ranked.person_id and Q.event_id = ranked.event_id +WHERE ranked.rank_value = 1 +; + +-- modes of generation: (the same tables store the results for the different modes, identified by the mode_id column) +-- 0: all events +-- 1: best event + + +-- BEGIN: Inclusion Impact Analysis - event +-- calculte matching group counts +delete from @results_database_schema.cohort_inclusion_result where cohort_definition_id = @target_cohort_id and mode_id = 0; +insert into @results_database_schema.cohort_inclusion_result (cohort_definition_id, inclusion_rule_mask, person_count, mode_id) +select @target_cohort_id as cohort_definition_id, inclusion_rule_mask, count_big(*) as person_count, 0 as mode_id +from +( + select Q.person_id, Q.event_id, CAST(SUM(coalesce(POWER(cast(2 as bigint), I.inclusion_rule_id), 0)) AS bigint) as inclusion_rule_mask + from #qualified_events Q + LEFT JOIN #inclusion_events I on q.person_id = i.person_id and q.event_id = i.event_id + GROUP BY Q.person_id, Q.event_id +) MG -- matching groups +group by inclusion_rule_mask +; + +-- calculate gain counts +delete from @results_database_schema.cohort_inclusion_stats where cohort_definition_id = @target_cohort_id and mode_id = 0; +insert into @results_database_schema.cohort_inclusion_stats (cohort_definition_id, rule_sequence, person_count, gain_count, person_total, mode_id) +select @target_cohort_id as cohort_definition_id, ir.rule_sequence, coalesce(T.person_count, 0) as person_count, coalesce(SR.person_count, 0) gain_count, EventTotal.total, 0 as mode_id +from #inclusion_rules ir +left join +( + select i.inclusion_rule_id, count_big(i.event_id) as person_count + from #qualified_events Q + JOIN #inclusion_events i on Q.person_id = I.person_id and Q.event_id = i.event_id + group by i.inclusion_rule_id +) T on ir.rule_sequence = T.inclusion_rule_id +CROSS JOIN (select count(*) as total_rules from #inclusion_rules) RuleTotal +CROSS JOIN (select count_big(event_id) as total from #qualified_events) EventTotal +LEFT JOIN @results_database_schema.cohort_inclusion_result SR on SR.mode_id = 0 AND SR.cohort_definition_id = @target_cohort_id AND (POWER(cast(2 as bigint),RuleTotal.total_rules) - POWER(cast(2 as bigint),ir.rule_sequence) - 1) = SR.inclusion_rule_mask -- POWER(2,rule count) - POWER(2,rule sequence) - 1 is the mask for 'all except this rule' +; + +-- calculate totals +delete from @results_database_schema.cohort_summary_stats where cohort_definition_id = @target_cohort_id and mode_id = 0; +insert into @results_database_schema.cohort_summary_stats (cohort_definition_id, base_count, final_count, mode_id) +select @target_cohort_id as cohort_definition_id, PC.total as person_count, coalesce(FC.total, 0) as final_count, 0 as mode_id +FROM +(select count_big(event_id) as total from #qualified_events) PC, +(select sum(sr.person_count) as total + from @results_database_schema.cohort_inclusion_result sr + CROSS JOIN (select count(*) as total_rules from #inclusion_rules) RuleTotal + where sr.mode_id = 0 and sr.cohort_definition_id = @target_cohort_id and sr.inclusion_rule_mask = POWER(cast(2 as bigint),RuleTotal.total_rules)-1 +) FC +; + +-- END: Inclusion Impact Analysis - event + +-- BEGIN: Inclusion Impact Analysis - person +-- calculte matching group counts +delete from @results_database_schema.cohort_inclusion_result where cohort_definition_id = @target_cohort_id and mode_id = 1; +insert into @results_database_schema.cohort_inclusion_result (cohort_definition_id, inclusion_rule_mask, person_count, mode_id) +select @target_cohort_id as cohort_definition_id, inclusion_rule_mask, count_big(*) as person_count, 1 as mode_id +from +( + select Q.person_id, Q.event_id, CAST(SUM(coalesce(POWER(cast(2 as bigint), I.inclusion_rule_id), 0)) AS bigint) as inclusion_rule_mask + from #best_events Q + LEFT JOIN #inclusion_events I on q.person_id = i.person_id and q.event_id = i.event_id + GROUP BY Q.person_id, Q.event_id +) MG -- matching groups +group by inclusion_rule_mask +; + +-- calculate gain counts +delete from @results_database_schema.cohort_inclusion_stats where cohort_definition_id = @target_cohort_id and mode_id = 1; +insert into @results_database_schema.cohort_inclusion_stats (cohort_definition_id, rule_sequence, person_count, gain_count, person_total, mode_id) +select @target_cohort_id as cohort_definition_id, ir.rule_sequence, coalesce(T.person_count, 0) as person_count, coalesce(SR.person_count, 0) gain_count, EventTotal.total, 1 as mode_id +from #inclusion_rules ir +left join +( + select i.inclusion_rule_id, count_big(i.event_id) as person_count + from #best_events Q + JOIN #inclusion_events i on Q.person_id = I.person_id and Q.event_id = i.event_id + group by i.inclusion_rule_id +) T on ir.rule_sequence = T.inclusion_rule_id +CROSS JOIN (select count(*) as total_rules from #inclusion_rules) RuleTotal +CROSS JOIN (select count_big(event_id) as total from #best_events) EventTotal +LEFT JOIN @results_database_schema.cohort_inclusion_result SR on SR.mode_id = 1 AND SR.cohort_definition_id = @target_cohort_id AND (POWER(cast(2 as bigint),RuleTotal.total_rules) - POWER(cast(2 as bigint),ir.rule_sequence) - 1) = SR.inclusion_rule_mask -- POWER(2,rule count) - POWER(2,rule sequence) - 1 is the mask for 'all except this rule' +; + +-- calculate totals +delete from @results_database_schema.cohort_summary_stats where cohort_definition_id = @target_cohort_id and mode_id = 1; +insert into @results_database_schema.cohort_summary_stats (cohort_definition_id, base_count, final_count, mode_id) +select @target_cohort_id as cohort_definition_id, PC.total as person_count, coalesce(FC.total, 0) as final_count, 1 as mode_id +FROM +(select count_big(event_id) as total from #best_events) PC, +(select sum(sr.person_count) as total + from @results_database_schema.cohort_inclusion_result sr + CROSS JOIN (select count(*) as total_rules from #inclusion_rules) RuleTotal + where sr.mode_id = 1 and sr.cohort_definition_id = @target_cohort_id and sr.inclusion_rule_mask = POWER(cast(2 as bigint),RuleTotal.total_rules)-1 +) FC +; + +-- END: Inclusion Impact Analysis - person + +TRUNCATE TABLE #best_events; +DROP TABLE #best_events; + +TRUNCATE TABLE #inclusion_rules; +DROP TABLE #inclusion_rules; +} + +TRUNCATE TABLE #strategy_ends; +DROP TABLE #strategy_ends; + + +TRUNCATE TABLE #cohort_rows; +DROP TABLE #cohort_rows; + +TRUNCATE TABLE #final_cohort; +DROP TABLE #final_cohort; + +TRUNCATE TABLE #inclusion_events; +DROP TABLE #inclusion_events; + +TRUNCATE TABLE #qualified_events; +DROP TABLE #qualified_events; + +TRUNCATE TABLE #included_events; +DROP TABLE #included_events; + +TRUNCATE TABLE #Codesets; +DROP TABLE #Codesets; diff --git a/inst/sql/sql_server/1433.sql b/inst/sql/sql_server/1433.sql new file mode 100644 index 00000000..9a150a89 --- /dev/null +++ b/inst/sql/sql_server/1433.sql @@ -0,0 +1,71991 @@ +CREATE TABLE #Codesets ( + codeset_id int NOT NULL, + concept_id bigint NOT NULL +) +; + +INSERT INTO #Codesets (codeset_id, concept_id) +SELECT 0 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4130321,439402,4155282,437936,4248954,432968,442923,442922,2101814,441649,443133,4075168,76761,73526,4078138,4075169,4147974,314103,320456,4014291,4016064,4015277,4015270,4192676,77624,81086,3662128,436767,4075165,73537,4235752,3662129,4071629,441369,435607,437942,2110316,2110323,4165077,4015701,2004789,42872492,42872493,4152029,4014738,4223536,37208486,4034145,194707,315013,435879,4129041,433270,439092,75882,441361,4075190,440793,193277,4106406,4061457,4066112,4232028,4234710,4223638,4278225,4100410,4189205,4096145,4038495,441641,40551541,4056129,42872805,4130319,4293034,443012,4062685,4309425,198486,4134722,442915,133816,443321,440794,4075182,4075161,42536960,4075160,42536952,4167089,4127252,42537021,46270991,4032767,42536954,4272812,4311671,44513763,4211824,45757775,441924,443521,193535,72697,4063296,4064177,4064171,4064174,192978,199088,4217642,4075187,4114637,435022,4032761,4324549,2004702,194429,4244672,74440,77052,4091200,81357,80778,4009879,4014452,434110,4032764,435323,44513743,4075188,4231702,4035778,77615,4075170,441630,4014451,73538,436173,4064834,2004771,77621,4128031,40760193,80782,441082,196170,2004786,4161944,37312440,44513746,4088084,4075735,4075191,4071505,4069969,313829,438206,435606,442920,442919,44513745,4075189,4266683,4093774,4143647,42535817,72970,433260,4063163,4063162,4059751,42539267,442082,2101016,4071630,4127248,4014720,4063160,4071507,442053,74433,78494,75326,193269,197048,442080,79897,201368,193271,195025,199087,196182,194711,433274,2004767,2004802,2004765,2004768,2004783,4191809,44513736,44513756,44513729,44513747,2004731,44513740,44513733,44513752,4145318,4127249,73824,42535816,4234421,4023797,4307825,4073438,193539,4172142,193264,201359,4014292,434427,435031,441363,438220,200160,37110284,37110283,45757175,45757176,36712702,44784550,44784551,196762,72692,440476,441645,440475,434431,442419,442418,4065749,434713,438481,200157,442078,198216,195878,4127253,4121924,198816,192699,4064960,4065618,192384,198499,4264738,438490,439077,4092760,435020,80474,4170152,36713074,4073422,4167497,4205240,2110318,439094,439095,193275,3186670,136755,138207,4204679,137940,4063171,4174854,4267072,439093,432975,4161678,3655718,4134431,4326563,4290245,4073424,440462,196181,197049,4101844,42535052,435018,4060157,2110342,2004742,79889,45757158,4075171,442069,193544,4228344,4331179,44784097,2110320,2110308,4167018,442059,435610,435609,321367,443246,441087,4071632,40394878)) + +) I +) C UNION ALL +SELECT 1 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4092289,4307044,40482735,40483126,4163851,36713468,3174212,4097427,4147043,4142021,4310910,4069200,4145125,4082863,4008884,4107401,4029786,45765500,45757166,45773428,45765501,45757167,45757168,45765502,45772082,45757169,4014295,40483521,36713465,4227728,4330570,4049333,4243026,4066292,4193224,4336090,4199146,4307237,4178275,4094046,42539210,4014456,4015422,45757165,4015421,40483084,40483101,4014296,4014455)) + +) I +) C UNION ALL +SELECT 2 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4015296,4014149,4014150,44808979,4015141,44808980,4014151,44808981,4015297,4015298,4014434,4015299,4015142,4014152,4015300,4015301,4015302,4014435,4178165,4181468,4181162,4324063,438542,45770261,4322726,4242241,4174506,4197245,4266517,4248725,4283690,4049621,4277749,4097608,4181751,4337360,4051642,4185780,4274955,4336226,439922,435640,444023,432430,444461,444417,4220085,434484,433864,442558,441678,443874,444267,438543,442355,443871,435655,4326232,442769,444067,4195157,4290009,4313026,4270513,4132434,4245908,762907,4336958,4180111,444098)) + +) I +) C UNION ALL +SELECT 3 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4132434,4322726)) + +) I +) C UNION ALL +SELECT 4 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4072438,4088445,4058439)) + +) I +) C UNION ALL +SELECT 5 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4186424,4324606,40489798,2211754,2211753,4237339)) + +) I +) C UNION ALL +SELECT 6 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (40480490,4061810,4061809,3040768,3038294,3010296,42529192,3027634,40757479,3032506,3033080,3009306,42529190,4197249,4099476,4014768,3012116,3024289,3021607,3046154,3044142,3030180,3046979,3022269,3016670,3024370,40761829,3044397,3025053,3027505,42529191,3045958,40762626,3028331,42529189,2212200,2212199,2212198,4147940,4269851,4041177,44807243,4042555,4059689,4042557,4078285,4057158,4269860,4042936,40761828,37396772,37396771,40478936,40483704,40480870,40483600,4310471,4210719,4161969,4275335,4195345,4078287,3051868)) + +) I +) C UNION ALL +SELECT 7 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (443800,4184965,40480713,4242590,4211822,4070773,4034017,4034018,45765512,4211227,4261326,4219015,4138554,40318194,4230947,40318195,4312727)) + +) I +) C UNION ALL +SELECT 8 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4055287,37392366,4250175,4091293,4091461,4055285,37392365,2212173,4014769)) + +) I +) C UNION ALL +SELECT 9 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4015296,4197245)) + +) I +) C UNION ALL +SELECT 10 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4015142,442355,762907)) + +) I +) C UNION ALL +SELECT 11 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4015299,438543)) + +) I +) C UNION ALL +SELECT 12 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4014434,444267,4180111)) + +) I +) C UNION ALL +SELECT 13 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4015300,435655)) + +) I +) C UNION ALL +SELECT 14 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4245908)) + +) I +) C UNION ALL +SELECT 15 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4015301,4336958,444098)) + +) I +) C UNION ALL +SELECT 17 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4242241)) + +) I +) C UNION ALL +SELECT 18 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4174506)) + +) I +) C UNION ALL +SELECT 19 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4181468,4266517)) + +) I +) C UNION ALL +SELECT 20 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4337360)) + +) I +) C UNION ALL +SELECT 21 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4220085)) + +) I +) C UNION ALL +SELECT 22 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4326232)) + +) I +) C UNION ALL +SELECT 23 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4195157)) + +) I +) C UNION ALL +SELECT 24 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4290009)) + +) I +) C UNION ALL +SELECT 25 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4313026)) + +) I +) C UNION ALL +SELECT 26 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4270513)) + +) I +) C UNION ALL +SELECT 28 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4248725)) + +) I +) C UNION ALL +SELECT 29 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4283690)) + +) I +) C UNION ALL +SELECT 30 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4014149,4049621)) + +) I +) C UNION ALL +SELECT 31 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4277749)) + +) I +) C UNION ALL +SELECT 32 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4097608)) + +) I +) C UNION ALL +SELECT 33 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4324063,4181751)) + +) I +) C UNION ALL +SELECT 34 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4014150,4178165,4051642)) + +) I +) C UNION ALL +SELECT 35 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4181162,4185780)) + +) I +) C UNION ALL +SELECT 36 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (44808979,4274955)) + +) I +) C UNION ALL +SELECT 37 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (438542,4336226)) + +) I +) C UNION ALL +SELECT 38 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4015141,439922)) + +) I +) C UNION ALL +SELECT 40 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (44808980,435640)) + +) I +) C UNION ALL +SELECT 41 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (444023)) + +) I +) C UNION ALL +SELECT 42 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (45770261,432430)) + +) I +) C UNION ALL +SELECT 43 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (444461)) + +) I +) C UNION ALL +SELECT 44 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (444417)) + +) I +) C UNION ALL +SELECT 45 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4014151,434484)) + +) I +) C UNION ALL +SELECT 47 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (44808981,433864)) + +) I +) C UNION ALL +SELECT 48 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4015297,442558)) + +) I +) C UNION ALL +SELECT 49 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (441678)) + +) I +) C UNION ALL +SELECT 50 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4015298,443874)) + +) I +) C UNION ALL +SELECT 51 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4014152,443871)) + +) I +) C UNION ALL +SELECT 52 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4015302,442769)) + +) I +) C UNION ALL +SELECT 53 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4014435,444067)) + +) I +) C UNION ALL +SELECT 55 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4239302,2004542,4130186,4127094,4187819,4280831,2110196,2110197,4238828,2213350,4272937,2721246,42739500,2213363,2213362,2213365,2213364,2721238,2721239,2721240,4309021,40482399,2213355,2721256,2213347,2213348,4022096,4024589,2721247,2721248,4327048,2110275,4072852,4072863,4074569,2213361,4127892,2110274,4032737,2721243,2721241,4127104,4072421,2110276,4309019,2213360,4072715,4030829,4138741,4139858,4139060,4137390,4145843,4020898,2721255,4199599,2788842,2721237,3049700,2721245,2721244,4138627,46273065,4145664,4138633,4141534,4142402,4144415,40259107,2213351,4072862,46232934,44513468,44517168,4075024,44513634,44513516,2213352,40490338,2213358,2213357,2110198,2721254,4022098,44790511,40490447,4073406,4127106,4020897,4127105)) + +) I +) C UNION ALL +SELECT 56 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4014433,4014148,4173786,4061786,4060243,43530904,4061437,4060251,439656,4060246,4060097,4060242,4060241,4059989,4060247,4147564,4060239,4061433,4061426,36713461,4061425,4061787,4060098,4059988,4061789,4060248,4060101,4061793,4060240,4060244,4059987,4190427,4147941,4047845,4084186,4062361,4061521,4081196,2110312,2110313,2108689,4015159,4060252,37016958,4076939,4061795,4156955,4150421,4059478,4128833,4226978,4060255,4084439,4015304,4060104,4151190,2514574,4061791,4066354,4305717,37016955,4084521,4038747,4140250,4038420,4038571,4038945,4039088,4038943,4039610,4038938,4038760,4038418,4038749,4038751,4038932,4039602,4038753,4038935,4038748,4039609,4038759,4175225,4038424,4171428,4039608,4038941,4038939,4038937,4038573,4039603,4194143,4016475,2618150,2618151,2618152,2618154,2618155,4176966,4112701,4311447,4172038,4313474,4060105,77619,4081292,46272536,4084693,4047564,4083415,4260976,2101831,40517216,40525253)) + +) I +) C UNION ALL +SELECT 57 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (441092,4061424,40760833,4139126,4015590,3011536,43054893,43021054,37017322,441085,192380,4210896,3006722,40759953,195877,4061522,437937,4030415,197031,4061672,43021951,43021952,3045823,432969,3000119,4217975,4038942,4150948,4148890,4094910,4061785,4060237,4299535,4059982,4061686,4059984,4061411,4059981,4133029,442594,440466,4061423,4214930,3040000,196484,4042412,198212,4129023,4218813,432375,441919,4307820,4059985,4239301,4041878,3023791,40519557,40524802,40524805)) + +) I +) C UNION ALL +SELECT 58 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (2721180,3019145,3011465,3011996,3010164,40758989,3011149,3009417,3038136,3004303,3036988,3002091,3008714,3003191,3018954,3018171,4018189,4296540,4296541,4016953,4017479,4263011,43527960,43527959,4096237,44807244,2212633,2212632,2212631,44807240,4285271,44806337,4038817,44812174,4210718,4210722,4195509,4198892,4041161,4042751,4214677,44789306,4055426,4055954)) + +) I +) C UNION ALL +SELECT 60 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4129846,37017027,4079844,4071603,442338,443695,4034159,45773593,4060687,4028787,4222915,4242724,4184594,42539377,42538805,42538806,4014454,443213,40406337,4287409,4217655,4261819,4321563,4301269,4103876,4300979,443463,4306288,4192641,4203001,4015163,4015162)) + +) I +) C UNION ALL +SELECT 61 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4198718,4209254,4197835,4193852,4198731,4195213,44805579,3016704,4234906,4258832,4198733,4193853,4198732,3004221,4209122,4193854,4193855,4198719,4198742,4198743,4130321,4200678,4059050,4198125,4149783,193525,442631,314478,312733,137974,314099,437688,438557,440216,439402,439403,4162865,4155282,4162866,4306804,437342,197050,40480490,4136368,436477,3003694,444365,42597053,42597052,42597051,201076,197612,438812,195319,42599848,2721147,2784560,2784559,2784555,2784556,2784557,2784558,2784561,2784562,440776,440454,4050827,4052366,4052365,4050829,36713476,4262542,3034139,4173330,4034308,761075,196490,4215648,45772947,45768986,37397030,441092,4312095,4129840,4061810,4061809,3655216,3655215,4030070,4029428,4029425,3040768,3038294,3010296,42529192,3027634,40757479,3032506,3033080,3009306,42529190,4197249,4099476,4014768,3012116,3024289,3021607,3046154,3044142,3030180,3046979,3022269,3016670,3004943,3024370,40761829,3044397,3025053,3027505,42529191,3045958,40762626,3028331,42529189,2212200,2212199,2212198,4147940,4269851,4041177,44807243,4042555,4059689,4042557,4078285,4207608,2314093,2314092,4208334,443800,4184965,4146045,2110279,4140734,2110280,2004824,437936,435880,4057158,4269860,4231903,435616,3655206,3655205,4057149,433880,4154997,441959,436768,437948,2212210,4248954,4173032,4170460,432968,432967,4209094,434701,442923,442922,4099889,432452,42739743,2101814,2101807,2101809,2101804,2101811,2101812,2100998,2101808,2101806,4118417,40480713,4149405,4015296,4014149,4014150,44808979,4015141,44808980,4014433,4014151,44808981,4015297,4015298,4014434,4015299,4015142,4014152,4015300,4015301,4015302,4014435,4061154,4060259,4061530,4014319,4015139,4207466,4014148,4173786,4061786,4060243,43530904,4061437,4060251,439656,4060246,4060097,4060242,4060241,4059989,4060247,4147564,4060239,4061433,4061426,36713461,4061425,4061787,4060098,4059988,4061789,4061424,4060248,4060101,4061793,4060240,4060244,4059987,4190427,4147941,441649,4047845,4084186,4170305,4062361,4060266,4079835,4152443,4087235,37310544,37310338,36713463,4191703,36713464,36713462,37016744,35609139,4061521,4014320,4015137,4015294,37016760,4152444,4152445,4061131,4061803,4061157,4061534,4141415,4060265,4060263,4143115,4060264,4061802,4060262,4081196,2110312,2110313,435887,4079969,4129846,434089,4143074,438489,443133,438203,37017027,4129039,2108689,4061531,4014312,4016469,4014579,4016470,4269556,4014304,4016052,4015431,4269555,4016464,4016467,4016466,4266765,4167905,4299090,4183596,4170878,4219591,4132308,4244236,4088036,4011798,4028032,4049582,4274664,318247,36716744,4079848,3006511,4080668,2004542,4239302,4130186,4127094,4187819,4280831,2110196,2110197,4238828,4131376,439136,2004526,2004525,4212941,45763635,4300368,4153454,4075168,2213350,4272937,2721246,42739500,2213363,2213362,80156,76761,73526,196488,42739562,2514559,4173192,4215792,37397031,37397032,37204850,37204849,4149455,4014461,4151169,4015275,4078138,4149449,37016220,37016221,4149457,37016222,37018684,46271955,37016216,37016217,37016218,37016213,46271814,37018683,37018889,37016212,762577,37016211,4014299,4149451,4150406,4150405,4150404,4015274,133594,4075169,4147974,42742559,42742561,4150338,321638,314103,320456,314423,4062811,762706,762705,4244383,4043411,4046209,4028640,4093429,2004347,36684754,37207968,36684753,36684752,36684751,4107080,36716760,4028644,2213365,2213364,4184996,36716763,36716762,4014291,4016064,4015277,4015278,4015282,42536751,42536565,4290881,4014465,4015288,4015429,4015287,4014466,4015284,4015270,40760833,435641,4030440,4149610,4171114,4187520,46271901,40759177,4262136,2721180,3655208,3655207,4028780,4055674,4041701,4041702,4041700,4055675,4055676,4042726,4042728,4275337,4041697,4042727,4135545,44784272,4042936,4078281,4027371,4192676,4260748,42742564,4139126,73019,4066255,443330,77624,81086,73282,4260749,4054949,4066258,4345684,4015144,40766616,4254219,3662128,4213387,436767,4075165,73267,74698,73537,76756,4283942,4122871,3026267,4120298,4031037,317669,36713582,4306192,4261479,42742390,2108149,4065999,4208980,4235752,36716743,36713583,375016,4047852,3662129,4071629,2110305,2110304,4147060,4243309,377980,4171109,4171111,4082313,316494,4321386,4034148,436740,441369,435607,437334,440166,44790204,197043,437942,2110316,2110323,2110324,2110317,4165077,4015701,4303297,2004789,4066111,42872492,42872493,197344,194113,4065866,40482050,4152029,4253751,40479783,4014738,4194590,4200299,4194591,4199794,4194593,4199793,4194592,4014735,4014605,4194594,4014606,4194595,4199796,4014607,4199797,4014736,4194596,4200422,4199798,4197178,4200300,4276725,4016184,4199795,4197179,4016183,4102952,4203366,4340944,3019145,3011465,3011996,3010164,40758989,3011149,3009417,3038136,3004303,3036988,3002091,3008714,3003191,3018954,3018171,4018189,4296540,4296541,4016953,4017479,2212145,2212144,2110282,44793560,44791458,4162502,72973,40760436,2213267,2213268,4080590,4173190,313023,4223536,2004785,36713561,37208486,434167,40761828,4182145,44783183,4135209,40483581,3170656,437046,4034145,2721238,2721239,439085,441629,441921,4146774,2721240,441073,438196,40318618,441910,432682,441632,435318,435000,436742,438805,4113352,440464,440795,36715374,432382,436489,437947,435875,4141513,441364,433822,433263,4309021,4193765,40482399,80205,441964,197339,194707,193825,315013,314426,443249,436532,37396772,4236230,196175,201920,435879,440162,4188480,433869,4015159,4060252,433826,432373,43020670,441647,45757769,4237335,4268171,4120986,36716738,36716737,380533,434708,4129041,442292,433270,2110281,433828,439092,442421,4055252,2004823,4015590,37016958,2212630,433548,36713479,45757216,443243,440481,432396,442529,2213355,2721256,4242590,4057444,4055550,4269855,4057443,2213347,2213348,2110301,193174,4170118,42742301,4100193,4185718,4232953,4173946,196475,42537767,42537768,4174543,4194053,4216382,4072438,4088445,4060625,44810005,40491449,40487136,4197955,75882,73265,44784536,438820,4266839,4234604,438814,194109,4048293,441361,42537762,42537759,4114265,4277103,4075190,440793,193277,2514560,4076939,4106406,4061457,4066112,4232028,4234710,4223638,4278225,4100410,4189205,4096145,4237496,3011536,4038495,43054893,4061795,441641,40551541,4056129,42872805,2110311,4130319,4293034,4156955,4150421,4128030,4046029,36715417,36716734,4252401,4193756,40478932,443012,192691,4058243,194700,4062685,4062686,43531645,43531019,43531020,40758528,3169474,443727,4009303,2004805,4143646,40479665,4032755,4142956,2006934,4135437,37204835,37204834,43021054,4211822,434482,4016060,4173784,4314846,4313768,4071864,4309556,4149472,2004489,4106559,4309425,4168396,4138740,4074867,4072420,4074297,4022096,4024589,4084845,40757216,40757177,4071597,201958,438815,73546,200524,4130161,80471,79890,4053583,42537770,42537769,42537771,4195545,201091,198486,4059763,443418,4134722,4282151,443897,432443,4091783,437985,37017322,2721247,2721248,2211763,2211764,44807919,2211761,2211760,4149370,4201770,2784529,2784535,2784541,2784547,2784553,442915,442913,440787,4029427,4034969,4096804,435359,438871,4139551,4015420,4122728,4014453,4015161,40259069,443706,4139861,4070773,4307303,36713560,35622880,437614,138813,4040834,2722250,2211762,4137949,443700,133816,138811,137613,4116344,4058536,4294771,4129522,4029426,4030181,437611,441412,438204,443321,37018717,37017708,37017183,4207151,37017710,45770395,43527945,441085,440794,442442,4075182,4075161,42536960,4075160,42536952,4171254,4276942,4263011,42539701,42537764,440777,4327048,2110275,4167089,4127252,42537021,46270991,4032767,42536954,439924,4113994,4066014,4074443,4072852,4072863,4074569,80478,4055924,42573076,4272812,2004766,4311671,4046551,4102125,2110303,44513763,43530969,4009644,37109548,37109547,4345685,4059478,4128833,3025994,3025455,3005625,3003262,4070303,4032621,4170151,40756825,4216768,434758,81636,42537763,37206231,37206226,37206230,4074426,40493226,4074427,2004345,37396132,4034017,4065745,40479820,4147858,2213361,44790867,4226978,2004769,4075176,4257043,44513450,4211824,38001501,4173323,439128,78210,4071437,377680,4060261,4017134,194694) or concept_id in (192380,4281684,45757775,2004751,442613,437622,441924,437341,438491,4196129,434436,443521,4298980,45771070,81088,36715473,78224,4157164,4127892,4001541,4279380,4062557,4089691,4156660,3035250,3037110,40766113,3037187,46235168,3017703,3018251,46236950,3041651,3025791,3002574,4320478,3655214,3655213,4310205,4250134,4060255,433315,3173127,43530900,4004785,4150653,439923,201083,43022052,44790240,3026620,3028281,2211758,2211759,79146,4196670,37310907,43528050,43527962,43527961,43527960,43527959,2110283,3001951,4079844,75605,4071603,436228,442338,443695,4178809,80165,73268,37311827,435369,4216551,4334808,4034866,43530902,2004809,45757059,4203009,2212334,37310859,4210896,4266763,80204,4084439,3006722,437098,433311,36716504,36716503,42538545,42538544,36715840,36715841,2212438,2212439,2212436,3032604,3050978,201366,193535,196757,44790237,2110287,2110286,4146847,4145315,40759953,3003857,2110284,4271327,4061924,4281385,4142900,4314282,438541,36716530,434483,4148097,433309,44784300,432429,439129,439135,4071485,436518,36716552,444464,436220,435927,36717572,441682,440203,437975,44784362,435063,4070412,36716553,435918,4047718,4070425,4070426,435917,42538699,4070413,4048006,44784412,78563,76521,43531708,44784346,44784342,437976,4048130,36716526,433027,436219,438868,434744,434745,4047585,36717570,36716529,36716528,36716527,4118056,435062,44782462,36716731,4047586,44784411,440211,441680,44784612,44784611,436517,440829,437088,4047595,44784305,44782664,201681,441122,201410,4176131,437668,433310,433018,4048003,441684,4048004,4047711,442148,4077736,4047719,4070414,4047712,4048005,433319,432734,36716545,36716543,4328890,4230351,4067525,4096143,36716546,36716547,36716544,36717220,4262288,2110285,4015304,4318554,4151412,436804,81360,4047725,442827,72697,80463,4064277,4063296,4063297,4060672,4064177,4064178,4064169,4064171,4064172,4143204,4064174,4064175,4129181,4171110,4306064,4100257,4200202,4199559,4201383,4103472,4126735,4090743,195877,4116804,4124634,432441,4116805,4199560,439156,4126738,4201382,4126409,4090747,197343,192978,199088,3657563,4239938,4147431,4096531,4140071,42597080,37399364,2110274,4217642,4075187,4114637,435022,4032761,4324549,2004711,2004702,198495,4059969,4143634,194429,198496,81685,4071595,4070316,36716537,4048135,4273394,4244672,4096237,44807244,4034159,4032737,2721243,2721241,4296686,4003230,4104821,4338674,4068274,74716,4061187,4066260,74440,74717,76772,443328,79884,4127104,4072421,2110276,4172870,442777,77052,76750,4061522,4091200,196177,45768620,77340,81357,80778,74415,4178165,4181468,4173324,3048230,3045991,40481315,3036844,4221190,3183244,4024659,4326434,4263902,37018765,443214,442565,4058113,4214186,43530970,43530973,4181162,4324063,438542,45770261,4322726,4242241,4174506,4197245,4266517,4248725,4283690,4049621,4277749,4097608,4181751,4337360,4051642,4185780,4274955,4336226,439922,435640,444023,432430,444461,444417,4220085,434484,433864,442558,441678,443874,444267,438543,442355,443871,435655,4326232,442769,444067,4195157,4290009,4313026,4270513,4132434,4245908,762907,4169089,4236507,4042066,3003994,3037524,2212367,2212360,2212357,4094447,4017758,4077514,3049746,4275336,3025893,40762090,40758981,3023544,3005943,3016083,3014014,3031266,3048865,3034530,3011424,3014053,36304599,36303387,3019210,3004077,3038962,3034962,3022548,36031895,3023572,3002436,3001346,3016680,3045908,3030618,3015544,3020909,3033618,3011789,3015046,3034466,40759281,3008572,3016726,3017261,3004251,40763914,3000607,3002240,3010075,3049817,3004617,3003462,3003403,3004501,3041015,3039562,3027276,3043908,3026728,3025211,3006760,3017592,37020527,3052646,3026020,3006333,3049496,3032780,3036283,3041875,3041757,3012635,3006325,3036807,3044527,3048585,3002009,3007781,3024583,3041863,3048856,3023379,3043648,3040375,3039582,3013802,3040872,3044252,3014163,3038855,3021232,3033778,3012415,3008804,37020666,3039397,3017053,3001975,21494214,3039851,36660183,3029871,3034771,21492336,3025113,3005787,3040739,3009006,3040457,3038995,3038543,3041353,3038958,3040694,3040940,3043678,3009245,3017892,3014716,3008191,3016699,3007332,21492339,37021274,3050405,3010300,3017345,3002310,3026071,3025232,3004723,40760467,3032986,3035125,3044574,3040904,3007820,3038316,37020873,3052659,3026550,3048282,3041620,40759870,3041009,3043637,3041860,3015930,3000545,3040983,3004428,36660184,3023776,3043930,3038549,3042343,3041056,3041864,3042329,3041872,3040748,3006717,3007092,3042637,3025673,37021474,3041799,3026300,3019876,3021737,3000845,3022079,3032779,3035352,3010044,3040420,36660135,3025740,3026571,3025136,3030070,3013604,21492337,37019755,3050128,37020288,3028247,3010722,3003412,3041024,3041720,3042058,3019013,3003334,3007427,36659783,3002544,3038570,3053004,3027457,3005996,3009582,3039937,3027198,3020407,36659954,3014737,3010118,3040476,3042431,3010030,3030416,3035858,3015323,3039166,3027980,3022574,36660356,3038965,3020260,21492338,3023186,3018998,3028112,3003541,3024644,3005487,36660344,3021924,3013145,3032719,40761077,3009397,3013881,3005850,3035415,3039849,3052976,3033312,3021860,3004389,36660564,3023243,3022933,3040592,3041921,3012792,3028944,40761078,3017083,3050134,3023466,3004681,3022285,3023125,3004351,3038687,3050095,3032230,3011296,3018151,3008349,3019431,3017328,3031928,3041745,3039229,3052381,3024762,3004766,3025181,3049466,3029014,3000931,3042186,3007864,3038525,3031929,3035759,3002666,3025866,3026536,3025398,3001511,3020058,3019474,3005030,3003435,3049846,3002332,3006887,3040820,44816672,3042201,3041915,3051368,40760907,3041397,3020399,3020632,3015996,3001020,3016159,3017222,3027145,3010115,3032276,40759245,3024540,3006289,3022314,3034003,3037787,3011088,3028287,40761076,3010956,3031651,3005231,3000272,3031105,3012009,3032809,3019571,3029102,3039896,3024629,3042145,3039280,3043210,3042982,3043057,3035214,3033408,3004676,40757617,1002230,3005131,4149519,4229586,4144235,4018315,4151548,4230393,4286945,4036846,4182052,4218282,4017078,4018317,4249006,4331286,4018316,4149883,40762854,40762853,40762855,40762852,40762856,40762857,40762858,44816584,3042439,3000361,44816585,3046229,3035381,3044242,3020491,43055143,3040151,3021525,3001501,40762874,3020044,46235203,46235204,46235205,46235206,3051101,3020722,3052839,3051873,3051002,3040806,3042173,3036257,21491017,21491018,21492444,3023044,3036782,3013826,3038566,3044548,3040116,40757532,3001022,3039558,40757379,3038565,40757524,3040402,40762873,46236371,40757525,3038251,3043536,3041470,3041028,3045291,40757526,3040937,3003912,40757397,3041766,3038257,3038390,3040594,3038991,40757408,3036375,40758480,3039763,3036895,40757398,3042216,46234926,3042995,3021258,44786741,40757380,3009877,40757391,43534070,40757402,3042146,3038581,3050625,40757381,3050771,40757392,40757403,3041787,3007619,3044219,3040442,3041160,3043956,3040673,3041760,3042342,3040567,3037432,3020869,3011761,3039422,3051280,3015024,40757396,3040655,40757407,3044516,3040659,3015621,40757523,3038672,3038264,42868432,40757382,3018582,42868430,3039826,3041486,3043922,3043635,3041604,3039788,3006520,40757401,3043514,40758510,3040060,3019047,40757390,43534069,3041159,3040683,3040867,3034101,3041140,3042029,3038395,3044269,3040870,3040366,40757400,3009154,3016160,3017538,3038621,3016701,40757389,3041638,3040613,3012413,40757383,3040578,40757527,3040603,3015980,3005793,3039178,3008799,40757394,3040908,40757405,3041786,3016567,3039739,3044550,3038838,3022161,3000992,3044555,3013026,3041609,3017048,3017091,3038314,3017589,3041489,40757404,3041136,3042487,40757393,3038420,3040892,40762876,40757528,42868433,3014194,42868431,3040104,3022201,3043978,46235368,40758481,3051231,3023228,40757395,3047279,40757406,3044218,3023758,3039997,3017634,3017890,3042489,40757384,3039807,3045318,40757529,3044562,3003824,3041490,3018175,3004724,3040107,3049428,3040634,40757385,3040641,40757627,3041895,3002654,3041454,40757386,3040468,40757628,3041763,3039297,3038727,3040099,40762875,3038557,40757629,3038422,3045067,3041615,40757387,3039224,3040896,3043032,40757630,3041856,3041903,3040710,40757530,3007821,40757626,3041930,3041971,42868682,3006669,3019765,3004067) or concept_id in (3039439,40757531,3048522,40757388,40762250,40757399,3044522,3042469,3045105,3045131,3045158,3045700,3029462,3030745,3038434,46236948,46236367,3006893,3051044,3020618,3005570,40762249,3008770,44786994,3038515,3040563,40757618,44806589,3018056,2212361,3007308,3040980,3020650,3007777,3006684,3028014,3023961,3024785,3025622,3007971,3006258,3021752,3009261,3005875,3005589,3020820,3021033,3019493,3007031,3018958,3009251,3011355,3004629,3023638,3021635,3003453,3005851,3022233,3005370,3003201,3025876,3010617,3020455,3001283,3020450,2212359,2212364,3003169,3030177,4012477,44783612,2212363,2212362,4055679,4055678,434164,2212633,2212632,2212631,372842,4009879,4014452,437937,434110,442441,4032764,4042068,4084217,4149401,42742312,316478,440532,201129,4085415,4155624,4152629,4161205,42709943,37312073,437922,4177184,3004410,2212391,2212713,2212714,437090,440218,433603,36713168,4009645,438478,437935,435323,36716542,436529,4329097,4083118,435358,4061471,4066134,4066135,4065761,37396771,4311256,4033068,4079859,44513743,4075188,4231702,4035778,40480725,442088,77615,72696,4302252,37392366,4055287,4075170,42739014,42739011,441630,4062565,4014451,4060104,4151190,2514576,2514575,2514574,44807240,4285271,44806337,439083,44500814,73538,81923,444245,77662,4030872,4098582,4227141,4142340,436485,436173,440788,37311673,37016348,37016349,40480031,4034959,4034966,37312344,37312345,4307509,37397460,37397139,36713524,36715528,37397034,36715529,36715530,36716024,42536603,4147719,4215719,321080,192698,443244,4064834,4064835,433873,4267556,42572837,44809809,44789319,44789318,42600315,24609,4029423,45769876,45757363,4287549,3185010,45772060,4226798,4228112,36714116,30361,4029422,4232212,45757362,36676692,436534,45772056,4308657,4318803,4153365,4082045,2110292,4082412,4132295,4234390,37395921,4173187,444048,193821,439400,443705,195600,442596,439325,4143190,4138267,4185440,4303980,4066227,4182549,4223627,436169,4264914,4101477,4023781,4107907,4323434,4180859,4066994,4105762,4077275,4025828,4229716,4249728,4266243,4305348,4234979,4197900,4051784,4195243,4224143,4239192,4296872,4103148,4143018,4206453,4195297,4318662,4313005,4034753,4324965,4219608,4183557,4140509,4030415,36713470,4071514,4069972,4071513,4071641,4070223,4247275,4308509,44808373,4311629,4263688,4047260,4251180,4229140,4111906,4029951,4136531,4045297,4030067,4042067,4027550,133284,2110084,2004771,439323,437929,438487,439324,439321,439322,439320,45768717,45771353,438211,436748,437618,4146775,439328,37110280,435868,434705,440453,439329,193532,434095,439331,439330,434689,40318617,434413,437933,440460,437045,195317,432689,439688,441631,42535215,44805020,4171255,4239206,4038817,4289543,3198709,440161,2721146,2721148,2721149,2721150,2110331,2110332,2110333,2110334,2110335,2110336,2110329,2110330,37018340,43530913,43530914,43530928,43530915,43530916,43531712,43530957,43530917,43530958,43530959,43530960,43530918,43530961,43530919,43530962,43530908,43530920,43531713,43531710,43530921,43530922,43530910,43530964,43530923,43530952,43530924,43530925,43531714,43530953,43530926,43530927,43530911,43530966,43530929,43530948,43531715,43530954,43530930,43530955,43530931,43530956,43530932,43530933,43530965,43531716,43530934,43530912,43530935,43530936,43530937,43530939,43530940,43530941,43531711,43530943,43530947,43530944,43530945,43530967,43530968,4200986,44784128,4075159,4032756,2004745,37311825,4244408,4146772,4062356,4014439,4016479,4231742,4174423,37018973,4173344,4208967,4152958,4153568,4309019,436180,3655611,444244,36713475,45757187,4062133,74434,4028781,439139,433823,4008083,433266,42600083,4085257,2514556,2514569,2514555,2514558,42739633,2514563,4161783,4121775,36716540,36716538,36717351,36716541,36716740,381952,36716733,77621,79896,2213360,4112315,4074301,4128031,4071638,4018336,4229110,2212419,3049230,4020992,3010771,2212155,3022466,3004648,3004163,3004325,3011670,3003227,3011496,3020877,3002800,3035571,40759809,3001627,40759811,3001583,40759810,3007346,3000664,3011411,3037545,3033461,3038084,3037230,3021586,3021537,3002053,3019151,3015988,3012706,3024084,3037897,3000331,3033587,3008406,3005615,3024615,3034123,3003339,3017118,3011462,3011381,3022404,3023151,3013134,3009446,3018974,3019590,3000005,3022492,3019824,3023517,3034439,3029133,3013373,3022423,3016203,4060873,3030272,3016523,40758613,40758512,40758610,3020977,3036942,3037468,3037714,3021224,40758618,40758612,3038241,40758628,40758514,3001558,43534076,40758617,40758614,3038723,40758615,40758521,3019094,40758563,40758616,3039233,43534075,40758620,40758625,3038693,40758515,3037840,40758629,40758621,3041156,43534074,40758622,3042046,40758626,40758513,3038142,40758619,40758624,40758516,40758611,40758517,40758520,3033522,40758518,40758623,40758511,40758609,3022114,40758519,3012701,40758608,40758627,3015720,3008465,3017410,3033929,40762271,1001918,3040755,3029373,3046092,3019840,45769875,35622016,4129524,4129525,2212418,4017196,3010058,3016244,3049445,3048476,3019544,3049768,3043439,3045444,40771051,3011873,40759701,3046035,3017375,3046568,3046591,3008358,3052952,36659792,3027077,36660450,3049491,3011621,3046621,3017922,40771052,3033462,3051708,36660139,3016036,3052582,3029720,3046287,3048483,3036251,3018509,3049493,36660352,3024067,3004884,40759907,40760065,3026145,3049164,36660132,3012064,3029908,3046308,36659993,3052011,3015089,40759908,3012529,36660726,3017496,3018344,40759909,40760063,3051067,36659716,3009167,3053266,3030827,3045998,40760068,3036529,40760067,43055438,36660594,3016818,36660526,3027834,3029056,3012719,40760126,40760064,36660177,3006570,3052901,40760468,3049177,3030826,3023123,40760066,40760061,40760062,3012007,3028357,3051418,40759613,3030984,3019569,3015678,3029665,3018957,40760060,3031012,3028877,3028902,40759603,3009413,3048519,3049462,3050108,3052941,3029043,1002121,4254200,2004750,2004749,4217602,4197403,37117767,4023420,4072715,36716736,36716735,4149029,4303420,4298274,4149939,4242238,37110285,37205799,4065747,45773593,4030829,4066151,4138741,74162,4060687,4063309,4139858,4139060,4137390,4145843,197031,4020898,2721255,4063939,4107728,4180743,4079972,434155,4215504,44500947,195329,4199599,2788842,2721237,3049700,2721245,2721244,4138627,46273065,4058246,4079751,4184274,3655631,442772,4061672,4145664,4138633,4141534,4142402,4198705,3030662,3044819,4122929,437681,442216,439770,443734,4095288,4224254,4228443,3035350,4049629,4139552,4305334,4129837,43530880,77335,42742323,4091790,3195953,37311826,40760193,4041698,4250609,4014719,4106999,199089,194709,4154571,4152967,4112304,4034018,4218738,436167,40347147,40378260,42872572,42872571,4319321,40490893,4144415,40259107,4190526,2110299,2110300,4251314,40480864,4032749,2110240,2722205,2110245,2722217,4030430,80782,78818,36712932,4344633,2106488,4058439,4340777,4163996,434474,4061791,36713562,35622881,4206624,441082,443325,439880,3035904,4074877,4074876,4113976,444077,192379,197617,442346,439883,436474,195595,197333,4181114,4147533,4009642,4098441,4292089,4025639,4077454,441349,4280224,4214233,4294829,4328084,4046510,4243658,4183680,4216436,4324695,4324672,4045581,4204231,4269450,436747,4049453,4094081,4271203,4184150,4198404,4312358,4296459,4068253,4327321,4058932,4178578,4070939,4204206,4197681,4188764,4106892,4105063,4225572,4245041,4006979,4128988,4268175,2110236,74469,72726,36716536,4238207,4092289,4307044,40482735,40483126,194699,196170,443292,4047865,4047863,4127042,4129167,42709955,4127039,4096534,4127040,4127041,4124480,4129166,4127038,4175536,4129168,42709956,4126720,4126719,4171116,4091785,4016047,4171115,2004786,4161944,37312440,44513746,4088084,4075735,2004703,2004704,4075191,4165508,4153112,4239200,4214980,4130310,4028787,4093584,37394500,440473,36403113,4096041,77338,4071505,2004845,4170533,4069969,4069968,4151385,2004826,2004764,4338977,37205103,4070523,4048281,44784126,4016059,443295,4066354,4091196,432977,4062131,4197085,441081,443054,314432,313829,315327,4066002,443016,443015,443014,42872398,439893,4297233,40485049,40483251,40485007,40484589,434105,4143214,438206,435606,438205,443020,434697,4197402,443018,40478936,40483704,40480870,40483600,40481772,40482677,4176733,4027514,40482666,4143633,4232703) or concept_id in (439934,193591,4241979,4058519,4238980,4315046,44807900,2004762,2721012,4115153,40487510,44784273,4112952,442920,442918,442919,442917,4060424,4113218,432371,4029421,3000034,44513745,4075189,4266683,4093774,4143647,2004706,4179832,44790206,42535817,4305717,4079970,4121760,436166,435023,4129842,4028783,314090,434759,4173176,37394499,4067106,4087102,192678,195594,194704,437920,441348,193820,196746,4323612,4051244,4078393,4224646,4167685,43530979,4224597,4211863,4064536,4247270,4003276,4209126,4175137,4047775,434094,4179796,4274315,4149423,4278107,4170457,4180568,4194113,4041728,4309780,4130670,4261327,4302162,4311698,4217670,436176,4221853,4313166,4310654,4216342,4031837,4253804,4200070,4049891,4339107,4168445,4219469,4001856,4195406,4189350,4285746,4244261,4085627,4006806,4033096,76482,4063183,72970,78817,4278101,42539560,4030429,4034094,36675173,37016955,4146288,43021951,43021952,4199931,433260,437041,4310471,2110337,4163851,4063163,4063162,4059751,75015,42539267,36713468,3045823,432969,442082,4063175,4178154,42599849,3000119,201957,37311912,37311911,37311910,37311909,37311908,37311907,4172307,765023,4319457,433589,252442,437374,4172995,434154,4171248,443522,440840,4070650,4070651,4070648,4106274,4110550,761919,4129290,4173173,36674511,4269452,36717459,4173019,4170953,4173020,373870,4210315,4206035,4239540,4244718,4291447,193323,36716761,42537680,44784276,44784301,44784360,36717269,4050236,4025181,36715839,36716750,36717488,3188843,3175980,3173911,4173004,44792481,36712969,4180181,37109016,4243042,42538558,42538557,42536722,36717593,42538559,4320490,4318835,4214373,4132505,23034,36716745,443618,4174302,76221,36676688,42536730,42536732,42536731,42539039,37399026,42536733,435656,440847,4170445,439137,4221399,4239658,4071740,4048614,4071080,4048294,42536729,36716886,4048608,36717505,4308227,42535103,761782,37116437,42538263,42536564,439140,42537679,42537678,3182078,257375,4048286,4316374,4316375,318856,36715567,761851,761852,4298866,4300236,443523,4264166,137099,4243198,4210115,36717571,4047937,194598,2101016,2101813,4034967,4171104,4173513,46284810,4079843,4173194,4173193,4171092,4079846,3200880,2721181,4173180,4207827,42739015,4129520,4127831,3655876,4029424,76533,37017029,36715842,4176715,4071630,4275443,442573,36713477,45757111,4127248,44790222,4080067,4171058,4148533,4149402,4187237,4201764,4014720,4080889,4063160,4070222,4071507,4009404,42739012,4217975,45765512,4028938,4186424,3002549,442051,442050,314107,432976,442294,45757105,4064980,45757106,4065091,4064979,442053,433545,437060,443263,74433,78494,78218,443293,4063697,75326,442079,4084521,4080059,4038747,192979,193269,200472,197048,442080,442083,4140250,441925,441926,433837,79897,76491,76771,2212094,201368,193271,4060178,4129839,4034149,194439,192387,442417,435026,433832,439380,439379,4081774,195025,442071,4065635,2004846,76763,44790279,4059051,4085285,193827,197051,199087,193273,192694,196182,442440,4061852,46269810,4060036,4060037,4064819,37310898,4064821,45757117,4061850,37396169,194100,194711,193831,4060039,45772074,4064423,4064424,42536563,4060038,4064437,4300773,444404,252305,3655849,4091789,4038420,4038571,4038945,4039088,4038943,4038942,4038426,4039610,4150948,4038938,4038760,4038418,4038749,4038751,4038932,4039602,4038753,4038754,4038755,4038934,4038756,4255282,4038935,4038748,4039609,4038759,4175225,4038424,4171428,4039608,4038941,4038939,4038937,4038573,4039603,4194143,4173013,196159,434111,433274,432386,4107071,4034650,201136,4073719,2213351,4072862,2004767,4119975,2004746,2004802,2004822,2004811,46232934,2004765,2004707,2004862,2004783,2004768,2004724,2004348,4191809,44513736,44513756,44513729,44513747,2004731,44513476,44513468,44517168,44513799,44513812,4075024,44513634,44513740,44513733,44513516,44513803,44513791,44513816,44513752,2004747,2004726,2004730,4145318,4127249,73824,72378,42535816,200153,4049041,443323,4159154,4319461,4336392,4079236,4234421,4023797,4267567,4248080,4145439,4296604,4231407,195075,4211227,4025199,198221,4314877,442829,195019,4285751,4172869,4073428,36716687,37204732,4306199,374748,4321550,36716757,4084442,260212,4080888,135370,134760,4187201,4079851,4173002,4171097,4173179,4173198,4300467,194158,439931,42872438,42536566,4171096,4173181,4105262,4171102,42536745,258564,4171091,199925,4174299,4173000,436519,4071743,195064,438869,4071737,4071735,433029,4048292,4071076,4071736,4048610,3663236,4071717,4048282,3655840,4287783,4079855,4173197,4006329,4278842,4263343,43021073,313590,4171108,4243494,4048166,37017557,37017566,37019087,4071198,4301414,4080885,260841,4079973,4171123,4173332,4173001,4166754,4171100,4048607,197349,4307825,439390,4187920,4272706,4296470,4002900,4239205,4311670,4032920,4242693,4197221,197608,199086,4062566,372435,43531641,37110041,197970,444374,317941,4129183,4269051,3013297,4103235,42537765,4261326,4073438,4016476,4014718,198488,193539,201350,2721184,200784,4014716,4034100,4064854,4217071,4028645,44502733,42600135,4016475,4284028,4172142,196751,193264,200149,194710,201359,192372,4014292,4041726,4210719,4041725,4210721,44812174,4210718,4269036,4268422,4041724,4305235,4297988,36716548,36716549,4278356,437623,434427,433540,4173347,72693,75639,196764,4056338,437369,4245166,440833,4014156,4015415,4015152,4015410,4014446,435031,4062264,4215564,4015413,4055488,4014445,4015154,4014281,4014280,4014443,4075295,44811076,4297232,4015414,4014442,4015412,4014282,4062362,4015151,4015150,4034146,4015149,4151029,4182691,4023382,4295363,37116834,4006327,4336810,4225411,312383,4047392,2110314,4113199,436483,441363,4061341,4169890,4239471,4203918,45773073,4266066,4041280,45757789,4012240,443929,37110289,37108740,4158274,4162754,42534817,4253057,4146731,4169742,4273241,4028024,4185531,4011238,4228830,35622939,45757788,4057246,42535649,440465,4035468,4104354,4007389,4300708,4278355,4222573,4318816,4174510,4199437,4325457,4091199,4321231,4219015,4116187,4126074,441128,432695,439894,434695,45773507,4096468,433542,438220,435024,439393,141084,135601,134414,136743,4146816,4277110,4151903,321074,4219466,4146514,4242853,4144221,4182243,4220981,4305491,762490,4129519,3051741,3014064,2212548,3021584,4148890,438209,4062674,439348,4250175,4167493,4062574,4094910,4061785,4060237,4157329,4299535,4059982,4061686,4059984,4061411,4059981,3174212,4097427,4222915,4147043,4142021,4242724,4310910,4069200,4145125,4082863,4008884,4107401,4029786,4184594,4086393,4125778,4217564,4147874,4273560,4175637,194702,200160,4064709,200468,4058403,440519,440525,36675035,4138554,2618150,2618151,2618152,2618154,2618155,4176966,4112701,4311447,4172038,4313474,2213352,4129040,37110284,37110283,45757175,45757176,36712702,44784550,44784551,4098718,40318194,314479,258554,37311892,4300387,201516,37204277,4230947,4262580,443435,196762,196759,4133029,4060105,4120303,4230252,72692,4058679,440476,441645,435883,4171094,440475,441362,434435,440167,4308660,3189930,4171095,192972,434431,434714,37017049,437620,40757377,3043821,45770185,4082504,4150734,442419,442418,313272,313833,4328870,4065749,4061463,4024972,4297611,4339312,4062259,4034154,435028,434713,432389,4050255,4062257,4102318,4065753,3655209,3655210,4263344,42600161,4272315,45765500,442594,438481,440466,45757166,45773428,42539377,40479425,40484115,40485034,40479799,40484114,40484139,40485040,40479401,40483242,40484576,40484575,40485039,40483659,4182146,4061423,45765501,45757167,45757168,42538805,3046853,40484021,4153111,4042065,4042725,4055671,40481539,4149994,4113503,4114280,4150401,4173350,764688,764646,77619,4190767,4081292,46272536,4084693,4214930,3040000,2004342,2004546,2110339,4308664,4227423,4247895,2004788,4300391,4309622,4153287,2004343,192679,45757120,195014,42537766,197930,200157,192684,4095115,2109484,2109483,2004842,2004829,2004830,4230535,2004843,4319897,2004828,4071642,4172666,4135477,2004844,2004831,4033994,4086797,40482435,319138,258866,4173177,4318553,4109090,4115155,4003030,4129038,44782606,4003031,4150001,442078,200792,200789,4064977,201642,4170121) or concept_id in (4062112,373766,36684687,36684686,36684685,36684684,36684624,36684623,36684622,36684621,45772079,375250,375251,379009,443519,443520,442549,36713478,437061,435612,438823,45757159,45757160,4194811,40490338,4035336,4232323,196484,198216,196486,4060560,44790242,199891,195878,192376,4061158,4061159,4061806,3023524,4127253,4074424,4072837,4047564,4121924,2110315,2110322,2110307,2110319,44790189,36713471,4102697,4275129,4338888,4049040,4304587,4323287,198816,192699,4064960,194106,45757588,2110247,4032000,2004346,4316051,4021363,4073272,4239009,2004351,2004362,2004308,4263669,2110253,2004307,2004306,4174422,4120817,4071592,4047853,133028,4301415,136530,4174577,40318195,37206228,37206227,37206229,4173636,4312727,4065618,192974,192384,197346,198492,198499,197337,4327745,4244438,3049229,4083415,4260976,4089029,4186827,4159149,762709,762579,4096674,4147409,4146454,4147408,4091293,4264738,4009954,4060807,4187090,37116435,42536689,4048275,46270041,763027,4071063,3655212,3655211,137371,4080587,4042760,4161969,4275335,4195345,4041723,4210722,4195509,4198892,4156811,4150492,4041161,4042412,4042759,4042751,432427,4121417,4153452,4032345,4029420,36675039,4129184,4129843,433536,438490,439077,132685,4057976,4172871,4092760,45765502,45772082,45757169,42538806,4127241,442271,438226,435020,437946,80474,75608,72377,4170152,4014295,40483521,36713074,4014454,36713465,257370,4122747,4126736,46284319,4166847,4087113,4174056,3174052,4064286,4150640,4162239,3050414,4318858,4165092,4102446,4194977,2213358,2213357,2110198,44784365,4047857,4070526,44784364,77679,4169992,4150803,4073422,4008578,761781,4309364,4015143,4167497,4205240,198212,4091461,4298015,40406337,443213,4287409,4217655,4261819,4321563,4301269,4103876,4300979,443463,2721254,4301412,4168056,4174198,4047868,378544,4130539,4095178,4183593,42538556,4030259,4063159,4205437,4300419,42739013,2514557,42739550,2514564,2514572,42740403,2514571,42739401,2514570,2101831,2110318,4022098,4150538,4027161,442058,439094,439095,435331,435332,4143293,4150337,79098,76770,3017439,4073432,2110295,2110298,2110296,2110297,2110293,2110294,43530886,43530888,434480,42538560,436171,4129023,4079854,4171107,4227728,4306288,4330570,4049333,4192641,4243026,4066292,4193224,4336090,4199146,4307237,4178275,4203001,4297250,4240605,43020954,40258875,43530907,4212260,4336958,4296038,133024,4189561,4030009,4299609,193830,193275,199097,197625,37311704,200469,4060183,4142581,4218813,4180111,444082,440457,4252252,4294259,4032055,3186670,139888,36713271,36713272,4222152,442300,136755,138479,139895,138207,138484,2213255,4019096,4214677,2004331,4204679,44789306,2004330,141370,4061350,2110288,4169966,4169965,44790511,441922,137940,141639,136760,4173327,4079845,4129378,433604,42536567,439149,36716753,36716754,4033200,435076,4048930,4049028,4048742,42536568,198870,4173172,436234,433314,4071744,4048620,4171099,321683,40490447,4324606,4335250,4324607,4073406,40490322,4063171,81358,4104199,4174854,4267072,4071600,36716539,36716739,439093,42536749,432975,4161678,3655718,4134431,4326563,2111055,2110325,2110326,2110327,2110328,4290245,4073424,4094046,4078287,4014290,42539210,432375,440462,437931,4014456,4015422,45757165,4015163,4015421,3051868,44499531,4101082,4127106,199076,4030182,196758,196181,197049,192385,4101844,40483084,40483101,42535052,441919,435018,434097,4014296,4015162,4014455,42709935,42709936,42709937,4279146,2211785,2211784,2211782,37397735,4082534,42535558,42535559,42535553,42535246,40488298,40486918,40487413,45773218,46271899,45765925,44807918,40492794,40489798,42690777,3031159,40756968,44790261,2211750,2211749,2211748,2211747,2211752,2211751,2211754,2211753,2211756,2211755,2211757,3657421,4237338,4082672,4237339,4060624,4060626,4152021,4028775,441646,4126410,4126742,4122872,4126741,435325,4122742,4126740,4126737,4122745,4126408,4126734,36675671,4126739,45769826,4060157,4061971,438259,4079860,4098631,4336229,4301905,2110340,2110342,4307820,4059985,4113986,4113983,2004742,4113036,4112954,79091,79889,72374,4239301,40483205,4151214,4129178,4289453,2212169,46269813,4062569,4242401,4146482,4055426,4192542,4151414,4055970,4055823,4042238,4042239,4055289,4055822,4055288,4055954,37392365,4055285,2212173,4014769,4041878,4149386,4174400,4170107,4060623,4060622,4061129,4061130,4059697,4254201,2110338,4064145,4053158,4286205,197938,45757158,194101,3023791,4128172,4127208,44790180,44790181,4075171,2004729,442069,193544,37109810,4228344,4331179,44784097,2110320,2110321,2110308,2110309,4167018,4145316,4096535,4147415,442290,441644,442059,434712,4143292,443242,435610,441929,432701,4147395,435609,435021,321367,315884,4300078,440158,313543,43530951,4009180,4079858,435925,4149523,4129027,435604,42742355,35625971,4169915,440785,40525252,40519557,40524819,40517216,40524802,443246,441087,438214,4071599,4031282,4091198,4034153,40525253,40524805,4131031,4071632,4132649,4259640,4132657,4256500,4132658,4132659,4259641,4259638,4256502,4253755,4259642,4256501,4253756,4256497,4256496,4259639,4253753,4256498,4132652,4132653,4253752,4132654,4253754,4132655,4256499,4132656,4259636,765764,763782,4010343,4010841,4010843,4010842,4010344,765794,40394878,40514773,40388780,40356741,40394902,4020897,4127105,444098)) + +) I +) C UNION ALL +SELECT 62 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (436477,444365,42597053,42597052,42597051,201076,197612,438812,195319,42599848,2721147,2784560,2784559,2784555,2784556,2784557,2784558,2784561,2784562,440776,440454,42739743,2101811,2101812,2004526,4212941,2004525,4028644,4262136,4261479,40482050,437046,439085,441629,441921,4146774,441073,438196,40318618,441910,432682,441632,435318,435000,436742,438805,4113352,45757769,42537759,4114265,4149472,4106559,2004489,4168396,4138740,4074867,4074297,42537769,4113994,42573076,4032621,4170151,37206231,37206226,37206230,4147858,4257043,44513450,4017134,194694,4281684,75605,436228,2110292,4082412,444048,193821,439400,443705,195600,442596,439325,4143190,4138267,4185440,4303980,4066227,4182549,4223627,436169,4264914,4101477,4023781,4107907,4323434,4180859,4066994,4105762,4077275,4025828,4229716,4249728,4266243,4305348,4234979,4197900,4051784,4195243,4224143,4239192,4296872,4103148,4143018,4206453,4195297,4318662,4313005,4034753,4324965,4219608,4183557,4140509,439323,437929,438487,439324,439321,439322,439320,45768717,45771353,438211,436748,437618,4146775,439328,37110280,435868,434705,440453,439329,193532,434095,439331,439330,40318617,434689,434413,437933,440460,437045,195317,432689,439688,441631,42535215,44805020,2721146,2721148,2721149,2721150,2110331,2110332,2110333,2110334,2110335,2110336,2110329,2110330,37018340,43530913,43530914,43530928,43530915,43530916,43531712,43530957,43530917,43530958,43530959,43530960,43530918,43530961,43530919,43530962,43530908,43530920,43531713,43531710,43530921,43530922,43530910,43530964,43530923,43530952,43530924,43530925,43531714,43530953,43530926,43530927,43530911,43530966,43530929,43530948,43531715,43530954,43530930,43530955,43530931,43530956,43530932,43530933,43530965,43531716,43530934,43530912,43530935,43530936,43530937,43530939,43530940,43530941,43531711,43530943,43530947,43530944,43530945,43530967,43530968,4200986,44784128,4244408,4146772,4121775,4112315,4074301,4071638,4063309,4163996,4113976,444077,192379,197617,442346,439883,436474,195595,197333,4181114,4147533,4009642,4098441,4292089,4025639,4077454,441349,4280224,4214233,4294829,4328084,4046510,4243658,4183680,4216436,4324695,4324672,4045581,4204231,4269450,436747,4049453,4094081,4271203,4184150,4198404,4312358,4296459,4068253,4327321,4058932,4178578,4070939,4204206,4197681,4188764,4106892,4105063,4225572,4245041,4238207,44807900,2721012,4115153,40487510,4067106,4087102,192678,195594,194704,437920,441348,193820,196746,4323612,4051244,4078393,4224646,4167685,4224597,4211863,4064536,4247270,4003276,4209126,4175137,4047775,434094,4179796,4274315,4149423,4278107,4170457,4180568,4194113,4041728,4309780,4130670,4261327,4302162,4311698,4217670,436176,4221853,4313166,4310654,4216342,4031837,4253804,4200070,4049891,4339107,4168445,4219469,4001856,4195406,4189350,4285746,4244261,4085627,4006806,4033096,76482,42599849,4119975,44513476,4149994,4113503,4114280,4150401,4190767,4153287,4086797,4170121,37206228,37206227,37206229,4150538,4297250,4240605,43020954,43530907,4189561,4030009,4299609,2110325,2110326,2110327,2110328,4113986,4113983,4113036,4112954,46269813,44790180,44790181)) + +) I +) C UNION ALL +SELECT 63 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4015296,4014149,4014150,44808979,4015141,44808980,4014151,44808981,4015297,4015298,4014434,4015299,4015142,4014152,4015300,4015301,4015302,4014435,4178165,4181468,4181162,4324063,438542,45770261,4322726,4242241,4174506,4197245,4266517,4248725,4283690,4049621,4277749,4097608,4181751,4051642,4185780,4274955,4336226,439922,435640,444023,432430,444461,444417,4220085,434484,433864,442558,441678,443874,444267,438543,442355,443871,435655,4326232,442769,444067,4195157,4290009,4313026,4270513,4132434,4245908,762907,4336958,4180111,444098)) + +) I +) C UNION ALL +SELECT 64 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4015296,4014149,4014150,44808979,4015141,44808980,4014151,44808981,4015297,4015298,4014434,4015299,4015142,4014152,4015300,4015301,4015302,4014435,4178165,4181468,4181162,4324063,438542,45770261,4322726,4242241,4174506,4197245,4266517,4248725,4283690,4049621,4277749,4097608,4181751,4051642,4185780,4274955,4336226,439922,435640,444023,432430,444461,444417,434484,433864,442558,441678,443874,444267,438543,442355,443871,435655,4326232,442769,444067,4195157,4290009,4313026,4270513,4132434,4245908,762907,4336958,4180111,444098)) + +) I +) C UNION ALL +SELECT 65 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4015296,4014149,4014150,44808979,4015141,44808980,4014151,44808981,4015297,4015298,4014434,4015299,4015142,4014152,4015300,4015301,4015302,4014435,4178165,4181468,4181162,4324063,438542,45770261,4322726,4242241,4174506,4197245,4266517,4248725,4283690,4049621,4277749,4097608,4181751,4051642,4185780,4274955,4336226,439922,435640,444023,432430,444461,444417,434484,433864,442558,441678,443874,444267,438543,442355,443871,435655,442769,444067,4195157,4290009,4313026,4270513,4132434,4245908,762907,4336958,4180111,444098)) + +) I +) C UNION ALL +SELECT 66 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4015296,4014149,4014150,44808979,4015141,44808980,4014151,44808981,4015297,4015298,4014434,4015299,4015142,4014152,4015300,4015301,4015302,4014435,4178165,4181468,4181162,4324063,438542,45770261,4322726,4242241,4174506,4197245,4266517,4248725,4283690,4049621,4277749,4097608,4181751,4051642,4185780,4274955,4336226,439922,435640,444023,432430,444461,444417,434484,433864,442558,441678,443874,444267,438543,442355,443871,435655,442769,444067,4290009,4313026,4270513,4132434,4245908,762907,4336958,4180111,444098)) + +) I +) C UNION ALL +SELECT 67 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4015296,4014149,4014150,44808979,4015141,44808980,4014151,44808981,4015297,4015298,4014434,4015299,4015142,4014152,4015300,4015301,4015302,4014435,4178165,4181468,4181162,4324063,438542,45770261,4322726,4242241,4174506,4197245,4266517,4248725,4283690,4049621,4277749,4097608,4181751,4051642,4185780,4274955,4336226,439922,435640,444023,432430,444461,444417,434484,433864,442558,441678,443874,444267,438543,442355,443871,435655,442769,444067,4313026,4270513,4132434,4245908,762907,4336958,4180111,444098)) + +) I +) C UNION ALL +SELECT 68 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4015296,4014149,4014150,44808979,4015141,44808980,4014151,44808981,4015297,4015298,4014434,4015299,4015142,4014152,4015300,4015301,4015302,4014435,4178165,4181468,4181162,4324063,438542,45770261,4322726,4242241,4174506,4197245,4266517,4248725,4283690,4049621,4277749,4097608,4181751,4051642,4185780,4274955,4336226,439922,435640,444023,432430,444461,444417,434484,433864,442558,441678,443874,444267,438543,442355,443871,435655,442769,444067,4270513,4132434,4245908,762907,4336958,4180111,444098)) + +) I +) C UNION ALL +SELECT 69 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4015296,4014149,4014150,44808979,4015141,44808980,4014151,44808981,4015297,4015298,4014434,4015299,4015142,4014152,4015300,4015301,4015302,4014435,4178165,4181468,4181162,4324063,438542,45770261,4322726,4242241,4174506,4197245,4266517,4248725,4283690,4049621,4277749,4097608,4181751,4051642,4185780,4274955,4336226,439922,435640,444023,432430,444461,444417,434484,433864,442558,441678,443874,444267,438543,442355,443871,435655,442769,444067,4132434,4245908,762907,4336958,4180111,444098)) + +) I +) C UNION ALL +SELECT 70 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4015296,4014149,4014150,44808979,4015141,44808980,4014151,44808981,4015297,4015298,4014434,4015299,4015142,4014152,4015300,4015301,4015302,4014435,4178165,4181468,4181162,4324063,438542,45770261,4242241,4174506,4197245,4266517,4248725,4283690,4049621,4277749,4097608,4181751,4051642,4185780,4274955,4336226,439922,435640,444023,432430,444461,444417,434484,433864,442558,441678,443874,444267,438543,442355,443871,435655,442769,444067,4245908,762907,4336958,4180111,444098)) + +) I +) C UNION ALL +SELECT 71 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4015296,4014149,4014150,44808979,4015141,44808980,4014151,44808981,4015297,4015298,4014434,4015299,4015142,4014152,4015300,4015301,4015302,4014435,4178165,4181468,4181162,4324063,438542,45770261,4242241,4174506,4197245,4266517,4248725,4283690,4049621,4277749,4097608,4181751,4051642,4185780,4274955,4336226,439922,435640,444023,432430,444461,444417,434484,433864,442558,441678,443874,444267,438543,442355,443871,435655,442769,444067,762907,4336958,4180111,444098)) + +) I +) C UNION ALL +SELECT 72 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4015296,4014149,4014150,44808979,4015141,44808980,4014151,44808981,4015297,4015298,4014434,4015299,4015142,4014152,4015300,4015301,4015302,4014435,4178165,4181468,4181162,4324063,438542,45770261,4174506,4197245,4266517,4248725,4283690,4049621,4277749,4097608,4181751,4051642,4185780,4274955,4336226,439922,435640,444023,432430,444461,444417,434484,433864,442558,441678,443874,444267,438543,442355,443871,435655,442769,444067,762907,4336958,4180111,444098)) + +) I +) C UNION ALL +SELECT 73 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4015296,4014149,4014150,44808979,4015141,44808980,4014151,44808981,4015297,4015298,4014434,4015299,4015142,4014152,4015300,4015301,4015302,4014435,4178165,4181468,4181162,4324063,438542,45770261,4197245,4266517,4248725,4283690,4049621,4277749,4097608,4181751,4051642,4185780,4274955,4336226,439922,435640,444023,432430,444461,444417,434484,433864,442558,441678,443874,444267,438543,442355,443871,435655,442769,444067,762907,4336958,4180111,444098)) + +) I +) C UNION ALL +SELECT 74 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4014149,4014150,44808979,4015141,44808980,4014151,44808981,4015297,4015298,4014434,4015299,4015142,4014152,4015300,4015301,4015302,4014435,4178165,4181468,4181162,4324063,438542,45770261,4266517,4248725,4283690,4049621,4277749,4097608,4181751,4051642,4185780,4274955,4336226,439922,435640,444023,432430,444461,444417,434484,433864,442558,441678,443874,444267,438543,442355,443871,435655,442769,444067,762907,4336958,4180111,444098)) + +) I +) C UNION ALL +SELECT 75 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4014149,4014150,44808979,4015141,44808980,4014151,44808981,4015297,4015298,4014434,4015299,4015142,4014152,4015300,4015301,4015302,4014435,4178165,4181162,4324063,438542,45770261,4248725,4283690,4049621,4277749,4097608,4181751,4051642,4185780,4274955,4336226,439922,435640,444023,432430,444461,444417,434484,433864,442558,441678,443874,444267,438543,442355,443871,435655,442769,444067,762907,4336958,4180111,444098)) + +) I +) C UNION ALL +SELECT 76 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4014149,4014150,44808979,4015141,44808980,4014151,44808981,4015297,4015298,4014434,4015299,4015142,4014152,4015300,4015301,4015302,4014435,4178165,4181162,4324063,438542,45770261,4283690,4049621,4277749,4097608,4181751,4051642,4185780,4274955,4336226,439922,435640,444023,432430,444461,444417,434484,433864,442558,441678,443874,444267,438543,442355,443871,435655,442769,444067,762907,4336958,4180111,444098)) + +) I +) C UNION ALL +SELECT 77 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4014149,4014150,44808979,4015141,44808980,4014151,44808981,4015297,4015298,4014434,4015299,4015142,4014152,4015300,4015301,4015302,4014435,4178165,4181162,4324063,438542,45770261,4049621,4277749,4097608,4181751,4051642,4185780,4274955,4336226,439922,435640,444023,432430,444461,444417,434484,433864,442558,441678,443874,444267,438543,442355,443871,435655,442769,444067,762907,4336958,4180111,444098)) + +) I +) C UNION ALL +SELECT 78 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4014435,444067)) + +) I +) C UNION ALL +SELECT 79 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4015302,4014435,442769,444067)) + +) I +) C UNION ALL +SELECT 80 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4015301,4015302,4014435,442769,444067,4336958,444098)) + +) I +) C UNION ALL +SELECT 81 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4014150,44808979,4015141,44808980,4014151,44808981,4015297,4015298,4014434,4015299,4015142,4014152,4015300,4015301,4015302,4014435,4178165,4181162,4324063,438542,45770261,4277749,4097608,4181751,4051642,4185780,4274955,4336226,439922,435640,444023,432430,444461,444417,434484,433864,442558,441678,443874,444267,438543,442355,443871,435655,442769,444067,762907,4336958,4180111,444098)) + +) I +) C UNION ALL +SELECT 82 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4014150,44808979,4015141,44808980,4014151,44808981,4015297,4015298,4014434,4015299,4015142,4014152,4015300,4015301,4015302,4014435,4178165,4181162,4324063,438542,45770261,4097608,4181751,4051642,4185780,4274955,4336226,439922,435640,444023,432430,444461,444417,434484,433864,442558,441678,443874,444267,438543,442355,443871,435655,442769,444067,762907,4336958,4180111,444098)) + +) I +) C UNION ALL +SELECT 83 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4014150,44808979,4015141,44808980,4014151,44808981,4015297,4015298,4014434,4015299,4015142,4014152,4015300,4015301,4015302,4014435,4178165,4181162,4324063,438542,45770261,4181751,4051642,4185780,4274955,4336226,439922,435640,444023,432430,444461,444417,434484,433864,442558,441678,443874,444267,438543,442355,443871,435655,442769,444067,762907,4336958,4180111,444098)) + +) I +) C UNION ALL +SELECT 84 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4014150,44808979,4015141,44808980,4014151,44808981,4015297,4015298,4014434,4015299,4015142,4014152,4015300,4015301,4015302,4014435,4178165,4181162,438542,45770261,4051642,4185780,4274955,4336226,439922,435640,444023,432430,444461,444417,434484,433864,442558,441678,443874,444267,438543,442355,443871,435655,442769,444067,762907,4336958,4180111,444098)) + +) I +) C UNION ALL +SELECT 85 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (44808979,4015141,44808980,4014151,44808981,4015297,4015298,4014434,4015299,4015142,4014152,4015300,4015301,4015302,4014435,438542,45770261,4185780,4274955,4336226,439922,435640,444023,432430,444461,444417,434484,433864,442558,441678,443874,444267,438543,442355,443871,435655,442769,444067,762907,4336958,4180111,4181162,444098)) + +) I +) C UNION ALL +SELECT 86 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4014151,44808981,4015297,4015298,4014434,4015299,4015142,4014152,4015300,4015301,4015302,4014435,434484,433864,442558,441678,443874,444267,438543,442355,443871,435655,442769,444067,762907,4336958,4180111,444098)) + +) I +) C UNION ALL +SELECT 87 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (44808979,4015141,44808980,4014151,44808981,4015297,4015298,4014434,4015299,4015142,4014152,4015300,4015301,4015302,4014435,438542,45770261,4274955,4336226,439922,435640,444023,432430,444461,444417,434484,433864,442558,441678,443874,444267,438543,442355,443871,435655,442769,444067,762907,4336958,4180111,444098)) + +) I +) C UNION ALL +SELECT 88 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (44808981,4015297,4015298,4014434,4015299,4015142,4014152,4015300,4015301,4015302,4014435,433864,442558,441678,443874,444267,438543,442355,443871,435655,442769,444067,762907,4336958,4180111,444098)) + +) I +) C UNION ALL +SELECT 89 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4015300,4015301,4015302,4014435,435655,442769,444067,4336958,444098)) + +) I +) C UNION ALL +SELECT 90 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4014152,4015300,4015301,4015302,4014435,443871,435655,442769,444067,4336958,444098)) + +) I +) C UNION ALL +SELECT 91 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4015142,4014152,4015300,4015301,4015302,4014435,442355,443871,435655,442769,444067,762907,4336958,444098)) + +) I +) C UNION ALL +SELECT 92 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4015299,4015142,4014152,4015300,4015301,4015302,4014435,438543,442355,443871,435655,442769,444067,762907,4336958,444098)) + +) I +) C UNION ALL +SELECT 93 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4014434,4015299,4015142,4014152,4015300,4015301,4015302,4014435,444267,438543,442355,443871,435655,442769,444067,762907,4336958,4180111,444098)) + +) I +) C UNION ALL +SELECT 94 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4015141,44808980,4014151,44808981,4015297,4015298,4014434,4015299,4015142,4014152,4015300,4015301,4015302,4014435,438542,45770261,4336226,439922,435640,444023,432430,444461,444417,434484,433864,442558,441678,443874,444267,438543,442355,443871,435655,442769,444067,762907,4336958,4180111,444098)) + +) I +) C UNION ALL +SELECT 95 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4015141,44808980,4014151,44808981,4015297,4015298,4014434,4015299,4015142,4014152,4015300,4015301,4015302,4014435,45770261,439922,435640,444023,432430,444461,444417,434484,433864,442558,441678,443874,444267,438543,442355,443871,435655,442769,444067,762907,4336958,4180111,444098)) + +) I +) C UNION ALL +SELECT 96 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (44808980,4014151,44808981,4015297,4015298,4014434,4015299,4015142,4014152,4015300,4015301,4015302,4014435,45770261,435640,444023,432430,444461,444417,434484,433864,442558,441678,443874,444267,438543,442355,443871,435655,442769,444067,762907,4336958,4180111,444098)) + +) I +) C UNION ALL +SELECT 97 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4014151,44808981,4015297,4015298,4014434,4015299,4015142,4014152,4015300,4015301,4015302,4014435,45770261,444023,432430,444461,444417,434484,433864,442558,441678,443874,444267,438543,442355,443871,435655,442769,444067,762907,4336958,4180111,444098)) + +) I +) C UNION ALL +SELECT 98 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4014151,44808981,4015297,4015298,4014434,4015299,4015142,4014152,4015300,4015301,4015302,4014435,45770261,432430,444461,444417,434484,433864,442558,441678,443874,444267,438543,442355,443871,435655,442769,444067,762907,4336958,4180111,444098)) + +) I +) C UNION ALL +SELECT 99 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4014151,44808981,4015297,4015298,4014434,4015299,4015142,4014152,4015300,4015301,4015302,4014435,444461,444417,434484,433864,442558,441678,443874,444267,438543,442355,443871,435655,442769,444067,762907,4336958,4180111,444098)) + +) I +) C UNION ALL +SELECT 100 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4014151,44808981,4015297,4015298,4014434,4015299,4015142,4014152,4015300,4015301,4015302,4014435,444417,434484,433864,442558,441678,443874,444267,438543,442355,443871,435655,442769,444067,762907,4336958,4180111,444098)) + +) I +) C UNION ALL +SELECT 101 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4015297,4015298,4014434,4015299,4015142,4014152,4015300,4015301,4015302,4014435,442558,441678,443874,444267,438543,442355,443871,435655,442769,444067,762907,4336958,4180111,444098)) + +) I +) C UNION ALL +SELECT 102 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4015298,4014434,4015299,4015142,4014152,4015300,4015301,4015302,4014435,441678,443874,444267,438543,442355,443871,435655,442769,444067,762907,4336958,4180111,444098)) + +) I +) C UNION ALL +SELECT 103 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4015298,4014434,4015299,4015142,4014152,4015300,4015301,4015302,4014435,443874,444267,438543,442355,443871,435655,442769,444067,762907,4336958,4180111,444098)) + +) I +) C UNION ALL +SELECT 104 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4215648,4312095,3655216,3655215,3655206,3655205,4152444,45763635,3655208,3655207,4147060,44783183,4135209,40483581,440464,4100193,4185718,4232953,4173946,42537767,42537768,4174543,4194053,4216382,4266839,42537762,42537770,42537771,437611,4276942,42539701,42537764,4066014,42537763,40493226,3655214,3655213,4149029,4066151,4063939,42872572,42872571,4112952,4113218,43530979,4107071,200153,4336392,4314877,42537765,4023382,3655209,3655210,4308664,4227423,4247895,4300391,45757120,42537766,4095115,4316051,4239009,4174577,4187090,3655212,3655211,4080587,2110295,2110298,2110297,4296038,199076,4151214,4242401,4129027)) + +) I +) C UNION ALL +SELECT 107 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4200678,4300368,4093429,2004347,4107080,4142956,40757216,40757177,40259069,4074443,4074426,4074427,2004345,4196129,4001541,4306064,4100257,4084217,4085257,40347147,40378260,4319321,40490893,4190526,2110299,2110300,4251314,40480864,4032749,2110240,2722205,2110245,2722217,4074877,4074876,4214980,2004348,4267567,2004342,2004788,2004343,4074424,4072837,2110247,4032000,2004346,4021363,4073272,2004351,2004362,4263669,2004308,2110253,2004307,2004306,2110296,2110293,2110294,40258875,4019096,2004331,2004330,4336229,4301905)) + +) I +) C UNION ALL +SELECT 108 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (432452,4014461,4151169,4015275,4149449,37016220,37016221,4149457,37016222,37018684,46271955,37016216,37016217,37016218,37016213,46271814,37018683,37018889,37016212,762577,37016211,4014299,4149451,4150406,4150405,4150404,4015274,36684754,37207968,36684753,36684752,36684751,4141513,4195545,38001501,439128,4148097,4118056,72726,36675173,440847,4086393,4217564,4147874,4273560,4175637,4064709,4058403,440519,440525,36675035,37311892,2109484,2109483,373766,36684687,36684686,36684685,36684684,36684624,36684623,36684622,36684621,45772079,375250,375251,379009,443519,443520,136530,2514572,42740403,2514571,42739401,2514570,2111055,435925,4149523)) + +) I +) C UNION ALL +SELECT 109 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (1305058)) +UNION select c.concept_id + from @vocabulary_database_schema.CONCEPT c + join @vocabulary_database_schema.CONCEPT_ANCESTOR ca on c.concept_id = ca.descendant_concept_id + WHERE c.invalid_reason is null + and (ca.ancestor_concept_id in (1305058)) + +) I +) C UNION ALL +SELECT 111 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (441092,4061424,40760833,4139126,4015590,3011536,43054893,43021054,37017322,441085,192380,4210896,3006722,40759953,195877,4061522,437937,4030415,197031,4061672,43021951,43021952,3045823,432969,3000119,4217975,4038942,4150948,4148890,4094910,4061785,4060237,4299535,4059982,4061686,4059984,4061411,4059981,4133029,442594,440466,4061423,4214930,3040000,196484,4042412,198212,4129023,4218813,432375,441919,4307820,4059985,4239301,4041878,3023791,40519557,40524802,40524805)) + +) I +) C UNION ALL +SELECT 113 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (440457,4252252,4294259,4032055)) + +) I +) C UNION ALL +SELECT 112 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4198125,4149783,193525,314099,437688,440216,439403,4162865,197050,4034308,2004824,435880,435616,4154997,441959,436768,432967,434701,4099889,4079835,435887,434089,4143074,438489,438203,4129039,80156,321638,314423,4027371,73282,76756,375016,2110305,2110304,4321386,436740,437334,72973,3170656,435875,433822,80205,197339,193825,314426,196175,201920,440162,433826,432373,43020670,441647,4120986,433828,442421,2004823,4170118,73265,192691,194700,201958,438815,79890,4053583,201091,4059763,442913,440787,443700,137613,438204,442442,81636,40479820,78210,4071437,437341,201083,43022052,79146,4196670,80165,73268,4203009,80204,201366,196757,4145315,441682,433027,436219,441680,81360,4047725,442827,80463,4064277,4063297,4060672,4064178,4064169,4064172,4143204,4064175,3657563,76772,76750,77340,74415,4024659,443214,442565,4058113,442441,316478,2212713,437090,433603,438478,437935,4311256,442088,72696,4302252,4062565,81923,444245,77662,4030872,4098582,4227141,4142340,436485,440788,321080,133284,436180,433823,433266,79896,4197403,4023420,4180743,4058246,4079751,442772,43530880,77335,78818,443325,439880,194699,443292,4130310,77338,2004764,4016059,443295,432977,441081,314432,315327,42872398,439893,438205,434697,442918,4060424,436166,435023,314090,4063183,78817,4030429,4034094,4199931,437041,2110337,75015,4063175,4178154,194598,4080067,442051,433545,78218,4080059,441926,76491,442071,4038426,4038755,434111,432386,72378,443323,195019,135370,258564,313590,197608,199086,444374,317941,4014718,198488,201350,200784,4014716,4034100,4064854,4284028,196751,200149,194710,192372,437623,433540,72693,75639,439393,141084,136743,4146816,4277110,321074,438209,4062674,439348,4167493,4062574,194702,200468,201516,435883,4082504,313272,192679,192684,196486,199891,192376,4327745,4032345,433536,132685,4127241,438226,437946,75608,4087113,435331,43530886,43530888,4142581,138479,139895,2110288,441922,136760,81358,437931,196758,192385,434097,2211782,4061971,2110340,79091,72374,4146482,194101,37109810,442290,434712,441929,435021,315884,4300078,440158,313543,435604,35625971,440785)) + +) I +) C; + +UPDATE STATISTICS #Codesets; + + +SELECT event_id, person_id, start_date, end_date, op_start_date, op_end_date, visit_occurrence_id +INTO #qualified_events +FROM +( + select pe.event_id, pe.person_id, pe.start_date, pe.end_date, pe.op_start_date, pe.op_end_date, row_number() over (partition by pe.person_id order by pe.start_date DESC) as ordinal, cast(pe.visit_occurrence_id as bigint) as visit_occurrence_id + FROM (-- Begin Primary Events +select P.ordinal as event_id, P.person_id, P.start_date, P.end_date, op_start_date, op_end_date, cast(P.visit_occurrence_id as bigint) as visit_occurrence_id +FROM +( + select E.person_id, E.start_date, E.end_date, + row_number() OVER (PARTITION BY E.person_id ORDER BY E.sort_date ASC, E.event_id) ordinal, + OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date, cast(E.visit_occurrence_id as bigint) as visit_occurrence_id + FROM + ( + select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 20) +) C + + +-- End Condition Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 20) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 20) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 20) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 20) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 20) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 63) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 20) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 20) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 63) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 3 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 20) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 20) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 20) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 20) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 20) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 20) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 20) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 4 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 21) +) C + + +-- End Condition Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 21) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 21) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 21) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 21) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 21) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 64) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 21) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 21) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 64) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 3 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 21) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 21) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 21) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 21) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 21) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 21) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 21) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 4 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 22) +) C + + +-- End Condition Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 22) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 22) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 22) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 22) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 22) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 65) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 22) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 22) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 65) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 3 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 22) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 22) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 22) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 22) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 22) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 22) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 22) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 4 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 23) +) C + + +-- End Condition Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 23) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 23) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 23) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 23) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 23) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 66) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 23) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 23) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 66) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 3 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 23) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 23) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 23) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 23) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 23) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 23) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 23) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 4 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 24) +) C + + +-- End Condition Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 24) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 24) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 24) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 24) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 24) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 67) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 24) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 24) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 67) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 3 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 24) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 24) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 24) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 24) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 24) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 24) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 24) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 4 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 25) +) C + + +-- End Condition Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 25) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 25) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 25) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 25) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 25) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 68) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 25) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 25) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 68) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 3 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 25) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 25) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 25) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 25) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 25) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 25) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 25) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 4 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 26) +) C + + +-- End Condition Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 26) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 26) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 26) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 26) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 26) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 69) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 26) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 26) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 69) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 3 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 26) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 26) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 26) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 26) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 26) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 26) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 26) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 4 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 3) +) C + + +-- End Condition Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 3) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 3) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 3) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 3) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 3) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 70) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 3) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 3) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 70) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 3 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 3) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 3) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 3) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 3) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 3) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 3) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 3) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 4 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 3) +) C + + +-- End Procedure Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 3) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 3) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 3) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 3) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 3) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 70) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 3) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 3) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 70) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 3 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 3) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 3) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 3) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 3) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 3) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 3) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 3) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 4 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 14) +) C + + +-- End Condition Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 14) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 14) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 14) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 14) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 14) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 71) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 14) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 14) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 71) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 3 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 14) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 14) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 14) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 14) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 14) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 14) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 14) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 4 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 17) +) C + + +-- End Condition Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 17) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 17) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 17) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 17) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 17) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 72) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 17) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 17) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 72) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 3 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 17) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 17) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 17) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 17) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 17) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 17) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 17) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 4 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 18) +) C + + +-- End Condition Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 18) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 18) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 18) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 18) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 18) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Era Criteria +select C.person_id, C.condition_era_id as event_id, C.start_date, C.end_date, + CAST(NULL as bigint) as visit_occurrence_id, C.start_date as sort_date +from +( + select ce.person_id,ce.condition_era_id,ce.condition_concept_id,ce.condition_occurrence_count,ce.condition_era_start_date as start_date, ce.condition_era_end_date as end_date + FROM @cdm_database_schema.CONDITION_ERA ce +where ce.condition_concept_id in (SELECT concept_id from #Codesets where codeset_id = 73) +) C + + +-- End Condition Era Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 18) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 18) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 73) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 3 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 18) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 18) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 18) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 18) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 18) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 18) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 18) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 4 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 9) +) C + + +-- End Condition Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 9) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 9) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 9) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 9) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 9) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 74) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 9) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 9) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 74) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 3 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 9) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 9) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 9) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 9) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 9) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 9) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 9) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 4 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 9) +) C + + +-- End Procedure Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 9) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 9) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 9) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 9) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 9) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 74) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 9) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 9) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 74) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 3 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 9) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 9) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 9) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 9) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 9) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 9) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 9) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 4 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 19) +) C + + +-- End Condition Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 19) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 19) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 19) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 19) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 19) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 75) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 19) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 19) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 75) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 3 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 19) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 19) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 19) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 19) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 19) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 19) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 19) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 4 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 28) +) C + + +-- End Condition Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 28) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 28) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 28) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 28) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 28) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 76) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 28) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 28) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 76) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 3 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 28) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 28) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 28) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 28) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 28) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 28) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 28) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 4 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 29) +) C + + +-- End Condition Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 29) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 29) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 29) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 29) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 29) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 77) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 29) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 29) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 77) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 3 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 29) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 29) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 29) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 29) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 29) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 29) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 29) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 4 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 30) +) C + + +-- End Condition Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 30) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 30) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 30) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 30) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 30) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 81) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 30) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 30) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 81) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 3 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 30) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 30) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 30) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 30) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 30) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 30) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 30) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 4 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 30) +) C + + +-- End Procedure Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 30) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 30) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 30) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 30) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 30) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 81) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 30) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 30) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 81) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 3 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 30) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 30) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 30) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 30) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 30) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 30) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 30) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 4 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 31) +) C + + +-- End Condition Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 31) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 31) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 31) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 31) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 31) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 82) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 31) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 31) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 82) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 3 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 31) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 31) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 31) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 31) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 31) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 31) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 31) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 4 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 32) +) C + + +-- End Condition Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 32) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 32) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 32) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 32) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 32) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 83) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 32) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 32) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 83) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 3 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 32) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 32) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 32) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 32) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 32) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 32) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 32) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 4 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 33) +) C + + +-- End Condition Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 33) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 33) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 33) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 33) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 33) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 84) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 33) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 33) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 84) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 3 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 33) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 33) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 33) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 33) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 33) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 33) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 33) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 4 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 34) +) C + + +-- End Condition Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 34) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 34) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 34) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 34) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 34) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 85) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 34) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 34) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 85) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 3 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 34) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 34) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 34) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 34) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 34) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 34) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 34) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 4 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 34) +) C + + +-- End Procedure Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 34) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 34) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 34) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 34) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 34) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 85) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 34) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 34) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 85) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 3 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 34) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 34) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 34) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 34) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 34) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 34) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 34) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 4 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 35) +) C + + +-- End Condition Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 35) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 35) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 35) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 35) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 35) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 87) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 35) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 35) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 87) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 3 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 35) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 35) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 35) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 35) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 35) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 35) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 35) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 4 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 36) +) C + + +-- End Condition Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 36) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 36) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 36) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 36) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 36) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 94) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 36) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 36) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 94) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 3 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 36) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 36) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 36) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 36) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 36) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 36) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 36) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 4 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 36) +) C + + +-- End Procedure Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 36) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 36) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 36) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 36) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 36) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 94) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 36) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 36) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 94) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 3 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 36) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 36) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 36) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 36) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 36) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 36) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 36) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 4 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 37) +) C + + +-- End Condition Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 37) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 37) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 37) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 37) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 37) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 95) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 37) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 37) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 95) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 3 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 37) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 37) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 37) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 37) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 37) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 37) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 37) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 4 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 38) +) C + + +-- End Procedure Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 38) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 38) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 38) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 38) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 38) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 96) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 38) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 38) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 96) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 3 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 38) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 38) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 38) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 38) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 38) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 38) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 38) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 4 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 38) +) C + + +-- End Condition Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 38) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 38) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 38) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 38) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 38) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 96) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 38) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 38) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 96) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 3 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 38) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 38) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 38) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 38) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 38) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 38) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 38) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 4 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 40) +) C + + +-- End Condition Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 40) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 40) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 40) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 40) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 40) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 97) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 40) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 40) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 97) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 3 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 40) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 40) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 40) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 40) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 40) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 40) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 40) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 4 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 40) +) C + + +-- End Procedure Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 40) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 40) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 40) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 40) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 40) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 97) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 40) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 40) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 97) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 3 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 40) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 40) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 40) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 40) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 40) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 40) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 40) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 4 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 41) +) C + + +-- End Condition Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 41) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 41) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 41) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 41) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 41) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 98) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 41) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 41) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 98) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 3 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 41) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 41) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 41) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 41) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 41) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 41) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 41) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 4 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 42) +) C + + +-- End Condition Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 42) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 42) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 42) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 42) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 42) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 99) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 42) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 42) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 99) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 3 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 42) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 42) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 42) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 42) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 42) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 42) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 42) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 4 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 43) +) C + + +-- End Condition Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 43) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 43) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 43) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 43) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 43) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 100) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 43) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 43) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 100) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 3 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 43) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 43) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 43) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 43) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 43) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 43) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 43) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 4 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 44) +) C + + +-- End Condition Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 44) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 44) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 44) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 44) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 44) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 86) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 44) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 44) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 86) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 3 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 44) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 44) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 44) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 44) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 44) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 44) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 44) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 4 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 45) +) C + + +-- End Condition Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 45) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 45) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 45) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 45) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 45) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 88) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 45) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 45) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 88) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 3 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 45) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 45) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 45) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 45) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 45) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 45) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 45) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 4 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 45) +) C + + +-- End Procedure Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 45) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 45) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 45) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 45) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 45) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 88) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 45) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 45) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 88) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 3 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 45) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 45) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 45) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 45) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 45) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 45) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 45) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 4 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 47) +) C + + +-- End Condition Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 47) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 47) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 47) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 47) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 47) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 101) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 47) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 47) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 101) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 3 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 47) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 47) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 47) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 47) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 47) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 47) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 47) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 4 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 47) +) C + + +-- End Procedure Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 47) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 47) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 47) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 47) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 47) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 101) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 47) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 47) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 101) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 3 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 47) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 47) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 47) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 47) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 47) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 47) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 47) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 4 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 48) +) C + + +-- End Condition Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 48) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 48) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 48) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 48) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 48) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 102) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 48) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 48) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 102) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 3 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 48) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 48) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 48) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 48) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 48) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 48) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 48) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 4 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 48) +) C + + +-- End Procedure Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 48) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 48) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 48) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 48) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 48) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 102) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 48) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 48) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 102) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 3 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 48) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 48) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 48) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 48) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 48) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 48) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 48) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 4 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 49) +) C + + +-- End Condition Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 49) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 49) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 49) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 49) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 49) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 103) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 49) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 49) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 103) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 3 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 49) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 49) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 49) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 49) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 49) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 49) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 49) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 4 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 50) +) C + + +-- End Condition Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 50) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 50) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 50) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 50) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 50) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 93) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 50) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 50) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 93) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 3 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 50) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 50) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 50) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 50) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 50) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 50) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 50) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 4 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 50) +) C + + +-- End Procedure Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 50) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 50) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 50) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 50) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 50) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 93) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 50) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 50) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 93) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 3 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 50) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 50) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 50) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 50) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 50) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 50) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 50) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 4 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 12) +) C + + +-- End Procedure Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 12) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 12) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 12) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 12) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 12) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 92) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 12) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 12) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 92) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 3 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 12) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 12) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 12) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 12) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 12) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 12) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 12) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 4 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 12) +) C + + +-- End Condition Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 12) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 12) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 12) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 12) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 12) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 92) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 12) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 12) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 92) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 3 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 12) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 12) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 12) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 12) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 12) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 12) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 12) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 4 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 11) +) C + + +-- End Condition Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 11) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 11) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 11) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 11) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 11) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 91) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 11) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 11) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 91) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 3 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 11) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 11) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 11) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 11) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 11) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 11) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 11) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 4 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 11) +) C + + +-- End Procedure Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 11) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 11) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 11) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 11) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 11) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 91) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 11) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 11) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 91) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 3 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 11) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 11) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 11) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 11) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 11) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 11) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 11) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 4 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 10) +) C + + +-- End Condition Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 10) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 10) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 10) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 10) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 10) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 90) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 10) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 10) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 90) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 3 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 10) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 10) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 10) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 10) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 10) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 10) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 10) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 4 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 10) +) C + + +-- End Procedure Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 10) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 10) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 10) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 10) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 10) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 90) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 10) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 10) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 90) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 3 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 10) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 10) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 10) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 10) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 10) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 10) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 10) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 4 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 51) +) C + + +-- End Condition Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 51) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 51) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 51) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 51) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 51) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 89) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 51) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 51) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 89) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 3 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 51) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 51) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 51) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 51) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 51) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 51) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 51) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 4 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 51) +) C + + +-- End Procedure Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 51) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 51) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 51) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 51) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 51) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 89) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 51) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 51) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 89) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 3 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 51) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 51) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 51) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 51) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 51) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 51) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 51) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 4 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 13) +) C + + +-- End Condition Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 13) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 13) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 13) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 13) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 13) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 80) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 13) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 13) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 80) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 3 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 13) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 13) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 13) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 13) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 13) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 13) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 13) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 4 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 13) +) C + + +-- End Procedure Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 13) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 13) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 13) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 13) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 13) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 80) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 13) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 13) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 80) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 3 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 13) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 13) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 13) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 13) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 13) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 13) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 13) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 4 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 15) +) C + + +-- End Condition Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 15) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 15) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 15) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 15) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 15) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 79) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 15) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 15) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 79) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 3 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 15) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 15) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 15) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 15) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 15) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 15) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 15) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 4 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 15) +) C + + +-- End Procedure Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 15) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 15) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 15) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 15) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 15) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 79) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 15) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 15) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 79) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 3 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 15) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 15) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 15) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 15) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 15) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 15) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 15) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 4 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 52) +) C + + +-- End Procedure Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 52) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 52) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 52) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 52) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 52) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 78) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 52) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 52) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 78) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 3 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 52) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 52) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 52) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 52) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 52) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 52) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 52) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 4 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 52) +) C + + +-- End Condition Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 52) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 52) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 52) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 52) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 52) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 78) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 52) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 52) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 78) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 3 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 52) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 52) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 52) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 52) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 52) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 52) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 52) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 4 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 53) +) C + + +-- End Condition Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 53) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 53) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 53) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 1 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 53) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 53) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 53) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 53) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 53) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 53) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 53) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 2 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 53) +) C + + +-- End Procedure Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 53) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 53) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 53) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 1 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 53) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 53) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 53) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 53) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 53) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 53) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 53) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 2 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Condition Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 3 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 4 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Procedure Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 3 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 4 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Observation Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 3 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 4 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 5) +) C + + +-- End Procedure Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 5) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 5) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 5) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 5) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 5) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 5) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 5) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 5) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 5) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 5) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 5) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 5) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 5) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 6 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 5) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 5) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 5) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 5) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 5) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 5) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 5) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 7 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Condition Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 6 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 5) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 7 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 8 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Observation Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 6 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 5) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 7 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 8 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Measurement Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 6 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 5) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 7 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 8 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Condition Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 6 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 5) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 7 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 8 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 9 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 10 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-280,P.START_DATE) AND A.START_DATE <= DATEADD(day,-175,P.START_DATE) AND A.START_DATE >= DATEADD(day,-55,P.START_DATE) AND A.START_DATE <= DATEADD(day,0,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 1 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-280,P.START_DATE) AND A.START_DATE <= DATEADD(day,-175,P.START_DATE) AND A.START_DATE >= DATEADD(day,-55,P.START_DATE) AND A.START_DATE <= DATEADD(day,0,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 1 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-280,P.START_DATE) AND A.START_DATE <= DATEADD(day,-175,P.START_DATE) AND A.START_DATE >= DATEADD(day,-55,P.START_DATE) AND A.START_DATE <= DATEADD(day,0,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 1 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-280,P.START_DATE) AND A.START_DATE <= DATEADD(day,-175,P.START_DATE) AND A.START_DATE >= DATEADD(day,-55,P.START_DATE) AND A.START_DATE <= DATEADD(day,0,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 1 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-280,P.START_DATE) AND A.START_DATE <= DATEADD(day,-175,P.START_DATE) AND A.START_DATE >= DATEADD(day,-55,P.START_DATE) AND A.START_DATE <= DATEADD(day,0,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 1 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-280,P.START_DATE) AND A.START_DATE <= DATEADD(day,-175,P.START_DATE) AND A.START_DATE >= DATEADD(day,-55,P.START_DATE) AND A.START_DATE <= DATEADD(day,0,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 1 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 11 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Observation Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 6 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 5) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 7 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 8 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 9 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 10 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-280,P.START_DATE) AND A.START_DATE <= DATEADD(day,-175,P.START_DATE) AND A.START_DATE >= DATEADD(day,-55,P.START_DATE) AND A.START_DATE <= DATEADD(day,0,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 1 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-280,P.START_DATE) AND A.START_DATE <= DATEADD(day,-175,P.START_DATE) AND A.START_DATE >= DATEADD(day,-55,P.START_DATE) AND A.START_DATE <= DATEADD(day,0,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 1 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-280,P.START_DATE) AND A.START_DATE <= DATEADD(day,-175,P.START_DATE) AND A.START_DATE >= DATEADD(day,-55,P.START_DATE) AND A.START_DATE <= DATEADD(day,0,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 1 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-280,P.START_DATE) AND A.START_DATE <= DATEADD(day,-175,P.START_DATE) AND A.START_DATE >= DATEADD(day,-55,P.START_DATE) AND A.START_DATE <= DATEADD(day,0,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 1 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-280,P.START_DATE) AND A.START_DATE <= DATEADD(day,-175,P.START_DATE) AND A.START_DATE >= DATEADD(day,-55,P.START_DATE) AND A.START_DATE <= DATEADD(day,0,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 1 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-280,P.START_DATE) AND A.START_DATE <= DATEADD(day,-175,P.START_DATE) AND A.START_DATE >= DATEADD(day,-55,P.START_DATE) AND A.START_DATE <= DATEADD(day,0,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 1 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 11 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Procedure Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 6 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 5) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 7 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 8 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 9 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 10 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 11 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 12 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-280,P.START_DATE) AND A.START_DATE <= DATEADD(day,175,P.START_DATE) AND A.START_DATE >= DATEADD(day,-55,P.START_DATE) AND A.START_DATE <= DATEADD(day,0,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 1 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-280,P.START_DATE) AND A.START_DATE <= DATEADD(day,175,P.START_DATE) AND A.START_DATE >= DATEADD(day,-55,P.START_DATE) AND A.START_DATE <= DATEADD(day,0,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 1 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-280,P.START_DATE) AND A.START_DATE <= DATEADD(day,175,P.START_DATE) AND A.START_DATE >= DATEADD(day,-55,P.START_DATE) AND A.START_DATE <= DATEADD(day,0,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 1 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-280,P.START_DATE) AND A.START_DATE <= DATEADD(day,175,P.START_DATE) AND A.START_DATE >= DATEADD(day,-55,P.START_DATE) AND A.START_DATE <= DATEADD(day,0,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 1 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-280,P.START_DATE) AND A.START_DATE <= DATEADD(day,175,P.START_DATE) AND A.START_DATE >= DATEADD(day,-55,P.START_DATE) AND A.START_DATE <= DATEADD(day,0,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 1 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-280,P.START_DATE) AND A.START_DATE <= DATEADD(day,175,P.START_DATE) AND A.START_DATE >= DATEADD(day,-55,P.START_DATE) AND A.START_DATE <= DATEADD(day,0,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 1 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 13 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Measurement Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 6 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 5) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 7 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 8 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 9 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 10 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 11 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 12 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-280,P.START_DATE) AND A.START_DATE <= DATEADD(day,-175,P.START_DATE) AND A.START_DATE >= DATEADD(day,-55,P.START_DATE) AND A.START_DATE <= DATEADD(day,0,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-280,P.START_DATE) AND A.START_DATE <= DATEADD(day,-175,P.START_DATE) AND A.START_DATE >= DATEADD(day,-55,P.START_DATE) AND A.START_DATE <= DATEADD(day,0,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-280,P.START_DATE) AND A.START_DATE <= DATEADD(day,-175,P.START_DATE) AND A.START_DATE >= DATEADD(day,-55,P.START_DATE) AND A.START_DATE <= DATEADD(day,0,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 1 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,-301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-280,P.START_DATE) AND A.START_DATE <= DATEADD(day,-175,P.START_DATE) AND A.START_DATE >= DATEADD(day,-55,P.START_DATE) AND A.START_DATE <= DATEADD(day,0,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 1 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,-301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-280,P.START_DATE) AND A.START_DATE <= DATEADD(day,-175,P.START_DATE) AND A.START_DATE >= DATEADD(day,-55,P.START_DATE) AND A.START_DATE <= DATEADD(day,0,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 1 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,-301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-280,P.START_DATE) AND A.START_DATE <= DATEADD(day,-175,P.START_DATE) AND A.START_DATE >= DATEADD(day,-55,P.START_DATE) AND A.START_DATE <= DATEADD(day,0,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 1 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,-301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 13 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Condition Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 6 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 5) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 7 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 8 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 9 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 10 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 11 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Procedure Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 6 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 5) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 7 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 8 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 9 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 10 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 11 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Observation Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 6 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 5) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 7 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 8 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 9 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 10 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 11 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Measurement Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 6 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 5) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 7 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 8 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 9 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 10 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 11 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 113) +) C + + +-- End Condition Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 113) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 113) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 113) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 113) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 113) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 113) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 113) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 113) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 113) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 113) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 113) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 113) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 113) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 6 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 113) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 113) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 5) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 7 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 113) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 113) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 8 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 113) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 113) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 9 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 113) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 113) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 10 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 113) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 113) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 113) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 113) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 113) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 113) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 113) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 11 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Condition Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 6 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 5) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 7 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 8 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 9 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 10 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 11 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Procedure Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 6 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 5) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 7 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 8 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 9 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 10 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 11 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Observation Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 6 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 5) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 7 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 8 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 9 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 10 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 11 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Condition Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 6 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 5) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 7 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 8 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 9 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 10 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 11 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Procedure Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 6 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 5) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 7 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 8 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 9 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 10 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 11 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Observation Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 6 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 5) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 7 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 8 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 9 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 10 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 11 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Measurement Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 6 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 5) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 7 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 8 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 9 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 10 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 11 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 6 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 5) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 7 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 8 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 9 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 10 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,56,P.START_DATE) AND A.START_DATE <= DATEADD(day,174,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 11 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,56,P.START_DATE) AND A.START_DATE <= DATEADD(day,174,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 12 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,56,P.START_DATE) AND A.START_DATE <= DATEADD(day,174,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 13 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,56,P.START_DATE) AND A.START_DATE <= DATEADD(day,174,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 14 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 108) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 15 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 108) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 16 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 108) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 17 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 6 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 5) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 7 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 8 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 9 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 10 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,56,P.START_DATE) AND A.START_DATE <= DATEADD(day,174,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 11 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,56,P.START_DATE) AND A.START_DATE <= DATEADD(day,174,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 12 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,56,P.START_DATE) AND A.START_DATE <= DATEADD(day,174,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 13 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,56,P.START_DATE) AND A.START_DATE <= DATEADD(day,174,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 14 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 108) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 15 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 108) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 16 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 108) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 17 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 6 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 5) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 7 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 8 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 9 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 10 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,56,P.START_DATE) AND A.START_DATE <= DATEADD(day,174,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 11 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,56,P.START_DATE) AND A.START_DATE <= DATEADD(day,174,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 12 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,56,P.START_DATE) AND A.START_DATE <= DATEADD(day,174,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 13 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,56,P.START_DATE) AND A.START_DATE <= DATEADD(day,174,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 14 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 108) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 15 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 108) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 16 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 108) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 17 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 18 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 19 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 6 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 5) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 7 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 8 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 9 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 10 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,56,P.START_DATE) AND A.START_DATE <= DATEADD(day,174,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 11 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,56,P.START_DATE) AND A.START_DATE <= DATEADD(day,174,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 12 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,56,P.START_DATE) AND A.START_DATE <= DATEADD(day,174,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 13 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,56,P.START_DATE) AND A.START_DATE <= DATEADD(day,174,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 14 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 108) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 15 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 108) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 16 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 108) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 17 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 18 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 19 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 6 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 5) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 7 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 8 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 9 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 10 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,56,P.START_DATE) AND A.START_DATE <= DATEADD(day,174,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 11 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,56,P.START_DATE) AND A.START_DATE <= DATEADD(day,174,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 12 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,56,P.START_DATE) AND A.START_DATE <= DATEADD(day,174,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 13 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,56,P.START_DATE) AND A.START_DATE <= DATEADD(day,174,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 14 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 108) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 15 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 108) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 16 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 108) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 17 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 18 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 19 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 5) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 6 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 7 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,56,P.START_DATE) AND A.START_DATE <= DATEADD(day,174,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 8 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,56,P.START_DATE) AND A.START_DATE <= DATEADD(day,174,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 9 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,56,P.START_DATE) AND A.START_DATE <= DATEADD(day,174,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 10 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,56,P.START_DATE) AND A.START_DATE <= DATEADD(day,174,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 11 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 108) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 12 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 108) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 13 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 108) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 14 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 15 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 16 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 6 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 5) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 7 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 8 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 9 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 10 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,56,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 11 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,56,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 12 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,56,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 13 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,56,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 14 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 108) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 108) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 108) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 15 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 6 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 5) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 7 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 8 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 9 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 10 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,56,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 11 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,56,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 12 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,56,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 13 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,56,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 14 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 108) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 108) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 108) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 15 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 6 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 5) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 7 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 8 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 9 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 10 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,56,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 11 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,56,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 12 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,56,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 13 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,56,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 14 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 15 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 16 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 108) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 108) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 108) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 17 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 6 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 5) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 7 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 8 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 9 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 10 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,56,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 11 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,56,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 12 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,56,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 13 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,56,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 14 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 15 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 16 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 108) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 108) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 108) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 17 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 6 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 5) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 7 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 8 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 9 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 10 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,56,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 11 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,56,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 12 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,56,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 13 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,56,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 14 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 15 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 16 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 108) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 108) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 108) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 17 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 6 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 5) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 7 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 8 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 9 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 10 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,56,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 11 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,56,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 12 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,56,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 13 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,56,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 14 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 15 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 16 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 108) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 108) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 108) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 17 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + + ) E + JOIN @cdm_database_schema.observation_period OP on E.person_id = OP.person_id and E.start_date >= OP.observation_period_start_date and E.start_date <= op.observation_period_end_date + WHERE DATEADD(day,0,OP.OBSERVATION_PERIOD_START_DATE) <= E.START_DATE AND DATEADD(day,0,E.START_DATE) <= OP.OBSERVATION_PERIOD_END_DATE +) P + +-- End Primary Events +) pe + +) QE + +; + +--- Inclusion Rule Inserts + +select 0 as inclusion_rule_id, person_id, event_id +INTO #Inclusion_0 +FROM +( + select pe.person_id, pe.event_id + FROM #qualified_events pe + +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM #qualified_events E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM #qualified_events P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,161,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM #qualified_events P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,161,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM #qualified_events P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,141,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM #qualified_events P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,141,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM #qualified_events P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,141,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM #qualified_events P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,141,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) > 0 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id AND AC.event_id = pe.event_id +) Results +; + +select 1 as inclusion_rule_id, person_id, event_id +INTO #Inclusion_1 +FROM +( + select pe.person_id, pe.event_id + FROM #qualified_events pe + +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM #qualified_events E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from #qualified_events p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM #qualified_events P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,160,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from #qualified_events p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM #qualified_events P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,160,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from #qualified_events p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM #qualified_events P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,140,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, p.person_id, p.event_id +from #qualified_events p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM #qualified_events P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,140,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, p.person_id, p.event_id +from #qualified_events p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM #qualified_events P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,140,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, p.person_id, p.event_id +from #qualified_events p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM #qualified_events P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,140,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 6 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id AND AC.event_id = pe.event_id +) Results +; + +select 2 as inclusion_rule_id, person_id, event_id +INTO #Inclusion_2 +FROM +( + select pe.person_id, pe.event_id + FROM #qualified_events pe + +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM #qualified_events E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from #qualified_events p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM #qualified_events P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-28,P.START_DATE) AND A.START_DATE <= DATEADD(day,0,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from #qualified_events p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM #qualified_events P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-28,P.START_DATE) AND A.START_DATE <= DATEADD(day,0,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from #qualified_events p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM #qualified_events P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-28,P.START_DATE) AND A.START_DATE <= DATEADD(day,0,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, p.person_id, p.event_id +from #qualified_events p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM #qualified_events P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-28,P.START_DATE) AND A.START_DATE <= DATEADD(day,0,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, p.person_id, p.event_id +from #qualified_events p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM #qualified_events P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-14,P.START_DATE) AND A.START_DATE <= DATEADD(day,0,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, p.person_id, p.event_id +from #qualified_events p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM #qualified_events P +JOIN ( + -- Begin Drug Era Criteria +select C.person_id, C.drug_era_id as event_id, C.start_date, C.end_date, + CAST(NULL as bigint) as visit_occurrence_id,C.start_date as sort_date +from +( + select de.person_id,de.drug_era_id,de.drug_concept_id,de.drug_exposure_count,de.gap_days,de.drug_era_start_date as start_date, de.drug_era_end_date as end_date + FROM @cdm_database_schema.DRUG_ERA de +where de.drug_concept_id in (SELECT concept_id from #Codesets where codeset_id = 109) +) C + + +-- End Drug Era Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-28,P.START_DATE) AND A.START_DATE <= DATEADD(day,0,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 6 as index_id, p.person_id, p.event_id +from #qualified_events p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM #qualified_events P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-14,P.START_DATE) AND A.START_DATE <= DATEADD(day,0,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 7 as index_id, p.person_id, p.event_id +from #qualified_events p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM #qualified_events P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-14,P.START_DATE) AND A.START_DATE <= DATEADD(day,0,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 8 as index_id, p.person_id, p.event_id +from #qualified_events p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM #qualified_events P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-14,P.START_DATE) AND A.START_DATE <= DATEADD(day,0,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 9 as index_id, p.person_id, p.event_id +from #qualified_events p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM #qualified_events P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-14,P.START_DATE) AND A.START_DATE <= DATEADD(day,0,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 10 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id AND AC.event_id = pe.event_id +) Results +; + +select 3 as inclusion_rule_id, person_id, event_id +INTO #Inclusion_3 +FROM +( + select pe.person_id, pe.event_id + FROM #qualified_events pe + +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM #qualified_events E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id , A.domain_concept_id +FROM #qualified_events P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date, C.condition_concept_id as domain_concept_id +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 61) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(DISTINCT cc.domain_concept_id) >= 2 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id , A.domain_concept_id +FROM #qualified_events P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date, C.procedure_concept_id as domain_concept_id +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 61) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(DISTINCT cc.domain_concept_id) >= 2 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id , A.domain_concept_id +FROM #qualified_events P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date, C.measurement_concept_id as domain_concept_id +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 61) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(DISTINCT cc.domain_concept_id) >= 2 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id , A.domain_concept_id +FROM #qualified_events P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date, C.observation_concept_id as domain_concept_id +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 61) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(DISTINCT cc.domain_concept_id) >= 2 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 4 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM #qualified_events E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM #qualified_events P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 61) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM #qualified_events P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 61) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM #qualified_events P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 61) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM #qualified_events P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 61) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 2 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) > 0 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id AND AC.event_id = pe.event_id +) Results +; + +select 4 as inclusion_rule_id, person_id, event_id +INTO #Inclusion_4 +FROM +( + select pe.person_id, pe.event_id + FROM #qualified_events pe + +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM #qualified_events E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM #qualified_events P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C +JOIN @cdm_database_schema.PERSON P on C.person_id = P.person_id +WHERE (YEAR(C.start_date) - P.year_of_birth >= 12 and YEAR(C.start_date) - P.year_of_birth <= 55) +AND P.gender_concept_id in (8532) +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,161,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM #qualified_events P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C +JOIN @cdm_database_schema.PERSON P on C.person_id = P.person_id +WHERE (YEAR(C.start_date) - P.year_of_birth >= 12 and YEAR(C.start_date) - P.year_of_birth <= 55) +AND P.gender_concept_id in (8532) +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,161,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM #qualified_events P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C +JOIN @cdm_database_schema.PERSON P on C.person_id = P.person_id +WHERE (YEAR(C.start_date) - P.year_of_birth >= 12 and YEAR(C.start_date) - P.year_of_birth <= 55) +AND P.gender_concept_id in (8532) +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,141,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM #qualified_events P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C +JOIN @cdm_database_schema.PERSON P on C.person_id = P.person_id +WHERE (YEAR(C.start_date) - P.year_of_birth >= 12 and YEAR(C.start_date) - P.year_of_birth <= 55) +AND P.gender_concept_id in (8532) +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,141,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM #qualified_events P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C +JOIN @cdm_database_schema.PERSON P on C.person_id = P.person_id +WHERE (YEAR(C.start_date) - P.year_of_birth >= 12 and YEAR(C.start_date) - P.year_of_birth <= 55) +AND P.gender_concept_id in (8532) +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,141,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM #qualified_events P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C +JOIN @cdm_database_schema.PERSON P on C.person_id = P.person_id +WHERE (YEAR(C.start_date) - P.year_of_birth >= 12 and YEAR(C.start_date) - P.year_of_birth <= 55) +AND P.gender_concept_id in (8532) +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,141,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) > 0 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id AND AC.event_id = pe.event_id +) Results +; + +select 5 as inclusion_rule_id, person_id, event_id +INTO #Inclusion_5 +FROM +( + select pe.person_id, pe.event_id + FROM #qualified_events pe + +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM #qualified_events E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM #qualified_events P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,161,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM #qualified_events P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,161,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM #qualified_events P +JOIN ( + select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-168,P.START_DATE) AND A.START_DATE <= DATEADD(day,168,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-168,P.START_DATE) AND A.START_DATE <= DATEADD(day,168,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 104) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-154,P.START_DATE) AND A.START_DATE <= DATEADD(day,70,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-154,P.START_DATE) AND A.START_DATE <= DATEADD(day,70,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Drug Era Criteria +select C.person_id, C.drug_era_id as event_id, C.start_date, C.end_date, + CAST(NULL as bigint) as visit_occurrence_id,C.start_date as sort_date +from +( + select de.person_id,de.drug_era_id,de.drug_concept_id,de.drug_exposure_count,de.gap_days,de.drug_era_start_date as start_date, de.drug_era_end_date as end_date + FROM @cdm_database_schema.DRUG_ERA de +where de.drug_concept_id in (SELECT concept_id from #Codesets where codeset_id = 109) +) C + + +-- End Drug Era Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-154,P.START_DATE) AND A.START_DATE <= DATEADD(day,70,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-154,P.START_DATE) AND A.START_DATE <= DATEADD(day,70,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 6 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-154,P.START_DATE) AND A.START_DATE <= DATEADD(day,70,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 7 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-154,P.START_DATE) AND A.START_DATE <= DATEADD(day,70,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 8 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-154,P.START_DATE) AND A.START_DATE <= DATEADD(day,70,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 9 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-168,P.START_DATE) AND A.START_DATE <= DATEADD(day,182,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 10 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-168,P.START_DATE) AND A.START_DATE <= DATEADD(day,182,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 11 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,141,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM #qualified_events P +JOIN ( + select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-168,P.START_DATE) AND A.START_DATE <= DATEADD(day,168,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-168,P.START_DATE) AND A.START_DATE <= DATEADD(day,168,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 104) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-154,P.START_DATE) AND A.START_DATE <= DATEADD(day,70,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-154,P.START_DATE) AND A.START_DATE <= DATEADD(day,70,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-154,P.START_DATE) AND A.START_DATE <= DATEADD(day,70,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Drug Era Criteria +select C.person_id, C.drug_era_id as event_id, C.start_date, C.end_date, + CAST(NULL as bigint) as visit_occurrence_id,C.start_date as sort_date +from +( + select de.person_id,de.drug_era_id,de.drug_concept_id,de.drug_exposure_count,de.gap_days,de.drug_era_start_date as start_date, de.drug_era_end_date as end_date + FROM @cdm_database_schema.DRUG_ERA de +where de.drug_concept_id in (SELECT concept_id from #Codesets where codeset_id = 109) +) C + + +-- End Drug Era Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-154,P.START_DATE) AND A.START_DATE <= DATEADD(day,70,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 6 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-154,P.START_DATE) AND A.START_DATE <= DATEADD(day,70,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 7 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-154,P.START_DATE) AND A.START_DATE <= DATEADD(day,70,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 8 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-154,P.START_DATE) AND A.START_DATE <= DATEADD(day,70,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 9 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-168,P.START_DATE) AND A.START_DATE <= DATEADD(day,182,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 10 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-168,P.START_DATE) AND A.START_DATE <= DATEADD(day,182,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 11 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,141,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM #qualified_events P +JOIN ( + select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-168,P.START_DATE) AND A.START_DATE <= DATEADD(day,168,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-168,P.START_DATE) AND A.START_DATE <= DATEADD(day,168,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 104) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-154,P.START_DATE) AND A.START_DATE <= DATEADD(day,70,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-154,P.START_DATE) AND A.START_DATE <= DATEADD(day,70,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-154,P.START_DATE) AND A.START_DATE <= DATEADD(day,70,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Drug Era Criteria +select C.person_id, C.drug_era_id as event_id, C.start_date, C.end_date, + CAST(NULL as bigint) as visit_occurrence_id,C.start_date as sort_date +from +( + select de.person_id,de.drug_era_id,de.drug_concept_id,de.drug_exposure_count,de.gap_days,de.drug_era_start_date as start_date, de.drug_era_end_date as end_date + FROM @cdm_database_schema.DRUG_ERA de +where de.drug_concept_id in (SELECT concept_id from #Codesets where codeset_id = 109) +) C + + +-- End Drug Era Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-154,P.START_DATE) AND A.START_DATE <= DATEADD(day,70,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 6 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-154,P.START_DATE) AND A.START_DATE <= DATEADD(day,70,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 7 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-154,P.START_DATE) AND A.START_DATE <= DATEADD(day,70,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 8 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-154,P.START_DATE) AND A.START_DATE <= DATEADD(day,70,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 9 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-168,P.START_DATE) AND A.START_DATE <= DATEADD(day,182,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 10 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-168,P.START_DATE) AND A.START_DATE <= DATEADD(day,182,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 11 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,141,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM #qualified_events P +JOIN ( + select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-168,P.START_DATE) AND A.START_DATE <= DATEADD(day,168,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-168,P.START_DATE) AND A.START_DATE <= DATEADD(day,168,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 104) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-154,P.START_DATE) AND A.START_DATE <= DATEADD(day,70,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-154,P.START_DATE) AND A.START_DATE <= DATEADD(day,70,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-154,P.START_DATE) AND A.START_DATE <= DATEADD(day,70,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Drug Era Criteria +select C.person_id, C.drug_era_id as event_id, C.start_date, C.end_date, + CAST(NULL as bigint) as visit_occurrence_id,C.start_date as sort_date +from +( + select de.person_id,de.drug_era_id,de.drug_concept_id,de.drug_exposure_count,de.gap_days,de.drug_era_start_date as start_date, de.drug_era_end_date as end_date + FROM @cdm_database_schema.DRUG_ERA de +where de.drug_concept_id in (SELECT concept_id from #Codesets where codeset_id = 109) +) C + + +-- End Drug Era Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-154,P.START_DATE) AND A.START_DATE <= DATEADD(day,70,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 6 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-154,P.START_DATE) AND A.START_DATE <= DATEADD(day,70,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 7 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-154,P.START_DATE) AND A.START_DATE <= DATEADD(day,70,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 8 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-154,P.START_DATE) AND A.START_DATE <= DATEADD(day,70,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 9 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-168,P.START_DATE) AND A.START_DATE <= DATEADD(day,182,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 10 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-168,P.START_DATE) AND A.START_DATE <= DATEADD(day,182,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 11 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,141,P.START_DATE) AND A.START_DATE <= DATEADD(day,301,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id AND AC.event_id = pe.event_id +) Results +; + +select 6 as inclusion_rule_id, person_id, event_id +INTO #Inclusion_6 +FROM +( + select pe.person_id, pe.event_id + FROM #qualified_events pe + +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM #qualified_events E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM #qualified_events P +JOIN ( + select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Observation Period Criteria +select C.person_id, C.observation_period_id as event_id, C.start_date as start_date, C.end_date as end_date, + CAST(NULL as bigint) as visit_occurrence_id, C.start_date as sort_date + +from +( + select op.person_id,op.observation_period_id,op.period_type_concept_id,op.observation_period_start_date as start_date, op.observation_period_end_date as end_date , row_number() over (PARTITION BY op.person_id ORDER BY op.observation_period_start_date) as ordinal + FROM @cdm_database_schema.OBSERVATION_PERIOD op +) C + + +-- End Observation Period Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Period Criteria +select C.person_id, C.observation_period_id as event_id, C.start_date as start_date, C.end_date as end_date, + CAST(NULL as bigint) as visit_occurrence_id, C.start_date as sort_date + +from +( + select op.person_id,op.observation_period_id,op.period_type_concept_id,op.observation_period_start_date as start_date, op.observation_period_end_date as end_date , row_number() over (PARTITION BY op.person_id ORDER BY op.observation_period_start_date) as ordinal + FROM @cdm_database_schema.OBSERVATION_PERIOD op +) C + + +-- End Observation Period Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Period Criteria +select C.person_id, C.observation_period_id as event_id, C.start_date as start_date, C.end_date as end_date, + CAST(NULL as bigint) as visit_occurrence_id, C.start_date as sort_date + +from +( + select op.person_id,op.observation_period_id,op.period_type_concept_id,op.observation_period_start_date as start_date, op.observation_period_end_date as end_date , row_number() over (PARTITION BY op.person_id ORDER BY op.observation_period_start_date) as ordinal + FROM @cdm_database_schema.OBSERVATION_PERIOD op +) C + + +-- End Observation Period Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= DATEADD(day,0,P.END_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Period Criteria +select C.person_id, C.observation_period_id as event_id, C.start_date as start_date, C.end_date as end_date, + CAST(NULL as bigint) as visit_occurrence_id, C.start_date as sort_date + +from +( + select op.person_id,op.observation_period_id,op.period_type_concept_id,op.observation_period_start_date as start_date, op.observation_period_end_date as end_date , row_number() over (PARTITION BY op.person_id ORDER BY op.observation_period_start_date) as ordinal + FROM @cdm_database_schema.OBSERVATION_PERIOD op +) C + + +-- End Observation Period Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= P.OP_END_DATE AND A.END_DATE >= P.OP_START_DATE AND A.END_DATE <= DATEADD(day,0,P.END_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Period Criteria +select C.person_id, C.observation_period_id as event_id, C.start_date as start_date, C.end_date as end_date, + CAST(NULL as bigint) as visit_occurrence_id, C.start_date as sort_date + +from +( + select op.person_id,op.observation_period_id,op.period_type_concept_id,op.observation_period_start_date as start_date, op.observation_period_end_date as end_date , row_number() over (PARTITION BY op.person_id ORDER BY op.observation_period_start_date) as ordinal + FROM @cdm_database_schema.OBSERVATION_PERIOD op +) C + + +-- End Observation Period Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= P.OP_END_DATE AND A.END_DATE >= P.OP_START_DATE AND A.END_DATE <= DATEADD(day,0,P.END_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Period Criteria +select C.person_id, C.observation_period_id as event_id, C.start_date as start_date, C.end_date as end_date, + CAST(NULL as bigint) as visit_occurrence_id, C.start_date as sort_date + +from +( + select op.person_id,op.observation_period_id,op.period_type_concept_id,op.observation_period_start_date as start_date, op.observation_period_end_date as end_date , row_number() over (PARTITION BY op.person_id ORDER BY op.observation_period_start_date) as ordinal + FROM @cdm_database_schema.OBSERVATION_PERIOD op +) C + + +-- End Observation Period Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= P.OP_END_DATE AND A.END_DATE >= P.OP_START_DATE AND A.END_DATE <= DATEADD(day,0,P.END_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Period Criteria +select C.person_id, C.observation_period_id as event_id, C.start_date as start_date, C.end_date as end_date, + CAST(NULL as bigint) as visit_occurrence_id, C.start_date as sort_date + +from +( + select op.person_id,op.observation_period_id,op.period_type_concept_id,op.observation_period_start_date as start_date, op.observation_period_end_date as end_date , row_number() over (PARTITION BY op.person_id ORDER BY op.observation_period_start_date) as ordinal + FROM @cdm_database_schema.OBSERVATION_PERIOD op +) C + + +-- End Observation Period Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= P.OP_END_DATE AND A.END_DATE >= P.OP_START_DATE AND A.END_DATE <= DATEADD(day,0,P.END_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Period Criteria +select C.person_id, C.observation_period_id as event_id, C.start_date as start_date, C.end_date as end_date, + CAST(NULL as bigint) as visit_occurrence_id, C.start_date as sort_date + +from +( + select op.person_id,op.observation_period_id,op.period_type_concept_id,op.observation_period_start_date as start_date, op.observation_period_end_date as end_date , row_number() over (PARTITION BY op.person_id ORDER BY op.observation_period_start_date) as ordinal + FROM @cdm_database_schema.OBSERVATION_PERIOD op +) C + + +-- End Observation Period Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= P.OP_END_DATE AND A.END_DATE >= P.OP_START_DATE AND A.END_DATE <= DATEADD(day,0,P.END_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= DATEADD(day,0,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 1 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id AND AC.event_id = pe.event_id +) Results +; + +SELECT inclusion_rule_id, person_id, event_id +INTO #inclusion_events +FROM (select inclusion_rule_id, person_id, event_id from #Inclusion_0 +UNION ALL +select inclusion_rule_id, person_id, event_id from #Inclusion_1 +UNION ALL +select inclusion_rule_id, person_id, event_id from #Inclusion_2 +UNION ALL +select inclusion_rule_id, person_id, event_id from #Inclusion_3 +UNION ALL +select inclusion_rule_id, person_id, event_id from #Inclusion_4 +UNION ALL +select inclusion_rule_id, person_id, event_id from #Inclusion_5 +UNION ALL +select inclusion_rule_id, person_id, event_id from #Inclusion_6) I; +TRUNCATE TABLE #Inclusion_0; +DROP TABLE #Inclusion_0; + +TRUNCATE TABLE #Inclusion_1; +DROP TABLE #Inclusion_1; + +TRUNCATE TABLE #Inclusion_2; +DROP TABLE #Inclusion_2; + +TRUNCATE TABLE #Inclusion_3; +DROP TABLE #Inclusion_3; + +TRUNCATE TABLE #Inclusion_4; +DROP TABLE #Inclusion_4; + +TRUNCATE TABLE #Inclusion_5; +DROP TABLE #Inclusion_5; + +TRUNCATE TABLE #Inclusion_6; +DROP TABLE #Inclusion_6; + + +select event_id, person_id, start_date, end_date, op_start_date, op_end_date +into #included_events +FROM ( + SELECT event_id, person_id, start_date, end_date, op_start_date, op_end_date, row_number() over (partition by person_id order by start_date ASC) as ordinal + from + ( + select Q.event_id, Q.person_id, Q.start_date, Q.end_date, Q.op_start_date, Q.op_end_date, SUM(coalesce(POWER(cast(2 as bigint), I.inclusion_rule_id), 0)) as inclusion_rule_mask + from #qualified_events Q + LEFT JOIN #inclusion_events I on I.person_id = Q.person_id and I.event_id = Q.event_id + GROUP BY Q.event_id, Q.person_id, Q.start_date, Q.end_date, Q.op_start_date, Q.op_end_date + ) MG -- matching groups +{7 != 0}?{ + -- the matching group with all bits set ( POWER(2,# of inclusion rules) - 1 = inclusion_rule_mask + WHERE (MG.inclusion_rule_mask = POWER(cast(2 as bigint),7)-1) +} +) Results + +; + +-- date offset strategy + +select event_id, person_id, + case when DATEADD(day,301,start_date) > op_end_date then op_end_date else DATEADD(day,301,start_date) end as end_date +INTO #strategy_ends +from #included_events; + + +-- generate cohort periods into #final_cohort +select person_id, start_date, end_date +INTO #cohort_rows +from ( -- first_ends + select F.person_id, F.start_date, F.end_date + FROM ( + select I.event_id, I.person_id, I.start_date, CE.end_date, row_number() over (partition by I.person_id, I.event_id order by CE.end_date) as ordinal + from #included_events I + join ( -- cohort_ends +-- cohort exit dates +-- End Date Strategy +SELECT event_id, person_id, end_date from #strategy_ends + +UNION ALL +-- Censor Events +select i.event_id, i.person_id, MIN(c.start_date) as end_date +FROM #included_events i +JOIN +( +-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria + +) C on C.person_id = I.person_id and C.start_date >= I.start_date and C.START_DATE <= I.op_end_date +GROUP BY i.event_id, i.person_id + +UNION ALL +select i.event_id, i.person_id, MIN(c.start_date) as end_date +FROM #included_events i +JOIN +( +-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria + +) C on C.person_id = I.person_id and C.start_date >= I.start_date and C.START_DATE <= I.op_end_date +GROUP BY i.event_id, i.person_id + +UNION ALL +select i.event_id, i.person_id, MIN(c.start_date) as end_date +FROM #included_events i +JOIN +( +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,168,P.START_DATE) AND A.START_DATE <= DATEADD(day,182,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,168,P.START_DATE) AND A.START_DATE <= DATEADD(day,182,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,30,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-168,P.START_DATE) AND A.START_DATE <= DATEADD(day,182,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-168,P.START_DATE) AND A.START_DATE <= DATEADD(day,182,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-154,P.START_DATE) AND A.START_DATE <= DATEADD(day,70,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 6 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-154,P.START_DATE) AND A.START_DATE <= DATEADD(day,70,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 7 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-154,P.START_DATE) AND A.START_DATE <= DATEADD(day,70,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 8 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-154,P.START_DATE) AND A.START_DATE <= DATEADD(day,70,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 9 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-154,P.START_DATE) AND A.START_DATE <= DATEADD(day,70,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 10 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Drug Era Criteria +select C.person_id, C.drug_era_id as event_id, C.start_date, C.end_date, + CAST(NULL as bigint) as visit_occurrence_id,C.start_date as sort_date +from +( + select de.person_id,de.drug_era_id,de.drug_concept_id,de.drug_exposure_count,de.gap_days,de.drug_era_start_date as start_date, de.drug_era_end_date as end_date + FROM @cdm_database_schema.DRUG_ERA de +where de.drug_concept_id in (SELECT concept_id from #Codesets where codeset_id = 109) +) C + + +-- End Drug Era Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-154,P.START_DATE) AND A.START_DATE <= DATEADD(day,70,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 11 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +) C on C.person_id = I.person_id and C.start_date >= I.start_date and C.START_DATE <= I.op_end_date +GROUP BY i.event_id, i.person_id + +UNION ALL +select i.event_id, i.person_id, MIN(c.start_date) as end_date +FROM #included_events i +JOIN +( +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-168,P.START_DATE) AND A.START_DATE <= DATEADD(day,182,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-168,P.START_DATE) AND A.START_DATE <= DATEADD(day,182,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-168,P.START_DATE) AND A.START_DATE <= DATEADD(day,182,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-168,P.START_DATE) AND A.START_DATE <= DATEADD(day,182,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-154,P.START_DATE) AND A.START_DATE <= DATEADD(day,70,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Drug Era Criteria +select C.person_id, C.drug_era_id as event_id, C.start_date, C.end_date, + CAST(NULL as bigint) as visit_occurrence_id,C.start_date as sort_date +from +( + select de.person_id,de.drug_era_id,de.drug_concept_id,de.drug_exposure_count,de.gap_days,de.drug_era_start_date as start_date, de.drug_era_end_date as end_date + FROM @cdm_database_schema.DRUG_ERA de +where de.drug_concept_id in (SELECT concept_id from #Codesets where codeset_id = 109) +) C + + +-- End Drug Era Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-154,P.START_DATE) AND A.START_DATE <= DATEADD(day,70,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 6 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-154,P.START_DATE) AND A.START_DATE <= DATEADD(day,70,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 7 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-154,P.START_DATE) AND A.START_DATE <= DATEADD(day,70,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 8 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-154,P.START_DATE) AND A.START_DATE <= DATEADD(day,70,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 9 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-154,P.START_DATE) AND A.START_DATE <= DATEADD(day,70,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 10 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +) C on C.person_id = I.person_id and C.start_date >= I.start_date and C.START_DATE <= I.op_end_date +GROUP BY i.event_id, i.person_id + +UNION ALL +select i.event_id, i.person_id, MIN(c.start_date) as end_date +FROM #included_events i +JOIN +( +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-168,P.START_DATE) AND A.START_DATE <= DATEADD(day,182,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-168,P.START_DATE) AND A.START_DATE <= DATEADD(day,182,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,30,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-168,P.START_DATE) AND A.START_DATE <= DATEADD(day,182,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-168,P.START_DATE) AND A.START_DATE <= DATEADD(day,182,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-154,P.START_DATE) AND A.START_DATE <= DATEADD(day,70,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 6 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Drug Era Criteria +select C.person_id, C.drug_era_id as event_id, C.start_date, C.end_date, + CAST(NULL as bigint) as visit_occurrence_id,C.start_date as sort_date +from +( + select de.person_id,de.drug_era_id,de.drug_concept_id,de.drug_exposure_count,de.gap_days,de.drug_era_start_date as start_date, de.drug_era_end_date as end_date + FROM @cdm_database_schema.DRUG_ERA de +where de.drug_concept_id in (SELECT concept_id from #Codesets where codeset_id = 109) +) C + + +-- End Drug Era Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-154,P.START_DATE) AND A.START_DATE <= DATEADD(day,70,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 7 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-154,P.START_DATE) AND A.START_DATE <= DATEADD(day,70,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 8 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-154,P.START_DATE) AND A.START_DATE <= DATEADD(day,70,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 9 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-154,P.START_DATE) AND A.START_DATE <= DATEADD(day,70,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 10 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-154,P.START_DATE) AND A.START_DATE <= DATEADD(day,70,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 11 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +) C on C.person_id = I.person_id and C.start_date >= I.start_date and C.START_DATE <= I.op_end_date +GROUP BY i.event_id, i.person_id + +UNION ALL +select i.event_id, i.person_id, MIN(c.start_date) as end_date +FROM #included_events i +JOIN +( +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-168,P.START_DATE) AND A.START_DATE <= DATEADD(day,182,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-168,P.START_DATE) AND A.START_DATE <= DATEADD(day,182,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,30,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-168,P.START_DATE) AND A.START_DATE <= DATEADD(day,182,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-168,P.START_DATE) AND A.START_DATE <= DATEADD(day,182,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Drug Era Criteria +select C.person_id, C.drug_era_id as event_id, C.start_date, C.end_date, + CAST(NULL as bigint) as visit_occurrence_id,C.start_date as sort_date +from +( + select de.person_id,de.drug_era_id,de.drug_concept_id,de.drug_exposure_count,de.gap_days,de.drug_era_start_date as start_date, de.drug_era_end_date as end_date + FROM @cdm_database_schema.DRUG_ERA de +where de.drug_concept_id in (SELECT concept_id from #Codesets where codeset_id = 109) +) C + + +-- End Drug Era Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-154,P.START_DATE) AND A.START_DATE <= DATEADD(day,70,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 6 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-154,P.START_DATE) AND A.START_DATE <= DATEADD(day,70,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 7 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-154,P.START_DATE) AND A.START_DATE <= DATEADD(day,70,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 8 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-154,P.START_DATE) AND A.START_DATE <= DATEADD(day,70,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 9 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-154,P.START_DATE) AND A.START_DATE <= DATEADD(day,70,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 10 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-154,P.START_DATE) AND A.START_DATE <= DATEADD(day,70,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 11 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +) C on C.person_id = I.person_id and C.start_date >= I.start_date and C.START_DATE <= I.op_end_date +GROUP BY i.event_id, i.person_id + + + ) CE on I.event_id = CE.event_id and I.person_id = CE.person_id and CE.end_date >= I.start_date + ) F + WHERE F.ordinal = 1 +) FE; + + +select person_id, min(start_date) as start_date, DATEADD(day,-1 * 0, max(end_date)) as end_date +into #final_cohort +from ( + select person_id, start_date, end_date, sum(is_start) over (partition by person_id order by start_date, is_start desc rows unbounded preceding) group_idx + from ( + select person_id, start_date, end_date, + case when max(end_date) over (partition by person_id order by start_date rows between unbounded preceding and 1 preceding) >= start_date then 0 else 1 end is_start + from ( + select person_id, start_date, DATEADD(day,0,end_date) as end_date + from #cohort_rows + ) CR + ) ST +) GR +group by person_id, group_idx; + +DELETE FROM @target_database_schema.@target_cohort_table where cohort_definition_id = @target_cohort_id; +INSERT INTO @target_database_schema.@target_cohort_table (cohort_definition_id, subject_id, cohort_start_date, cohort_end_date) +select @target_cohort_id as cohort_definition_id, person_id, start_date, end_date +FROM #final_cohort CO +; + +{1 != 0}?{ +-- BEGIN: Censored Stats + +delete from @results_database_schema.cohort_censor_stats where cohort_definition_id = @target_cohort_id; + +-- END: Censored Stats +} +{1 != 0 & 7 != 0}?{ + +-- Create a temp table of inclusion rule rows for joining in the inclusion rule impact analysis + +select cast(rule_sequence as int) as rule_sequence +into #inclusion_rules +from ( + SELECT CAST(0 as int) as rule_sequence UNION ALL SELECT CAST(1 as int) as rule_sequence UNION ALL SELECT CAST(2 as int) as rule_sequence UNION ALL SELECT CAST(3 as int) as rule_sequence UNION ALL SELECT CAST(4 as int) as rule_sequence UNION ALL SELECT CAST(5 as int) as rule_sequence UNION ALL SELECT CAST(6 as int) as rule_sequence +) IR; + + +-- Find the event that is the 'best match' per person. +-- the 'best match' is defined as the event that satisfies the most inclusion rules. +-- ties are solved by choosing the event that matches the earliest inclusion rule, and then earliest. + +select q.person_id, q.event_id +into #best_events +from #qualified_events Q +join ( + SELECT R.person_id, R.event_id, ROW_NUMBER() OVER (PARTITION BY R.person_id ORDER BY R.rule_count DESC,R.min_rule_id ASC, R.start_date ASC) AS rank_value + FROM ( + SELECT Q.person_id, Q.event_id, COALESCE(COUNT(DISTINCT I.inclusion_rule_id), 0) AS rule_count, COALESCE(MIN(I.inclusion_rule_id), 0) AS min_rule_id, Q.start_date + FROM #qualified_events Q + LEFT JOIN #inclusion_events I ON q.person_id = i.person_id AND q.event_id = i.event_id + GROUP BY Q.person_id, Q.event_id, Q.start_date + ) R +) ranked on Q.person_id = ranked.person_id and Q.event_id = ranked.event_id +WHERE ranked.rank_value = 1 +; + +-- modes of generation: (the same tables store the results for the different modes, identified by the mode_id column) +-- 0: all events +-- 1: best event + + +-- BEGIN: Inclusion Impact Analysis - event +-- calculte matching group counts +delete from @results_database_schema.cohort_inclusion_result where cohort_definition_id = @target_cohort_id and mode_id = 0; +insert into @results_database_schema.cohort_inclusion_result (cohort_definition_id, inclusion_rule_mask, person_count, mode_id) +select @target_cohort_id as cohort_definition_id, inclusion_rule_mask, count_big(*) as person_count, 0 as mode_id +from +( + select Q.person_id, Q.event_id, CAST(SUM(coalesce(POWER(cast(2 as bigint), I.inclusion_rule_id), 0)) AS bigint) as inclusion_rule_mask + from #qualified_events Q + LEFT JOIN #inclusion_events I on q.person_id = i.person_id and q.event_id = i.event_id + GROUP BY Q.person_id, Q.event_id +) MG -- matching groups +group by inclusion_rule_mask +; + +-- calculate gain counts +delete from @results_database_schema.cohort_inclusion_stats where cohort_definition_id = @target_cohort_id and mode_id = 0; +insert into @results_database_schema.cohort_inclusion_stats (cohort_definition_id, rule_sequence, person_count, gain_count, person_total, mode_id) +select @target_cohort_id as cohort_definition_id, ir.rule_sequence, coalesce(T.person_count, 0) as person_count, coalesce(SR.person_count, 0) gain_count, EventTotal.total, 0 as mode_id +from #inclusion_rules ir +left join +( + select i.inclusion_rule_id, count_big(i.event_id) as person_count + from #qualified_events Q + JOIN #inclusion_events i on Q.person_id = I.person_id and Q.event_id = i.event_id + group by i.inclusion_rule_id +) T on ir.rule_sequence = T.inclusion_rule_id +CROSS JOIN (select count(*) as total_rules from #inclusion_rules) RuleTotal +CROSS JOIN (select count_big(event_id) as total from #qualified_events) EventTotal +LEFT JOIN @results_database_schema.cohort_inclusion_result SR on SR.mode_id = 0 AND SR.cohort_definition_id = @target_cohort_id AND (POWER(cast(2 as bigint),RuleTotal.total_rules) - POWER(cast(2 as bigint),ir.rule_sequence) - 1) = SR.inclusion_rule_mask -- POWER(2,rule count) - POWER(2,rule sequence) - 1 is the mask for 'all except this rule' +; + +-- calculate totals +delete from @results_database_schema.cohort_summary_stats where cohort_definition_id = @target_cohort_id and mode_id = 0; +insert into @results_database_schema.cohort_summary_stats (cohort_definition_id, base_count, final_count, mode_id) +select @target_cohort_id as cohort_definition_id, PC.total as person_count, coalesce(FC.total, 0) as final_count, 0 as mode_id +FROM +(select count_big(event_id) as total from #qualified_events) PC, +(select sum(sr.person_count) as total + from @results_database_schema.cohort_inclusion_result sr + CROSS JOIN (select count(*) as total_rules from #inclusion_rules) RuleTotal + where sr.mode_id = 0 and sr.cohort_definition_id = @target_cohort_id and sr.inclusion_rule_mask = POWER(cast(2 as bigint),RuleTotal.total_rules)-1 +) FC +; + +-- END: Inclusion Impact Analysis - event + +-- BEGIN: Inclusion Impact Analysis - person +-- calculte matching group counts +delete from @results_database_schema.cohort_inclusion_result where cohort_definition_id = @target_cohort_id and mode_id = 1; +insert into @results_database_schema.cohort_inclusion_result (cohort_definition_id, inclusion_rule_mask, person_count, mode_id) +select @target_cohort_id as cohort_definition_id, inclusion_rule_mask, count_big(*) as person_count, 1 as mode_id +from +( + select Q.person_id, Q.event_id, CAST(SUM(coalesce(POWER(cast(2 as bigint), I.inclusion_rule_id), 0)) AS bigint) as inclusion_rule_mask + from #best_events Q + LEFT JOIN #inclusion_events I on q.person_id = i.person_id and q.event_id = i.event_id + GROUP BY Q.person_id, Q.event_id +) MG -- matching groups +group by inclusion_rule_mask +; + +-- calculate gain counts +delete from @results_database_schema.cohort_inclusion_stats where cohort_definition_id = @target_cohort_id and mode_id = 1; +insert into @results_database_schema.cohort_inclusion_stats (cohort_definition_id, rule_sequence, person_count, gain_count, person_total, mode_id) +select @target_cohort_id as cohort_definition_id, ir.rule_sequence, coalesce(T.person_count, 0) as person_count, coalesce(SR.person_count, 0) gain_count, EventTotal.total, 1 as mode_id +from #inclusion_rules ir +left join +( + select i.inclusion_rule_id, count_big(i.event_id) as person_count + from #best_events Q + JOIN #inclusion_events i on Q.person_id = I.person_id and Q.event_id = i.event_id + group by i.inclusion_rule_id +) T on ir.rule_sequence = T.inclusion_rule_id +CROSS JOIN (select count(*) as total_rules from #inclusion_rules) RuleTotal +CROSS JOIN (select count_big(event_id) as total from #best_events) EventTotal +LEFT JOIN @results_database_schema.cohort_inclusion_result SR on SR.mode_id = 1 AND SR.cohort_definition_id = @target_cohort_id AND (POWER(cast(2 as bigint),RuleTotal.total_rules) - POWER(cast(2 as bigint),ir.rule_sequence) - 1) = SR.inclusion_rule_mask -- POWER(2,rule count) - POWER(2,rule sequence) - 1 is the mask for 'all except this rule' +; + +-- calculate totals +delete from @results_database_schema.cohort_summary_stats where cohort_definition_id = @target_cohort_id and mode_id = 1; +insert into @results_database_schema.cohort_summary_stats (cohort_definition_id, base_count, final_count, mode_id) +select @target_cohort_id as cohort_definition_id, PC.total as person_count, coalesce(FC.total, 0) as final_count, 1 as mode_id +FROM +(select count_big(event_id) as total from #best_events) PC, +(select sum(sr.person_count) as total + from @results_database_schema.cohort_inclusion_result sr + CROSS JOIN (select count(*) as total_rules from #inclusion_rules) RuleTotal + where sr.mode_id = 1 and sr.cohort_definition_id = @target_cohort_id and sr.inclusion_rule_mask = POWER(cast(2 as bigint),RuleTotal.total_rules)-1 +) FC +; + +-- END: Inclusion Impact Analysis - person + +TRUNCATE TABLE #best_events; +DROP TABLE #best_events; + +TRUNCATE TABLE #inclusion_rules; +DROP TABLE #inclusion_rules; +} + +TRUNCATE TABLE #strategy_ends; +DROP TABLE #strategy_ends; + + +TRUNCATE TABLE #cohort_rows; +DROP TABLE #cohort_rows; + +TRUNCATE TABLE #final_cohort; +DROP TABLE #final_cohort; + +TRUNCATE TABLE #inclusion_events; +DROP TABLE #inclusion_events; + +TRUNCATE TABLE #qualified_events; +DROP TABLE #qualified_events; + +TRUNCATE TABLE #included_events; +DROP TABLE #included_events; + +TRUNCATE TABLE #Codesets; +DROP TABLE #Codesets; diff --git a/inst/sql/sql_server/1434.sql b/inst/sql/sql_server/1434.sql new file mode 100644 index 00000000..a3333b15 --- /dev/null +++ b/inst/sql/sql_server/1434.sql @@ -0,0 +1,40601 @@ +CREATE TABLE #Codesets ( + codeset_id int NOT NULL, + concept_id bigint NOT NULL +) +; + +INSERT INTO #Codesets (codeset_id, concept_id) +SELECT 0 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4130321,439402,4155282,437936,4248954,432968,442923,442922,2101814,441649,443133,4075168,76761,73526,4078138,4075169,4147974,314103,320456,4014291,4016064,4015277,4015270,4192676,77624,81086,3662128,436767,4075165,73537,4235752,3662129,4071629,441369,435607,437942,2110316,2110323,4165077,4015701,2004789,42872492,42872493,4152029,4014738,4223536,37208486,4034145,194707,315013,435879,4129041,433270,439092,75882,441361,4075190,440793,193277,4106406,4061457,4066112,4232028,4234710,4223638,4278225,4100410,4189205,4096145,4038495,441641,40551541,4056129,42872805,4130319,4293034,443012,4062685,4309425,198486,4134722,442915,133816,443321,440794,4075182,4075161,42536960,4075160,42536952,4167089,4127252,42537021,46270991,4032767,42536954,4272812,4311671,44513763,4211824,45757775,441924,443521,193535,72697,4063296,4064177,4064171,4064174,192978,199088,4217642,4075187,4114637,435022,4032761,4324549,2004702,194429,4244672,74440,77052,4091200,81357,80778,4009879,4014452,434110,4032764,435323,44513743,4075188,4231702,4035778,77615,4075170,441630,4014451,73538,436173,4064834,2004771,77621,4128031,40760193,80782,441082,196170,2004786,4161944,37312440,44513746,4088084,4075735,4075191,4071505,4069969,313829,438206,435606,442920,442919,44513745,4075189,4266683,4093774,4143647,42535817,72970,433260,4063163,4063162,4059751,42539267,442082,2101016,4071630,4127248,4014720,4063160,4071507,442053,74433,78494,75326,193269,197048,442080,79897,201368,193271,195025,199087,196182,194711,433274,2004767,2004802,2004765,2004768,2004783,4191809,44513736,44513756,44513729,44513747,2004731,44513740,44513733,44513752,4145318,4127249,73824,42535816,4234421,4023797,4307825,4073438,193539,4172142,193264,201359,4014292,434427,435031,441363,438220,200160,37110284,37110283,45757175,45757176,36712702,44784550,44784551,196762,72692,440476,441645,440475,434431,442419,442418,4065749,434713,438481,200157,442078,198216,195878,4127253,4121924,198816,192699,4064960,4065618,192384,198499,4264738,438490,439077,4092760,435020,80474,4170152,36713074,4073422,4167497,4205240,2110318,439094,439095,193275,3186670,136755,138207,4204679,137940,4063171,4174854,4267072,439093,432975,4161678,3655718,4134431,4326563,4290245,4073424,440462,196181,197049,4101844,42535052,435018,4060157,2110342,2004742,79889,45757158,4075171,442069,193544,4228344,4331179,44784097,2110320,2110308,4167018,442059,435610,435609,321367,443246,441087,4071632,40394878)) + +) I +) C UNION ALL +SELECT 1 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4092289,4307044,40482735,40483126,4163851,36713468,3174212,4097427,4147043,4142021,4310910,4069200,4145125,4082863,4008884,4107401,4029786,45765500,45757166,45773428,45765501,45757167,45757168,45765502,45772082,45757169,4014295,40483521,36713465,4227728,4330570,4049333,4243026,4066292,4193224,4336090,4199146,4307237,4178275,4094046,42539210,4014456,4015422,45757165,4015421,40483084,40483101,4014296,4014455)) + +) I +) C UNION ALL +SELECT 2 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4015296,4014149,4014150,44808979,4015141,44808980,4014151,44808981,4015297,4015298,4014434,4015299,4015142,4014152,4015300,4015301,4015302,4014435,4178165,4181468,4181162,4324063,438542,45770261,4322726,4242241,4174506,4197245,4266517,4248725,4283690,4049621,4277749,4097608,4181751,4337360,4051642,4185780,4274955,4336226,439922,435640,444023,432430,444461,444417,4220085,434484,433864,442558,441678,443874,444267,438543,442355,443871,435655,4326232,442769,444067,4195157,4290009,4313026,4270513,4132434,4245908,762907,4336958,4180111,444098)) + +) I +) C UNION ALL +SELECT 3 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4132434,4322726)) + +) I +) C UNION ALL +SELECT 4 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4072438,4088445,4058439)) + +) I +) C UNION ALL +SELECT 5 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4186424,4324606,40489798,2211754,2211753,4237339)) + +) I +) C UNION ALL +SELECT 6 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (40480490,4061810,4061809,3040768,3038294,3010296,42529192,3027634,40757479,3032506,3033080,3009306,42529190,4197249,4099476,4014768,3012116,3024289,3021607,3046154,3044142,3030180,3046979,3022269,3016670,3024370,40761829,3044397,3025053,3027505,42529191,3045958,40762626,3028331,42529189,2212200,2212199,2212198,4147940,4269851,4041177,44807243,4042555,4059689,4042557,4078285,4057158,4269860,4042936,40761828,37396772,37396771,40478936,40483704,40480870,40483600,4310471,4210719,4161969,4275335,4195345,4078287,3051868)) + +) I +) C UNION ALL +SELECT 7 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (443800,4184965,40480713,4242590,4211822,4070773,4034017,4034018,45765512,4211227,4261326,4219015,4138554,40318194,4230947,40318195,4312727)) + +) I +) C UNION ALL +SELECT 8 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4055287,37392366,4250175,4091293,4091461,4055285,37392365,2212173,4014769)) + +) I +) C UNION ALL +SELECT 9 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4015296,4197245)) + +) I +) C UNION ALL +SELECT 10 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4015142,442355,762907)) + +) I +) C UNION ALL +SELECT 11 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4015299,438543)) + +) I +) C UNION ALL +SELECT 12 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4014434,444267,4180111)) + +) I +) C UNION ALL +SELECT 13 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4015300,435655)) + +) I +) C UNION ALL +SELECT 14 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4245908)) + +) I +) C UNION ALL +SELECT 15 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4015301,4336958,444098)) + +) I +) C UNION ALL +SELECT 17 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4242241)) + +) I +) C UNION ALL +SELECT 18 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4174506)) + +) I +) C UNION ALL +SELECT 19 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4181468,4266517)) + +) I +) C UNION ALL +SELECT 20 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4337360)) + +) I +) C UNION ALL +SELECT 21 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4220085)) + +) I +) C UNION ALL +SELECT 22 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4326232)) + +) I +) C UNION ALL +SELECT 23 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4195157)) + +) I +) C UNION ALL +SELECT 24 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4290009)) + +) I +) C UNION ALL +SELECT 25 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4313026)) + +) I +) C UNION ALL +SELECT 26 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4270513)) + +) I +) C UNION ALL +SELECT 28 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4248725)) + +) I +) C UNION ALL +SELECT 29 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4283690)) + +) I +) C UNION ALL +SELECT 30 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4014149,4049621)) + +) I +) C UNION ALL +SELECT 31 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4277749)) + +) I +) C UNION ALL +SELECT 32 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4097608)) + +) I +) C UNION ALL +SELECT 33 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4324063,4181751)) + +) I +) C UNION ALL +SELECT 34 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4014150,4178165,4051642)) + +) I +) C UNION ALL +SELECT 35 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4181162,4185780)) + +) I +) C UNION ALL +SELECT 36 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (44808979,4274955)) + +) I +) C UNION ALL +SELECT 37 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (438542,4336226)) + +) I +) C UNION ALL +SELECT 38 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4015141,439922)) + +) I +) C UNION ALL +SELECT 40 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (44808980,435640)) + +) I +) C UNION ALL +SELECT 41 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (444023)) + +) I +) C UNION ALL +SELECT 42 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (45770261,432430)) + +) I +) C UNION ALL +SELECT 43 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (444461)) + +) I +) C UNION ALL +SELECT 44 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (444417)) + +) I +) C UNION ALL +SELECT 45 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4014151,434484)) + +) I +) C UNION ALL +SELECT 47 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (44808981,433864)) + +) I +) C UNION ALL +SELECT 48 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4015297,442558)) + +) I +) C UNION ALL +SELECT 49 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (441678)) + +) I +) C UNION ALL +SELECT 50 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4015298,443874)) + +) I +) C UNION ALL +SELECT 51 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4014152,443871)) + +) I +) C UNION ALL +SELECT 52 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4015302,442769)) + +) I +) C UNION ALL +SELECT 53 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4014435,444067)) + +) I +) C UNION ALL +SELECT 55 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4239302,2004542,4130186,4127094,4187819,4280831,2110196,2110197,4238828,2213350,4272937,2721246,42739500,2213363,2213362,2213365,2213364,2721238,2721239,2721240,4309021,40482399,2213355,2721256,2213347,2213348,4022096,4024589,2721247,2721248,4327048,2110275,4072852,4072863,4074569,2213361,4127892,2110274,4032737,2721243,2721241,4127104,4072421,2110276,4309019,2213360,4072715,4030829,4138741,4139858,4139060,4137390,4145843,4020898,2721255,4199599,2788842,2721237,3049700,2721245,2721244,4138627,46273065,4145664,4138633,4141534,4142402,4144415,40259107,2213351,4072862,46232934,44513468,44517168,4075024,44513634,44513516,2213352,40490338,2213358,2213357,2110198,2721254,4022098,44790511,40490447,4073406,4127106,4020897,4127105)) + +) I +) C UNION ALL +SELECT 56 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4014433,4014148,4173786,4061786,4060243,43530904,4061437,4060251,439656,4060246,4060097,4060242,4060241,4059989,4060247,4147564,4060239,4061433,4061426,36713461,4061425,4061787,4060098,4059988,4061789,4060248,4060101,4061793,4060240,4060244,4059987,4190427,4147941,4047845,4084186,4062361,4061521,4081196,2110312,2110313,2108689,4015159,4060252,37016958,4076939,4061795,4156955,4150421,4059478,4128833,4226978,4060255,4084439,4015304,4060104,4151190,2514574,4061791,4066354,4305717,37016955,4084521,4038747,4140250,4038420,4038571,4038945,4039088,4038943,4039610,4038938,4038760,4038418,4038749,4038751,4038932,4039602,4038753,4038935,4038748,4039609,4038759,4175225,4038424,4171428,4039608,4038941,4038939,4038937,4038573,4039603,4194143,4016475,2618150,2618151,2618152,2618154,2618155,4176966,4112701,4311447,4172038,4313474,4060105,77619,4081292,46272536,4084693,4047564,4083415,4260976,2101831,40517216,40525253)) + +) I +) C UNION ALL +SELECT 57 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (441092,4061424,40760833,4139126,4015590,3011536,43054893,43021054,37017322,441085,192380,4210896,3006722,40759953,195877,4061522,437937,4030415,197031,4061672,43021951,43021952,3045823,432969,3000119,4217975,4038942,4150948,4148890,4094910,4061785,4060237,4299535,4059982,4061686,4059984,4061411,4059981,4133029,442594,440466,4061423,4214930,3040000,196484,4042412,198212,4129023,4218813,432375,441919,4307820,4059985,4239301,4041878,3023791,40519557,40524802,40524805)) + +) I +) C UNION ALL +SELECT 58 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (2721180,3019145,3011465,3011996,3010164,40758989,3011149,3009417,3038136,3004303,3036988,3002091,3008714,3003191,3018954,3018171,4018189,4296540,4296541,4016953,4017479,4263011,43527960,43527959,4096237,44807244,2212633,2212632,2212631,44807240,4285271,44806337,4038817,44812174,4210718,4210722,4195509,4198892,4041161,4042751,4214677,44789306,4055426,4055954)) + +) I +) C UNION ALL +SELECT 60 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4129846,37017027,4079844,4071603,442338,443695,4034159,45773593,4060687,4028787,4222915,4242724,4184594,42539377,42538805,42538806,4014454,443213,40406337,4287409,4217655,4261819,4321563,4301269,4103876,4300979,443463,4306288,4192641,4203001,4015163,4015162)) + +) I +) C UNION ALL +SELECT 61 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4198718,4209254,4197835,4193852,4198731,4195213,44805579,3016704,4234906,4258832,4198733,4193853,4198732,3004221,4209122,4193854,4193855,4198719,4198742,4198743,4130321,4200678,4059050,4198125,4149783,193525,442631,314478,312733,137974,314099,437688,438557,440216,439402,439403,4162865,4155282,4162866,4306804,437342,197050,40480490,4136368,436477,3003694,444365,42597053,42597052,42597051,201076,197612,438812,195319,42599848,2721147,2784560,2784559,2784555,2784556,2784557,2784558,2784561,2784562,440776,440454,4050827,4052366,4052365,4050829,36713476,4262542,3034139,4173330,4034308,761075,196490,4215648,45772947,45768986,37397030,441092,4312095,4129840,4061810,4061809,3655216,3655215,4030070,4029428,4029425,3040768,3038294,3010296,42529192,3027634,40757479,3032506,3033080,3009306,42529190,4197249,4099476,4014768,3012116,3024289,3021607,3046154,3044142,3030180,3046979,3022269,3016670,3004943,3024370,40761829,3044397,3025053,3027505,42529191,3045958,40762626,3028331,42529189,2212200,2212199,2212198,4147940,4269851,4041177,44807243,4042555,4059689,4042557,4078285,4207608,2314093,2314092,4208334,443800,4184965,4146045,2110279,4140734,2110280,2004824,437936,435880,4057158,4269860,4231903,435616,3655206,3655205,4057149,433880,4154997,441959,436768,437948,2212210,4248954,4173032,4170460,432968,432967,4209094,434701,442923,442922,4099889,432452,42739743,2101814,2101807,2101809,2101804,2101811,2101812,2100998,2101808,2101806,4118417,40480713,4149405,4015296,4014149,4014150,44808979,4015141,44808980,4014433,4014151,44808981,4015297,4015298,4014434,4015299,4015142,4014152,4015300,4015301,4015302,4014435,4061154,4060259,4061530,4014319,4015139,4207466,4014148,4173786,4061786,4060243,43530904,4061437,4060251,439656,4060246,4060097,4060242,4060241,4059989,4060247,4147564,4060239,4061433,4061426,36713461,4061425,4061787,4060098,4059988,4061789,4061424,4060248,4060101,4061793,4060240,4060244,4059987,4190427,4147941,441649,4047845,4084186,4170305,4062361,4060266,4079835,4152443,4087235,37310544,37310338,36713463,4191703,36713464,36713462,37016744,35609139,4061521,4014320,4015137,4015294,37016760,4152444,4152445,4061131,4061803,4061157,4061534,4141415,4060265,4060263,4143115,4060264,4061802,4060262,4081196,2110312,2110313,435887,4079969,4129846,434089,4143074,438489,443133,438203,37017027,4129039,2108689,4061531,4014312,4016469,4014579,4016470,4269556,4014304,4016052,4015431,4269555,4016464,4016467,4016466,4266765,4167905,4299090,4183596,4170878,4219591,4132308,4244236,4088036,4011798,4028032,4049582,4274664,318247,36716744,4079848,3006511,4080668,2004542,4239302,4130186,4127094,4187819,4280831,2110196,2110197,4238828,4131376,439136,2004526,2004525,4212941,45763635,4300368,4153454,4075168,2213350,4272937,2721246,42739500,2213363,2213362,80156,76761,73526,196488,42739562,2514559,4173192,4215792,37397031,37397032,37204850,37204849,4149455,4014461,4151169,4015275,4078138,4149449,37016220,37016221,4149457,37016222,37018684,46271955,37016216,37016217,37016218,37016213,46271814,37018683,37018889,37016212,762577,37016211,4014299,4149451,4150406,4150405,4150404,4015274,133594,4075169,4147974,42742559,42742561,4150338,321638,314103,320456,314423,4062811,762706,762705,4244383,4043411,4046209,4028640,4093429,2004347,36684754,37207968,36684753,36684752,36684751,4107080,36716760,4028644,2213365,2213364,4184996,36716763,36716762,4014291,4016064,4015277,4015278,4015282,42536751,42536565,4290881,4014465,4015288,4015429,4015287,4014466,4015284,4015270,40760833,435641,4030440,4149610,4171114,4187520,46271901,40759177,4262136,2721180,3655208,3655207,4028780,4055674,4041701,4041702,4041700,4055675,4055676,4042726,4042728,4275337,4041697,4042727,4135545,44784272,4042936,4078281,4027371,4192676,4260748,42742564,4139126,73019,4066255,443330,77624,81086,73282,4260749,4054949,4066258,4345684,4015144,40766616,4254219,3662128,4213387,436767,4075165,73267,74698,73537,76756,4283942,4122871,3026267,4120298,4031037,317669,36713582,4306192,4261479,42742390,2108149,4065999,4208980,4235752,36716743,36713583,375016,4047852,3662129,4071629,2110305,2110304,4147060,4243309,377980,4171109,4171111,4082313,316494,4321386,4034148,436740,441369,435607,437334,440166,44790204,197043,437942,2110316,2110323,2110324,2110317,4165077,4015701,4303297,2004789,4066111,42872492,42872493,197344,194113,4065866,40482050,4152029,4253751,40479783,4014738,4194590,4200299,4194591,4199794,4194593,4199793,4194592,4014735,4014605,4194594,4014606,4194595,4199796,4014607,4199797,4014736,4194596,4200422,4199798,4197178,4200300,4276725,4016184,4199795,4197179,4016183,4102952,4203366,4340944,3019145,3011465,3011996,3010164,40758989,3011149,3009417,3038136,3004303,3036988,3002091,3008714,3003191,3018954,3018171,4018189,4296540,4296541,4016953,4017479,2212145,2212144,2110282,44793560,44791458,4162502,72973,40760436,2213267,2213268,4080590,4173190,313023,4223536,2004785,36713561,37208486,434167,40761828,4182145,44783183,4135209,40483581,3170656,437046,4034145,2721238,2721239,439085,441629,441921,4146774,2721240,441073,438196,40318618,441910,432682,441632,435318,435000,436742,438805,4113352,440464,440795,36715374,432382,436489,437947,435875,4141513,441364,433822,433263,4309021,4193765,40482399,80205,441964,197339,194707,193825,315013,314426,443249,436532,37396772,4236230,196175,201920,435879,440162,4188480,433869,4015159,4060252,433826,432373,43020670,441647,45757769,4237335,4268171,4120986,36716738,36716737,380533,434708,4129041,442292,433270,2110281,433828,439092,442421,4055252,2004823,4015590,37016958,2212630,433548,36713479,45757216,443243,440481,432396,442529,2213355,2721256,4242590,4057444,4055550,4269855,4057443,2213347,2213348,2110301,193174,4170118,42742301,4100193,4185718,4232953,4173946,196475,42537767,42537768,4174543,4194053,4216382,4072438,4088445,4060625,44810005,40491449,40487136,4197955,75882,73265,44784536,438820,4266839,4234604,438814,194109,4048293,441361,42537762,42537759,4114265,4277103,4075190,440793,193277,2514560,4076939,4106406,4061457,4066112,4232028,4234710,4223638,4278225,4100410,4189205,4096145,4237496,3011536,4038495,43054893,4061795,441641,40551541,4056129,42872805,2110311,4130319,4293034,4156955,4150421,4128030,4046029,36715417,36716734,4252401,4193756,40478932,443012,192691,4058243,194700,4062685,4062686,43531645,43531019,43531020,40758528,3169474,443727,4009303,2004805,4143646,40479665,4032755,4142956,2006934,4135437,37204835,37204834,43021054,4211822,434482,4016060,4173784,4314846,4313768,4071864,4309556,4149472,2004489,4106559,4309425,4168396,4138740,4074867,4072420,4074297,4022096,4024589,4084845,40757216,40757177,4071597,201958,438815,73546,200524,4130161,80471,79890,4053583,42537770,42537769,42537771,4195545,201091,198486,4059763,443418,4134722,4282151,443897,432443,4091783,437985,37017322,2721247,2721248,2211763,2211764,44807919,2211761,2211760,4149370,4201770,2784529,2784535,2784541,2784547,2784553,442915,442913,440787,4029427,4034969,4096804,435359,438871,4139551,4015420,4122728,4014453,4015161,40259069,443706,4139861,4070773,4307303,36713560,35622880,437614,138813,4040834,2722250,2211762,4137949,443700,133816,138811,137613,4116344,4058536,4294771,4129522,4029426,4030181,437611,441412,438204,443321,37018717,37017708,37017183,4207151,37017710,45770395,43527945,441085,440794,442442,4075182,4075161,42536960,4075160,42536952,4171254,4276942,4263011,42539701,42537764,440777,4327048,2110275,4167089,4127252,42537021,46270991,4032767,42536954,439924,4113994,4066014,4074443,4072852,4072863,4074569,80478,4055924,42573076,4272812,2004766,4311671,4046551,4102125,2110303,44513763,43530969,4009644,37109548,37109547,4345685,4059478,4128833,3025994,3025455,3005625,3003262,4070303,4032621,4170151,40756825,4216768,434758,81636,42537763,37206231,37206226,37206230,4074426,40493226,4074427,2004345,37396132,4034017,4065745,40479820,4147858,2213361,44790867,4226978,2004769,4075176,4257043,44513450,4211824,38001501,4173323,439128,78210,4071437,377680,4060261,4017134,194694) or concept_id in (192380,4281684,45757775,2004751,442613,437622,441924,437341,438491,4196129,434436,443521,4298980,45771070,81088,36715473,78224,4157164,4127892,4001541,4279380,4062557,4089691,4156660,3035250,3037110,40766113,3037187,46235168,3017703,3018251,46236950,3041651,3025791,3002574,4320478,3655214,3655213,4310205,4250134,4060255,433315,3173127,43530900,4004785,4150653,439923,201083,43022052,44790240,3026620,3028281,2211758,2211759,79146,4196670,37310907,43528050,43527962,43527961,43527960,43527959,2110283,3001951,4079844,75605,4071603,436228,442338,443695,4178809,80165,73268,37311827,435369,4216551,4334808,4034866,43530902,2004809,45757059,4203009,2212334,37310859,4210896,4266763,80204,4084439,3006722,437098,433311,36716504,36716503,42538545,42538544,36715840,36715841,2212438,2212439,2212436,3032604,3050978,201366,193535,196757,44790237,2110287,2110286,4146847,4145315,40759953,3003857,2110284,4271327,4061924,4281385,4142900,4314282,438541,36716530,434483,4148097,433309,44784300,432429,439129,439135,4071485,436518,36716552,444464,436220,435927,36717572,441682,440203,437975,44784362,435063,4070412,36716553,435918,4047718,4070425,4070426,435917,42538699,4070413,4048006,44784412,78563,76521,43531708,44784346,44784342,437976,4048130,36716526,433027,436219,438868,434744,434745,4047585,36717570,36716529,36716528,36716527,4118056,435062,44782462,36716731,4047586,44784411,440211,441680,44784612,44784611,436517,440829,437088,4047595,44784305,44782664,201681,441122,201410,4176131,437668,433310,433018,4048003,441684,4048004,4047711,442148,4077736,4047719,4070414,4047712,4048005,433319,432734,36716545,36716543,4328890,4230351,4067525,4096143,36716546,36716547,36716544,36717220,4262288,2110285,4015304,4318554,4151412,436804,81360,4047725,442827,72697,80463,4064277,4063296,4063297,4060672,4064177,4064178,4064169,4064171,4064172,4143204,4064174,4064175,4129181,4171110,4306064,4100257,4200202,4199559,4201383,4103472,4126735,4090743,195877,4116804,4124634,432441,4116805,4199560,439156,4126738,4201382,4126409,4090747,197343,192978,199088,3657563,4239938,4147431,4096531,4140071,42597080,37399364,2110274,4217642,4075187,4114637,435022,4032761,4324549,2004711,2004702,198495,4059969,4143634,194429,198496,81685,4071595,4070316,36716537,4048135,4273394,4244672,4096237,44807244,4034159,4032737,2721243,2721241,4296686,4003230,4104821,4338674,4068274,74716,4061187,4066260,74440,74717,76772,443328,79884,4127104,4072421,2110276,4172870,442777,77052,76750,4061522,4091200,196177,45768620,77340,81357,80778,74415,4178165,4181468,4173324,3048230,3045991,40481315,3036844,4221190,3183244,4024659,4326434,4263902,37018765,443214,442565,4058113,4214186,43530970,43530973,4181162,4324063,438542,45770261,4322726,4242241,4174506,4197245,4266517,4248725,4283690,4049621,4277749,4097608,4181751,4337360,4051642,4185780,4274955,4336226,439922,435640,444023,432430,444461,444417,4220085,434484,433864,442558,441678,443874,444267,438543,442355,443871,435655,4326232,442769,444067,4195157,4290009,4313026,4270513,4132434,4245908,762907,4169089,4236507,4042066,3003994,3037524,2212367,2212360,2212357,4094447,4017758,4077514,3049746,4275336,3025893,40762090,40758981,3023544,3005943,3016083,3014014,3031266,3048865,3034530,3011424,3014053,36304599,36303387,3019210,3004077,3038962,3034962,3022548,36031895,3023572,3002436,3001346,3016680,3045908,3030618,3015544,3020909,3033618,3011789,3015046,3034466,40759281,3008572,3016726,3017261,3004251,40763914,3000607,3002240,3010075,3049817,3004617,3003462,3003403,3004501,3041015,3039562,3027276,3043908,3026728,3025211,3006760,3017592,37020527,3052646,3026020,3006333,3049496,3032780,3036283,3041875,3041757,3012635,3006325,3036807,3044527,3048585,3002009,3007781,3024583,3041863,3048856,3023379,3043648,3040375,3039582,3013802,3040872,3044252,3014163,3038855,3021232,3033778,3012415,3008804,37020666,3039397,3017053,3001975,21494214,3039851,36660183,3029871,3034771,21492336,3025113,3005787,3040739,3009006,3040457,3038995,3038543,3041353,3038958,3040694,3040940,3043678,3009245,3017892,3014716,3008191,3016699,3007332,21492339,37021274,3050405,3010300,3017345,3002310,3026071,3025232,3004723,40760467,3032986,3035125,3044574,3040904,3007820,3038316,37020873,3052659,3026550,3048282,3041620,40759870,3041009,3043637,3041860,3015930,3000545,3040983,3004428,36660184,3023776,3043930,3038549,3042343,3041056,3041864,3042329,3041872,3040748,3006717,3007092,3042637,3025673,37021474,3041799,3026300,3019876,3021737,3000845,3022079,3032779,3035352,3010044,3040420,36660135,3025740,3026571,3025136,3030070,3013604,21492337,37019755,3050128,37020288,3028247,3010722,3003412,3041024,3041720,3042058,3019013,3003334,3007427,36659783,3002544,3038570,3053004,3027457,3005996,3009582,3039937,3027198,3020407,36659954,3014737,3010118,3040476,3042431,3010030,3030416,3035858,3015323,3039166,3027980,3022574,36660356,3038965,3020260,21492338,3023186,3018998,3028112,3003541,3024644,3005487,36660344,3021924,3013145,3032719,40761077,3009397,3013881,3005850,3035415,3039849,3052976,3033312,3021860,3004389,36660564,3023243,3022933,3040592,3041921,3012792,3028944,40761078,3017083,3050134,3023466,3004681,3022285,3023125,3004351,3038687,3050095,3032230,3011296,3018151,3008349,3019431,3017328,3031928,3041745,3039229,3052381,3024762,3004766,3025181,3049466,3029014,3000931,3042186,3007864,3038525,3031929,3035759,3002666,3025866,3026536,3025398,3001511,3020058,3019474,3005030,3003435,3049846,3002332,3006887,3040820,44816672,3042201,3041915,3051368,40760907,3041397,3020399,3020632,3015996,3001020,3016159,3017222,3027145,3010115,3032276,40759245,3024540,3006289,3022314,3034003,3037787,3011088,3028287,40761076,3010956,3031651,3005231,3000272,3031105,3012009,3032809,3019571,3029102,3039896,3024629,3042145,3039280,3043210,3042982,3043057,3035214,3033408,3004676,40757617,1002230,3005131,4149519,4229586,4144235,4018315,4151548,4230393,4286945,4036846,4182052,4218282,4017078,4018317,4249006,4331286,4018316,4149883,40762854,40762853,40762855,40762852,40762856,40762857,40762858,44816584,3042439,3000361,44816585,3046229,3035381,3044242,3020491,43055143,3040151,3021525,3001501,40762874,3020044,46235203,46235204,46235205,46235206,3051101,3020722,3052839,3051873,3051002,3040806,3042173,3036257,21491017,21491018,21492444,3023044,3036782,3013826,3038566,3044548,3040116,40757532,3001022,3039558,40757379,3038565,40757524,3040402,40762873,46236371,40757525,3038251,3043536,3041470,3041028,3045291,40757526,3040937,3003912,40757397,3041766,3038257,3038390,3040594,3038991,40757408,3036375,40758480,3039763,3036895,40757398,3042216,46234926,3042995,3021258,44786741,40757380,3009877,40757391,43534070,40757402,3042146,3038581,3050625,40757381,3050771,40757392,40757403,3041787,3007619,3044219,3040442,3041160,3043956,3040673,3041760,3042342,3040567,3037432,3020869,3011761,3039422,3051280,3015024,40757396,3040655,40757407,3044516,3040659,3015621,40757523,3038672,3038264,42868432,40757382,3018582,42868430,3039826,3041486,3043922,3043635,3041604,3039788,3006520,40757401,3043514,40758510,3040060,3019047,40757390,43534069,3041159,3040683,3040867,3034101,3041140,3042029,3038395,3044269,3040870,3040366,40757400,3009154,3016160,3017538,3038621,3016701,40757389,3041638,3040613,3012413,40757383,3040578,40757527,3040603,3015980,3005793,3039178,3008799,40757394,3040908,40757405,3041786,3016567,3039739,3044550,3038838,3022161,3000992,3044555,3013026,3041609,3017048,3017091,3038314,3017589,3041489,40757404,3041136,3042487,40757393,3038420,3040892,40762876,40757528,42868433,3014194,42868431,3040104,3022201,3043978,46235368,40758481,3051231,3023228,40757395,3047279,40757406,3044218,3023758,3039997,3017634,3017890,3042489,40757384,3039807,3045318,40757529,3044562,3003824,3041490,3018175,3004724,3040107,3049428,3040634,40757385,3040641,40757627,3041895,3002654,3041454,40757386,3040468,40757628,3041763,3039297,3038727,3040099,40762875,3038557,40757629,3038422,3045067,3041615,40757387,3039224,3040896,3043032,40757630,3041856,3041903,3040710,40757530,3007821,40757626,3041930,3041971,42868682,3006669,3019765,3004067) or concept_id in (3039439,40757531,3048522,40757388,40762250,40757399,3044522,3042469,3045105,3045131,3045158,3045700,3029462,3030745,3038434,46236948,46236367,3006893,3051044,3020618,3005570,40762249,3008770,44786994,3038515,3040563,40757618,44806589,3018056,2212361,3007308,3040980,3020650,3007777,3006684,3028014,3023961,3024785,3025622,3007971,3006258,3021752,3009261,3005875,3005589,3020820,3021033,3019493,3007031,3018958,3009251,3011355,3004629,3023638,3021635,3003453,3005851,3022233,3005370,3003201,3025876,3010617,3020455,3001283,3020450,2212359,2212364,3003169,3030177,4012477,44783612,2212363,2212362,4055679,4055678,434164,2212633,2212632,2212631,372842,4009879,4014452,437937,434110,442441,4032764,4042068,4084217,4149401,42742312,316478,440532,201129,4085415,4155624,4152629,4161205,42709943,37312073,437922,4177184,3004410,2212391,2212713,2212714,437090,440218,433603,36713168,4009645,438478,437935,435323,36716542,436529,4329097,4083118,435358,4061471,4066134,4066135,4065761,37396771,4311256,4033068,4079859,44513743,4075188,4231702,4035778,40480725,442088,77615,72696,4302252,37392366,4055287,4075170,42739014,42739011,441630,4062565,4014451,4060104,4151190,2514576,2514575,2514574,44807240,4285271,44806337,439083,44500814,73538,81923,444245,77662,4030872,4098582,4227141,4142340,436485,436173,440788,37311673,37016348,37016349,40480031,4034959,4034966,37312344,37312345,4307509,37397460,37397139,36713524,36715528,37397034,36715529,36715530,36716024,42536603,4147719,4215719,321080,192698,443244,4064834,4064835,433873,4267556,42572837,44809809,44789319,44789318,42600315,24609,4029423,45769876,45757363,4287549,3185010,45772060,4226798,4228112,36714116,30361,4029422,4232212,45757362,36676692,436534,45772056,4308657,4318803,4153365,4082045,2110292,4082412,4132295,4234390,37395921,4173187,444048,193821,439400,443705,195600,442596,439325,4143190,4138267,4185440,4303980,4066227,4182549,4223627,436169,4264914,4101477,4023781,4107907,4323434,4180859,4066994,4105762,4077275,4025828,4229716,4249728,4266243,4305348,4234979,4197900,4051784,4195243,4224143,4239192,4296872,4103148,4143018,4206453,4195297,4318662,4313005,4034753,4324965,4219608,4183557,4140509,4030415,36713470,4071514,4069972,4071513,4071641,4070223,4247275,4308509,44808373,4311629,4263688,4047260,4251180,4229140,4111906,4029951,4136531,4045297,4030067,4042067,4027550,133284,2110084,2004771,439323,437929,438487,439324,439321,439322,439320,45768717,45771353,438211,436748,437618,4146775,439328,37110280,435868,434705,440453,439329,193532,434095,439331,439330,434689,40318617,434413,437933,440460,437045,195317,432689,439688,441631,42535215,44805020,4171255,4239206,4038817,4289543,3198709,440161,2721146,2721148,2721149,2721150,2110331,2110332,2110333,2110334,2110335,2110336,2110329,2110330,37018340,43530913,43530914,43530928,43530915,43530916,43531712,43530957,43530917,43530958,43530959,43530960,43530918,43530961,43530919,43530962,43530908,43530920,43531713,43531710,43530921,43530922,43530910,43530964,43530923,43530952,43530924,43530925,43531714,43530953,43530926,43530927,43530911,43530966,43530929,43530948,43531715,43530954,43530930,43530955,43530931,43530956,43530932,43530933,43530965,43531716,43530934,43530912,43530935,43530936,43530937,43530939,43530940,43530941,43531711,43530943,43530947,43530944,43530945,43530967,43530968,4200986,44784128,4075159,4032756,2004745,37311825,4244408,4146772,4062356,4014439,4016479,4231742,4174423,37018973,4173344,4208967,4152958,4153568,4309019,436180,3655611,444244,36713475,45757187,4062133,74434,4028781,439139,433823,4008083,433266,42600083,4085257,2514556,2514569,2514555,2514558,42739633,2514563,4161783,4121775,36716540,36716538,36717351,36716541,36716740,381952,36716733,77621,79896,2213360,4112315,4074301,4128031,4071638,4018336,4229110,2212419,3049230,4020992,3010771,2212155,3022466,3004648,3004163,3004325,3011670,3003227,3011496,3020877,3002800,3035571,40759809,3001627,40759811,3001583,40759810,3007346,3000664,3011411,3037545,3033461,3038084,3037230,3021586,3021537,3002053,3019151,3015988,3012706,3024084,3037897,3000331,3033587,3008406,3005615,3024615,3034123,3003339,3017118,3011462,3011381,3022404,3023151,3013134,3009446,3018974,3019590,3000005,3022492,3019824,3023517,3034439,3029133,3013373,3022423,3016203,4060873,3030272,3016523,40758613,40758512,40758610,3020977,3036942,3037468,3037714,3021224,40758618,40758612,3038241,40758628,40758514,3001558,43534076,40758617,40758614,3038723,40758615,40758521,3019094,40758563,40758616,3039233,43534075,40758620,40758625,3038693,40758515,3037840,40758629,40758621,3041156,43534074,40758622,3042046,40758626,40758513,3038142,40758619,40758624,40758516,40758611,40758517,40758520,3033522,40758518,40758623,40758511,40758609,3022114,40758519,3012701,40758608,40758627,3015720,3008465,3017410,3033929,40762271,1001918,3040755,3029373,3046092,3019840,45769875,35622016,4129524,4129525,2212418,4017196,3010058,3016244,3049445,3048476,3019544,3049768,3043439,3045444,40771051,3011873,40759701,3046035,3017375,3046568,3046591,3008358,3052952,36659792,3027077,36660450,3049491,3011621,3046621,3017922,40771052,3033462,3051708,36660139,3016036,3052582,3029720,3046287,3048483,3036251,3018509,3049493,36660352,3024067,3004884,40759907,40760065,3026145,3049164,36660132,3012064,3029908,3046308,36659993,3052011,3015089,40759908,3012529,36660726,3017496,3018344,40759909,40760063,3051067,36659716,3009167,3053266,3030827,3045998,40760068,3036529,40760067,43055438,36660594,3016818,36660526,3027834,3029056,3012719,40760126,40760064,36660177,3006570,3052901,40760468,3049177,3030826,3023123,40760066,40760061,40760062,3012007,3028357,3051418,40759613,3030984,3019569,3015678,3029665,3018957,40760060,3031012,3028877,3028902,40759603,3009413,3048519,3049462,3050108,3052941,3029043,1002121,4254200,2004750,2004749,4217602,4197403,37117767,4023420,4072715,36716736,36716735,4149029,4303420,4298274,4149939,4242238,37110285,37205799,4065747,45773593,4030829,4066151,4138741,74162,4060687,4063309,4139858,4139060,4137390,4145843,197031,4020898,2721255,4063939,4107728,4180743,4079972,434155,4215504,44500947,195329,4199599,2788842,2721237,3049700,2721245,2721244,4138627,46273065,4058246,4079751,4184274,3655631,442772,4061672,4145664,4138633,4141534,4142402,4198705,3030662,3044819,4122929,437681,442216,439770,443734,4095288,4224254,4228443,3035350,4049629,4139552,4305334,4129837,43530880,77335,42742323,4091790,3195953,37311826,40760193,4041698,4250609,4014719,4106999,199089,194709,4154571,4152967,4112304,4034018,4218738,436167,40347147,40378260,42872572,42872571,4319321,40490893,4144415,40259107,4190526,2110299,2110300,4251314,40480864,4032749,2110240,2722205,2110245,2722217,4030430,80782,78818,36712932,4344633,2106488,4058439,4340777,4163996,434474,4061791,36713562,35622881,4206624,441082,443325,439880,3035904,4074877,4074876,4113976,444077,192379,197617,442346,439883,436474,195595,197333,4181114,4147533,4009642,4098441,4292089,4025639,4077454,441349,4280224,4214233,4294829,4328084,4046510,4243658,4183680,4216436,4324695,4324672,4045581,4204231,4269450,436747,4049453,4094081,4271203,4184150,4198404,4312358,4296459,4068253,4327321,4058932,4178578,4070939,4204206,4197681,4188764,4106892,4105063,4225572,4245041,4006979,4128988,4268175,2110236,74469,72726,36716536,4238207,4092289,4307044,40482735,40483126,194699,196170,443292,4047865,4047863,4127042,4129167,42709955,4127039,4096534,4127040,4127041,4124480,4129166,4127038,4175536,4129168,42709956,4126720,4126719,4171116,4091785,4016047,4171115,2004786,4161944,37312440,44513746,4088084,4075735,2004703,2004704,4075191,4165508,4153112,4239200,4214980,4130310,4028787,4093584,37394500,440473,36403113,4096041,77338,4071505,2004845,4170533,4069969,4069968,4151385,2004826,2004764,4338977,37205103,4070523,4048281,44784126,4016059,443295,4066354,4091196,432977,4062131,4197085,441081,443054,314432,313829,315327,4066002,443016,443015,443014,42872398,439893,4297233,40485049,40483251,40485007,40484589,434105,4143214,438206,435606,438205,443020,434697,4197402,443018,40478936,40483704,40480870,40483600,40481772,40482677,4176733,4027514,40482666,4143633,4232703) or concept_id in (439934,193591,4241979,4058519,4238980,4315046,44807900,2004762,2721012,4115153,40487510,44784273,4112952,442920,442918,442919,442917,4060424,4113218,432371,4029421,3000034,44513745,4075189,4266683,4093774,4143647,2004706,4179832,44790206,42535817,4305717,4079970,4121760,436166,435023,4129842,4028783,314090,434759,4173176,37394499,4067106,4087102,192678,195594,194704,437920,441348,193820,196746,4323612,4051244,4078393,4224646,4167685,43530979,4224597,4211863,4064536,4247270,4003276,4209126,4175137,4047775,434094,4179796,4274315,4149423,4278107,4170457,4180568,4194113,4041728,4309780,4130670,4261327,4302162,4311698,4217670,436176,4221853,4313166,4310654,4216342,4031837,4253804,4200070,4049891,4339107,4168445,4219469,4001856,4195406,4189350,4285746,4244261,4085627,4006806,4033096,76482,4063183,72970,78817,4278101,42539560,4030429,4034094,36675173,37016955,4146288,43021951,43021952,4199931,433260,437041,4310471,2110337,4163851,4063163,4063162,4059751,75015,42539267,36713468,3045823,432969,442082,4063175,4178154,42599849,3000119,201957,37311912,37311911,37311910,37311909,37311908,37311907,4172307,765023,4319457,433589,252442,437374,4172995,434154,4171248,443522,440840,4070650,4070651,4070648,4106274,4110550,761919,4129290,4173173,36674511,4269452,36717459,4173019,4170953,4173020,373870,4210315,4206035,4239540,4244718,4291447,193323,36716761,42537680,44784276,44784301,44784360,36717269,4050236,4025181,36715839,36716750,36717488,3188843,3175980,3173911,4173004,44792481,36712969,4180181,37109016,4243042,42538558,42538557,42536722,36717593,42538559,4320490,4318835,4214373,4132505,23034,36716745,443618,4174302,76221,36676688,42536730,42536732,42536731,42539039,37399026,42536733,435656,440847,4170445,439137,4221399,4239658,4071740,4048614,4071080,4048294,42536729,36716886,4048608,36717505,4308227,42535103,761782,37116437,42538263,42536564,439140,42537679,42537678,3182078,257375,4048286,4316374,4316375,318856,36715567,761851,761852,4298866,4300236,443523,4264166,137099,4243198,4210115,36717571,4047937,194598,2101016,2101813,4034967,4171104,4173513,46284810,4079843,4173194,4173193,4171092,4079846,3200880,2721181,4173180,4207827,42739015,4129520,4127831,3655876,4029424,76533,37017029,36715842,4176715,4071630,4275443,442573,36713477,45757111,4127248,44790222,4080067,4171058,4148533,4149402,4187237,4201764,4014720,4080889,4063160,4070222,4071507,4009404,42739012,4217975,45765512,4028938,4186424,3002549,442051,442050,314107,432976,442294,45757105,4064980,45757106,4065091,4064979,442053,433545,437060,443263,74433,78494,78218,443293,4063697,75326,442079,4084521,4080059,4038747,192979,193269,200472,197048,442080,442083,4140250,441925,441926,433837,79897,76491,76771,2212094,201368,193271,4060178,4129839,4034149,194439,192387,442417,435026,433832,439380,439379,4081774,195025,442071,4065635,2004846,76763,44790279,4059051,4085285,193827,197051,199087,193273,192694,196182,442440,4061852,46269810,4060036,4060037,4064819,37310898,4064821,45757117,4061850,37396169,194100,194711,193831,4060039,45772074,4064423,4064424,42536563,4060038,4064437,4300773,444404,252305,3655849,4091789,4038420,4038571,4038945,4039088,4038943,4038942,4038426,4039610,4150948,4038938,4038760,4038418,4038749,4038751,4038932,4039602,4038753,4038754,4038755,4038934,4038756,4255282,4038935,4038748,4039609,4038759,4175225,4038424,4171428,4039608,4038941,4038939,4038937,4038573,4039603,4194143,4173013,196159,434111,433274,432386,4107071,4034650,201136,4073719,2213351,4072862,2004767,4119975,2004746,2004802,2004822,2004811,46232934,2004765,2004707,2004862,2004783,2004768,2004724,2004348,4191809,44513736,44513756,44513729,44513747,2004731,44513476,44513468,44517168,44513799,44513812,4075024,44513634,44513740,44513733,44513516,44513803,44513791,44513816,44513752,2004747,2004726,2004730,4145318,4127249,73824,72378,42535816,200153,4049041,443323,4159154,4319461,4336392,4079236,4234421,4023797,4267567,4248080,4145439,4296604,4231407,195075,4211227,4025199,198221,4314877,442829,195019,4285751,4172869,4073428,36716687,37204732,4306199,374748,4321550,36716757,4084442,260212,4080888,135370,134760,4187201,4079851,4173002,4171097,4173179,4173198,4300467,194158,439931,42872438,42536566,4171096,4173181,4105262,4171102,42536745,258564,4171091,199925,4174299,4173000,436519,4071743,195064,438869,4071737,4071735,433029,4048292,4071076,4071736,4048610,3663236,4071717,4048282,3655840,4287783,4079855,4173197,4006329,4278842,4263343,43021073,313590,4171108,4243494,4048166,37017557,37017566,37019087,4071198,4301414,4080885,260841,4079973,4171123,4173332,4173001,4166754,4171100,4048607,197349,4307825,439390,4187920,4272706,4296470,4002900,4239205,4311670,4032920,4242693,4197221,197608,199086,4062566,372435,43531641,37110041,197970,444374,317941,4129183,4269051,3013297,4103235,42537765,4261326,4073438,4016476,4014718,198488,193539,201350,2721184,200784,4014716,4034100,4064854,4217071,4028645,44502733,42600135,4016475,4284028,4172142,196751,193264,200149,194710,201359,192372,4014292,4041726,4210719,4041725,4210721,44812174,4210718,4269036,4268422,4041724,4305235,4297988,36716548,36716549,4278356,437623,434427,433540,4173347,72693,75639,196764,4056338,437369,4245166,440833,4014156,4015415,4015152,4015410,4014446,435031,4062264,4215564,4015413,4055488,4014445,4015154,4014281,4014280,4014443,4075295,44811076,4297232,4015414,4014442,4015412,4014282,4062362,4015151,4015150,4034146,4015149,4151029,4182691,4023382,4295363,37116834,4006327,4336810,4225411,312383,4047392,2110314,4113199,436483,441363,4061341,4169890,4239471,4203918,45773073,4266066,4041280,45757789,4012240,443929,37110289,37108740,4158274,4162754,42534817,4253057,4146731,4169742,4273241,4028024,4185531,4011238,4228830,35622939,45757788,4057246,42535649,440465,4035468,4104354,4007389,4300708,4278355,4222573,4318816,4174510,4199437,4325457,4091199,4321231,4219015,4116187,4126074,441128,432695,439894,434695,45773507,4096468,433542,438220,435024,439393,141084,135601,134414,136743,4146816,4277110,4151903,321074,4219466,4146514,4242853,4144221,4182243,4220981,4305491,762490,4129519,3051741,3014064,2212548,3021584,4148890,438209,4062674,439348,4250175,4167493,4062574,4094910,4061785,4060237,4157329,4299535,4059982,4061686,4059984,4061411,4059981,3174212,4097427,4222915,4147043,4142021,4242724,4310910,4069200,4145125,4082863,4008884,4107401,4029786,4184594,4086393,4125778,4217564,4147874,4273560,4175637,194702,200160,4064709,200468,4058403,440519,440525,36675035,4138554,2618150,2618151,2618152,2618154,2618155,4176966,4112701,4311447,4172038,4313474,2213352,4129040,37110284,37110283,45757175,45757176,36712702,44784550,44784551,4098718,40318194,314479,258554,37311892,4300387,201516,37204277,4230947,4262580,443435,196762,196759,4133029,4060105,4120303,4230252,72692,4058679,440476,441645,435883,4171094,440475,441362,434435,440167,4308660,3189930,4171095,192972,434431,434714,37017049,437620,40757377,3043821,45770185,4082504,4150734,442419,442418,313272,313833,4328870,4065749,4061463,4024972,4297611,4339312,4062259,4034154,435028,434713,432389,4050255,4062257,4102318,4065753,3655209,3655210,4263344,42600161,4272315,45765500,442594,438481,440466,45757166,45773428,42539377,40479425,40484115,40485034,40479799,40484114,40484139,40485040,40479401,40483242,40484576,40484575,40485039,40483659,4182146,4061423,45765501,45757167,45757168,42538805,3046853,40484021,4153111,4042065,4042725,4055671,40481539,4149994,4113503,4114280,4150401,4173350,764688,764646,77619,4190767,4081292,46272536,4084693,4214930,3040000,2004342,2004546,2110339,4308664,4227423,4247895,2004788,4300391,4309622,4153287,2004343,192679,45757120,195014,42537766,197930,200157,192684,4095115,2109484,2109483,2004842,2004829,2004830,4230535,2004843,4319897,2004828,4071642,4172666,4135477,2004844,2004831,4033994,4086797,40482435,319138,258866,4173177,4318553,4109090,4115155,4003030,4129038,44782606,4003031,4150001,442078,200792,200789,4064977,201642,4170121) or concept_id in (4062112,373766,36684687,36684686,36684685,36684684,36684624,36684623,36684622,36684621,45772079,375250,375251,379009,443519,443520,442549,36713478,437061,435612,438823,45757159,45757160,4194811,40490338,4035336,4232323,196484,198216,196486,4060560,44790242,199891,195878,192376,4061158,4061159,4061806,3023524,4127253,4074424,4072837,4047564,4121924,2110315,2110322,2110307,2110319,44790189,36713471,4102697,4275129,4338888,4049040,4304587,4323287,198816,192699,4064960,194106,45757588,2110247,4032000,2004346,4316051,4021363,4073272,4239009,2004351,2004362,2004308,4263669,2110253,2004307,2004306,4174422,4120817,4071592,4047853,133028,4301415,136530,4174577,40318195,37206228,37206227,37206229,4173636,4312727,4065618,192974,192384,197346,198492,198499,197337,4327745,4244438,3049229,4083415,4260976,4089029,4186827,4159149,762709,762579,4096674,4147409,4146454,4147408,4091293,4264738,4009954,4060807,4187090,37116435,42536689,4048275,46270041,763027,4071063,3655212,3655211,137371,4080587,4042760,4161969,4275335,4195345,4041723,4210722,4195509,4198892,4156811,4150492,4041161,4042412,4042759,4042751,432427,4121417,4153452,4032345,4029420,36675039,4129184,4129843,433536,438490,439077,132685,4057976,4172871,4092760,45765502,45772082,45757169,42538806,4127241,442271,438226,435020,437946,80474,75608,72377,4170152,4014295,40483521,36713074,4014454,36713465,257370,4122747,4126736,46284319,4166847,4087113,4174056,3174052,4064286,4150640,4162239,3050414,4318858,4165092,4102446,4194977,2213358,2213357,2110198,44784365,4047857,4070526,44784364,77679,4169992,4150803,4073422,4008578,761781,4309364,4015143,4167497,4205240,198212,4091461,4298015,40406337,443213,4287409,4217655,4261819,4321563,4301269,4103876,4300979,443463,2721254,4301412,4168056,4174198,4047868,378544,4130539,4095178,4183593,42538556,4030259,4063159,4205437,4300419,42739013,2514557,42739550,2514564,2514572,42740403,2514571,42739401,2514570,2101831,2110318,4022098,4150538,4027161,442058,439094,439095,435331,435332,4143293,4150337,79098,76770,3017439,4073432,2110295,2110298,2110296,2110297,2110293,2110294,43530886,43530888,434480,42538560,436171,4129023,4079854,4171107,4227728,4306288,4330570,4049333,4192641,4243026,4066292,4193224,4336090,4199146,4307237,4178275,4203001,4297250,4240605,43020954,40258875,43530907,4212260,4336958,4296038,133024,4189561,4030009,4299609,193830,193275,199097,197625,37311704,200469,4060183,4142581,4218813,4180111,444082,440457,4252252,4294259,4032055,3186670,139888,36713271,36713272,4222152,442300,136755,138479,139895,138207,138484,2213255,4019096,4214677,2004331,4204679,44789306,2004330,141370,4061350,2110288,4169966,4169965,44790511,441922,137940,141639,136760,4173327,4079845,4129378,433604,42536567,439149,36716753,36716754,4033200,435076,4048930,4049028,4048742,42536568,198870,4173172,436234,433314,4071744,4048620,4171099,321683,40490447,4324606,4335250,4324607,4073406,40490322,4063171,81358,4104199,4174854,4267072,4071600,36716539,36716739,439093,42536749,432975,4161678,3655718,4134431,4326563,2111055,2110325,2110326,2110327,2110328,4290245,4073424,4094046,4078287,4014290,42539210,432375,440462,437931,4014456,4015422,45757165,4015163,4015421,3051868,44499531,4101082,4127106,199076,4030182,196758,196181,197049,192385,4101844,40483084,40483101,42535052,441919,435018,434097,4014296,4015162,4014455,42709935,42709936,42709937,4279146,2211785,2211784,2211782,37397735,4082534,42535558,42535559,42535553,42535246,40488298,40486918,40487413,45773218,46271899,45765925,44807918,40492794,40489798,42690777,3031159,40756968,44790261,2211750,2211749,2211748,2211747,2211752,2211751,2211754,2211753,2211756,2211755,2211757,3657421,4237338,4082672,4237339,4060624,4060626,4152021,4028775,441646,4126410,4126742,4122872,4126741,435325,4122742,4126740,4126737,4122745,4126408,4126734,36675671,4126739,45769826,4060157,4061971,438259,4079860,4098631,4336229,4301905,2110340,2110342,4307820,4059985,4113986,4113983,2004742,4113036,4112954,79091,79889,72374,4239301,40483205,4151214,4129178,4289453,2212169,46269813,4062569,4242401,4146482,4055426,4192542,4151414,4055970,4055823,4042238,4042239,4055289,4055822,4055288,4055954,37392365,4055285,2212173,4014769,4041878,4149386,4174400,4170107,4060623,4060622,4061129,4061130,4059697,4254201,2110338,4064145,4053158,4286205,197938,45757158,194101,3023791,4128172,4127208,44790180,44790181,4075171,2004729,442069,193544,37109810,4228344,4331179,44784097,2110320,2110321,2110308,2110309,4167018,4145316,4096535,4147415,442290,441644,442059,434712,4143292,443242,435610,441929,432701,4147395,435609,435021,321367,315884,4300078,440158,313543,43530951,4009180,4079858,435925,4149523,4129027,435604,42742355,35625971,4169915,440785,40525252,40519557,40524819,40517216,40524802,443246,441087,438214,4071599,4031282,4091198,4034153,40525253,40524805,4131031,4071632,4132649,4259640,4132657,4256500,4132658,4132659,4259641,4259638,4256502,4253755,4259642,4256501,4253756,4256497,4256496,4259639,4253753,4256498,4132652,4132653,4253752,4132654,4253754,4132655,4256499,4132656,4259636,765764,763782,4010343,4010841,4010843,4010842,4010344,765794,40394878,40514773,40388780,40356741,40394902,4020897,4127105,444098)) + +) I +) C UNION ALL +SELECT 62 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (436477,444365,42597053,42597052,42597051,201076,197612,438812,195319,42599848,2721147,2784560,2784559,2784555,2784556,2784557,2784558,2784561,2784562,440776,440454,42739743,2101811,2101812,2004526,4212941,2004525,4028644,4262136,4261479,40482050,437046,439085,441629,441921,4146774,441073,438196,40318618,441910,432682,441632,435318,435000,436742,438805,4113352,45757769,42537759,4114265,4149472,4106559,2004489,4168396,4138740,4074867,4074297,42537769,4113994,42573076,4032621,4170151,37206231,37206226,37206230,4147858,4257043,44513450,4017134,194694,4281684,75605,436228,2110292,4082412,444048,193821,439400,443705,195600,442596,439325,4143190,4138267,4185440,4303980,4066227,4182549,4223627,436169,4264914,4101477,4023781,4107907,4323434,4180859,4066994,4105762,4077275,4025828,4229716,4249728,4266243,4305348,4234979,4197900,4051784,4195243,4224143,4239192,4296872,4103148,4143018,4206453,4195297,4318662,4313005,4034753,4324965,4219608,4183557,4140509,439323,437929,438487,439324,439321,439322,439320,45768717,45771353,438211,436748,437618,4146775,439328,37110280,435868,434705,440453,439329,193532,434095,439331,439330,40318617,434689,434413,437933,440460,437045,195317,432689,439688,441631,42535215,44805020,2721146,2721148,2721149,2721150,2110331,2110332,2110333,2110334,2110335,2110336,2110329,2110330,37018340,43530913,43530914,43530928,43530915,43530916,43531712,43530957,43530917,43530958,43530959,43530960,43530918,43530961,43530919,43530962,43530908,43530920,43531713,43531710,43530921,43530922,43530910,43530964,43530923,43530952,43530924,43530925,43531714,43530953,43530926,43530927,43530911,43530966,43530929,43530948,43531715,43530954,43530930,43530955,43530931,43530956,43530932,43530933,43530965,43531716,43530934,43530912,43530935,43530936,43530937,43530939,43530940,43530941,43531711,43530943,43530947,43530944,43530945,43530967,43530968,4200986,44784128,4244408,4146772,4121775,4112315,4074301,4071638,4063309,4163996,4113976,444077,192379,197617,442346,439883,436474,195595,197333,4181114,4147533,4009642,4098441,4292089,4025639,4077454,441349,4280224,4214233,4294829,4328084,4046510,4243658,4183680,4216436,4324695,4324672,4045581,4204231,4269450,436747,4049453,4094081,4271203,4184150,4198404,4312358,4296459,4068253,4327321,4058932,4178578,4070939,4204206,4197681,4188764,4106892,4105063,4225572,4245041,4238207,44807900,2721012,4115153,40487510,4067106,4087102,192678,195594,194704,437920,441348,193820,196746,4323612,4051244,4078393,4224646,4167685,4224597,4211863,4064536,4247270,4003276,4209126,4175137,4047775,434094,4179796,4274315,4149423,4278107,4170457,4180568,4194113,4041728,4309780,4130670,4261327,4302162,4311698,4217670,436176,4221853,4313166,4310654,4216342,4031837,4253804,4200070,4049891,4339107,4168445,4219469,4001856,4195406,4189350,4285746,4244261,4085627,4006806,4033096,76482,42599849,4119975,44513476,4149994,4113503,4114280,4150401,4190767,4153287,4086797,4170121,37206228,37206227,37206229,4150538,4297250,4240605,43020954,43530907,4189561,4030009,4299609,2110325,2110326,2110327,2110328,4113986,4113983,4113036,4112954,46269813,44790180,44790181)) + +) I +) C UNION ALL +SELECT 63 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4015296,4014149,4014150,44808979,4015141,44808980,4014151,44808981,4015297,4015298,4014434,4015299,4015142,4014152,4015300,4015301,4015302,4014435,4178165,4181468,4181162,4324063,438542,45770261,4322726,4242241,4174506,4197245,4266517,4248725,4283690,4049621,4277749,4097608,4181751,4051642,4185780,4274955,4336226,439922,435640,444023,432430,444461,444417,4220085,434484,433864,442558,441678,443874,444267,438543,442355,443871,435655,4326232,442769,444067,4195157,4290009,4313026,4270513,4132434,4245908,762907,4336958,4180111,444098)) + +) I +) C UNION ALL +SELECT 64 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4015296,4014149,4014150,44808979,4015141,44808980,4014151,44808981,4015297,4015298,4014434,4015299,4015142,4014152,4015300,4015301,4015302,4014435,4178165,4181468,4181162,4324063,438542,45770261,4322726,4242241,4174506,4197245,4266517,4248725,4283690,4049621,4277749,4097608,4181751,4051642,4185780,4274955,4336226,439922,435640,444023,432430,444461,444417,434484,433864,442558,441678,443874,444267,438543,442355,443871,435655,4326232,442769,444067,4195157,4290009,4313026,4270513,4132434,4245908,762907,4336958,4180111,444098)) + +) I +) C UNION ALL +SELECT 65 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4015296,4014149,4014150,44808979,4015141,44808980,4014151,44808981,4015297,4015298,4014434,4015299,4015142,4014152,4015300,4015301,4015302,4014435,4178165,4181468,4181162,4324063,438542,45770261,4322726,4242241,4174506,4197245,4266517,4248725,4283690,4049621,4277749,4097608,4181751,4051642,4185780,4274955,4336226,439922,435640,444023,432430,444461,444417,434484,433864,442558,441678,443874,444267,438543,442355,443871,435655,442769,444067,4195157,4290009,4313026,4270513,4132434,4245908,762907,4336958,4180111,444098)) + +) I +) C UNION ALL +SELECT 66 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4015296,4014149,4014150,44808979,4015141,44808980,4014151,44808981,4015297,4015298,4014434,4015299,4015142,4014152,4015300,4015301,4015302,4014435,4178165,4181468,4181162,4324063,438542,45770261,4322726,4242241,4174506,4197245,4266517,4248725,4283690,4049621,4277749,4097608,4181751,4051642,4185780,4274955,4336226,439922,435640,444023,432430,444461,444417,434484,433864,442558,441678,443874,444267,438543,442355,443871,435655,442769,444067,4290009,4313026,4270513,4132434,4245908,762907,4336958,4180111,444098)) + +) I +) C UNION ALL +SELECT 67 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4015296,4014149,4014150,44808979,4015141,44808980,4014151,44808981,4015297,4015298,4014434,4015299,4015142,4014152,4015300,4015301,4015302,4014435,4178165,4181468,4181162,4324063,438542,45770261,4322726,4242241,4174506,4197245,4266517,4248725,4283690,4049621,4277749,4097608,4181751,4051642,4185780,4274955,4336226,439922,435640,444023,432430,444461,444417,434484,433864,442558,441678,443874,444267,438543,442355,443871,435655,442769,444067,4313026,4270513,4132434,4245908,762907,4336958,4180111,444098)) + +) I +) C UNION ALL +SELECT 68 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4015296,4014149,4014150,44808979,4015141,44808980,4014151,44808981,4015297,4015298,4014434,4015299,4015142,4014152,4015300,4015301,4015302,4014435,4178165,4181468,4181162,4324063,438542,45770261,4322726,4242241,4174506,4197245,4266517,4248725,4283690,4049621,4277749,4097608,4181751,4051642,4185780,4274955,4336226,439922,435640,444023,432430,444461,444417,434484,433864,442558,441678,443874,444267,438543,442355,443871,435655,442769,444067,4270513,4132434,4245908,762907,4336958,4180111,444098)) + +) I +) C UNION ALL +SELECT 69 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4015296,4014149,4014150,44808979,4015141,44808980,4014151,44808981,4015297,4015298,4014434,4015299,4015142,4014152,4015300,4015301,4015302,4014435,4178165,4181468,4181162,4324063,438542,45770261,4322726,4242241,4174506,4197245,4266517,4248725,4283690,4049621,4277749,4097608,4181751,4051642,4185780,4274955,4336226,439922,435640,444023,432430,444461,444417,434484,433864,442558,441678,443874,444267,438543,442355,443871,435655,442769,444067,4132434,4245908,762907,4336958,4180111,444098)) + +) I +) C UNION ALL +SELECT 70 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4015296,4014149,4014150,44808979,4015141,44808980,4014151,44808981,4015297,4015298,4014434,4015299,4015142,4014152,4015300,4015301,4015302,4014435,4178165,4181468,4181162,4324063,438542,45770261,4242241,4174506,4197245,4266517,4248725,4283690,4049621,4277749,4097608,4181751,4051642,4185780,4274955,4336226,439922,435640,444023,432430,444461,444417,434484,433864,442558,441678,443874,444267,438543,442355,443871,435655,442769,444067,4245908,762907,4336958,4180111,444098)) + +) I +) C UNION ALL +SELECT 71 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4015296,4014149,4014150,44808979,4015141,44808980,4014151,44808981,4015297,4015298,4014434,4015299,4015142,4014152,4015300,4015301,4015302,4014435,4178165,4181468,4181162,4324063,438542,45770261,4242241,4174506,4197245,4266517,4248725,4283690,4049621,4277749,4097608,4181751,4051642,4185780,4274955,4336226,439922,435640,444023,432430,444461,444417,434484,433864,442558,441678,443874,444267,438543,442355,443871,435655,442769,444067,762907,4336958,4180111,444098)) + +) I +) C UNION ALL +SELECT 72 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4015296,4014149,4014150,44808979,4015141,44808980,4014151,44808981,4015297,4015298,4014434,4015299,4015142,4014152,4015300,4015301,4015302,4014435,4178165,4181468,4181162,4324063,438542,45770261,4174506,4197245,4266517,4248725,4283690,4049621,4277749,4097608,4181751,4051642,4185780,4274955,4336226,439922,435640,444023,432430,444461,444417,434484,433864,442558,441678,443874,444267,438543,442355,443871,435655,442769,444067,762907,4336958,4180111,444098)) + +) I +) C UNION ALL +SELECT 73 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4015296,4014149,4014150,44808979,4015141,44808980,4014151,44808981,4015297,4015298,4014434,4015299,4015142,4014152,4015300,4015301,4015302,4014435,4178165,4181468,4181162,4324063,438542,45770261,4197245,4266517,4248725,4283690,4049621,4277749,4097608,4181751,4051642,4185780,4274955,4336226,439922,435640,444023,432430,444461,444417,434484,433864,442558,441678,443874,444267,438543,442355,443871,435655,442769,444067,762907,4336958,4180111,444098)) + +) I +) C UNION ALL +SELECT 74 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4014149,4014150,44808979,4015141,44808980,4014151,44808981,4015297,4015298,4014434,4015299,4015142,4014152,4015300,4015301,4015302,4014435,4178165,4181468,4181162,4324063,438542,45770261,4266517,4248725,4283690,4049621,4277749,4097608,4181751,4051642,4185780,4274955,4336226,439922,435640,444023,432430,444461,444417,434484,433864,442558,441678,443874,444267,438543,442355,443871,435655,442769,444067,762907,4336958,4180111,444098)) + +) I +) C UNION ALL +SELECT 75 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4014149,4014150,44808979,4015141,44808980,4014151,44808981,4015297,4015298,4014434,4015299,4015142,4014152,4015300,4015301,4015302,4014435,4178165,4181162,4324063,438542,45770261,4248725,4283690,4049621,4277749,4097608,4181751,4051642,4185780,4274955,4336226,439922,435640,444023,432430,444461,444417,434484,433864,442558,441678,443874,444267,438543,442355,443871,435655,442769,444067,762907,4336958,4180111,444098)) + +) I +) C UNION ALL +SELECT 76 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4014149,4014150,44808979,4015141,44808980,4014151,44808981,4015297,4015298,4014434,4015299,4015142,4014152,4015300,4015301,4015302,4014435,4178165,4181162,4324063,438542,45770261,4283690,4049621,4277749,4097608,4181751,4051642,4185780,4274955,4336226,439922,435640,444023,432430,444461,444417,434484,433864,442558,441678,443874,444267,438543,442355,443871,435655,442769,444067,762907,4336958,4180111,444098)) + +) I +) C UNION ALL +SELECT 77 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4014149,4014150,44808979,4015141,44808980,4014151,44808981,4015297,4015298,4014434,4015299,4015142,4014152,4015300,4015301,4015302,4014435,4178165,4181162,4324063,438542,45770261,4049621,4277749,4097608,4181751,4051642,4185780,4274955,4336226,439922,435640,444023,432430,444461,444417,434484,433864,442558,441678,443874,444267,438543,442355,443871,435655,442769,444067,762907,4336958,4180111,444098)) + +) I +) C UNION ALL +SELECT 78 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4014435,444067)) + +) I +) C UNION ALL +SELECT 79 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4015302,4014435,442769,444067)) + +) I +) C UNION ALL +SELECT 80 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4015301,4015302,4014435,442769,444067,4336958,444098)) + +) I +) C UNION ALL +SELECT 81 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4014150,44808979,4015141,44808980,4014151,44808981,4015297,4015298,4014434,4015299,4015142,4014152,4015300,4015301,4015302,4014435,4178165,4181162,4324063,438542,45770261,4277749,4097608,4181751,4051642,4185780,4274955,4336226,439922,435640,444023,432430,444461,444417,434484,433864,442558,441678,443874,444267,438543,442355,443871,435655,442769,444067,762907,4336958,4180111,444098)) + +) I +) C UNION ALL +SELECT 82 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4014150,44808979,4015141,44808980,4014151,44808981,4015297,4015298,4014434,4015299,4015142,4014152,4015300,4015301,4015302,4014435,4178165,4181162,4324063,438542,45770261,4097608,4181751,4051642,4185780,4274955,4336226,439922,435640,444023,432430,444461,444417,434484,433864,442558,441678,443874,444267,438543,442355,443871,435655,442769,444067,762907,4336958,4180111,444098)) + +) I +) C UNION ALL +SELECT 83 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4014150,44808979,4015141,44808980,4014151,44808981,4015297,4015298,4014434,4015299,4015142,4014152,4015300,4015301,4015302,4014435,4178165,4181162,4324063,438542,45770261,4181751,4051642,4185780,4274955,4336226,439922,435640,444023,432430,444461,444417,434484,433864,442558,441678,443874,444267,438543,442355,443871,435655,442769,444067,762907,4336958,4180111,444098)) + +) I +) C UNION ALL +SELECT 84 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4014150,44808979,4015141,44808980,4014151,44808981,4015297,4015298,4014434,4015299,4015142,4014152,4015300,4015301,4015302,4014435,4178165,4181162,438542,45770261,4051642,4185780,4274955,4336226,439922,435640,444023,432430,444461,444417,434484,433864,442558,441678,443874,444267,438543,442355,443871,435655,442769,444067,762907,4336958,4180111,444098)) + +) I +) C UNION ALL +SELECT 85 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (44808979,4015141,44808980,4014151,44808981,4015297,4015298,4014434,4015299,4015142,4014152,4015300,4015301,4015302,4014435,438542,45770261,4185780,4274955,4336226,439922,435640,444023,432430,444461,444417,434484,433864,442558,441678,443874,444267,438543,442355,443871,435655,442769,444067,762907,4336958,4180111,4181162,444098)) + +) I +) C UNION ALL +SELECT 86 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4014151,44808981,4015297,4015298,4014434,4015299,4015142,4014152,4015300,4015301,4015302,4014435,434484,433864,442558,441678,443874,444267,438543,442355,443871,435655,442769,444067,762907,4336958,4180111,444098)) + +) I +) C UNION ALL +SELECT 87 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (44808979,4015141,44808980,4014151,44808981,4015297,4015298,4014434,4015299,4015142,4014152,4015300,4015301,4015302,4014435,438542,45770261,4274955,4336226,439922,435640,444023,432430,444461,444417,434484,433864,442558,441678,443874,444267,438543,442355,443871,435655,442769,444067,762907,4336958,4180111,444098)) + +) I +) C UNION ALL +SELECT 88 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (44808981,4015297,4015298,4014434,4015299,4015142,4014152,4015300,4015301,4015302,4014435,433864,442558,441678,443874,444267,438543,442355,443871,435655,442769,444067,762907,4336958,4180111,444098)) + +) I +) C UNION ALL +SELECT 89 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4015300,4015301,4015302,4014435,435655,442769,444067,4336958,444098)) + +) I +) C UNION ALL +SELECT 90 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4014152,4015300,4015301,4015302,4014435,443871,435655,442769,444067,4336958,444098)) + +) I +) C UNION ALL +SELECT 91 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4015142,4014152,4015300,4015301,4015302,4014435,442355,443871,435655,442769,444067,762907,4336958,444098)) + +) I +) C UNION ALL +SELECT 92 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4015299,4015142,4014152,4015300,4015301,4015302,4014435,438543,442355,443871,435655,442769,444067,762907,4336958,444098)) + +) I +) C UNION ALL +SELECT 93 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4014434,4015299,4015142,4014152,4015300,4015301,4015302,4014435,444267,438543,442355,443871,435655,442769,444067,762907,4336958,4180111,444098)) + +) I +) C UNION ALL +SELECT 94 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4015141,44808980,4014151,44808981,4015297,4015298,4014434,4015299,4015142,4014152,4015300,4015301,4015302,4014435,438542,45770261,4336226,439922,435640,444023,432430,444461,444417,434484,433864,442558,441678,443874,444267,438543,442355,443871,435655,442769,444067,762907,4336958,4180111,444098)) + +) I +) C UNION ALL +SELECT 95 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4015141,44808980,4014151,44808981,4015297,4015298,4014434,4015299,4015142,4014152,4015300,4015301,4015302,4014435,45770261,439922,435640,444023,432430,444461,444417,434484,433864,442558,441678,443874,444267,438543,442355,443871,435655,442769,444067,762907,4336958,4180111,444098)) + +) I +) C UNION ALL +SELECT 96 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (44808980,4014151,44808981,4015297,4015298,4014434,4015299,4015142,4014152,4015300,4015301,4015302,4014435,45770261,435640,444023,432430,444461,444417,434484,433864,442558,441678,443874,444267,438543,442355,443871,435655,442769,444067,762907,4336958,4180111,444098)) + +) I +) C UNION ALL +SELECT 97 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4014151,44808981,4015297,4015298,4014434,4015299,4015142,4014152,4015300,4015301,4015302,4014435,45770261,444023,432430,444461,444417,434484,433864,442558,441678,443874,444267,438543,442355,443871,435655,442769,444067,762907,4336958,4180111,444098)) + +) I +) C UNION ALL +SELECT 98 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4014151,44808981,4015297,4015298,4014434,4015299,4015142,4014152,4015300,4015301,4015302,4014435,45770261,432430,444461,444417,434484,433864,442558,441678,443874,444267,438543,442355,443871,435655,442769,444067,762907,4336958,4180111,444098)) + +) I +) C UNION ALL +SELECT 99 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4014151,44808981,4015297,4015298,4014434,4015299,4015142,4014152,4015300,4015301,4015302,4014435,444461,444417,434484,433864,442558,441678,443874,444267,438543,442355,443871,435655,442769,444067,762907,4336958,4180111,444098)) + +) I +) C UNION ALL +SELECT 100 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4014151,44808981,4015297,4015298,4014434,4015299,4015142,4014152,4015300,4015301,4015302,4014435,444417,434484,433864,442558,441678,443874,444267,438543,442355,443871,435655,442769,444067,762907,4336958,4180111,444098)) + +) I +) C UNION ALL +SELECT 101 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4015297,4015298,4014434,4015299,4015142,4014152,4015300,4015301,4015302,4014435,442558,441678,443874,444267,438543,442355,443871,435655,442769,444067,762907,4336958,4180111,444098)) + +) I +) C UNION ALL +SELECT 102 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4015298,4014434,4015299,4015142,4014152,4015300,4015301,4015302,4014435,441678,443874,444267,438543,442355,443871,435655,442769,444067,762907,4336958,4180111,444098)) + +) I +) C UNION ALL +SELECT 103 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4015298,4014434,4015299,4015142,4014152,4015300,4015301,4015302,4014435,443874,444267,438543,442355,443871,435655,442769,444067,762907,4336958,4180111,444098)) + +) I +) C UNION ALL +SELECT 104 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4215648,4312095,3655216,3655215,3655206,3655205,4152444,45763635,3655208,3655207,4147060,44783183,4135209,40483581,440464,4100193,4185718,4232953,4173946,42537767,42537768,4174543,4194053,4216382,4266839,42537762,42537770,42537771,437611,4276942,42539701,42537764,4066014,42537763,40493226,3655214,3655213,4149029,4066151,4063939,42872572,42872571,4112952,4113218,43530979,4107071,200153,4336392,4314877,42537765,4023382,3655209,3655210,4308664,4227423,4247895,4300391,45757120,42537766,4095115,4316051,4239009,4174577,4187090,3655212,3655211,4080587,2110295,2110298,2110297,4296038,199076,4151214,4242401,4129027)) + +) I +) C UNION ALL +SELECT 107 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4200678,4300368,4093429,2004347,4107080,4142956,40757216,40757177,40259069,4074443,4074426,4074427,2004345,4196129,4001541,4306064,4100257,4084217,4085257,40347147,40378260,4319321,40490893,4190526,2110299,2110300,4251314,40480864,4032749,2110240,2722205,2110245,2722217,4074877,4074876,4214980,2004348,4267567,2004342,2004788,2004343,4074424,4072837,2110247,4032000,2004346,4021363,4073272,2004351,2004362,4263669,2004308,2110253,2004307,2004306,2110296,2110293,2110294,40258875,4019096,2004331,2004330,4336229,4301905)) + +) I +) C UNION ALL +SELECT 108 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (432452,4014461,4151169,4015275,4149449,37016220,37016221,4149457,37016222,37018684,46271955,37016216,37016217,37016218,37016213,46271814,37018683,37018889,37016212,762577,37016211,4014299,4149451,4150406,4150405,4150404,4015274,36684754,37207968,36684753,36684752,36684751,4141513,4195545,38001501,439128,4148097,4118056,72726,36675173,440847,4086393,4217564,4147874,4273560,4175637,4064709,4058403,440519,440525,36675035,37311892,2109484,2109483,373766,36684687,36684686,36684685,36684684,36684624,36684623,36684622,36684621,45772079,375250,375251,379009,443519,443520,136530,2514572,42740403,2514571,42739401,2514570,2111055,435925,4149523)) + +) I +) C UNION ALL +SELECT 109 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (1305058)) +UNION select c.concept_id + from @vocabulary_database_schema.CONCEPT c + join @vocabulary_database_schema.CONCEPT_ANCESTOR ca on c.concept_id = ca.descendant_concept_id + WHERE c.invalid_reason is null + and (ca.ancestor_concept_id in (1305058)) + +) I +) C UNION ALL +SELECT 111 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (441092,4061424,40760833,4139126,4015590,3011536,43054893,43021054,37017322,441085,192380,4210896,3006722,40759953,195877,4061522,437937,4030415,197031,4061672,43021951,43021952,3045823,432969,3000119,4217975,4038942,4150948,4148890,4094910,4061785,4060237,4299535,4059982,4061686,4059984,4061411,4059981,4133029,442594,440466,4061423,4214930,3040000,196484,4042412,198212,4129023,4218813,432375,441919,4307820,4059985,4239301,4041878,3023791,40519557,40524802,40524805)) + +) I +) C UNION ALL +SELECT 112 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (4198125,4149783,193525,314099,437688,440216,439403,4162865,197050,4034308,2004824,435880,435616,4154997,441959,436768,432967,434701,4099889,4079835,435887,434089,4143074,438489,438203,4129039,80156,321638,314423,4027371,73282,76756,375016,2110305,2110304,4321386,436740,437334,72973,3170656,435875,433822,80205,197339,193825,314426,196175,201920,440162,433826,432373,43020670,441647,4120986,433828,442421,2004823,4170118,73265,192691,194700,201958,438815,79890,4053583,201091,4059763,442913,440787,443700,137613,438204,442442,81636,40479820,78210,4071437,437341,201083,43022052,79146,4196670,80165,73268,4203009,80204,201366,196757,4145315,441682,433027,436219,441680,81360,4047725,442827,80463,4064277,4063297,4060672,4064178,4064169,4064172,4143204,4064175,3657563,76772,76750,77340,74415,4024659,443214,442565,4058113,442441,316478,2212713,437090,433603,438478,437935,4311256,442088,72696,4302252,4062565,81923,444245,77662,4030872,4098582,4227141,4142340,436485,440788,321080,133284,436180,433823,433266,79896,4197403,4023420,4180743,4058246,4079751,442772,43530880,77335,78818,443325,439880,194699,443292,4130310,77338,2004764,4016059,443295,432977,441081,314432,315327,42872398,439893,438205,434697,442918,4060424,436166,435023,314090,4063183,78817,4030429,4034094,4199931,437041,2110337,75015,4063175,4178154,194598,4080067,442051,433545,78218,4080059,441926,76491,442071,4038426,4038755,434111,432386,72378,443323,195019,135370,258564,313590,197608,199086,444374,317941,4014718,198488,201350,200784,4014716,4034100,4064854,4284028,196751,200149,194710,192372,437623,433540,72693,75639,439393,141084,136743,4146816,4277110,321074,438209,4062674,439348,4167493,4062574,194702,200468,201516,435883,4082504,313272,192679,192684,196486,199891,192376,4327745,4032345,433536,132685,4127241,438226,437946,75608,4087113,435331,43530886,43530888,4142581,138479,139895,2110288,441922,136760,81358,437931,196758,192385,434097,2211782,4061971,2110340,79091,72374,4146482,194101,37109810,442290,434712,441929,435021,315884,4300078,440158,313543,435604,35625971,440785)) + +) I +) C UNION ALL +SELECT 113 as codeset_id, c.concept_id FROM (select distinct I.concept_id FROM +( + select concept_id from @vocabulary_database_schema.CONCEPT where (concept_id in (440457,4252252,4294259,4032055)) + +) I +) C; + +UPDATE STATISTICS #Codesets; + + +SELECT event_id, person_id, start_date, end_date, op_start_date, op_end_date, visit_occurrence_id +INTO #qualified_events +FROM +( + select pe.event_id, pe.person_id, pe.start_date, pe.end_date, pe.op_start_date, pe.op_end_date, row_number() over (partition by pe.person_id order by pe.start_date DESC) as ordinal, cast(pe.visit_occurrence_id as bigint) as visit_occurrence_id + FROM (-- Begin Primary Events +select P.ordinal as event_id, P.person_id, P.start_date, P.end_date, op_start_date, op_end_date, cast(P.visit_occurrence_id as bigint) as visit_occurrence_id +FROM +( + select E.person_id, E.start_date, E.end_date, + row_number() OVER (PARTITION BY E.person_id ORDER BY E.sort_date ASC, E.event_id) ordinal, + OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date, cast(E.visit_occurrence_id as bigint) as visit_occurrence_id + FROM + ( + select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 20) +) C + + +-- End Condition Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 20) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 20) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 20) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 20) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 20) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 63) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 20) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 20) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 63) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 3 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 20) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 20) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 20) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 20) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 20) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 20) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 4 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 21) +) C + + +-- End Condition Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 21) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 21) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 21) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 21) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 21) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 64) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 21) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 21) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 64) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 3 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 21) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 21) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 21) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 21) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 21) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 21) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 4 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 22) +) C + + +-- End Condition Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 22) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 22) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 22) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 22) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 22) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 65) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 22) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 22) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 65) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 3 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 22) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 22) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 22) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 22) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 22) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 22) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 4 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 23) +) C + + +-- End Condition Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 23) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 23) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 23) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 23) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 23) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 66) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 23) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 23) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 66) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 3 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 23) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 23) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 23) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 23) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 23) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 23) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 4 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 24) +) C + + +-- End Condition Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 24) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 24) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 24) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 24) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 24) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 67) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 24) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 24) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 67) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 3 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 24) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 24) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 24) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 24) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 24) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 24) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 4 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 25) +) C + + +-- End Condition Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 25) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 25) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 25) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 25) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 25) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 68) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 25) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 25) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 68) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 3 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 25) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 25) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 25) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 25) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 25) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 25) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 4 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 26) +) C + + +-- End Condition Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 26) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 26) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 26) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 26) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 26) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 69) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 26) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 26) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 69) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 3 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 26) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 26) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 26) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 26) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 26) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 26) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 4 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 3) +) C + + +-- End Condition Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 3) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 3) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 3) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 3) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 3) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 70) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 3) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 3) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 70) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 3 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 3) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 3) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 3) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 3) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 3) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 3) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 4 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 3) +) C + + +-- End Procedure Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 3) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 3) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 3) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 3) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 3) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 70) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 3) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 3) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 70) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 3 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 3) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 3) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 3) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 3) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 3) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 3) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 4 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 14) +) C + + +-- End Condition Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 14) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 14) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 14) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 14) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 14) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 71) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 14) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 14) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 71) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 3 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 14) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 14) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 14) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 14) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 14) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 14) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 4 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 17) +) C + + +-- End Condition Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 17) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 17) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 17) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 17) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 17) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 72) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 17) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 17) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 72) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 3 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 17) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 17) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 17) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 17) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 17) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 17) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 4 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 18) +) C + + +-- End Condition Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 18) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 18) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 18) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 18) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 18) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 73) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 18) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 18) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 73) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 3 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 18) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 18) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 18) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 18) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 18) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 18) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 4 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 9) +) C + + +-- End Condition Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 9) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 9) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 9) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 9) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 9) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 74) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 9) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 9) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 74) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 3 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 9) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 9) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 9) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 9) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 9) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 9) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 4 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 9) +) C + + +-- End Procedure Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 9) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 9) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 9) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 9) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 9) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 74) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 9) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 9) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 74) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 3 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 9) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 9) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 9) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 9) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 9) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 9) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 4 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 19) +) C + + +-- End Condition Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 19) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 19) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 19) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 19) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 19) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 75) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 19) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 19) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 75) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 3 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 19) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 19) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 19) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 19) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 19) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 19) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 4 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 28) +) C + + +-- End Condition Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 28) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 28) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 28) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 28) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 28) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 76) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 28) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 28) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 76) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 3 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 28) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 28) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 28) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 28) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 28) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 28) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 4 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 29) +) C + + +-- End Condition Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 29) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 29) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 29) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 29) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 29) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 77) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 29) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 29) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 77) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 3 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 29) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 29) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 29) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 29) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 29) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 29) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 4 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 30) +) C + + +-- End Condition Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 30) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 30) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 30) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 30) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 30) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 81) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 30) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 30) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 81) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 3 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 30) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 30) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 30) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 30) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 30) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 30) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 4 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 30) +) C + + +-- End Procedure Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 30) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 30) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 30) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 30) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 30) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 81) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 30) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 30) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 81) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 3 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 30) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 30) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 30) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 30) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 30) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 30) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 4 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 31) +) C + + +-- End Condition Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 31) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 31) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 31) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 31) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 31) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 82) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 31) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 31) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 82) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 3 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 31) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 31) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 31) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 31) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 31) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 31) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 4 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 32) +) C + + +-- End Condition Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 32) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 32) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 32) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 32) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 32) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 83) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 32) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 32) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 83) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 3 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 32) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 32) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 32) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 32) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 32) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 32) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 4 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 33) +) C + + +-- End Condition Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 33) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 33) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 33) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 33) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 33) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 84) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 33) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 33) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 84) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 3 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 33) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 33) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 33) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 33) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 33) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 33) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 4 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 34) +) C + + +-- End Condition Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 34) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 34) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 34) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 34) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 34) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 85) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 34) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 34) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 85) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 3 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 34) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 34) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 34) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 34) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 34) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 34) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 4 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 34) +) C + + +-- End Procedure Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 34) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 34) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 34) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 34) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 34) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 85) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 34) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 34) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 85) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 3 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 34) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 34) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 34) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 34) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 34) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 34) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 4 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Condition Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 3 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 4 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Observation Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 3 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 4 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Procedure Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 3 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 4 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 5) +) C + + +-- End Procedure Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 5) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 5) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 5) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 5) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 5) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 5) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 5) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 5) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 5) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 5) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 5) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 5) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 5) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 6 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 5) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 5) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 5) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 5) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 5) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 5) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 7 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Condition Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 5) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 6 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 7 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 8 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Observation Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 5) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 6 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 7 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 8 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Measurement Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 6 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 5) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 7 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 8 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Condition Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 5) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 6 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 7 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 8 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 9 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 10 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 11 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Observation Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 6 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 5) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 7 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 8 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 9 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 10 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 11 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Measurement Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 5) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 6 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 7 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 8 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 9 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 10 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 11 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 12 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 13 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Procedure Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 5) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 6 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 7 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 8 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 9 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 10 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 11 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 12 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 13 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Condition Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 6 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 5) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 7 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 8 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 9 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 10 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 11 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Measurement Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 6 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 5) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 7 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 8 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 9 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 10 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 11 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Procedure Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 6 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 5) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 7 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 8 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 9 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 10 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 11 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Observation Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 6 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 5) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 7 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 8 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 9 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 10 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 112) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 11 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 113) +) C + + +-- End Condition Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 113) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 113) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 113) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 113) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 113) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 113) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 113) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 113) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 113) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 113) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 113) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 113) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 113) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 6 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 113) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 113) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 5) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 7 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 113) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 113) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 8 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 113) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 113) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 9 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 113) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 113) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 10 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 113) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 113) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 113) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 113) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 113) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 113) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 11 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Condition Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 6 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 5) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 7 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 8 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 9 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 10 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 11 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Measurement Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 6 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 5) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 7 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 8 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 9 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 10 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Measurement Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 11 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Observation Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 6 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 5) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 7 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 8 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 9 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 10 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 11 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Procedure Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 6 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 5) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 7 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 8 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 9 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 10 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 11 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Condition Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 6 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 5) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 7 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 8 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 9 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 10 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 11 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Observation Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 6 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 5) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 7 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 8 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 9 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 10 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 11 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Procedure Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 6 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 5) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 7 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 8 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 9 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 10 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 11 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Condition Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 6 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 5) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 7 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 8 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 9 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 10 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 11 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 12 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 13 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 14 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,71,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 15 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Observation Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 6 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 5) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 7 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 8 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 9 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 10 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 11 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 12 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 13 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 14 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,71,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 15 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +UNION ALL +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Procedure Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 4) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 2) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 55) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 6 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 5) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 7 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 8 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 9 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 6) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 10 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 11 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 7) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 12 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 13 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 8) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 14 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + + ) E + JOIN @cdm_database_schema.observation_period OP on E.person_id = OP.person_id and E.start_date >= OP.observation_period_start_date and E.start_date <= op.observation_period_end_date + WHERE DATEADD(day,0,OP.OBSERVATION_PERIOD_START_DATE) <= E.START_DATE AND DATEADD(day,0,E.START_DATE) <= OP.OBSERVATION_PERIOD_END_DATE +) P + +-- End Primary Events +) pe + +) QE + +; + +--- Inclusion Rule Inserts + +select 0 as inclusion_rule_id, person_id, event_id +INTO #Inclusion_0 +FROM +( + select pe.person_id, pe.event_id + FROM #qualified_events pe + +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM #qualified_events E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM #qualified_events P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,28,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM #qualified_events P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,28,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM #qualified_events P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,28,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM #qualified_events P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,28,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM #qualified_events P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,28,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) > 0 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id AND AC.event_id = pe.event_id +) Results +; + +select 1 as inclusion_rule_id, person_id, event_id +INTO #Inclusion_1 +FROM +( + select pe.person_id, pe.event_id + FROM #qualified_events pe + +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM #qualified_events E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from #qualified_events p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM #qualified_events P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,27,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from #qualified_events p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM #qualified_events P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,27,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from #qualified_events p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM #qualified_events P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,27,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, p.person_id, p.event_id +from #qualified_events p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM #qualified_events P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,27,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, p.person_id, p.event_id +from #qualified_events p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM #qualified_events P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,27,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 5 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id AND AC.event_id = pe.event_id +) Results +; + +select 2 as inclusion_rule_id, person_id, event_id +INTO #Inclusion_2 +FROM +( + select pe.person_id, pe.event_id + FROM #qualified_events pe + +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM #qualified_events E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from #qualified_events p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM #qualified_events P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-28,P.START_DATE) AND A.START_DATE <= DATEADD(day,0,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from #qualified_events p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM #qualified_events P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-28,P.START_DATE) AND A.START_DATE <= DATEADD(day,0,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from #qualified_events p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM #qualified_events P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-28,P.START_DATE) AND A.START_DATE <= DATEADD(day,0,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, p.person_id, p.event_id +from #qualified_events p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM #qualified_events P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-28,P.START_DATE) AND A.START_DATE <= DATEADD(day,0,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, p.person_id, p.event_id +from #qualified_events p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM #qualified_events P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-14,P.START_DATE) AND A.START_DATE <= DATEADD(day,0,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, p.person_id, p.event_id +from #qualified_events p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM #qualified_events P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-14,P.START_DATE) AND A.START_DATE <= DATEADD(day,0,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 6 as index_id, p.person_id, p.event_id +from #qualified_events p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM #qualified_events P +JOIN ( + -- Begin Drug Era Criteria +select C.person_id, C.drug_era_id as event_id, C.start_date, C.end_date, + CAST(NULL as bigint) as visit_occurrence_id,C.start_date as sort_date +from +( + select de.person_id,de.drug_era_id,de.drug_concept_id,de.drug_exposure_count,de.gap_days,de.drug_era_start_date as start_date, de.drug_era_end_date as end_date + FROM @cdm_database_schema.DRUG_ERA de +where de.drug_concept_id in (SELECT concept_id from #Codesets where codeset_id = 109) +) C + + +-- End Drug Era Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-14,P.START_DATE) AND A.START_DATE <= DATEADD(day,0,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 7 as index_id, p.person_id, p.event_id +from #qualified_events p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM #qualified_events P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-14,P.START_DATE) AND A.START_DATE <= DATEADD(day,0,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 8 as index_id, p.person_id, p.event_id +from #qualified_events p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM #qualified_events P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-14,P.START_DATE) AND A.START_DATE <= DATEADD(day,0,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 9 as index_id, p.person_id, p.event_id +from #qualified_events p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM #qualified_events P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-14,P.START_DATE) AND A.START_DATE <= DATEADD(day,0,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 10 as index_id, p.person_id, p.event_id +from #qualified_events p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM #qualified_events P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-28,P.START_DATE) AND A.START_DATE <= DATEADD(day,0,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 11 as index_id, p.person_id, p.event_id +from #qualified_events p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM #qualified_events P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-28,P.START_DATE) AND A.START_DATE <= DATEADD(day,0,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 12 as index_id, p.person_id, p.event_id +from #qualified_events p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM #qualified_events P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-28,P.START_DATE) AND A.START_DATE <= DATEADD(day,0,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 13 as index_id, p.person_id, p.event_id +from #qualified_events p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM #qualified_events P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 0) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-28,P.START_DATE) AND A.START_DATE <= DATEADD(day,0,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 14 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id AND AC.event_id = pe.event_id +) Results +; + +select 3 as inclusion_rule_id, person_id, event_id +INTO #Inclusion_3 +FROM +( + select pe.person_id, pe.event_id + FROM #qualified_events pe + +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM #qualified_events E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id , A.domain_concept_id +FROM #qualified_events P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date, C.condition_concept_id as domain_concept_id +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 61) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(DISTINCT cc.domain_concept_id) >= 2 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id , A.domain_concept_id +FROM #qualified_events P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date, C.procedure_concept_id as domain_concept_id +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 61) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(DISTINCT cc.domain_concept_id) >= 2 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id , A.domain_concept_id +FROM #qualified_events P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date, C.measurement_concept_id as domain_concept_id +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 61) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(DISTINCT cc.domain_concept_id) >= 2 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id , A.domain_concept_id +FROM #qualified_events P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date, C.observation_concept_id as domain_concept_id +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 61) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(DISTINCT cc.domain_concept_id) >= 2 +-- End Correlated Criteria + +UNION ALL +-- Begin Criteria Group +select 4 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM #qualified_events E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM #qualified_events P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 61) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM #qualified_events P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 61) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM #qualified_events P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 61) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM #qualified_events P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 61) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 2 +) G +-- End Criteria Group + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) > 0 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id AND AC.event_id = pe.event_id +) Results +; + +select 4 as inclusion_rule_id, person_id, event_id +INTO #Inclusion_4 +FROM +( + select pe.person_id, pe.event_id + FROM #qualified_events pe + +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM #qualified_events E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM #qualified_events P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 62) +) C +JOIN @cdm_database_schema.PERSON P on C.person_id = P.person_id +WHERE (YEAR(C.start_date) - P.year_of_birth >= 12 and YEAR(C.start_date) - P.year_of_birth <= 55) +AND P.gender_concept_id in (8532) +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,28,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM #qualified_events P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 62) +) C +JOIN @cdm_database_schema.PERSON P on C.person_id = P.person_id +WHERE (YEAR(C.start_date) - P.year_of_birth >= 12 and YEAR(C.start_date) - P.year_of_birth <= 55) +AND P.gender_concept_id in (8532) +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,28,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM #qualified_events P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 62) +) C +JOIN @cdm_database_schema.PERSON P on C.person_id = P.person_id +WHERE (YEAR(C.start_date) - P.year_of_birth >= 12 and YEAR(C.start_date) - P.year_of_birth <= 55) +AND P.gender_concept_id in (8532) +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,28,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM #qualified_events P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C +JOIN @cdm_database_schema.PERSON P on C.person_id = P.person_id +WHERE (YEAR(C.start_date) - P.year_of_birth >= 12 and YEAR(C.start_date) - P.year_of_birth <= 55) +AND P.gender_concept_id in (8532) +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,28,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM #qualified_events P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C +JOIN @cdm_database_schema.PERSON P on C.person_id = P.person_id +WHERE (YEAR(C.start_date) - P.year_of_birth >= 12 and YEAR(C.start_date) - P.year_of_birth <= 55) +AND P.gender_concept_id in (8532) +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,28,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) > 0 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id AND AC.event_id = pe.event_id +) Results +; + +select 5 as inclusion_rule_id, person_id, event_id +INTO #Inclusion_5 +FROM +( + select pe.person_id, pe.event_id + FROM #qualified_events pe + +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM #qualified_events E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM #qualified_events P +JOIN ( + select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Condition Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,1,P.START_DATE) AND A.START_DATE <= DATEADD(day,42,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,1,P.START_DATE) AND A.START_DATE <= DATEADD(day,42,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,1,P.START_DATE) AND A.START_DATE <= DATEADD(day,42,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,1,P.START_DATE) AND A.START_DATE <= DATEADD(day,42,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,1,P.START_DATE) AND A.START_DATE <= DATEADD(day,42,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,1,P.START_DATE) AND A.START_DATE <= DATEADD(day,42,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 6 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Visit Occurrence Criteria +select C.person_id, C.visit_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select vo.person_id,vo.visit_occurrence_id,vo.visit_concept_id,vo.visit_start_date as start_date, vo.visit_end_date as end_date + FROM @cdm_database_schema.VISIT_OCCURRENCE vo +JOIN #Codesets cs on (vo.visit_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Visit Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,1,P.START_DATE) AND A.START_DATE <= DATEADD(day,42,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 7 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,1,P.START_DATE) AND A.START_DATE <= DATEADD(day,42,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 8 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,28,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM #qualified_events P +JOIN ( + select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Observation Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,1,P.START_DATE) AND A.START_DATE <= DATEADD(day,42,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,1,P.START_DATE) AND A.START_DATE <= DATEADD(day,42,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,1,P.START_DATE) AND A.START_DATE <= DATEADD(day,42,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,1,P.START_DATE) AND A.START_DATE <= DATEADD(day,42,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,1,P.START_DATE) AND A.START_DATE <= DATEADD(day,42,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,1,P.START_DATE) AND A.START_DATE <= DATEADD(day,42,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 6 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,1,P.START_DATE) AND A.START_DATE <= DATEADD(day,42,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 7 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Visit Occurrence Criteria +select C.person_id, C.visit_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select vo.person_id,vo.visit_occurrence_id,vo.visit_concept_id,vo.visit_start_date as start_date, vo.visit_end_date as end_date + FROM @cdm_database_schema.VISIT_OCCURRENCE vo +JOIN #Codesets cs on (vo.visit_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Visit Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,1,P.START_DATE) AND A.START_DATE <= DATEADD(day,42,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 8 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,28,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM #qualified_events P +JOIN ( + select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Procedure Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,1,P.START_DATE) AND A.START_DATE <= DATEADD(day,42,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,1,P.START_DATE) AND A.START_DATE <= DATEADD(day,42,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,1,P.START_DATE) AND A.START_DATE <= DATEADD(day,42,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-1,P.START_DATE) AND A.START_DATE <= DATEADD(day,42,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,1,P.START_DATE) AND A.START_DATE <= DATEADD(day,42,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,1,P.START_DATE) AND A.START_DATE <= DATEADD(day,42,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 6 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,1,P.START_DATE) AND A.START_DATE <= DATEADD(day,42,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 7 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Visit Occurrence Criteria +select C.person_id, C.visit_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select vo.person_id,vo.visit_occurrence_id,vo.visit_concept_id,vo.visit_start_date as start_date, vo.visit_end_date as end_date + FROM @cdm_database_schema.VISIT_OCCURRENCE vo +JOIN #Codesets cs on (vo.visit_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Visit Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,1,P.START_DATE) AND A.START_DATE <= DATEADD(day,42,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 8 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,28,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM #qualified_events P +JOIN ( + select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 111) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,1,P.START_DATE) AND A.START_DATE <= DATEADD(day,42,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,1,P.START_DATE) AND A.START_DATE <= DATEADD(day,42,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,1,P.START_DATE) AND A.START_DATE <= DATEADD(day,42,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,1,P.START_DATE) AND A.START_DATE <= DATEADD(day,42,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,1,P.START_DATE) AND A.START_DATE <= DATEADD(day,42,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,1,P.START_DATE) AND A.START_DATE <= DATEADD(day,42,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 6 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Visit Occurrence Criteria +select C.person_id, C.visit_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select vo.person_id,vo.visit_occurrence_id,vo.visit_concept_id,vo.visit_start_date as start_date, vo.visit_end_date as end_date + FROM @cdm_database_schema.VISIT_OCCURRENCE vo +JOIN #Codesets cs on (vo.visit_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Visit Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,1,P.START_DATE) AND A.START_DATE <= DATEADD(day,42,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 7 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,1,P.START_DATE) AND A.START_DATE <= DATEADD(day,42,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 8 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,28,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM #qualified_events P +JOIN ( + select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,1,P.START_DATE) AND A.START_DATE <= DATEADD(day,42,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,1,P.START_DATE) AND A.START_DATE <= DATEADD(day,42,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Measurement Criteria +select C.person_id, C.measurement_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select m.person_id,m.measurement_id,m.measurement_concept_id,m.visit_occurrence_id,m.value_as_number,m.range_high,m.range_low,m.measurement_date as start_date, DATEADD(day,1,m.measurement_date) as end_date + FROM @cdm_database_schema.MEASUREMENT m +JOIN #Codesets cs on (m.measurement_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Measurement Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,1,P.START_DATE) AND A.START_DATE <= DATEADD(day,42,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 57) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,1,P.START_DATE) AND A.START_DATE <= DATEADD(day,42,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,1,P.START_DATE) AND A.START_DATE <= DATEADD(day,42,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,1,P.START_DATE) AND A.START_DATE <= DATEADD(day,42,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 6 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Visit Occurrence Criteria +select C.person_id, C.visit_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select vo.person_id,vo.visit_occurrence_id,vo.visit_concept_id,vo.visit_start_date as start_date, vo.visit_end_date as end_date + FROM @cdm_database_schema.VISIT_OCCURRENCE vo +JOIN #Codesets cs on (vo.visit_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Visit Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,1,P.START_DATE) AND A.START_DATE <= DATEADD(day,42,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 7 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 56) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,1,P.START_DATE) AND A.START_DATE <= DATEADD(day,42,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 8 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,28,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) > 0 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id AND AC.event_id = pe.event_id +) Results +; + +select 6 as inclusion_rule_id, person_id, event_id +INTO #Inclusion_6 +FROM +( + select pe.person_id, pe.event_id + FROM #qualified_events pe + +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM #qualified_events E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM #qualified_events P +JOIN ( + select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Condition Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-70,P.START_DATE) AND A.START_DATE <= DATEADD(day,168,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-70,P.START_DATE) AND A.START_DATE <= DATEADD(day,168,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-70,P.START_DATE) AND A.START_DATE <= DATEADD(day,154,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-70,P.START_DATE) AND A.START_DATE <= DATEADD(day,154,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-56,P.START_DATE) AND A.START_DATE <= DATEADD(day,56,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-56,P.START_DATE) AND A.START_DATE <= DATEADD(day,56,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 6 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Drug Era Criteria +select C.person_id, C.drug_era_id as event_id, C.start_date, C.end_date, + CAST(NULL as bigint) as visit_occurrence_id,C.start_date as sort_date +from +( + select de.person_id,de.drug_era_id,de.drug_concept_id,de.drug_exposure_count,de.gap_days,de.drug_era_start_date as start_date, de.drug_era_end_date as end_date + FROM @cdm_database_schema.DRUG_ERA de +where de.drug_concept_id in (SELECT concept_id from #Codesets where codeset_id = 109) +) C + + +-- End Drug Era Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-56,P.START_DATE) AND A.START_DATE <= DATEADD(day,56,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 7 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM #qualified_events P +JOIN ( + select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Observation Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-70,P.START_DATE) AND A.START_DATE <= DATEADD(day,168,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-70,P.START_DATE) AND A.START_DATE <= DATEADD(day,168,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-70,P.START_DATE) AND A.START_DATE <= DATEADD(day,156,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-70,P.START_DATE) AND A.START_DATE <= DATEADD(day,156,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-56,P.START_DATE) AND A.START_DATE <= DATEADD(day,56,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-56,P.START_DATE) AND A.START_DATE <= DATEADD(day,56,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 6 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Drug Era Criteria +select C.person_id, C.drug_era_id as event_id, C.start_date, C.end_date, + CAST(NULL as bigint) as visit_occurrence_id,C.start_date as sort_date +from +( + select de.person_id,de.drug_era_id,de.drug_concept_id,de.drug_exposure_count,de.gap_days,de.drug_era_start_date as start_date, de.drug_era_end_date as end_date + FROM @cdm_database_schema.DRUG_ERA de +where de.drug_concept_id in (SELECT concept_id from #Codesets where codeset_id = 109) +) C + + +-- End Drug Era Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-56,P.START_DATE) AND A.START_DATE <= DATEADD(day,56,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 7 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM #qualified_events P +JOIN ( + select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Procedure Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-70,P.START_DATE) AND A.START_DATE <= DATEADD(day,168,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-70,P.START_DATE) AND A.START_DATE <= DATEADD(day,168,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-70,P.START_DATE) AND A.START_DATE <= DATEADD(day,154,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-70,P.START_DATE) AND A.START_DATE <= DATEADD(day,154,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-56,P.START_DATE) AND A.START_DATE <= DATEADD(day,56,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-56,P.START_DATE) AND A.START_DATE <= DATEADD(day,56,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 6 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Drug Era Criteria +select C.person_id, C.drug_era_id as event_id, C.start_date, C.end_date, + CAST(NULL as bigint) as visit_occurrence_id,C.start_date as sort_date +from +( + select de.person_id,de.drug_era_id,de.drug_concept_id,de.drug_exposure_count,de.gap_days,de.drug_era_start_date as start_date, de.drug_era_end_date as end_date + FROM @cdm_database_schema.DRUG_ERA de +where de.drug_concept_id in (SELECT concept_id from #Codesets where codeset_id = 109) +) C + + +-- End Drug Era Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-56,P.START_DATE) AND A.START_DATE <= DATEADD(day,56,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 7 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM #qualified_events P +JOIN ( + select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-182,P.START_DATE) AND A.START_DATE <= DATEADD(day,168,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-182,P.START_DATE) AND A.START_DATE <= DATEADD(day,168,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 2 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM #qualified_events P +JOIN ( + select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-182,P.START_DATE) AND A.START_DATE <= DATEADD(day,168,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-182,P.START_DATE) AND A.START_DATE <= DATEADD(day,168,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 2 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,139,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) > 0 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id AND AC.event_id = pe.event_id +) Results +; + +select 7 as inclusion_rule_id, person_id, event_id +INTO #Inclusion_7 +FROM +( + select pe.person_id, pe.event_id + FROM #qualified_events pe + +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM #qualified_events E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM #qualified_events P +JOIN ( + select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Observation Period Criteria +select C.person_id, C.observation_period_id as event_id, C.start_date as start_date, C.end_date as end_date, + CAST(NULL as bigint) as visit_occurrence_id, C.start_date as sort_date + +from +( + select op.person_id,op.observation_period_id,op.period_type_concept_id,op.observation_period_start_date as start_date, op.observation_period_end_date as end_date , row_number() over (PARTITION BY op.person_id ORDER BY op.observation_period_start_date) as ordinal + FROM @cdm_database_schema.OBSERVATION_PERIOD op +) C + + +-- End Observation Period Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Period Criteria +select C.person_id, C.observation_period_id as event_id, C.start_date as start_date, C.end_date as end_date, + CAST(NULL as bigint) as visit_occurrence_id, C.start_date as sort_date + +from +( + select op.person_id,op.observation_period_id,op.period_type_concept_id,op.observation_period_start_date as start_date, op.observation_period_end_date as end_date , row_number() over (PARTITION BY op.person_id ORDER BY op.observation_period_start_date) as ordinal + FROM @cdm_database_schema.OBSERVATION_PERIOD op +) C + + +-- End Observation Period Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Period Criteria +select C.person_id, C.observation_period_id as event_id, C.start_date as start_date, C.end_date as end_date, + CAST(NULL as bigint) as visit_occurrence_id, C.start_date as sort_date + +from +( + select op.person_id,op.observation_period_id,op.period_type_concept_id,op.observation_period_start_date as start_date, op.observation_period_end_date as end_date , row_number() over (PARTITION BY op.person_id ORDER BY op.observation_period_start_date) as ordinal + FROM @cdm_database_schema.OBSERVATION_PERIOD op +) C + + +-- End Observation Period Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= P.OP_END_DATE AND A.END_DATE >= P.OP_START_DATE AND A.END_DATE <= DATEADD(day,0,P.END_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Period Criteria +select C.person_id, C.observation_period_id as event_id, C.start_date as start_date, C.end_date as end_date, + CAST(NULL as bigint) as visit_occurrence_id, C.start_date as sort_date + +from +( + select op.person_id,op.observation_period_id,op.period_type_concept_id,op.observation_period_start_date as start_date, op.observation_period_end_date as end_date , row_number() over (PARTITION BY op.person_id ORDER BY op.observation_period_start_date) as ordinal + FROM @cdm_database_schema.OBSERVATION_PERIOD op +) C + + +-- End Observation Period Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= P.OP_END_DATE AND A.END_DATE >= P.OP_START_DATE AND A.END_DATE <= DATEADD(day,0,P.END_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Period Criteria +select C.person_id, C.observation_period_id as event_id, C.start_date as start_date, C.end_date as end_date, + CAST(NULL as bigint) as visit_occurrence_id, C.start_date as sort_date + +from +( + select op.person_id,op.observation_period_id,op.period_type_concept_id,op.observation_period_start_date as start_date, op.observation_period_end_date as end_date , row_number() over (PARTITION BY op.person_id ORDER BY op.observation_period_start_date) as ordinal + FROM @cdm_database_schema.OBSERVATION_PERIOD op +) C + + +-- End Observation Period Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= P.OP_END_DATE AND A.END_DATE >= P.OP_START_DATE AND A.END_DATE <= DATEADD(day,0,P.END_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Period Criteria +select C.person_id, C.observation_period_id as event_id, C.start_date as start_date, C.end_date as end_date, + CAST(NULL as bigint) as visit_occurrence_id, C.start_date as sort_date + +from +( + select op.person_id,op.observation_period_id,op.period_type_concept_id,op.observation_period_start_date as start_date, op.observation_period_end_date as end_date , row_number() over (PARTITION BY op.person_id ORDER BY op.observation_period_start_date) as ordinal + FROM @cdm_database_schema.OBSERVATION_PERIOD op +) C + + +-- End Observation Period Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= P.OP_END_DATE AND A.END_DATE >= P.OP_START_DATE AND A.END_DATE <= DATEADD(day,0,P.END_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, cc.person_id, cc.event_id +from (SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Period Criteria +select C.person_id, C.observation_period_id as event_id, C.start_date as start_date, C.end_date as end_date, + CAST(NULL as bigint) as visit_occurrence_id, C.start_date as sort_date + +from +( + select op.person_id,op.observation_period_id,op.period_type_concept_id,op.observation_period_start_date as start_date, op.observation_period_end_date as end_date , row_number() over (PARTITION BY op.person_id ORDER BY op.observation_period_start_date) as ordinal + FROM @cdm_database_schema.OBSERVATION_PERIOD op +) C + + +-- End Observation Period Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= P.OP_END_DATE AND A.END_DATE >= P.OP_START_DATE AND A.END_DATE <= DATEADD(day,0,P.END_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) >= 1 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= DATEADD(day,0,P.START_DATE) ) cc +GROUP BY cc.person_id, cc.event_id +HAVING COUNT(cc.event_id) >= 1 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 1 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id AND AC.event_id = pe.event_id +) Results +; + +SELECT inclusion_rule_id, person_id, event_id +INTO #inclusion_events +FROM (select inclusion_rule_id, person_id, event_id from #Inclusion_0 +UNION ALL +select inclusion_rule_id, person_id, event_id from #Inclusion_1 +UNION ALL +select inclusion_rule_id, person_id, event_id from #Inclusion_2 +UNION ALL +select inclusion_rule_id, person_id, event_id from #Inclusion_3 +UNION ALL +select inclusion_rule_id, person_id, event_id from #Inclusion_4 +UNION ALL +select inclusion_rule_id, person_id, event_id from #Inclusion_5 +UNION ALL +select inclusion_rule_id, person_id, event_id from #Inclusion_6 +UNION ALL +select inclusion_rule_id, person_id, event_id from #Inclusion_7) I; +TRUNCATE TABLE #Inclusion_0; +DROP TABLE #Inclusion_0; + +TRUNCATE TABLE #Inclusion_1; +DROP TABLE #Inclusion_1; + +TRUNCATE TABLE #Inclusion_2; +DROP TABLE #Inclusion_2; + +TRUNCATE TABLE #Inclusion_3; +DROP TABLE #Inclusion_3; + +TRUNCATE TABLE #Inclusion_4; +DROP TABLE #Inclusion_4; + +TRUNCATE TABLE #Inclusion_5; +DROP TABLE #Inclusion_5; + +TRUNCATE TABLE #Inclusion_6; +DROP TABLE #Inclusion_6; + +TRUNCATE TABLE #Inclusion_7; +DROP TABLE #Inclusion_7; + + +select event_id, person_id, start_date, end_date, op_start_date, op_end_date +into #included_events +FROM ( + SELECT event_id, person_id, start_date, end_date, op_start_date, op_end_date, row_number() over (partition by person_id order by start_date ASC) as ordinal + from + ( + select Q.event_id, Q.person_id, Q.start_date, Q.end_date, Q.op_start_date, Q.op_end_date, SUM(coalesce(POWER(cast(2 as bigint), I.inclusion_rule_id), 0)) as inclusion_rule_mask + from #qualified_events Q + LEFT JOIN #inclusion_events I on I.person_id = Q.person_id and I.event_id = Q.event_id + GROUP BY Q.event_id, Q.person_id, Q.start_date, Q.end_date, Q.op_start_date, Q.op_end_date + ) MG -- matching groups +{8 != 0}?{ + -- the matching group with all bits set ( POWER(2,# of inclusion rules) - 1 = inclusion_rule_mask + WHERE (MG.inclusion_rule_mask = POWER(cast(2 as bigint),8)-1) +} +) Results + +; + +-- date offset strategy + +select event_id, person_id, + case when DATEADD(day,139,start_date) > op_end_date then op_end_date else DATEADD(day,139,start_date) end as end_date +INTO #strategy_ends +from #included_events; + + +-- generate cohort periods into #final_cohort +select person_id, start_date, end_date +INTO #cohort_rows +from ( -- first_ends + select F.person_id, F.start_date, F.end_date + FROM ( + select I.event_id, I.person_id, I.start_date, CE.end_date, row_number() over (partition by I.person_id, I.event_id order by CE.end_date) as ordinal + from #included_events I + join ( -- cohort_ends +-- cohort exit dates +-- End Date Strategy +SELECT event_id, person_id, end_date from #strategy_ends + +UNION ALL +-- Censor Events +select i.event_id, i.person_id, MIN(c.start_date) as end_date +FROM #included_events i +JOIN +( +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Condition Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,30,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,1,P.START_DATE) AND A.START_DATE <= DATEADD(day,7,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,1,P.START_DATE) AND A.START_DATE <= DATEADD(day,7,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-70,P.START_DATE) AND A.START_DATE <= DATEADD(day,168,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-70,P.START_DATE) AND A.START_DATE <= DATEADD(day,168,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-70,P.START_DATE) AND A.START_DATE <= DATEADD(day,154,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 6 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-70,P.START_DATE) AND A.START_DATE <= DATEADD(day,154,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 7 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-56,P.START_DATE) AND A.START_DATE <= DATEADD(day,56,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 8 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-56,P.START_DATE) AND A.START_DATE <= DATEADD(day,56,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 9 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Drug Era Criteria +select C.person_id, C.drug_era_id as event_id, C.start_date, C.end_date, + CAST(NULL as bigint) as visit_occurrence_id,C.start_date as sort_date +from +( + select de.person_id,de.drug_era_id,de.drug_concept_id,de.drug_exposure_count,de.gap_days,de.drug_era_start_date as start_date, de.drug_era_end_date as end_date + FROM @cdm_database_schema.DRUG_ERA de +where de.drug_concept_id in (SELECT concept_id from #Codesets where codeset_id = 109) +) C + + +-- End Drug Era Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-56,P.START_DATE) AND A.START_DATE <= DATEADD(day,56,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 10 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +) C on C.person_id = I.person_id and C.start_date >= I.start_date and C.START_DATE <= I.op_end_date +GROUP BY i.event_id, i.person_id + +UNION ALL +select i.event_id, i.person_id, MIN(c.start_date) as end_date +FROM #included_events i +JOIN +( +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Observation Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,30,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,1,P.START_DATE) AND A.START_DATE <= DATEADD(day,7,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,1,P.START_DATE) AND A.START_DATE <= DATEADD(day,7,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-70,P.START_DATE) AND A.START_DATE <= DATEADD(day,168,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-70,P.START_DATE) AND A.START_DATE <= DATEADD(day,168,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-70,P.START_DATE) AND A.START_DATE <= DATEADD(day,154,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 6 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-70,P.START_DATE) AND A.START_DATE <= DATEADD(day,154,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 7 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-56,P.START_DATE) AND A.START_DATE <= DATEADD(day,56,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 8 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-56,P.START_DATE) AND A.START_DATE <= DATEADD(day,56,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 9 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Drug Era Criteria +select C.person_id, C.drug_era_id as event_id, C.start_date, C.end_date, + CAST(NULL as bigint) as visit_occurrence_id,C.start_date as sort_date +from +( + select de.person_id,de.drug_era_id,de.drug_concept_id,de.drug_exposure_count,de.gap_days,de.drug_era_start_date as start_date, de.drug_era_end_date as end_date + FROM @cdm_database_schema.DRUG_ERA de +where de.drug_concept_id in (SELECT concept_id from #Codesets where codeset_id = 109) +) C + + +-- End Drug Era Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-56,P.START_DATE) AND A.START_DATE <= DATEADD(day,56,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 10 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +) C on C.person_id = I.person_id and C.start_date >= I.start_date and C.START_DATE <= I.op_end_date +GROUP BY i.event_id, i.person_id + +UNION ALL +select i.event_id, i.person_id, MIN(c.start_date) as end_date +FROM #included_events i +JOIN +( +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Procedure Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-70,P.START_DATE) AND A.START_DATE <= DATEADD(day,168,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-70,P.START_DATE) AND A.START_DATE <= DATEADD(day,168,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-70,P.START_DATE) AND A.START_DATE <= DATEADD(day,154,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 3 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-70,P.START_DATE) AND A.START_DATE <= DATEADD(day,154,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 4 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-56,P.START_DATE) AND A.START_DATE <= DATEADD(day,56,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 5 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Drug Era Criteria +select C.person_id, C.drug_era_id as event_id, C.start_date, C.end_date, + CAST(NULL as bigint) as visit_occurrence_id,C.start_date as sort_date +from +( + select de.person_id,de.drug_era_id,de.drug_concept_id,de.drug_exposure_count,de.gap_days,de.drug_era_start_date as start_date, de.drug_era_end_date as end_date + FROM @cdm_database_schema.DRUG_ERA de +where de.drug_concept_id in (SELECT concept_id from #Codesets where codeset_id = 109) +) C + + +-- End Drug Era Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-56,P.START_DATE) AND A.START_DATE <= DATEADD(day,56,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 6 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Procedure Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 107) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-56,P.START_DATE) AND A.START_DATE <= DATEADD(day,56,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 7 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +) C on C.person_id = I.person_id and C.start_date >= I.start_date and C.START_DATE <= I.op_end_date +GROUP BY i.event_id, i.person_id + +UNION ALL +select i.event_id, i.person_id, MIN(c.start_date) as end_date +FROM #included_events i +JOIN +( +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,30,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-182,P.START_DATE) AND A.START_DATE <= DATEADD(day,168,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Condition Occurrence Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-182,P.START_DATE) AND A.START_DATE <= DATEADD(day,168,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 3 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +) C on C.person_id = I.person_id and C.start_date >= I.start_date and C.START_DATE <= I.op_end_date +GROUP BY i.event_id, i.person_id + +UNION ALL +select i.event_id, i.person_id, MIN(c.start_date) as end_date +FROM #included_events i +JOIN +( +select PE.person_id, PE.event_id, PE.start_date, PE.end_date, PE.visit_occurrence_id, PE.sort_date FROM ( +-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria + +) PE +JOIN ( +-- Begin Criteria Group +select 0 as index_id, person_id, event_id +FROM +( + select E.person_id, E.event_id + FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) E + INNER JOIN + ( + -- Begin Correlated Criteria +select 0 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Procedure Occurrence Criteria +select C.person_id, C.procedure_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select po.person_id,po.procedure_occurrence_id,po.procedure_concept_id,po.visit_occurrence_id,po.quantity,po.procedure_date as start_date, DATEADD(day,1,po.procedure_date) as end_date + FROM @cdm_database_schema.PROCEDURE_OCCURRENCE po +JOIN #Codesets cs on (po.procedure_concept_id = cs.concept_id and cs.codeset_id = 62) +) C + + +-- End Procedure Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,0,P.START_DATE) AND A.START_DATE <= DATEADD(day,30,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 1 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Condition Occurrence Criteria +SELECT C.person_id, C.condition_occurrence_id as event_id, C.start_date, C.end_date, + C.visit_occurrence_id, C.start_date as sort_date +FROM +( + SELECT co.person_id,co.condition_occurrence_id,co.condition_concept_id,co.visit_occurrence_id,co.condition_start_date as start_date, COALESCE(co.condition_end_date, DATEADD(day,1,co.condition_start_date)) as end_date + FROM @cdm_database_schema.CONDITION_OCCURRENCE co + JOIN #Codesets cs on (co.condition_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Condition Occurrence Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-182,P.START_DATE) AND A.START_DATE <= DATEADD(day,168,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + +UNION ALL +-- Begin Correlated Criteria +select 2 as index_id, p.person_id, p.event_id +from (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) p +LEFT JOIN ( +SELECT p.person_id, p.event_id +FROM (SELECT Q.person_id, Q.event_id, Q.start_date, Q.end_date, Q.visit_occurrence_id, OP.observation_period_start_date as op_start_date, OP.observation_period_end_date as op_end_date +FROM (-- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 60) +) C + + +-- End Observation Criteria +) Q +JOIN @cdm_database_schema.OBSERVATION_PERIOD OP on Q.person_id = OP.person_id + and OP.observation_period_start_date <= Q.start_date and OP.observation_period_end_date >= Q.start_date +) P +JOIN ( + -- Begin Observation Criteria +select C.person_id, C.observation_id as event_id, C.start_date, C.END_DATE, + C.visit_occurrence_id, C.start_date as sort_date +from +( + select o.person_id,o.observation_id,o.observation_concept_id,o.visit_occurrence_id,o.value_as_number,o.observation_date as start_date, DATEADD(day,1,o.observation_date) as end_date + FROM @cdm_database_schema.OBSERVATION o +JOIN #Codesets cs on (o.observation_concept_id = cs.concept_id and cs.codeset_id = 1) +) C + + +-- End Observation Criteria + +) A on A.person_id = P.person_id AND A.START_DATE >= P.OP_START_DATE AND A.START_DATE <= P.OP_END_DATE AND A.START_DATE >= DATEADD(day,-182,P.START_DATE) AND A.START_DATE <= DATEADD(day,168,P.START_DATE) ) cc on p.person_id = cc.person_id and p.event_id = cc.event_id +GROUP BY p.person_id, p.event_id +HAVING COUNT(cc.event_id) = 0 +-- End Correlated Criteria + + ) CQ on E.person_id = CQ.person_id and E.event_id = CQ.event_id + GROUP BY E.person_id, E.event_id + HAVING COUNT(index_id) = 3 +) G +-- End Criteria Group +) AC on AC.person_id = pe.person_id and AC.event_id = pe.event_id + +) C on C.person_id = I.person_id and C.start_date >= I.start_date and C.START_DATE <= I.op_end_date +GROUP BY i.event_id, i.person_id + + + ) CE on I.event_id = CE.event_id and I.person_id = CE.person_id and CE.end_date >= I.start_date + ) F + WHERE F.ordinal = 1 +) FE; + + +select person_id, min(start_date) as start_date, DATEADD(day,-1 * 0, max(end_date)) as end_date +into #final_cohort +from ( + select person_id, start_date, end_date, sum(is_start) over (partition by person_id order by start_date, is_start desc rows unbounded preceding) group_idx + from ( + select person_id, start_date, end_date, + case when max(end_date) over (partition by person_id order by start_date rows between unbounded preceding and 1 preceding) >= start_date then 0 else 1 end is_start + from ( + select person_id, start_date, DATEADD(day,0,end_date) as end_date + from #cohort_rows + ) CR + ) ST +) GR +group by person_id, group_idx; + +DELETE FROM @target_database_schema.@target_cohort_table where cohort_definition_id = @target_cohort_id; +INSERT INTO @target_database_schema.@target_cohort_table (cohort_definition_id, subject_id, cohort_start_date, cohort_end_date) +select @target_cohort_id as cohort_definition_id, person_id, start_date, end_date +FROM #final_cohort CO +; + +{1 != 0}?{ +-- BEGIN: Censored Stats + +delete from @results_database_schema.cohort_censor_stats where cohort_definition_id = @target_cohort_id; + +-- END: Censored Stats +} +{1 != 0 & 8 != 0}?{ + +-- Create a temp table of inclusion rule rows for joining in the inclusion rule impact analysis + +select cast(rule_sequence as int) as rule_sequence +into #inclusion_rules +from ( + SELECT CAST(0 as int) as rule_sequence UNION ALL SELECT CAST(1 as int) as rule_sequence UNION ALL SELECT CAST(2 as int) as rule_sequence UNION ALL SELECT CAST(3 as int) as rule_sequence UNION ALL SELECT CAST(4 as int) as rule_sequence UNION ALL SELECT CAST(5 as int) as rule_sequence UNION ALL SELECT CAST(6 as int) as rule_sequence UNION ALL SELECT CAST(7 as int) as rule_sequence +) IR; + + +-- Find the event that is the 'best match' per person. +-- the 'best match' is defined as the event that satisfies the most inclusion rules. +-- ties are solved by choosing the event that matches the earliest inclusion rule, and then earliest. + +select q.person_id, q.event_id +into #best_events +from #qualified_events Q +join ( + SELECT R.person_id, R.event_id, ROW_NUMBER() OVER (PARTITION BY R.person_id ORDER BY R.rule_count DESC,R.min_rule_id ASC, R.start_date ASC) AS rank_value + FROM ( + SELECT Q.person_id, Q.event_id, COALESCE(COUNT(DISTINCT I.inclusion_rule_id), 0) AS rule_count, COALESCE(MIN(I.inclusion_rule_id), 0) AS min_rule_id, Q.start_date + FROM #qualified_events Q + LEFT JOIN #inclusion_events I ON q.person_id = i.person_id AND q.event_id = i.event_id + GROUP BY Q.person_id, Q.event_id, Q.start_date + ) R +) ranked on Q.person_id = ranked.person_id and Q.event_id = ranked.event_id +WHERE ranked.rank_value = 1 +; + +-- modes of generation: (the same tables store the results for the different modes, identified by the mode_id column) +-- 0: all events +-- 1: best event + + +-- BEGIN: Inclusion Impact Analysis - event +-- calculte matching group counts +delete from @results_database_schema.cohort_inclusion_result where cohort_definition_id = @target_cohort_id and mode_id = 0; +insert into @results_database_schema.cohort_inclusion_result (cohort_definition_id, inclusion_rule_mask, person_count, mode_id) +select @target_cohort_id as cohort_definition_id, inclusion_rule_mask, count_big(*) as person_count, 0 as mode_id +from +( + select Q.person_id, Q.event_id, CAST(SUM(coalesce(POWER(cast(2 as bigint), I.inclusion_rule_id), 0)) AS bigint) as inclusion_rule_mask + from #qualified_events Q + LEFT JOIN #inclusion_events I on q.person_id = i.person_id and q.event_id = i.event_id + GROUP BY Q.person_id, Q.event_id +) MG -- matching groups +group by inclusion_rule_mask +; + +-- calculate gain counts +delete from @results_database_schema.cohort_inclusion_stats where cohort_definition_id = @target_cohort_id and mode_id = 0; +insert into @results_database_schema.cohort_inclusion_stats (cohort_definition_id, rule_sequence, person_count, gain_count, person_total, mode_id) +select @target_cohort_id as cohort_definition_id, ir.rule_sequence, coalesce(T.person_count, 0) as person_count, coalesce(SR.person_count, 0) gain_count, EventTotal.total, 0 as mode_id +from #inclusion_rules ir +left join +( + select i.inclusion_rule_id, count_big(i.event_id) as person_count + from #qualified_events Q + JOIN #inclusion_events i on Q.person_id = I.person_id and Q.event_id = i.event_id + group by i.inclusion_rule_id +) T on ir.rule_sequence = T.inclusion_rule_id +CROSS JOIN (select count(*) as total_rules from #inclusion_rules) RuleTotal +CROSS JOIN (select count_big(event_id) as total from #qualified_events) EventTotal +LEFT JOIN @results_database_schema.cohort_inclusion_result SR on SR.mode_id = 0 AND SR.cohort_definition_id = @target_cohort_id AND (POWER(cast(2 as bigint),RuleTotal.total_rules) - POWER(cast(2 as bigint),ir.rule_sequence) - 1) = SR.inclusion_rule_mask -- POWER(2,rule count) - POWER(2,rule sequence) - 1 is the mask for 'all except this rule' +; + +-- calculate totals +delete from @results_database_schema.cohort_summary_stats where cohort_definition_id = @target_cohort_id and mode_id = 0; +insert into @results_database_schema.cohort_summary_stats (cohort_definition_id, base_count, final_count, mode_id) +select @target_cohort_id as cohort_definition_id, PC.total as person_count, coalesce(FC.total, 0) as final_count, 0 as mode_id +FROM +(select count_big(event_id) as total from #qualified_events) PC, +(select sum(sr.person_count) as total + from @results_database_schema.cohort_inclusion_result sr + CROSS JOIN (select count(*) as total_rules from #inclusion_rules) RuleTotal + where sr.mode_id = 0 and sr.cohort_definition_id = @target_cohort_id and sr.inclusion_rule_mask = POWER(cast(2 as bigint),RuleTotal.total_rules)-1 +) FC +; + +-- END: Inclusion Impact Analysis - event + +-- BEGIN: Inclusion Impact Analysis - person +-- calculte matching group counts +delete from @results_database_schema.cohort_inclusion_result where cohort_definition_id = @target_cohort_id and mode_id = 1; +insert into @results_database_schema.cohort_inclusion_result (cohort_definition_id, inclusion_rule_mask, person_count, mode_id) +select @target_cohort_id as cohort_definition_id, inclusion_rule_mask, count_big(*) as person_count, 1 as mode_id +from +( + select Q.person_id, Q.event_id, CAST(SUM(coalesce(POWER(cast(2 as bigint), I.inclusion_rule_id), 0)) AS bigint) as inclusion_rule_mask + from #best_events Q + LEFT JOIN #inclusion_events I on q.person_id = i.person_id and q.event_id = i.event_id + GROUP BY Q.person_id, Q.event_id +) MG -- matching groups +group by inclusion_rule_mask +; + +-- calculate gain counts +delete from @results_database_schema.cohort_inclusion_stats where cohort_definition_id = @target_cohort_id and mode_id = 1; +insert into @results_database_schema.cohort_inclusion_stats (cohort_definition_id, rule_sequence, person_count, gain_count, person_total, mode_id) +select @target_cohort_id as cohort_definition_id, ir.rule_sequence, coalesce(T.person_count, 0) as person_count, coalesce(SR.person_count, 0) gain_count, EventTotal.total, 1 as mode_id +from #inclusion_rules ir +left join +( + select i.inclusion_rule_id, count_big(i.event_id) as person_count + from #best_events Q + JOIN #inclusion_events i on Q.person_id = I.person_id and Q.event_id = i.event_id + group by i.inclusion_rule_id +) T on ir.rule_sequence = T.inclusion_rule_id +CROSS JOIN (select count(*) as total_rules from #inclusion_rules) RuleTotal +CROSS JOIN (select count_big(event_id) as total from #best_events) EventTotal +LEFT JOIN @results_database_schema.cohort_inclusion_result SR on SR.mode_id = 1 AND SR.cohort_definition_id = @target_cohort_id AND (POWER(cast(2 as bigint),RuleTotal.total_rules) - POWER(cast(2 as bigint),ir.rule_sequence) - 1) = SR.inclusion_rule_mask -- POWER(2,rule count) - POWER(2,rule sequence) - 1 is the mask for 'all except this rule' +; + +-- calculate totals +delete from @results_database_schema.cohort_summary_stats where cohort_definition_id = @target_cohort_id and mode_id = 1; +insert into @results_database_schema.cohort_summary_stats (cohort_definition_id, base_count, final_count, mode_id) +select @target_cohort_id as cohort_definition_id, PC.total as person_count, coalesce(FC.total, 0) as final_count, 1 as mode_id +FROM +(select count_big(event_id) as total from #best_events) PC, +(select sum(sr.person_count) as total + from @results_database_schema.cohort_inclusion_result sr + CROSS JOIN (select count(*) as total_rules from #inclusion_rules) RuleTotal + where sr.mode_id = 1 and sr.cohort_definition_id = @target_cohort_id and sr.inclusion_rule_mask = POWER(cast(2 as bigint),RuleTotal.total_rules)-1 +) FC +; + +-- END: Inclusion Impact Analysis - person + +TRUNCATE TABLE #best_events; +DROP TABLE #best_events; + +TRUNCATE TABLE #inclusion_rules; +DROP TABLE #inclusion_rules; +} + +TRUNCATE TABLE #strategy_ends; +DROP TABLE #strategy_ends; + + +TRUNCATE TABLE #cohort_rows; +DROP TABLE #cohort_rows; + +TRUNCATE TABLE #final_cohort; +DROP TABLE #final_cohort; + +TRUNCATE TABLE #inclusion_events; +DROP TABLE #inclusion_events; + +TRUNCATE TABLE #qualified_events; +DROP TABLE #qualified_events; + +TRUNCATE TABLE #included_events; +DROP TABLE #included_events; + +TRUNCATE TABLE #Codesets; +DROP TABLE #Codesets;

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